pub use pausable::*;
/// This module was auto-generated with ethers-rs Abigen.
/// More information at: <https://github.com/gakonst/ethers-rs>
#[allow(
clippy::enum_variant_names,
clippy::too_many_arguments,
clippy::upper_case_acronyms,
clippy::type_complexity,
dead_code,
non_camel_case_types,
)]
pub mod pausable {
#[rustfmt::skip]
const __ABI: &str = "[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\",\"components\":[],\"indexed\":false}],\"type\":\"event\",\"name\":\"Paused\",\"outputs\":[],\"anonymous\":false},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\",\"components\":[],\"indexed\":false}],\"type\":\"event\",\"name\":\"Unpaused\",\"outputs\":[],\"anonymous\":false},{\"inputs\":[],\"stateMutability\":\"view\",\"type\":\"function\",\"name\":\"paused\",\"outputs\":[{\"internalType\":\"bool\",\"name\":\"\",\"type\":\"bool\",\"components\":[]}]}]";
///The parsed JSON ABI of the contract.
pub static PAUSABLE_ABI: ::ethers_contract::Lazy<::ethers_core::abi::Abi> = ::ethers_contract::Lazy::new(||
::ethers_core::utils::__serde_json::from_str(__ABI).expect("ABI is always valid"));
pub struct Pausable<M>(::ethers_contract::Contract<M>);
impl<M> ::core::clone::Clone for Pausable<M> {
fn clone(&self) -> Self {
Self(::core::clone::Clone::clone(&self.0))
}
}
impl<M> ::core::ops::Deref for Pausable<M> {
type Target = ::ethers_contract::Contract<M>;
fn deref(&self) -> &Self::Target {
&self.0
}
}
impl<M> ::core::ops::DerefMut for Pausable<M> {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.0
}
}
impl<M> ::core::fmt::Debug for Pausable<M> {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
f.debug_tuple(stringify!(Pausable)).field(&self.address()).finish()
}
}
impl<M: ::ethers_providers::Middleware> Pausable<M> {
/// Creates a new contract instance with the specified `ethers` client at
/// `address`. The contract derefs to a `ethers::Contract` object.
pub fn new<T: Into<::ethers_core::types::Address>>(
address: T,
client: ::std::sync::Arc<M>,
) -> Self {
Self(
::ethers_contract::Contract::new(
address.into(),
PAUSABLE_ABI.clone(),
client,
),
)
}
///Calls the contract's `paused` (0x5c975abb) function
pub fn paused(&self) -> ::ethers_contract::builders::ContractCall<M, bool> {
self.0
.method_hash([92, 151, 90, 187], ())
.expect("method not found (this should never happen)")
}
///Gets the contract's `Paused` event
pub fn paused_filter(
&self,
) -> ::ethers_contract::builders::Event<::std::sync::Arc<M>, M, PausedFilter> {
self.0.event()
}
///Gets the contract's `Unpaused` event
pub fn unpaused_filter(
&self,
) -> ::ethers_contract::builders::Event<::std::sync::Arc<M>, M, UnpausedFilter> {
self.0.event()
}
/// Returns an `Event` builder for all the events of this contract.
pub fn events(
&self,
) -> ::ethers_contract::builders::Event<::std::sync::Arc<M>, M, PausableEvents> {
self.0.event_with_filter(::core::default::Default::default())
}
}
impl<M: ::ethers_providers::Middleware> From<::ethers_contract::Contract<M>>
for Pausable<M> {
fn from(contract: ::ethers_contract::Contract<M>) -> Self {
Self::new(contract.address(), contract.client())
}
}
#[derive(
Clone,
::ethers_contract::EthEvent,
::ethers_contract::EthDisplay,
Default,
Debug,
PartialEq,
Eq,
Hash
)]
#[ethevent(name = "Paused", abi = "Paused(address)")]
pub struct PausedFilter {
pub account: ::ethers_core::types::Address,
}
#[derive(
Clone,
::ethers_contract::EthEvent,
::ethers_contract::EthDisplay,
Default,
Debug,
PartialEq,
Eq,
Hash
)]
#[ethevent(name = "Unpaused", abi = "Unpaused(address)")]
pub struct UnpausedFilter {
pub account: ::ethers_core::types::Address,
}
///Container type for all of the contract's events
#[derive(Clone, ::ethers_contract::EthAbiType, Debug, PartialEq, Eq, Hash)]
pub enum PausableEvents {
PausedFilter(PausedFilter),
UnpausedFilter(UnpausedFilter),
}
impl ::ethers_contract::EthLogDecode for PausableEvents {
fn decode_log(
log: &::ethers_core::abi::RawLog,
) -> ::core::result::Result<Self, ::ethers_core::abi::Error> {
if let Ok(decoded) = PausedFilter::decode_log(log) {
return Ok(PausableEvents::PausedFilter(decoded));
}
if let Ok(decoded) = UnpausedFilter::decode_log(log) {
return Ok(PausableEvents::UnpausedFilter(decoded));
}
Err(::ethers_core::abi::Error::InvalidData)
}
}
impl ::core::fmt::Display for PausableEvents {
fn fmt(&self, f: &mut ::core::fmt::Formatter<'_>) -> ::core::fmt::Result {
match self {
Self::PausedFilter(element) => ::core::fmt::Display::fmt(element, f),
Self::UnpausedFilter(element) => ::core::fmt::Display::fmt(element, f),
}
}
}
impl ::core::convert::From<PausedFilter> for PausableEvents {
fn from(value: PausedFilter) -> Self {
Self::PausedFilter(value)
}
}
impl ::core::convert::From<UnpausedFilter> for PausableEvents {
fn from(value: UnpausedFilter) -> Self {
Self::UnpausedFilter(value)
}
}
///Container type for all input parameters for the `paused` function with signature `paused()` and selector `0x5c975abb`
#[derive(
Clone,
::ethers_contract::EthCall,
::ethers_contract::EthDisplay,
Default,
Debug,
PartialEq,
Eq,
Hash
)]
#[ethcall(name = "paused", abi = "paused()")]
pub struct PausedCall;
///Container type for all return fields from the `paused` function with signature `paused()` and selector `0x5c975abb`
#[derive(
Clone,
::ethers_contract::EthAbiType,
::ethers_contract::EthAbiCodec,
Default,
Debug,
PartialEq,
Eq,
Hash
)]
pub struct PausedReturn(pub bool);
}