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

@pendulum-chain/api-solang

v0.6.1

Published

Interface to interact with smart contracts compiled via Solang

Downloads

255

Readme

Polkadot API for Smart Contracts compiled via Solang

This library allows to deploy and call into smart contracts that have been compiled from Solidity to wasm via Solang.

It has three main functions:

  • deploy (instantiate) a smart contract
  • execute a message call by submitting an extrinsic
  • make a message call via RPC (dry-run)

These functions are meant to be used very flexibly and they have the following special features:

  1. The first two functions allow to either specify a keypair or a general signer in order to sign the extrinsics. The keypair is generally useful for command line tools whereas the signer is more useful in a browser context, where it can give access to a wallets or browser extensions.

  2. In certain applications it can be necessary to extend the extrinsics created in the first two functions, e.g., to wrap them into a sudo call. For that reason these functions allow to specify an optional argument modifyExtrinsic that allows the caller to arbitrarily change or extend the created extrinsic.

  3. Contracts usually emit events and these events can be emitted by contracts (recursively) called by the original contract. In order to properly decode the binary data contained in the event, one needs to lookup the abi of the respective contract emitting the event. For that reason the first two functions take an optional argument lookupAbi that allows the caller to provide the abi for any deployed contract (identified through the contract address).

  4. All functions can correctly decode the return value of message calls, i.e., whether a message call reverted (including the revert message) or whether it panicked and why it panicked.

The differences between the message call by extrinsic and the message call by RPC methods are:

  • the dry-run does not cost any fees
  • the dry-run does not require signatures or secret keys
  • the dry-run is executed immediately, and does not need to wait for a block
  • the dry-run returns an output value
  • changes to the chain or contract storage during the dry-run will be discarded after the call

Deploy a smart contract

The function deployContract has the following arguments:

  • api: the polkadot-js ApiPromise object

    This is the ApiPromise object that polkadot-js creates when connecting to an RPC node of a chain.

  • abi: The abi (metadata) of the smart contract

    This needs to be an object of type Abi. It can be constructed from the metadata JSON file (that is generated by Solang) as follows:

    const metadata = JSON.parse(metadataString);
    new Abi(metadata, api.registry.getChainProperties());
  • signer: Specifies the signer of the extrinsic submitted to the chain.

    This can either be a keypair or any generic signer. If it is a keypair, then it needs to have the format

    {
      type: "keypair";
      keypair: KeyringPair;
    }

    If it is a generic signer, then it needs to have the format

    {
      type: "signer";
      address: string; // the address of the signer
      signer: Signer;
    }
  • constructorArguments: the array with the arguments to the constructor

  • constructorName: an optional argument to specify the constructor

    This is new by default. Contracts that are compiled via Solidity usually only have the new constructor.

  • limits: the resource limits

    These limits specify the resources that are allowed to be used for the execution. They need to be specified as the type

    {
      gas: {
        refTime: string | number;
        proofSize: string | number;
      };
      storageDeposit?: string | number;
    }

    The gas.refTime and gas.proofSize entries specify limits of the gas usage. The optional argument storageDeposit specifies a limit for the storage deposit.

  • modifyExtrinsic: allows to extend the generated extrinsic.

    This is an optional function that allows the caller to extend, modify or wrap the extrinsic created by deployContract before it is submitted to the chain.

  • lookupAbi: provide abi for deployed contracts

    This is an optional argument that allows to provide the abi of any deployed contract (specified by the address of the contract). This allows deployContract to properly decode events emitted during contract execuction.

The return value of this function is an object that contains the field type. This fields indicate the execution status and is either one of the values:

  • "success": in this case the deployment was successful and the return object also contains the entries events (which is the collection of (decoded) contract events that were emitted during contract execution), the deploymentAddress and the transactionFee that the signer had to pay
  • "error": in this case there was a general error when submitting the extrinsic and the return object contains the entry error (a string with an error description)
  • "reverted": in this case the contract reverted and the return object contains the revert message in the entry description
  • "panic": in this case the contract panicked and the return object contains the entries errorCode (a numerical error code) and explanation (an explanation of the error code)

Execute a Message Call

