Describes a token withdrawal or deposit, along with the underlying raw cross chain message behind the deposit or withdrawal.

interface TokenBridgeMessage {
    amount: BigNumber;
    blockNumber: number;
    data: string;
    direction: MessageDirection;
    from: string;
    l1Token: string;
    l2Token: string;
    logIndex: number;
    to: string;
    transactionHash: string;
}

Properties

amount: BigNumber
blockNumber: number
data: string
direction: MessageDirection
from: string
l1Token: string
l2Token: string
logIndex: number
to: string
transactionHash: string

Generated using TypeDoc