feat: new public transaction kind

This commit is contained in:
Oleksandr Pravdyvyi 2025-07-16 12:31:47 +03:00
parent d76358c37f
commit 14b35a93c0
2 changed files with 11 additions and 0 deletions

View File

@ -5,6 +5,7 @@ pub mod block;
pub mod commitment;
pub mod merkle_tree_public;
pub mod nullifier;
pub mod public_transfer_receipts;
pub mod rpc_primitives;
pub mod transaction;
pub mod utxo_commitment;

View File

@ -0,0 +1,10 @@
use serde::{Deserialize, Serialize};
use crate::merkle_tree_public::TreeHashType;
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct PublicNativeTokenSend {
pub from: TreeHashType,
pub to: TreeHashType,
pub moved_balance: u64,
}