The function executeMessage has the following arguments:

  • api: the polkadot-js ApiPromise object

    This is the ApiPromise object that polkadot-js creates when connecting to an RPC node of a chain.

  • abi: The abi (metadata) of the smart contract

    This needs to be an object of type Abi. It can be constructed from the metadata JSON file (that is generated by Solang) as follows:

    const metadata = JSON.parse(metadataString);
    new Abi(metadata, api.registry.getChainProperties());
  • contractDeploymentAddress: the address of the contract

    This needs to be the address of a deployed contracts that has the abi specified by abi

  • callerAddress: the address of the caller of the contract

  • messageName: the name of the message

  • messageArguments: the array with the arguments to the message

  • limits: the resource limits

    These limits specify the resources that are allowed to be used for the execution. They need to be specified as the type

    {
      gas: {
        refTime: string | number;
        proofSize: string | number;
      };
      storageDeposit?: string | number;
    }

    The gas.refTime and gas.proofSize entries specify limits of the gas usage. The optional argument storageDeposit specifies a limit for the storage deposit.

  • getSigner: Specifies the signer of the extrinsic submitted to the chain.

    This callback will be invoked when an extrinsic is submitted to the chain. The address associated with the signer should be the same as callerAddress. This can either be a keypair or any generic signer. If it is a keypair, then it needs to have the format

    {
      type: "keypair";
      keypair: KeyringPair;
    }

    If it is a generic signer, then it needs to have the format

    {
      type: "signer";
      address: string; // the address of the signer
      signer: Signer;
    }
  • modifyExtrinsic: allows to extend the generated extrinsic.

    This is an optional function that allows the caller to extend, modify or wrap the extrinsic created by executeMessage before it is submitted to the chain.

  • lookupAbi: provide abi for deployed contracts

    This is an optional argument that allows to provide the abi of any deployed contract (specified by the address of the contract). This allows executeMessage to properly decode events emitted during contract execuction.

The return value of this function is an object that contains two entries execution and result. The execution entry contains the field type, which can be either one of

  • onlyQuery: in this case only the rpc method has been executed because an error occurred before submitting an extrinsic
  • extrinsic: an extrinsic has been submitted to execute the message call – in this case the execution object also contains the entries contractEvents (which is the collection of (decoded) contract events that were emitted during contract execution) and the transactionFee that the signer had to pay

The result object contains the entry gasMetrics with the sub entries gasRequired and gasConsumed (both are a Weight). Furthermore, it has the field type which is either one of the following values:

  • "success": in this case the deployment was message call was successful and it contains a return value in the entry value
  • "error": in this case there was a general error when submitting the extrinsic and the return object contains the entry error (a string with an error description)
  • "reverted": in this case the contract reverted and the return object contains the revert message in the entry description
  • "panic": in this case the contract panicked and the return object contains the entries errorCode (a numerical error code) and explanation (an explanation of the error code)

Dry Run a Message Call (Read Message)

The function readMessage has the following arguments:

  • api: the polkadot-js ApiPromise object

    This is the ApiPromise object that polkadot-js creates when connecting to an RPC node of a chain.

  • abi: The abi (metadata) of the smart contract

    This needs to be an object of type Abi. It can be constructed from the metadata JSON file (that is generated by Solang) as follows:

    const metadata = JSON.parse(metadataString);
    new Abi(metadata, api.registry.getChainProperties());
  • contractDeploymentAddress: the address of the contract

    This needs to be the address of a deployed contracts that has the abi specified by abi

  • callerAddress: the address of the caller of the contract

  • messageName: the name of the message

  • messageArguments: the array with the arguments to the message

  • limits: the resource limits

    These limits specify the resources that are allowed to be used for the execution. They need to be specified as the type

    {
      gas: {
        refTime: string | number;
        proofSize: string | number;
      };
      storageDeposit?: string | number;
    }

    The gas.refTime and gas.proofSize entries specify limits of the gas usage. The optional argument storageDeposit specifies a limit for the storage deposit.

The return value of this function contains the entry gasMetrics with the sub entries gasRequired and gasConsumed (both are a Weight). Furthermore, it has the field type which is either one of the following values:

  • "success": in this case the deployment was message call was successful and it contains a return value in the entry value
  • "error": in this case there was a general error when submitting the extrinsic and the return object contains the entry error (a string with an error description)
  • "reverted": in this case the contract reverted and the return object contains the revert message in the entry description
  • "panic": in this case the contract panicked and the return object contains the entries errorCode (a numerical error code) and explanation (an explanation of the error code)

Submit an Extrinsic

Additionally this module also exposes a function signAndSubmitExtrinsic that allows to submit an arbitrary extrinsic and that processes the chain events in order to determine the execution status of the extrinsic.

It has two arguments:

  • extrinsic: the extrinsic itself
  • signer: as for the other two functions this specifies the signer of the extrinsic submitted to the chain.

This function only returns after the extrinsic has been executed on-chain. The return value of this function is an object with the following entries:

  • transactionFee: the transaction fee that the signer had to pay for the execution
  • events: the array of all Substrate events generated during execution
  • status: this is an object whose type entry is either "success" or "error". In the latter case this object also contains the entry error, which is a string of the error message