interface WalletTransactionDto {
    amountEth: string;
    amountLsEth: string;
    conversionRate: string;
    date: string;
    finalized: boolean;
    transactionHash: string;
    transactionType: "DEPOSIT" | "REDEEM" | "CLAIM";
}

Properties

amountEth: string

ETH amount involved in the transaction

Example

"1.5"
amountLsEth: string

lsETH amount involved in the transaction

Example

"1.499"
conversionRate: string

ETH to lsETH conversion rate at time of transaction

Example

"1.000879064857666026"
date: string

Transaction date in ISO format

Example

"2025-07-29T07:36:36Z"
finalized: boolean

Whether the transaction is finalized

Example

true
transactionHash: string

Blockchain transaction hash

Example

"0x6911f98fc06e1b834c704f271f234dbeed867d5a745dc0889f7dfd8b79274e3c"
transactionType: "DEPOSIT" | "REDEEM" | "CLAIM"

Type of transaction

Example

"DEPOSIT"

Generated using TypeDoc