Interface Withdrawal

interface Withdrawal {
    rollup_status: string;
    sender: string;
    status: string;
    timestamp: string;
    token: Token;
    transaction_id: number;
    withdrawn_to_wallet: boolean;
}

Hierarchy

  • Withdrawal
    • Withdrawal

Properties

rollup_status: string

Status of the on-chain batch confirmation for this withdrawal

Withdrawal

sender: string

Ethereum address of the user who requested this withdrawal

Withdrawal

status: string

Status of this withdrawal

Withdrawal

timestamp: string

Time when this withdrawal was initiated

Withdrawal

token: Token

Withdrawal

transaction_id: number

Sequential ID of this transaction

Withdrawal

withdrawn_to_wallet: boolean

Withdrawal has been transferred to user's Layer 1 wallet

Withdrawal