blockchain_types 0.0.2

Blockchain types for parsing blockchain information
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::common::transaction::{Transaction};

#[allow(dead_code)]
pub struct Address {
    hash: String,
    last_transaction: u32,
    first_transaction: u32,
    coin_total: u64,
    // tx_ids: Vec<Transactions>,
    is_miner: bool,
    last_updated: u32,
    transactions: Option<Vec<Transaction>>
}