Export

ReadContractRequest

interface ReadContractRequest {
    abi?: string;
    args: string;
    method: string;
}

Properties

Properties

abi?: string

The JSON-encoded ABI of the contract method (optional, will use cached ABI if not provided)

Memberof

ReadContractRequest

args: string

The JSON-encoded arguments to pass to the contract method. The keys should be the argument names and the values should be the argument values.

Memberof

ReadContractRequest

method: string

The name of the contract method to call

Memberof

ReadContractRequest