interface ContractCallObject {
    callerId: string;
    callerNonce: string;
    contractId: string;
    gasPrice: string;
    gasUsed: string;
    height: string;
    log: Event[];
    returnType: ContractCallReturnType;
    returnValue: string;
}

Properties

callerId: string

Base58Check encoded tagged pubkey

callerNonce: string
contractId: string

Base58Check encoded tagged pubkey

gasPrice: string
gasUsed: string
height: string
log: Event[]

The status of the call 'ok | error | revert'.

returnValue: string

Base64Check encoded tagged byte array

Generated using TypeDoc