0.1.0 • Published 1 year ago

@djuno/rpc-sdk v0.1.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

Djuno RPC SDK

A SDK from Djuno making it easy for developers to interact with Djuno's RPC endpoints.

Getting Started

Installation

  • Requires Node.js v16 or higher
  • npm install @djuno/rpc-sdk or yarn add @djuno/rpc-sdk

Quickstart

import { Core } from '@djuno/rpc-sdk';

const core = new Core({
  endpointUrl: 'replaceme',
});

const blockNumber = await core.client.getBlockNumber();
0.1.0

1 year ago