Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@ethercast/eth-jsonrpc-client

ethercast8MIT1.2.1TypeScript support: included

JSON RPC client for Ethereum clients (geth/parity)

ethereum, ether, eth, client, json rpc, json, json-rpc

readme

eth-jsonrpc-client

Build Status codecov NPM version

Lightweight HTTP and WebSocket JSON RPC client for Ethereum, compatible with both geth and parity, made for polling blocks for the Ethercast project. Great for when Web3 is too heavy, and the only functionality required is to query the JSON RPC.

Installation

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

Usage

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

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

import { getClient } from '@ethercast/eth-jsonrpc-client';

async function printBlockNumber(): Promise<void> {
  const validatedClient = getClient('http://infura.node.io/my-api-key', true);
  const blockNumber = await validatedClient.eth_blockNumber();
  console.log(`blockNumber is ${blockNumber}`);
}

API Docs

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

changelog

Change Log

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

1.2.1 (2018-09-18)

1.1.2 (2018-09-17)

1.1.1 (2018-09-14)

1.0.6 (2018-09-13)

1.0.5 (2018-09-13)

1.0.4 (2018-09-13)

1.0.3 (2018-09-13)

1.0.2 (2018-09-13)

1.0.1 (2018-09-13)