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
11
12
13
14
15
16
use crate::models::Hnt;
use serde::{Deserialize, Serialize};

#[derive(Clone, Serialize, Deserialize, Debug)]
pub struct AssertLocationV2 {
    pub hash: String,
    pub fee: u64,
    pub gain: i64,
    pub nonce: u64,
    pub owner: String,
    pub payer: Option<String>,
    pub gateway: String,
    pub location: String,
    pub elevation: i64,
    pub staking_fee: Hnt,
}