Represents a historical claim reward record

interface ClaimRewardNode {
    id: string;
    user: string;
    amount: string;
    campaign: string;
    chainId: number;
    timestamp: number;
}

Properties

id: string

Unique identifier for the claim

user: string

Address of the user who claimed

amount: string

Amount that was claimed (may include decimals)

campaign: string

Campaign identifier

chainId: number

Chain ID where the claim occurred

timestamp: number

Unix timestamp of when the claim occurred