helium_api/models/transactions/transfer_validator_stake_v1.rs
1use crate::models::Hnt;
2use serde::{Deserialize, Serialize};
3
4#[derive(Clone, Serialize, Deserialize, Debug)]
5pub struct TransferValidatorStakeV1 {
6 pub fee: u64,
7 pub hash: String,
8 pub new_address: String,
9 pub new_owner: String,
10 pub new_owner_signature: Option<String>,
11 pub old_address: String,
12 pub old_owner: String,
13 pub old_owner_signature: String,
14 pub payment_amount: Hnt,
15 pub stake_amount: Hnt,
16}