Struct alloy_zksync::provider::DepositExecutor
source · pub struct DepositExecutor<'a, P1, P2>{ /* private fields */ }
Expand description
Type that handles deposit logic for various scenarios: deposit ETH, ERC20 etc.
Implementations§
source§impl<'a, P1, P2> DepositExecutor<'a, P1, P2>
impl<'a, P1, P2> DepositExecutor<'a, P1, P2>
sourcepub fn new(
l1_provider: &'a P1,
l2_provider: &'a P2,
request: &'a DepositRequest,
) -> Self
pub fn new( l1_provider: &'a P1, l2_provider: &'a P2, request: &'a DepositRequest, ) -> Self
Prepares an executor for a particular deposit request.
sourcepub async fn execute(
&self,
) -> Result<L1TransactionReceipt, L1CommunicationError>
pub async fn execute( &self, ) -> Result<L1TransactionReceipt, L1CommunicationError>
Executes specified deposit request. This will handle:
- Approving tokens if necessary.
- Sending the deposit transaction.
- Returning the
L1TransactionReceipt
of the deposit transaction.
Returned receipt can be converted into a pending L2 transaction and awaited
using PendingTransactionBuilder
interface.
§Returns
L1TransactionReceipt of the deposit transaction.
Auto Trait Implementations§
impl<'a, P1, P2> Freeze for DepositExecutor<'a, P1, P2>where
P2: ?Sized,
impl<'a, P1, P2> RefUnwindSafe for DepositExecutor<'a, P1, P2>
impl<'a, P1, P2> Send for DepositExecutor<'a, P1, P2>where
P2: ?Sized,
impl<'a, P1, P2> Sync for DepositExecutor<'a, P1, P2>where
P2: ?Sized,
impl<'a, P1, P2> Unpin for DepositExecutor<'a, P1, P2>where
P2: ?Sized,
impl<'a, P1, P2> UnwindSafe for DepositExecutor<'a, P1, P2>
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
§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>
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