0.24.0-next.0 • Published 2 years ago

@yadomi29/rpc v0.24.0-next.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

@yadomi29/rpc

RPC module for lumos. Provide type definitions for CKB RPC interface.

Usage

import { RPC } from "@yadomi29/rpc"
const rpc = new RPC("http://localhost:8114");
await rpc.get_tip_header();

// Or provide an optional indexer param, if provided, will wait for sync after every RPC call.
const rpc = new RPC("http://localhost:8114", indexer)
await rpc.get_tip_header(); // before it return, will sync indexer to tip.