pub struct Transaction {
pub chain_id: ChainId,
pub from: Address,
pub to: Address,
pub amount: Balance,
pub fee: Balance,
pub nonce: Nonce,
}Expand description
Unsigned transaction data (legacy transfer format for backwards compatibility)
Fields§
§chain_id: ChainIdChain ID to prevent replay across networks
from: AddressSender address
to: AddressRecipient address
amount: BalanceAmount to transfer (in smallest unit)
fee: BalanceTransaction fee paid to validator
nonce: NonceSender’s nonce (must match account nonce)
Implementations§
Source§impl Transaction
impl Transaction
Sourcepub fn new(
chain_id: ChainId,
from: Address,
to: Address,
amount: Balance,
fee: Balance,
nonce: Nonce,
) -> Self
pub fn new( chain_id: ChainId, from: Address, to: Address, amount: Balance, fee: Balance, nonce: Nonce, ) -> Self
Create a new transaction
Sourcepub fn signing_hash(&self) -> Hash
pub fn signing_hash(&self) -> Hash
Compute the signing hash for this transaction This is what gets signed by the sender
Sourcepub fn from_bytes(bytes: &[u8]) -> Result<Self, Error>
pub fn from_bytes(bytes: &[u8]) -> Result<Self, Error>
Deserialize transaction from bytes
Sourcepub fn total_cost(&self) -> Balance
pub fn total_cost(&self) -> Balance
Total cost to sender (amount + fee)
Trait Implementations§
Source§impl Clone for Transaction
impl Clone for Transaction
Source§fn clone(&self) -> Transaction
fn clone(&self) -> Transaction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for Transaction
impl Debug for Transaction
Source§impl<'de> Deserialize<'de> for Transaction
impl<'de> Deserialize<'de> for Transaction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for Transaction
impl PartialEq for Transaction
Source§fn eq(&self, other: &Transaction) -> bool
fn eq(&self, other: &Transaction) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for Transaction
impl Serialize for Transaction
impl Eq for Transaction
impl StructuralPartialEq for Transaction
Auto Trait Implementations§
impl Freeze for Transaction
impl RefUnwindSafe for Transaction
impl Send for Transaction
impl Sync for Transaction
impl Unpin for Transaction
impl UnsafeUnpin for Transaction
impl UnwindSafe for Transaction
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more