Sent escrow information

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

Properties

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