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

source

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());
source

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());
source

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()

source

pub fn port<T: Into<u16>>(self, port: T) -> Self

Sets the port which will be used when the anvil-zksync instance is launched.

source

pub const fn chain_id(self, chain_id: u64) -> Self

Sets the chain_id the anvil-zksync instance will use.

source

pub const fn no_mine(self) -> Self

Sets the no-mine status which will be used when the era_test_node instance is launched.

source

pub fn mnemonic<T: Into<String>>(self, mnemonic: T) -> Self

Sets the mnemonic which will be used when the anvil-zksync instance is launched.

source

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.

source

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

source

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

source

pub fn arg<T: Into<String>>(self, arg: T) -> Self

Adds an argument to pass to the anvil-zksync.

source

pub fn args<I, S>(self, args: I) -> Self
where I: IntoIterator<Item = S>, S: Into<String>,

Adds multiple arguments to pass to the anvil-zksync.

source

pub const fn timeout(self, timeout: u64) -> Self

Sets the timeout which will be used when the anvil-zksync instance is launched.

source

pub fn spawn(self) -> AnvilZKsyncInstance

Consumes the builder and spawns anvil-zksync.

§Panics

If spawning the instance fails at any point.

source

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

source§

fn clone(&self) -> AnvilZKsync

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for AnvilZKsync

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for AnvilZKsync

source§

fn default() -> AnvilZKsync

Returns the “default value” for a type. Read more
source§

impl From<AnvilZKsync> for AnvilZKsyncLayer

source§

fn from(anvil: AnvilZKsync) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T