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
use serde::{Deserialize, Serialize};

#[derive(Clone, Serialize, Deserialize, Debug)]
pub struct PocRequestV1 {
    pub hash: String,
    pub block_hash: String,
    pub challenger: String,
    pub fee: u64,
    pub onion_key_hash: String,
    pub secret_hash: String,
    pub version: u64,
}