Represents a claim made by a user in the RewardKit system.

const claim: RewardKitClaim = {
address: "0x1234567890123456789012345678901234567890",
txHash: "0xabcdef1234567890abcdef1234567890",
timestamp: "1634325000"
};
interface RewardKitClaim {
    address: `0x${string}`;
    txHash: string;
    timestamp: string;
}

Properties

address: `0x${string}` = EthAddressSchema

Address of the user who made the claim

txHash: string = ...

Transaction hash where the claim was made

timestamp: string = ...

Timestamp when the claim was made

MMNEPVFCICPMFPCPTTAAATR