Type alias ContractInterface

ContractInterface: {
    contractName: H.ContractName;
    entrypointNames: Set<H.EntrypointName>;
}

Interface of a smart contract containing the name of the contract and every entrypoint.

Type declaration

  • contractName: H.ContractName

    The name of the smart contract. Note: This does not including the 'init_' prefix.

  • entrypointNames: Set<H.EntrypointName>

    A set of entrypoints exposed by the smart contract. Note: These do not include the '.' prefix.

Generated using TypeDoc