Represents a L2 to L1 transaction log.

interface L2ToL1Log {
    blockHash: string;
    blockNumber: number;
    isService: boolean;
    key: string;
    l1BatchNumber: number;
    logIndex: number;
    sender: string;
    shardId: number;
    transactionHash: string;
    transactionIndex: number;
    value: string;
}

Properties

blockHash: string
blockNumber: number
isService: boolean
key: string
l1BatchNumber: number
logIndex: number
sender: string
shardId: number
transactionHash: string
transactionIndex: number
value: string