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

Hierarchy (view full)

Properties

callerId: string

Base58Check encoded tagged pubkey

callerNonce: string
contractId: string

Base58Check encoded tagged pubkey

gasPrice: bigint
gasUsed: number
height: number
log: Event[]

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

returnValue: `cb_${string}`

Generated using TypeDoc