pub struct TransactionRequest { /* private fields */ }
Expand description
Transaction request supporting ZKsync’s EIP-712 transaction types.
Unlike TransactionRequest
for Ethereum network, it would try to use ZKsync-native
EIP712 transaction type by default, unless explicitly overridden. The reason for that
is that EIP712 transactions have the same capabilities as type 0 and EIP1559
transactions, while being cheaper to process.
Implementations§
source§impl TransactionRequest
impl TransactionRequest
sourcepub fn gas_per_pubdata(&self) -> Option<U256>
pub fn gas_per_pubdata(&self) -> Option<U256>
Get the gas per pubdata for the transaction.
sourcepub fn set_gas_per_pubdata(&mut self, gas_per_pubdata: U256)
pub fn set_gas_per_pubdata(&mut self, gas_per_pubdata: U256)
Set the gas per pubdata for the transaction.
sourcepub fn with_gas_per_pubdata(self, gas_per_pubdata: U256) -> Self
pub fn with_gas_per_pubdata(self, gas_per_pubdata: U256) -> Self
Builder-pattern method for setting gas per pubdata.
sourcepub fn factory_deps(&self) -> Option<&Vec<Bytes>>
pub fn factory_deps(&self) -> Option<&Vec<Bytes>>
Get the factory deps for the transaction.
sourcepub fn set_factory_deps(&mut self, factory_deps: Vec<Bytes>)
pub fn set_factory_deps(&mut self, factory_deps: Vec<Bytes>)
Set the factory deps for the transaction.
sourcepub fn with_factory_deps(self, factory_deps: Vec<Bytes>) -> Self
pub fn with_factory_deps(self, factory_deps: Vec<Bytes>) -> Self
Builder-pattern method for setting factory deps.
sourcepub fn custom_signature(&self) -> Option<&Bytes>
pub fn custom_signature(&self) -> Option<&Bytes>
Get the custom signature for the transaction.
sourcepub fn set_custom_signature(&mut self, custom_signature: Bytes)
pub fn set_custom_signature(&mut self, custom_signature: Bytes)
Set the custom signature for the transaction.
sourcepub fn with_custom_signature(self, custom_signature: Bytes) -> Self
pub fn with_custom_signature(self, custom_signature: Bytes) -> Self
Builder-pattern method for setting custom signature.
sourcepub fn paymaster_params(&self) -> Option<&PaymasterParams>
pub fn paymaster_params(&self) -> Option<&PaymasterParams>
Get the paymaster params for the transaction.
sourcepub fn set_paymaster_params(&mut self, paymaster_params: PaymasterParams)
pub fn set_paymaster_params(&mut self, paymaster_params: PaymasterParams)
Set the paymaster params for the transaction.
sourcepub fn with_paymaster_params(self, paymaster_params: PaymasterParams) -> Self
pub fn with_paymaster_params(self, paymaster_params: PaymasterParams) -> Self
Builder-pattern method for setting paymaster params.
source§impl TransactionRequest
impl TransactionRequest
pub fn set_paymaster(&mut self, paymaster_params: PaymasterParams)
set_paymaster_params
insteadpub fn with_paymaster(self, paymaster_params: PaymasterParams) -> Self
with_paymaster_params
insteadpub fn zksync_deploy( self, code: Vec<u8>, constructor_data: Vec<u8>, factory_deps: Vec<Vec<u8>>, ) -> Result<Self, BytecodeHashError>
with_create_params
insteadpub fn zksync_deploy_with_salt( self, salt: B256, code: Vec<u8>, constructor_data: Vec<u8>, factory_deps: Vec<Vec<u8>>, ) -> Result<Self, BytecodeHashError>
with_create2_params
insteadTrait Implementations§
source§impl Clone for TransactionRequest
impl Clone for TransactionRequest
source§fn clone(&self) -> TransactionRequest
fn clone(&self) -> TransactionRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TransactionRequest
impl Debug for TransactionRequest
source§impl Default for TransactionRequest
impl Default for TransactionRequest
source§impl<'de> Deserialize<'de> for TransactionRequest
impl<'de> Deserialize<'de> for TransactionRequest
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>,
source§impl From<TransactionRequest> for TransactionRequest
impl From<TransactionRequest> for TransactionRequest
source§impl From<TxEnvelope> for TransactionRequest
impl From<TxEnvelope> for TransactionRequest
source§fn from(value: TxEnvelope) -> Self
fn from(value: TxEnvelope) -> Self
source§impl From<TypedTransaction> for TransactionRequest
impl From<TypedTransaction> for TransactionRequest
source§fn from(value: TypedTransaction) -> Self
fn from(value: TypedTransaction) -> Self
source§impl Serialize for TransactionRequest
impl Serialize for TransactionRequest
source§impl TransactionBuilder<Zksync> for TransactionRequest
impl TransactionBuilder<Zksync> for TransactionRequest
source§fn set_chain_id(&mut self, chain_id: ChainId)
fn set_chain_id(&mut self, chain_id: ChainId)
source§fn clear_kind(&mut self)
fn clear_kind(&mut self)
source§fn set_gas_price(&mut self, gas_price: u128)
fn set_gas_price(&mut self, gas_price: u128)
source§fn max_fee_per_gas(&self) -> Option<u128>
fn max_fee_per_gas(&self) -> Option<u128>
source§fn set_max_fee_per_gas(&mut self, max_fee_per_gas: u128)
fn set_max_fee_per_gas(&mut self, max_fee_per_gas: u128)
source§fn max_priority_fee_per_gas(&self) -> Option<u128>
fn max_priority_fee_per_gas(&self) -> Option<u128>
source§fn set_max_priority_fee_per_gas(&mut self, max_priority_fee_per_gas: u128)
fn set_max_priority_fee_per_gas(&mut self, max_priority_fee_per_gas: u128)
source§fn set_gas_limit(&mut self, gas_limit: u64)
fn set_gas_limit(&mut self, gas_limit: u64)
source§fn access_list(&self) -> Option<&AccessList>
fn access_list(&self) -> Option<&AccessList>
source§fn set_access_list(&mut self, access_list: AccessList)
fn set_access_list(&mut self, access_list: AccessList)
source§fn complete_type(
&self,
ty: <Zksync as Network>::TxType,
) -> Result<(), Vec<&'static str>>
fn complete_type( &self, ty: <Zksync as Network>::TxType, ) -> Result<(), Vec<&'static str>>
source§fn can_submit(&self) -> bool
fn can_submit(&self) -> bool
eth_sendTransaction
endpoint.source§fn can_build(&self) -> bool
fn can_build(&self) -> bool
source§fn output_tx_type(&self) -> <Zksync as Network>::TxType
fn output_tx_type(&self) -> <Zksync as Network>::TxType
source§fn output_tx_type_checked(&self) -> Option<<Zksync as Network>::TxType>
fn output_tx_type_checked(&self) -> Option<<Zksync as Network>::TxType>
None
if
the builder is not ready to build.source§fn prep_for_submission(&mut self)
fn prep_for_submission(&mut self)
source§fn build_unsigned(self) -> BuildResult<TypedTransaction, Zksync>
fn build_unsigned(self) -> BuildResult<TypedTransaction, Zksync>
source§async fn build<W: NetworkWallet<Zksync>>(
self,
wallet: &W,
) -> Result<<Zksync as Network>::TxEnvelope, TransactionBuilderError<Zksync>>
async fn build<W: NetworkWallet<Zksync>>( self, wallet: &W, ) -> Result<<Zksync as Network>::TxEnvelope, TransactionBuilderError<Zksync>>
§fn with_chain_id(self, chain_id: u64) -> Self
fn with_chain_id(self, chain_id: u64) -> Self
§fn with_nonce(self, nonce: u64) -> Self
fn with_nonce(self, nonce: u64) -> Self
§fn with_input<T>(self, input: T) -> Selfwhere
T: Into<Bytes>,
fn with_input<T>(self, input: T) -> Selfwhere
T: Into<Bytes>,
§fn with_kind(self, kind: TxKind) -> Self
fn with_kind(self, kind: TxKind) -> Self
§fn set_create(&mut self)
fn set_create(&mut self)
to
field to a create call.§fn into_create(self) -> Self
fn into_create(self) -> Self
to
field to a create call.§fn set_deploy_code<T>(&mut self, code: T)where
T: Into<Bytes>,
fn set_deploy_code<T>(&mut self, code: T)where
T: Into<Bytes>,
to
field to [TxKind::Create
].§fn with_deploy_code<T>(self, code: T) -> Selfwhere
T: Into<Bytes>,
fn with_deploy_code<T>(self, code: T) -> Selfwhere
T: Into<Bytes>,
to
field to [TxKind::Create
].§fn set_call<T>(&mut self, t: &T)where
T: SolCall,
fn set_call<T>(&mut self, t: &T)where
T: SolCall,
to
field
if it is set to [TxKind::Create
].§fn calculate_create_address(&self) -> Option<Address>
fn calculate_create_address(&self) -> Option<Address>
§fn with_value(self, value: Uint<256, 4>) -> Self
fn with_value(self, value: Uint<256, 4>) -> Self
§fn with_gas_price(self, gas_price: u128) -> Self
fn with_gas_price(self, gas_price: u128) -> Self
§fn with_max_fee_per_gas(self, max_fee_per_gas: u128) -> Self
fn with_max_fee_per_gas(self, max_fee_per_gas: u128) -> Self
§fn with_max_priority_fee_per_gas(self, max_priority_fee_per_gas: u128) -> Self
fn with_max_priority_fee_per_gas(self, max_priority_fee_per_gas: u128) -> Self
§fn with_gas_limit(self, gas_limit: u64) -> Self
fn with_gas_limit(self, gas_limit: u64) -> Self
§fn with_access_list(self, access_list: AccessList) -> Self
fn with_access_list(self, access_list: AccessList) -> Self
§fn complete_preferred(&self) -> Result<(), Vec<&'static str>>
fn complete_preferred(&self) -> Result<(), Vec<&'static str>>
§fn assert_preferred(&self, ty: <N as Network>::TxType)
fn assert_preferred(&self, ty: <N as Network>::TxType)
dbg_assert_eq!
to check the builder status, and will have no affect
in release builds.§fn assert_preferred_chained(self, ty: <N as Network>::TxType) -> Self
fn assert_preferred_chained(self, ty: <N as Network>::TxType) -> Self
dbg_assert_eq!
to check the builder status, and will have no affect
in release builds.Auto Trait Implementations§
impl !Freeze for TransactionRequest
impl RefUnwindSafe for TransactionRequest
impl Send for TransactionRequest
impl Sync for TransactionRequest
impl Unpin for TransactionRequest
impl UnwindSafe for TransactionRequest
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
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>
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