circles_types/
contracts.rs

1use alloy_primitives::U256;
2use serde::{Deserialize, Serialize};
3
4/// Escrowed Amount and Days Result
5/// Returned by InvitationEscrow.getEscrowedAmountAndDays()
6#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
7pub struct EscrowedAmountAndDays {
8    pub escrowed_amount: U256,
9    pub days_: U256,
10}