whisky_provider/blockfrost/models/
account.rs

1use serde::Deserialize;
2
3// use crate::provider::maestro::utils::last_updated::LastUpdated;
4
5#[derive(Deserialize, Debug, Clone)]
6pub struct BlockfrostAccountInfo {
7    pub active: bool,
8    pub pool_id: Option<String>,
9    pub controlled_amount: String,
10    pub withdrawable_amount: String,
11    pub withdrawals_sum: String,
12}