interface CallContractResult {
    abiVersion?: AbiVersion;
    amount?: number | BigNumber;
    callData?: `cb_${string}`;
    callerNonce?: number;
    contract?: `ct_${string}`;
    gasPrice?: number | BigNumber;
    gasUsed?: number | BigNumber;
    height?: number;
    log?: any;
    returnType?: ContractCallReturnType;
    returnValue?: any;
}

Hierarchy (view full)

Properties

abiVersion?: AbiVersion

Version of the ABI

amount?: number | BigNumber

Amount the caller of the contract commits to it

callData?: `cb_${string}`

ABI encoded compiled AEVM call data for the code

callerNonce?: number
contract?: `ct_${string}`

Address of the contract to call

gasPrice?: number | BigNumber
gasUsed?: number | BigNumber
height?: number
log?: any
returnValue?: any

Generated using TypeDoc