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

@t3rn/sdk

v0.4.11

Published

t3rn's client side SDK

Downloads

119

Readme

t3rn ts-sdk

The t3rn ts-sdk enables easy client side development with the t3rn blockchain. The main goal is to abstract away a lot of the cross-chain complexity, providing a simple interface to invoke XTX transactions on t3rn.

This library is under still under development, so proceed with caution.

Classes

The SDK package consists of 3 main classes, which will be introduced here. A more detailed explanation can be found in the typedoc sections.

SDK

The SDK class used when looking to initialize the entire class, instead of single components. The constructor accepts two parameters, the signer and the circuit RPC endpoint.

const keyring = new Keyring({ type: "sr25519" })
this.signer = process.env.CIRCUIT_KEY === undefined
        ? keyring.addFromUri("//Alice")
        : keyring.addFromMnemonic(process.env.CIRCUIT_KEY)

this.sdk = new Sdk("ws://127.0.0.1:9944", this.signer)
// @ts-ignore
this.circuit = await this.sdk.init();

Circuit

The Circuit class is mainly used for dealing with amount conversions and batching and sending transaction objects to the circuit. It deals with error decoding, nonce incrementation and aims to provide a baseline implementation that deals with common situations.

Gateways

The gateways class is used for exposing functionality of the chains connected to t3rn. When the SDK is initialized, the t3rn blockchain is queried for all XDNS records that are stored on chain. These records contain chain specific constants like value types, address formats, hashing functions, etc.

For example, when creating a Side Effect to be executed on the Ethereum blockchain, the correct value types, decimals and address format must be ensured. Manually dealing with these validations and conversions is error-prone, potentially resulting in loss of funds.

With the SDK, creating a transfer SideEffect using floats can be done the following way:

const data = {
	target: "eth",
    type: "tran",
    to: "0x71C7656EC7ab88b098defB751B7401B5f6d8976F",
    amount: 0.0756,
    maxReward: 1.456,
    insurance: 0.55
}

const obj: T3rnTypesSideEffect = sdk.gateways[data.target].createSfx[data.type]({
    from: sender.toString(),
    to: data.to,
    // createSfx expects Int/BN, passing a float will result in an error
    value: sdk.gateways[data.target].floatToBn(data.amount), 
    maxReward: sdk.circuit.floatToBn(data.reward), // These assets are on circuit
    insurance: sdk.circuit.floatToBn(data.insurance), // This one too
})

The gateway class will validate and convert all parameters to the correct encodings and create the SideEffect object, compatible with the t3rn blockchain. The amount conversion is required, as we're passing floats.

Helpers

A variety of helpers are exposed via the SDK, that deal with decodings, conversions and validations.

AmountConverter

This class is used for doing amount conversions of different types. When dealing with circuit, there are three main encodings are used for representing amounts:

  • LittleEndian - Used by Substrate as part of the SCALE encoding. The amount is LittleEndian encoded
  • Float - Floats are the human-readable format of amounts. This is very user facing.
  • Integer - In combination with decimals, used to represent amounts. These are represented as TS number or BN object

This class enables the conversion between these different types. The gateway class heavily relies on this class, passing parameters like decimals and value types out of the box. This for example is the implementation for toFloat in the Gateway class.

toFloat(value: BN | number): number {
    return new AmountConverter({
      value,
      decimals: this.decimals,
      valueTypeSize: this.valueTypeSize
    })
    .toFloat()
}

It is important to note, that the constructor of the AmountConverter only accepts Integer or LittleEndian types. This needs to be enforced, as TypeScript represents integers as floats. For this reason, it's not possible to differentiate between 1.0 and 1, which is a problem.

To get around this problem, the AmountConverter can also be constructed without passing the value. This enables the Gateway class to do conversion from float to int:

floatToBn(value: number): BN {
    return new AmountConverter({
      decimals: this.decimals,
      valueTypeSize: this.valueTypeSize,
    }).floatToBn(value);
}

Addresses

Contains helper functions for address related functionality. At this stage this is only available for substrate address, enabling the conversion and validation of addresses and public keys.

Decoders

A collection of decoding functions is included. This contains a rather arbitrary collection of functions, containing decoders for things we ran into frequently. Currently, this includes only Substrate specific types, but will be extended to other blockchains in the future.