pub struct SignedTransaction {
pub transaction: Transaction,
pub signature: Signature,
/* private fields */
}Fields§
§transaction: Transaction§signature: SignatureImplementations§
source§impl SignedTransaction
impl SignedTransaction
This block implements a set of helper functions to create transactions for testing purposes.
sourcepub fn from_actions(
nonce: u64,
signer_id: AccountId,
receiver_id: AccountId,
signer: &Signer,
actions: Vec<Action>,
block_hash: CryptoHash,
_priority_fee: u64,
) -> SignedTransaction
pub fn from_actions( nonce: u64, signer_id: AccountId, receiver_id: AccountId, signer: &Signer, actions: Vec<Action>, block_hash: CryptoHash, _priority_fee: u64, ) -> SignedTransaction
Creates v0 for now because v1 is prohibited in the protocol. Once v1 is allowed, this function should be updated to create v1 transactions.
sourcepub fn from_actions_v1(
nonce: u64,
signer_id: AccountId,
receiver_id: AccountId,
signer: &Signer,
actions: Vec<Action>,
block_hash: CryptoHash,
priority_fee: u64,
) -> SignedTransaction
pub fn from_actions_v1( nonce: u64, signer_id: AccountId, receiver_id: AccountId, signer: &Signer, actions: Vec<Action>, block_hash: CryptoHash, priority_fee: u64, ) -> SignedTransaction
Explicitly create v1 transaction to test in cases where errors are expected.
pub fn send_money( nonce: u64, signer_id: AccountId, receiver_id: AccountId, signer: &Signer, deposit: u128, block_hash: CryptoHash, ) -> SignedTransaction
pub fn stake( nonce: u64, signer_id: AccountId, signer: &Signer, stake: u128, public_key: PublicKey, block_hash: CryptoHash, ) -> SignedTransaction
pub fn create_account( nonce: u64, originator: AccountId, new_account_id: AccountId, amount: u128, public_key: PublicKey, signer: &Signer, block_hash: CryptoHash, ) -> SignedTransaction
pub fn deploy_contract( nonce: u64, contract_id: &AccountId, code: Vec<u8>, signer: &Signer, block_hash: CryptoHash, ) -> SignedTransaction
pub fn create_contract( nonce: u64, originator: AccountId, new_account_id: AccountId, code: Vec<u8>, amount: u128, public_key: PublicKey, signer: &Signer, block_hash: CryptoHash, ) -> SignedTransaction
pub fn call( nonce: u64, signer_id: AccountId, receiver_id: AccountId, signer: &Signer, deposit: u128, method_name: String, args: Vec<u8>, gas: u64, block_hash: CryptoHash, ) -> SignedTransaction
pub fn delete_account( nonce: u64, signer_id: AccountId, receiver_id: AccountId, beneficiary_id: AccountId, signer: &Signer, block_hash: CryptoHash, ) -> SignedTransaction
pub fn empty(block_hash: CryptoHash) -> SignedTransaction
source§impl SignedTransaction
impl SignedTransaction
pub fn new(signature: Signature, transaction: Transaction) -> SignedTransaction
pub fn init(&mut self)
pub fn get_hash(&self) -> CryptoHash
pub fn get_size(&self) -> u64
Trait Implementations§
source§impl Borrow<CryptoHash> for SignedTransaction
impl Borrow<CryptoHash> for SignedTransaction
source§fn borrow(&self) -> &CryptoHash
fn borrow(&self) -> &CryptoHash
Immutably borrows from an owned value. Read more
source§impl BorshDeserialize for SignedTransaction
impl BorshDeserialize for SignedTransaction
fn deserialize_reader<__R>(reader: &mut __R) -> Result<SignedTransaction, Error>where
__R: Read,
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl BorshSerialize for SignedTransaction
impl BorshSerialize for SignedTransaction
source§impl Clone for SignedTransaction
impl Clone for SignedTransaction
source§fn clone(&self) -> SignedTransaction
fn clone(&self) -> SignedTransaction
Returns a copy of the value. Read more
1.0.0 · 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 SignedTransaction
impl Debug for SignedTransaction
source§impl<'de> Deserialize<'de> for SignedTransaction
impl<'de> Deserialize<'de> for SignedTransaction
source§fn deserialize<D>(
deserializer: D,
) -> Result<SignedTransaction, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D,
) -> Result<SignedTransaction, <D as Deserializer<'de>>::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<SignedTransaction> for TransactionInfo
impl From<SignedTransaction> for TransactionInfo
source§fn from(transaction_info: SignedTransaction) -> TransactionInfo
fn from(transaction_info: SignedTransaction) -> TransactionInfo
Converts to this type from the input type.
source§impl Hash for SignedTransaction
impl Hash for SignedTransaction
source§impl PartialEq for SignedTransaction
impl PartialEq for SignedTransaction
source§impl Serialize for SignedTransaction
impl Serialize for SignedTransaction
source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for SignedTransaction
Auto Trait Implementations§
impl Freeze for SignedTransaction
impl RefUnwindSafe for SignedTransaction
impl Send for SignedTransaction
impl Sync for SignedTransaction
impl Unpin for SignedTransaction
impl UnwindSafe for SignedTransaction
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more