Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

waves-grpc-services-client

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

waves-grpc-services-client

Waves gRPC services client

  • 0.1.6
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Waves gRPC clients services

Installation

If you are using npm:

npm i waves-grpc-services-client

If you are using yarn:

yarn add waves-grpc-services-client

Examples

Blockchain Updates

import { BlockchainUpdates } from 'waves-grpc-services-client';

const blockchainUpdatesBuilder = BlockchainUpdates.builder();

const blockchainUpdates = blockchainUpdatesBuilder
    .buAddress('grpc.wavesnodes.com:6881')
    .from(3528000)
    .to(3528050)
    .onData(({ height }) => {
        console.log(height);
    })
    .build();

blockchainUpdates.start();

AccountsApi

import { AccountsApi } from 'waves-grpc-services-client';

const accountsApi = new AccountsApi();

accountsApi.fetchState('3P8qJyxUqizCWWtEn2zsLZVPzZAjdNGppB1').then((entries) => {
    // do something
});

Keywords

FAQs

Package last updated on 07 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc