Contract

The Contract type represents a smart contract.

interface Contract {
  address: string;
  type: ContractType;
}

Properties

  • address: string

    • A contract address.

  • type: ContractType

    • A contract type.

Last updated