interface AbiMetadata {
    authors?: string[];
    build?: BuildInfo;
    name?: string;
    version?: string;
    wasm_hash?: string;
    [k: string]: unknown;
}

Indexable

  • [k: string]: unknown

Properties

authors?: string[]

The authors of the smart contract.

build?: BuildInfo

The information about how this contract was built.

name?: string

The name of the smart contract.

version?: string

The version of the smart contract.

wasm_hash?: string

The SHA-256 hash of the contract WASM code in Base58 format.