Struct alloy_zksync::node_bindings::AnvilZKsync
source · pub struct AnvilZKsync { /* private fields */ }
Expand description
Builder for launching anvil-zksync
.
§Panics
If spawn
is called without anvil-zksync
being available in the user’s $PATH
§Example
use alloy_zksync::node_bindings::AnvilZKsync;
let port = 8545u16;
let url = format!("http://localhost:{}", port).to_string();
let anvil_zksync = AnvilZKsync::new()
.port(port)
.spawn();
drop(anvil_zksync); // this will kill the instance
Implementations§
source§impl AnvilZKsync
impl AnvilZKsync
sourcepub fn new() -> Self
pub fn new() -> Self
Creates an empty AnvilZKsync builder. The default port is 8545. The mnemonic is chosen randomly.
§Example
fn a() {
let anvil_zksync = AnvilZKsync::default().spawn();
println!("AnvilZKsync running at `{}`", anvil_zksync.endpoint());
sourcepub fn at(path: impl Into<PathBuf>) -> Self
pub fn at(path: impl Into<PathBuf>) -> Self
Creates an AnvilZKsync builder which will execute anvil-zksync
at the given path.
§Example
fn a() {
let anvil_zksync = AnvilZKsync::at("~/some/location/anvil-zksync").spawn();
println!("AnvilZKsync running at `{}`", anvil_zksync.endpoint());
sourcepub fn path<T: Into<PathBuf>>(self, path: T) -> Self
pub fn path<T: Into<PathBuf>>(self, path: T) -> Self
Sets the path
to the anvil-zksync
cli
By default, it’s expected that anvil-zksync
is in $PATH
, see also
std::process::Command::new()
sourcepub fn port<T: Into<u16>>(self, port: T) -> Self
pub fn port<T: Into<u16>>(self, port: T) -> Self
Sets the port which will be used when the anvil-zksync
instance is launched.
sourcepub const fn chain_id(self, chain_id: u64) -> Self
pub const fn chain_id(self, chain_id: u64) -> Self
Sets the chain_id the anvil-zksync
instance will use.
sourcepub const fn no_mine(self) -> Self
pub const fn no_mine(self) -> Self
Sets the no-mine status which will be used when the era_test_node
instance is launched.
sourcepub fn mnemonic<T: Into<String>>(self, mnemonic: T) -> Self
pub fn mnemonic<T: Into<String>>(self, mnemonic: T) -> Self
Sets the mnemonic which will be used when the anvil-zksync
instance is launched.
sourcepub const fn block_time(self, block_time: u64) -> Self
pub const fn block_time(self, block_time: u64) -> Self
Sets the block-time in seconds which will be used when the anvil-zksync
instance is launched.
sourcepub const fn fork_block_number(self, fork_block_number: u64) -> Self
pub const fn fork_block_number(self, fork_block_number: u64) -> Self
Sets the fork-block-number
which will be used in addition to Self::fork
.
Note: if set, then this requires fork
to be set as well
sourcepub fn fork<T: Into<String>>(self, fork: T) -> Self
pub fn fork<T: Into<String>>(self, fork: T) -> Self
Sets the fork
argument to fork from another currently running Ethereum client
at a given block. Input should be the HTTP location and port of the other client,
e.g. http://localhost:8545
. You can optionally specify the block to fork from
using an @ sign: http://localhost:8545@1599200
sourcepub fn arg<T: Into<String>>(self, arg: T) -> Self
pub fn arg<T: Into<String>>(self, arg: T) -> Self
Adds an argument to pass to the anvil-zksync
.
sourcepub const fn timeout(self, timeout: u64) -> Self
pub const fn timeout(self, timeout: u64) -> Self
Sets the timeout which will be used when the anvil-zksync
instance is launched.
sourcepub fn spawn(self) -> AnvilZKsyncInstance
pub fn spawn(self) -> AnvilZKsyncInstance
sourcepub fn try_spawn(self) -> Result<AnvilZKsyncInstance, AnvilZKsyncError>
pub fn try_spawn(self) -> Result<AnvilZKsyncInstance, AnvilZKsyncError>
Consumes the builder and spawns anvil-zksync
. If spawning fails, returns an error.
Trait Implementations§
source§impl Clone for AnvilZKsync
impl Clone for AnvilZKsync
source§fn clone(&self) -> AnvilZKsync
fn clone(&self) -> AnvilZKsync
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AnvilZKsync
impl Debug for AnvilZKsync
source§impl Default for AnvilZKsync
impl Default for AnvilZKsync
source§fn default() -> AnvilZKsync
fn default() -> AnvilZKsync
source§impl From<AnvilZKsync> for AnvilZKsyncLayer
impl From<AnvilZKsync> for AnvilZKsyncLayer
source§fn from(anvil: AnvilZKsync) -> Self
fn from(anvil: AnvilZKsync) -> Self
Auto Trait Implementations§
impl Freeze for AnvilZKsync
impl RefUnwindSafe for AnvilZKsync
impl Send for AnvilZKsync
impl Sync for AnvilZKsync
impl Unpin for AnvilZKsync
impl UnwindSafe for AnvilZKsync
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