helium-api 3.3.1

An async library for the Helium blockchain REST API
Documentation
1
2
3
4
5
6
7
8
9
10
use super::Reward;
use serde::{Deserialize, Serialize};

#[derive(Clone, Serialize, Deserialize, Debug)]
pub struct RewardsV1 {
    pub hash: String,
    pub start_epoch: u64,
    pub end_epoch: u64,
    pub rewards: Vec<Reward>,
}