Struct alloy_zksync::provider::DepositRequest
source · pub struct DepositRequest {
pub amount: U256,
pub receiver: Option<Address>,
pub token: Address,
pub bridge_address: Option<Address>,
pub gas_per_pubdata_limit: U256,
pub auto_approval: bool,
}
Expand description
Type for deposit request.
This type only stores the required information for the deposit, while the deposit itself
is performed via DepositExecutor
.
Fields§
§amount: U256
Amount to deposit in Wei.
receiver: Option<Address>
Receiver of deposited assets. If None, the sender address will be used as a receiver.
token: Address
L1 token address to deposit.
bridge_address: Option<Address>
Bridge address for the deposit. If None, default shared bridge will be used.
gas_per_pubdata_limit: U256
Gas per pubdata limit to use in initiated transactions. If None, REQUIRED_L1_TO_L2_GAS_PER_PUBDATA_LIMIT will be used.
auto_approval: bool
Enable or disable automatic submission of ERC20 approval transactions if the allowance is not sufficient.
Implementations§
source§impl DepositRequest
impl DepositRequest
sourcepub fn with_receiver(self, address: Address) -> Self
pub fn with_receiver(self, address: Address) -> Self
Sets the receiver for the deposit.
sourcepub fn with_token(self, token: Address) -> Self
pub fn with_token(self, token: Address) -> Self
Sets the token address for the deposit.
sourcepub fn with_gas_per_pubdata_limit(self, value: U256) -> Self
pub fn with_gas_per_pubdata_limit(self, value: U256) -> Self
Sets the gas per pubdata limit for the transaction.
sourcepub fn with_bridge_address(self, bridge_address: Address) -> Self
pub fn with_bridge_address(self, bridge_address: Address) -> Self
Sets the bridge address.
sourcepub fn with_auto_approval(self, auto_approval: bool) -> Self
pub fn with_auto_approval(self, auto_approval: bool) -> Self
Enables or disables auto-approval for ERC20 tokens.
Trait Implementations§
source§impl Clone for DepositRequest
impl Clone for DepositRequest
source§fn clone(&self) -> DepositRequest
fn clone(&self) -> DepositRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreAuto Trait Implementations§
impl Freeze for DepositRequest
impl RefUnwindSafe for DepositRequest
impl Send for DepositRequest
impl Sync for DepositRequest
impl Unpin for DepositRequest
impl UnwindSafe for DepositRequest
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