Skip to main content

helium_api/models/transactions/
state_channel_open_v1.rs

1use crate::models::Hnt;
2use serde::{Deserialize, Serialize};
3
4#[derive(Clone, Serialize, Deserialize, Debug)]
5pub struct StateChannelOpenV1 {
6    pub id: String,
7    pub fee: u64,
8    pub oui: u64,
9    pub hash: String,
10    pub nonce: u64,
11    pub owner: String,
12    pub amount: Hnt,
13    pub expire_within: u64,
14}