Socket
Socket
Sign inDemoInstall

@ethercast/eth-jsonrpc-client

Package Overview
Dependencies
Maintainers
2
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ethercast/eth-jsonrpc-client

JSON RPC client for Ethereum clients (geth/parity)


Version published
Weekly downloads
1
Maintainers
2
Weekly downloads
 
Created
Source

eth-jsonrpc-client

Build Status codecov

Lightweight HTTP and WebSocket JSON RPC client for Ethereum, compatible with both geth and parity, made for polling blocks from Ethercast. Great for when Web3 is too heavy.

Installation

npm install --save @ethercast/eth-jsonrpc-client

Usage

There are three main classes exported from this module. EthHTTPClient, EthWebSocketClient, and ValidatedEthClient.

To construct a client, call getClient(nodeUrl: string) which will construct the appropriate client based on the URL (HTTP or WebSocket)

Once you have a client, use one of the supported methods on the interface or call an unsupported method using .cmd, e.g.:

import { EthClient } from '@ethercast/eth-jsonrpc-client';
import BigNumber from 'bignumber.js';

async function getBlockNumber(): BigNumber {
    const client: EthClient = getClient('http://infura.node.io/my-api-key');
    const blockNumber = await client.eth_blockNumber();
    console.log(`blockNumber is ${blockNumber}`);
}

API Docs

https://ethercast.github.io/eth-jsonrpc-client/

Keywords

FAQs

Package last updated on 14 Sep 2018

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