Struct zksync_web3_rs::contract::ContractDeploymentTx
source · pub struct ContractDeploymentTx<B, M, C> {
pub deployer: Deployer<B, M>,
/* private fields */
}Expand description
Helper which manages the deployment transaction of a smart contract. It wraps a deployment transaction, and retrieves the contract address output by it.
Currently, we recommend using the ContractDeployer type alias.
Fields§
§deployer: Deployer<B, M>the actual deployer, exposed for overriding the defaults
Implementations§
source§impl<B, M, C> ContractDeploymentTx<B, M, C>where
B: Borrow<M> + Clone,
M: Middleware,
C: From<ContractInstance<B, M>>,
impl<B, M, C> ContractDeploymentTx<B, M, C>where B: Borrow<M> + Clone, M: Middleware, C: From<ContractInstance<B, M>>,
sourcepub fn new(deployer: Deployer<B, M>) -> ContractDeploymentTx<B, M, C>
pub fn new(deployer: Deployer<B, M>) -> ContractDeploymentTx<B, M, C>
Create a new instance of this from a deployer.
sourcepub fn confirmations<T>(self, confirmations: T) -> ContractDeploymentTx<B, M, C>where
T: Into<usize>,
pub fn confirmations<T>(self, confirmations: T) -> ContractDeploymentTx<B, M, C>where T: Into<usize>,
Sets the number of confirmations to wait for the contract deployment transaction
sourcepub fn block<T>(self, block: T) -> ContractDeploymentTx<B, M, C>where
T: Into<BlockNumber>,
pub fn block<T>(self, block: T) -> ContractDeploymentTx<B, M, C>where T: Into<BlockNumber>,
Sets the block at which RPC requests are made
sourcepub fn legacy(self) -> ContractDeploymentTx<B, M, C>
pub fn legacy(self) -> ContractDeploymentTx<B, M, C>
Uses a Legacy transaction instead of an EIP-1559 one to do the deployment
sourcepub fn from<T>(self, from: T) -> ContractDeploymentTx<B, M, C>where
T: Into<H160>,
pub fn from<T>(self, from: T) -> ContractDeploymentTx<B, M, C>where T: Into<H160>,
Sets the from field in the deploy transaction to the provided value
sourcepub fn to<T>(self, to: T) -> ContractDeploymentTx<B, M, C>where
T: Into<NameOrAddress>,
pub fn to<T>(self, to: T) -> ContractDeploymentTx<B, M, C>where T: Into<NameOrAddress>,
Sets the to field in the deploy transaction to the provided value
sourcepub fn gas<T>(self, gas: T) -> ContractDeploymentTx<B, M, C>where
T: Into<U256>,
pub fn gas<T>(self, gas: T) -> ContractDeploymentTx<B, M, C>where T: Into<U256>,
Sets the gas field in the deploy transaction to the provided value
sourcepub fn gas_price<T>(self, gas_price: T) -> ContractDeploymentTx<B, M, C>where
T: Into<U256>,
pub fn gas_price<T>(self, gas_price: T) -> ContractDeploymentTx<B, M, C>where T: Into<U256>,
Sets the gas_price field in the deploy transaction to the provided value
sourcepub fn value<T>(self, value: T) -> ContractDeploymentTx<B, M, C>where
T: Into<U256>,
pub fn value<T>(self, value: T) -> ContractDeploymentTx<B, M, C>where T: Into<U256>,
Sets the value field in the deploy transaction to the provided value
sourcepub fn data<T>(self, data: T) -> ContractDeploymentTx<B, M, C>where
T: Into<Bytes>,
pub fn data<T>(self, data: T) -> ContractDeploymentTx<B, M, C>where T: Into<Bytes>,
Sets the data field in the deploy transaction to the provided value
sourcepub fn nonce<T>(self, nonce: T) -> ContractDeploymentTx<B, M, C>where
T: Into<U256>,
pub fn nonce<T>(self, nonce: T) -> ContractDeploymentTx<B, M, C>where T: Into<U256>,
Sets the nonce field in the deploy transaction to the provided value
sourcepub fn chain_id<T>(self, chain_id: T) -> ContractDeploymentTx<B, M, C>where
T: Into<U64>,
pub fn chain_id<T>(self, chain_id: T) -> ContractDeploymentTx<B, M, C>where T: Into<U64>,
Sets the chain_id field in the deploy transaction to the provided value
sourcepub async fn call(&self) -> impl Future<Output = Result<(), ContractError<M>>>
pub async fn call(&self) -> impl Future<Output = Result<(), ContractError<M>>>
Dry runs the deployment of the contract
Note: this function does not send a transaction from your account
sourcepub fn call_raw(&self) -> CallBuilder<'_, <M as Middleware>::Provider> ⓘ
pub fn call_raw(&self) -> CallBuilder<'_, <M as Middleware>::Provider> ⓘ
Returns a CallBuilder, which when awaited executes the deployment of this contract via
eth_call. This call resolves to the returned data which would have been stored at the
destination address had the deploy transaction been executed via send().
Note: this function does not send a transaction from your account
sourcepub async fn send(self) -> impl Future<Output = Result<C, ContractError<M>>>
pub async fn send(self) -> impl Future<Output = Result<C, ContractError<M>>>
Broadcasts the contract deployment transaction and after waiting for it to be sufficiently confirmed (default: 1), it returns a new instance of the contract type at the deployed contract’s address.
sourcepub async fn send_with_receipt(
self
) -> impl Future<Output = Result<(C, TransactionReceipt), ContractError<M>>>
pub async fn send_with_receipt( self ) -> impl Future<Output = Result<(C, TransactionReceipt), ContractError<M>>>
Broadcasts the contract deployment transaction and after waiting for it to
be sufficiently confirmed (default: 1), it returns a new instance of the contract type at
the deployed contract’s address and the corresponding
[TransactionReceipt].
Trait Implementations§
source§impl<B, M, C> Clone for ContractDeploymentTx<B, M, C>where
B: Clone,
impl<B, M, C> Clone for ContractDeploymentTx<B, M, C>where B: Clone,
source§fn clone(&self) -> ContractDeploymentTx<B, M, C>
fn clone(&self) -> ContractDeploymentTx<B, M, C>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl<B, M, C> From<Deployer<B, M>> for ContractDeploymentTx<B, M, C>
impl<B, M, C> From<Deployer<B, M>> for ContractDeploymentTx<B, M, C>
source§fn from(deployer: Deployer<B, M>) -> ContractDeploymentTx<B, M, C>
fn from(deployer: Deployer<B, M>) -> ContractDeploymentTx<B, M, C>
Auto Trait Implementations§
impl<B, M, C> RefUnwindSafe for ContractDeploymentTx<B, M, C>where B: RefUnwindSafe, C: RefUnwindSafe, M: RefUnwindSafe,
impl<B, M, C> Send for ContractDeploymentTx<B, M, C>where B: Send, C: Send, M: Send,
impl<B, M, C> Sync for ContractDeploymentTx<B, M, C>where B: Sync, C: Sync, M: Sync,
impl<B, M, C> Unpin for ContractDeploymentTx<B, M, C>where B: Unpin, C: Unpin, M: Unpin,
impl<B, M, C> UnwindSafe for ContractDeploymentTx<B, M, C>where B: UnwindSafe, C: UnwindSafe, M: UnwindSafe,
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
§impl<T> Conv for T
impl<T> Conv for T
§impl<T> FmtForward for T
impl<T> FmtForward for T
§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,
self to use its Binary implementation when Debug-formatted.§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,
self to use its Display implementation when
Debug-formatted.§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,
self to use its LowerExp implementation when
Debug-formatted.§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,
self to use its LowerHex implementation when
Debug-formatted.§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,
self to use its Octal implementation when Debug-formatted.§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,
self to use its Pointer implementation when
Debug-formatted.§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,
self to use its UpperExp implementation when
Debug-formatted.§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,
self to use its UpperHex implementation when
Debug-formatted.§fn fmt_list(self) -> FmtList<Self>where
&'a Self: for<'a> IntoIterator,
fn fmt_list(self) -> FmtList<Self>where &'a Self: for<'a> IntoIterator,
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> 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>
§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere T: ?Sized,
§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,
§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,
self and passes that borrow into the pipe function. Read more§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,
§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,
§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,
self, then passes self.as_ref() into the pipe function.§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,
self, then passes self.as_mut() into the pipe
function.§impl<T> Tap for T
impl<T> Tap for T
§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
Borrow<B> of a value. Read more§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
BorrowMut<B> of a value. Read more§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
AsRef<R> view of a value. Read more§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
AsMut<R> view of a value. Read more§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,
Deref::Target of a value. Read more§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,
Deref::Target of a value. Read more§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap() only in debug builds, and is erased in release builds.§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut() only in debug builds, and is erased in release
builds.§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
.tap_borrow() only in debug builds, and is erased in release
builds.§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
.tap_borrow_mut() only in debug builds, and is erased in release
builds.§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
.tap_ref() only in debug builds, and is erased in release
builds.§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
.tap_ref_mut() only in debug builds, and is erased in release
builds.