neo3 1.1.1

Production-ready Rust SDK for Neo N3 blockchain with high-level API, unified error handling, and enterprise features
Documentation
use crate::{
	deserialize_h256, deserialize_h256_option,
	neo_protocol::{NeoWitness, RTransaction},
	serialize_h256, serialize_h256_option,
};
use primitive_types::H256;
use serde::{Deserialize, Serialize};
use std::num::ParseIntError;

#[derive(Serialize, Deserialize, Clone, Debug)]
pub struct NeoBlock {
	// Transaction, TransactionResult
	#[serde(serialize_with = "serialize_h256")]
	#[serde(deserialize_with = "deserialize_h256")]
	pub hash: H256,
	pub size: i32,
	pub version: i32,
	#[serde(serialize_with = "serialize_h256")]
	#[serde(deserialize_with = "deserialize_h256")]
	#[serde(rename = "previousblockhash")]
	pub prev_block_hash: H256,
	#[serde(serialize_with = "serialize_h256")]
	#[serde(deserialize_with = "deserialize_h256")]
	#[serde(rename = "merkleroot")]
	pub merkle_root_hash: H256,
	pub time: u64,
	pub nonce: String,
	pub index: u32,
	pub primary: Option<i32>,
	#[serde(rename = "nextconsensus")]
	pub next_consensus: String,
	pub witnesses: Option<Vec<NeoWitness>>,
	#[serde(rename = "tx", default = "default_transactions")]
	pub transactions: Option<Vec<RTransaction>>,
	pub confirmations: i32,
	#[serde(serialize_with = "serialize_h256_option")]
	#[serde(deserialize_with = "deserialize_h256_option")]
	#[serde(rename = "nextblockhash")]
	pub next_block_hash: Option<H256>,
}

impl NeoBlock {
	// Method to convert nonce from hexadecimal string to u64
	pub fn get_nonce_as_u64(&self) -> Result<u64, ParseIntError> {
		u64::from_str_radix(&self.nonce, 16)
	}
}

impl std::hash::Hash for NeoBlock {
	fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
		self.hash.hash(state);
		self.size.hash(state);
		self.version.hash(state);
		self.prev_block_hash.hash(state);
		self.merkle_root_hash.hash(state);
		self.time.hash(state);
		self.nonce.hash(state);
		self.index.hash(state);
		self.primary.hash(state);
		self.next_consensus.hash(state);
		self.witnesses.hash(state);
		// Skip transactions as RTransaction doesn't implement Hash
		self.confirmations.hash(state);
		self.next_block_hash.hash(state);
	}
}

fn default_transactions() -> Option<Vec<RTransaction>> {
	Some(Vec::new())
}