Escrow balance information

interface EscrowBalance {
    balance: string;
    deposits: {
        amount: string;
        from: string;
        message?: string;
        timestamp: number;
    }[];
    escrowAddress: string;
    exists: boolean;
    expired: boolean;
    expiryTimestamp: number;
}

Properties

balance: string
deposits: {
    amount: string;
    from: string;
    message?: string;
    timestamp: number;
}[]
escrowAddress: string
exists: boolean
expired: boolean
expiryTimestamp: number