interface RedeemDetailsResponse {
    claimableAmountLsEth: string;
    claimedAmountEth: string;
    claimedAmountLsEth: string;
    customerId: string;
    height: number;
    id: number;
    maxRedeemableAmountEth: string;
    owner: string;
    requestedAt: number;
    statusClaim: "NOT_CLAIMED" | "PARTIALLY_CLAIMED" | "FULLY_CLAIMED" | "PENDING_SATISFACTION" | "PARTIALLY_SATISFIED" | "FULLY_SATISFIED";
    statusSatisfaction: "NOT_CLAIMED" | "PARTIALLY_CLAIMED" | "FULLY_CLAIMED" | "PENDING_SATISFACTION" | "PARTIALLY_SATISFIED" | "FULLY_SATISFIED";
    timestamp: string;
    totalAmountLsEth: string;
    withdrawalEventId: number;
}

Properties

claimableAmountLsEth: string

The possible amount available to claim in lsETH (wei)

Example

"1000000000000000000"
claimedAmountEth: string

The amount already claimed in ETH (wei)

Example

"0"
claimedAmountLsEth: string

The amount already claimed in lsETH (wei)

Example

"0"
customerId: string

Customer ID associated with this redemption

Example

"67890abcdef"
height: number

The height is the cumulative sum of all the sizes of preceding redeem requests

Example

100000
id: number

The ID of the redeem request

Example

1234
maxRedeemableAmountEth: string

The maximum amount of ETH redeemable by this request (wei)

Example

"1000000000000000000"
owner: string

The owner of the redeem request

Example

"0x1234...5678"
requestedAt: number

Block number when the request was made

Example

19000000
statusClaim: "NOT_CLAIMED" | "PARTIALLY_CLAIMED" | "FULLY_CLAIMED" | "PENDING_SATISFACTION" | "PARTIALLY_SATISFIED" | "FULLY_SATISFIED"

The status of the claimed request

Example

"NOT_CLAIMED"
statusSatisfaction: "NOT_CLAIMED" | "PARTIALLY_CLAIMED" | "FULLY_CLAIMED" | "PENDING_SATISFACTION" | "PARTIALLY_SATISFIED" | "FULLY_SATISFIED"

The status of the satisfaction (withdrawal stack matching the redeem queue)

Example

"PENDING_SATISFACTION"
timestamp: string

Timestamp when the request was made

Example

"2024-01-20T10:30:00Z"
totalAmountLsEth: string

The amount of the redeem request in lsETH (wei)

Example

"1000000000000000000"
withdrawalEventId: number

The withdrawal event ID needed to claim the redeem (or -1 when no withdrawals available)

Example

123

Generated using TypeDoc