npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@polkadot-api/substrate-client

v0.1.2

Published

This TypeScript package provides low-level bindings to the [Substrate JSON-RPC Interface](https://paritytech.github.io/json-rpc-interface-spec/introduction.html), enabling interaction with Substrate-based blockchains.

Downloads

136,800

Readme

@polkadot-api/substrate-client

This TypeScript package provides low-level bindings to the Substrate JSON-RPC Interface, enabling interaction with Substrate-based blockchains.

Usage

Start by creating a SubstrateClient object with the exported function createClient. To create one, you need a ConnectProvider provider defined in @polkadot-api/json-rpc-provider for establishing a connection to a specific blockchain client.

For instance, you can use @polkadot-api/sc-provider to get a substrate-connect provider for connecting to the Polkadot relay chain through a light client:

import { getScProvider, WellKnownChain } from "@polkadot-api/sc-provider"
import { createClient } from "@polkadot-api/substrate-client"

const scProvider = getScProvider()
const { relayChain } = scProvider(WellKnownChain.polkadot)

const client = createClient(relayChain)

Request

Invoke any method defined in the JSON-RPC Spec using client.request(method, params, abortSignal?). This returns a promise resolving with the response from the JSON-RPC server.

const genesisHash = await client.request("chainSpec_v1_genesisHash", [])

All promise-returning functions exported by this package accept an AbortSignal for operation cancellation.

ChainHead

Operations within the chainHead group of functions involve subscriptions and interdependencies between methods. The client has a function that simplifies the interaction with these group.

Calling client.chainHead(withRuntime, onFollowEvent, onFollowError) will start a chainHead_unstable_follow subscription, and will return a handle to perform operations with the chainHead.

const chainHead = client.chainHead(
  true,
  (event) => {
    // ...
  },
  (error) => {
    // ...
  },
)

The handle provides one method per each of the functions defined inside chainHead: chainHead_unstable_body, chainHead_unstable_call, chainHead_unstable_header, chainHead_unstable_storage, and chainHead_unstable_unpin.

The JSON-RPC Spec for chainHead specifies that these functions return an operationId, and that the resolved response for the call will come through the chainHead_unstable_follow subscription, linking it through this operationId.

substrate-client's chainHead is an abstraction over this: The events emitted through the client.chainHead() callback are only the ones initiated from the JSON-RPC Server. The promise returned by any of the chainHead's handle functions will resolve with the respective event.

const chainHead = client.chainHead(
  true,
  async (event) => {
    if (event.type === "newBlock") {
      const body = await chainHead.body(event.blockHash)
      // body is a string[] containing the SCALE-encoded values within the body
      processBody(body)

      chainHead.unpin([event.blockHash])
    }
  },
  (error) => {
    // ...
  },
)

header

Calls chainHead_unstable_call and returns a promise that resolves with the SCALE-encoded header of the block

const header = await chainHead.header(blockHash)

body

Calls chainHead_unstable_body and returns a promise that will resolve with an array of strings containing the SCALE-encoded extrinsics found in the block

const body = await chainHead.body(blockHash)

call

Calls chainHead_unstable_header and returns a promise that resolves with the encoded output of the runtime function call

const result = await chainHead.call(blockHash, fnName, callParameters)

storage

Calls chainHead_unstable_storage and returns a promise that resolves with the value returned by the JSON-RPC server, which depends on the type parameter. See the JSON-RPC spec for chainHead_unstable_storage for the details on the usage.

// string with the SCALE-encoded value
const value = await chainHead.storage(blockHash, "value", key, childTrie)

// string with the hash value
const hash = await chainHead.storage(blockHash, "hash", key, childTrie)

// string with the merkle value
const items = await chainHead.storage(
  blockHash,
  "closestDescendantMerkleValue",
  key,
  childTrie,
)

// array of key-value pairs
const items = await chainHead.storage(
  blockHash,
  "descendantsValues",
  key,
  childTrie,
)

// array of key-hash pairs
const hashes = await chainHead.storage(
  blockHash,
  "descendantsHashes",
  key,
  childTrie,
)

storageSubscription

While storage only can resolve for one specific item, the JSON-RPC specification allows to resolve multiple items within the same call. For this case, substrate-client also offers a lower-level version called chainHead.storageSubscription(hash, inputs, childTrie, onItems, onError, onDone, onDiscardedItems) that emits the storage items as they get resolved by the JSON-RPC server:

const abort = chainHead.storageSubscription(
  hash,
  [
    { key, type },
    /* ... each item */
  ],
  null,
  (items) => {
    // items is an array of { key, value?, hash?, closestDescendantMerkleValue? }
  },
  onError,
  onDone,
  (nDiscardedItems) => {
    // amount of discarded items, as defined by the JSON-RPC spec.
  },
)

storageSubscription returns a function to cancel the operation.

unpin

Calls chainHead_unstable_unpin and returns a promise that will resolve after the operation is done.

chainHead.unpin(blockHashes)

unfollow

To close the chainHead subscription, call chainHead.unfollow().

Transaction

transaction group of functions also deals with subscriptions through submitAndWatch. SubstrateClient also abstracts over this:

const cancelRequest = client.transaction(
  transaction, // SCALE-encoded transaction
  (event) => {
    // ...
  },
  (error) => {
    // ...
  },
)

// call `cancelRequest()` to abort the transaction (`transaction_unstable_stop`)

The event emitted through the callback are fully typed, and can be discriminated through event.type

switch (event.type) {
  case "validated":
    break
  case "broadcasted":
    const { numPeers } = event
    break
  case "bestChainBlockIncluded":
  case "finalized":
    const { block } = event
    break
  case "dropped":
  case "error":
  case "invalid":
    const { error } = event
    break
}

Destroy

Call client.destroy() to disconnect from the provider.