Contract provides a way to interact with the contract program type.

Hierarchy

  • Contract

    Implements

    Constructors

    • Creates an instance of the Contract class.

      Parameters

      Returns Contract

    Properties

    account: null | Account

    The account associated with the contract, if available.

    functions: InvokeFunctions = {}

    A collection of functions available on the contract.

    The unique contract identifier.

    interface: Interface

    The contract's ABI interface.

    provider: Provider

    The provider for interacting with the contract.

    Methods

    • Build a function invocation scope for the provided function fragment.

      Parameters

      Returns InvokeFunction<any[], any>

      A function that creates a FunctionInvocationScope.

    • Get the balance for a given asset ID for this contract.

      Parameters

      Returns Promise<BN>

      The balance of the contract for the specified asset.

    ""