-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(bindings): regenerate contract bindings (#23)
- Loading branch information
Showing
18 changed files
with
24,436 additions
and
964 deletions.
There are no files selected for viewing
Submodule forge-std
updated
39 files
Submodule openzeppelin-contracts
updated
443 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,218 @@ | ||
/** | ||
Generated by the following Solidity interface... | ||
```solidity | ||
interface Context {} | ||
``` | ||
...which was generated by the following JSON ABI: | ||
```json | ||
[] | ||
```*/ | ||
#[allow(non_camel_case_types, non_snake_case, clippy::style)] | ||
pub mod Context { | ||
use super::*; | ||
use alloy::sol_types as alloy_sol_types; | ||
/// The creation / init bytecode of the contract. | ||
/// | ||
/// ```text | ||
///0x | ||
/// ``` | ||
#[rustfmt::skip] | ||
#[allow(clippy::all)] | ||
pub static BYTECODE: alloy_sol_types::private::Bytes = alloy_sol_types::private::Bytes::from_static( | ||
b"", | ||
); | ||
/// The runtime bytecode of the contract, as deployed on the network. | ||
/// | ||
/// ```text | ||
///0x | ||
/// ``` | ||
#[rustfmt::skip] | ||
#[allow(clippy::all)] | ||
pub static DEPLOYED_BYTECODE: alloy_sol_types::private::Bytes = alloy_sol_types::private::Bytes::from_static( | ||
b"", | ||
); | ||
use alloy::contract as alloy_contract; | ||
/**Creates a new wrapper around an on-chain [`Context`](self) contract instance. | ||
See the [wrapper's documentation](`ContextInstance`) for more details.*/ | ||
#[inline] | ||
pub const fn new< | ||
T: alloy_contract::private::Transport + ::core::clone::Clone, | ||
P: alloy_contract::private::Provider<T, N>, | ||
N: alloy_contract::private::Network, | ||
>( | ||
address: alloy_sol_types::private::Address, | ||
provider: P, | ||
) -> ContextInstance<T, P, N> { | ||
ContextInstance::<T, P, N>::new(address, provider) | ||
} | ||
/**Deploys this contract using the given `provider` and constructor arguments, if any. | ||
Returns a new instance of the contract, if the deployment was successful. | ||
For more fine-grained control over the deployment process, use [`deploy_builder`] instead.*/ | ||
#[inline] | ||
pub fn deploy< | ||
T: alloy_contract::private::Transport + ::core::clone::Clone, | ||
P: alloy_contract::private::Provider<T, N>, | ||
N: alloy_contract::private::Network, | ||
>( | ||
provider: P, | ||
) -> impl ::core::future::Future< | ||
Output = alloy_contract::Result<ContextInstance<T, P, N>>, | ||
> { | ||
ContextInstance::<T, P, N>::deploy(provider) | ||
} | ||
/**Creates a `RawCallBuilder` for deploying this contract using the given `provider` | ||
and constructor arguments, if any. | ||
This is a simple wrapper around creating a `RawCallBuilder` with the data set to | ||
the bytecode concatenated with the constructor's ABI-encoded arguments.*/ | ||
#[inline] | ||
pub fn deploy_builder< | ||
T: alloy_contract::private::Transport + ::core::clone::Clone, | ||
P: alloy_contract::private::Provider<T, N>, | ||
N: alloy_contract::private::Network, | ||
>(provider: P) -> alloy_contract::RawCallBuilder<T, P, N> { | ||
ContextInstance::<T, P, N>::deploy_builder(provider) | ||
} | ||
/**A [`Context`](self) instance. | ||
Contains type-safe methods for interacting with an on-chain instance of the | ||
[`Context`](self) contract located at a given `address`, using a given | ||
provider `P`. | ||
If the contract bytecode is available (see the [`sol!`](alloy_sol_types::sol!) | ||
documentation on how to provide it), the `deploy` and `deploy_builder` methods can | ||
be used to deploy a new instance of the contract. | ||
See the [module-level documentation](self) for all the available methods.*/ | ||
#[derive(Clone)] | ||
pub struct ContextInstance<T, P, N = alloy_contract::private::Ethereum> { | ||
address: alloy_sol_types::private::Address, | ||
provider: P, | ||
_network_transport: ::core::marker::PhantomData<(N, T)>, | ||
} | ||
#[automatically_derived] | ||
impl<T, P, N> ::core::fmt::Debug for ContextInstance<T, P, N> { | ||
#[inline] | ||
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result { | ||
f.debug_tuple("ContextInstance").field(&self.address).finish() | ||
} | ||
} | ||
/// Instantiation and getters/setters. | ||
#[automatically_derived] | ||
impl< | ||
T: alloy_contract::private::Transport + ::core::clone::Clone, | ||
P: alloy_contract::private::Provider<T, N>, | ||
N: alloy_contract::private::Network, | ||
> ContextInstance<T, P, N> { | ||
/**Creates a new wrapper around an on-chain [`Context`](self) contract instance. | ||
See the [wrapper's documentation](`ContextInstance`) for more details.*/ | ||
#[inline] | ||
pub const fn new( | ||
address: alloy_sol_types::private::Address, | ||
provider: P, | ||
) -> Self { | ||
Self { | ||
address, | ||
provider, | ||
_network_transport: ::core::marker::PhantomData, | ||
} | ||
} | ||
/**Deploys this contract using the given `provider` and constructor arguments, if any. | ||
Returns a new instance of the contract, if the deployment was successful. | ||
For more fine-grained control over the deployment process, use [`deploy_builder`] instead.*/ | ||
#[inline] | ||
pub async fn deploy( | ||
provider: P, | ||
) -> alloy_contract::Result<ContextInstance<T, P, N>> { | ||
let call_builder = Self::deploy_builder(provider); | ||
let contract_address = call_builder.deploy().await?; | ||
Ok(Self::new(contract_address, call_builder.provider)) | ||
} | ||
/**Creates a `RawCallBuilder` for deploying this contract using the given `provider` | ||
and constructor arguments, if any. | ||
This is a simple wrapper around creating a `RawCallBuilder` with the data set to | ||
the bytecode concatenated with the constructor's ABI-encoded arguments.*/ | ||
#[inline] | ||
pub fn deploy_builder(provider: P) -> alloy_contract::RawCallBuilder<T, P, N> { | ||
alloy_contract::RawCallBuilder::new_raw_deploy( | ||
provider, | ||
::core::clone::Clone::clone(&BYTECODE), | ||
) | ||
} | ||
/// Returns a reference to the address. | ||
#[inline] | ||
pub const fn address(&self) -> &alloy_sol_types::private::Address { | ||
&self.address | ||
} | ||
/// Sets the address. | ||
#[inline] | ||
pub fn set_address(&mut self, address: alloy_sol_types::private::Address) { | ||
self.address = address; | ||
} | ||
/// Sets the address and returns `self`. | ||
pub fn at(mut self, address: alloy_sol_types::private::Address) -> Self { | ||
self.set_address(address); | ||
self | ||
} | ||
/// Returns a reference to the provider. | ||
#[inline] | ||
pub const fn provider(&self) -> &P { | ||
&self.provider | ||
} | ||
} | ||
impl<T, P: ::core::clone::Clone, N> ContextInstance<T, &P, N> { | ||
/// Clones the provider and returns a new instance with the cloned provider. | ||
#[inline] | ||
pub fn with_cloned_provider(self) -> ContextInstance<T, P, N> { | ||
ContextInstance { | ||
address: self.address, | ||
provider: ::core::clone::Clone::clone(&self.provider), | ||
_network_transport: ::core::marker::PhantomData, | ||
} | ||
} | ||
} | ||
/// Function calls. | ||
#[automatically_derived] | ||
impl< | ||
T: alloy_contract::private::Transport + ::core::clone::Clone, | ||
P: alloy_contract::private::Provider<T, N>, | ||
N: alloy_contract::private::Network, | ||
> ContextInstance<T, P, N> { | ||
/// Creates a new call builder using this contract instance's provider and address. | ||
/// | ||
/// Note that the call can be any function call, not just those defined in this | ||
/// contract. Prefer using the other methods for building type-safe contract calls. | ||
pub fn call_builder<C: alloy_sol_types::SolCall>( | ||
&self, | ||
call: &C, | ||
) -> alloy_contract::SolCallBuilder<T, &P, C, N> { | ||
alloy_contract::SolCallBuilder::new_sol(&self.provider, &self.address, call) | ||
} | ||
} | ||
/// Event filters. | ||
#[automatically_derived] | ||
impl< | ||
T: alloy_contract::private::Transport + ::core::clone::Clone, | ||
P: alloy_contract::private::Provider<T, N>, | ||
N: alloy_contract::private::Network, | ||
> ContextInstance<T, P, N> { | ||
/// Creates a new event filter using this contract instance's provider and address. | ||
/// | ||
/// Note that the type can be any event, not just those defined in this contract. | ||
/// Prefer using the other methods for building type-safe event filters. | ||
pub fn event_filter<E: alloy_sol_types::SolEvent>( | ||
&self, | ||
) -> alloy_contract::Event<T, &P, E, N> { | ||
alloy_contract::Event::new_sol(&self.provider, &self.address) | ||
} | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.