interface RPCLog {
    blockHash: string;
    blockNumber: number;
    contractAddress: string;
    createdContracts: CreatedContract[];
    cumulativeGasUsed: number;
    destructedContracts: any[];
    excepted: string;
    exceptedMessage: string;
    from: string;
    gasUsed: number;
    log: EVMLog[];
    outputIndex: number;
    stateRoot: string;
    to: string;
    transactionHash: string;
    transactionIndex: number;
    utxoRoot: string;
}

Properties

blockHash: string
blockNumber: number
contractAddress: string
createdContracts: CreatedContract[]
cumulativeGasUsed: number
destructedContracts: any[]
excepted: string
exceptedMessage: string
from: string
gasUsed: number
log: EVMLog[]
outputIndex: number
stateRoot: string
to: string
transactionHash: string
transactionIndex: number
utxoRoot: string