Claimable escrow information

interface ClaimableEscrow {
    balance: string;
    deposits: {
        amount: string;
        from: string;
        message?: string;
        timestamp: number;
    }[];
    escrowAddress: string;
    expired: boolean;
    expiryTimestamp: number;
    platform: "github" | "twitter" | "telegram";
    username: string;
}

Properties

balance: string
deposits: {
    amount: string;
    from: string;
    message?: string;
    timestamp: number;
}[]
escrowAddress: string
expired: boolean
expiryTimestamp: number
platform: "github" | "twitter" | "telegram"
username: string