1
2
3
4
5
6
7
8
9
10
11
12
13
use cfx_types::{U256, U64};
use serde::{Deserialize, Serialize};

#[derive(Debug, Serialize, Clone, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PoSEconomics {
    // This is the total number of CFX used for pos staking.
    pub total_pos_staking_tokens: U256,
    // This is the total distributable interest.
    pub distributable_pos_interest: U256,
    // This is the block number of last .
    pub last_distribute_block: U64,
}