maestro-rust-sdk 1.0.0

Rust SDK for the Maestro Dapp Platform
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use crate::utils;
use serde::Deserialize;

#[derive(Deserialize)]
pub struct Epoch {
    pub blk_count: i32,
    pub epoch_no: i32,
    pub fees: i32,
    pub start_time: i32,
    pub tx_count: i32,
}

#[derive(Deserialize)]
pub struct EpochResp {
    pub data: Epoch,
    pub last_updated: utils::LastUpdated,
}