interface TransactionLog {
    address: string;
    blockHash: Buffer;
    blockNumber: bigint;
    data: Buffer;
    logIndex: bigint;
    removed: boolean;
    topics: Buffer[];
    transactionHash: Buffer;
    transactionIndex: bigint;
}

Properties

address: string
blockHash: Buffer
blockNumber: bigint
data: Buffer
logIndex: bigint
removed: boolean
topics: Buffer[]
transactionHash: Buffer
transactionIndex: bigint

Generated using TypeDoc