MakeContractSendOptions: {
    abi: AbiItem | AbiItem[];
    contractAddress: string;
    gasLimit?: number;
    method: string;
    value: BigNumber;
}

Type declaration

  • abi: AbiItem | AbiItem[]

    The contract ABI.

  • contractAddress: string

    The contract address.

  • Optional gasLimit?: number

    The gas limit for the transaction.

  • method: string

    The method to be called.

  • value: BigNumber

    The value being sent with the transaction.

Generated using TypeDoc