interface AggregateActivityItem {
    date: string;
    redemption?: RedeemRequestDto;
    transaction?: WalletTransactionDto;
    type: "TRANSACTION" | "REDEMPTION";
    walletAddress: string;
}

Properties

date: string

Date of the activity in ISO format

Example

"2025-07-29T07:36:36Z"
redemption?: RedeemRequestDto

Redemption data (only present when type is REDEMPTION)

transaction?: WalletTransactionDto

Transaction data (only present when type is TRANSACTION)

type: "TRANSACTION" | "REDEMPTION"

Type of activity item

walletAddress: string

Wallet address associated with this activity

Example

"0x1234567890123456789012345678901234567890"

Generated using TypeDoc