0.90.104 • Published 6 years ago

@plugnet/api-contract v0.90.104

Weekly downloads
9
License
Apache-2.0
Repository
github
Last release
6 years ago

@polkadot/api-contract

Interfaces to allow for the encoding and decoding of Substrate contract ABIs.

import { Abi } from '@plugnet/api-contract';

const abi = new Abi(<...JSON ABI...>);

api.tx.contracts
  .call(<contract addr>, <value>, <max gas>, abi.messages.<method name>(<...params...>))
  .signAndSend(<keyring pair>, (result: SubmittableResult) => { ... });