Skip to main content

@djuno/rpc-sdk

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

Djuno Support avatar
Written by Djuno Support
Updated over 4 months ago

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();


​

Did this answer your question?