loom_defi_abi::uniswap2::IUniswapV2Pair

Struct IUniswapV2PairInstance

Source
pub struct IUniswapV2PairInstance<T, P, N = Ethereum> {
    address: Address,
    provider: P,
    _network_transport: PhantomData<(N, T)>,
}
Expand description

A IUniswapV2Pair instance.

Contains type-safe methods for interacting with an on-chain instance of the IUniswapV2Pair contract located at a given address, using a given provider P.

If the contract bytecode is available (see the 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 for all the available methods.

Fields§

§address: Address§provider: P§_network_transport: PhantomData<(N, T)>

Implementations§

Source§

impl<T: Transport + Clone, P: Provider<T, N>, N: Network> IUniswapV2PairInstance<T, P, N>

Instantiation and getters/setters.

Source

pub const fn new(address: Address, provider: P) -> Self

Creates a new wrapper around an on-chain IUniswapV2Pair contract instance.

See the wrapper’s documentation for more details.

Source

pub const fn address(&self) -> &Address

Returns a reference to the address.

Source

pub fn set_address(&mut self, address: Address)

Sets the address.

Source

pub fn at(self, address: Address) -> Self

Sets the address and returns self.

Source

pub const fn provider(&self) -> &P

Returns a reference to the provider.

Source§

impl<T, P: Clone, N> IUniswapV2PairInstance<T, &P, N>

Source

pub fn with_cloned_provider(self) -> IUniswapV2PairInstance<T, P, N>

Clones the provider and returns a new instance with the cloned provider.

Source§

impl<T: Transport + Clone, P: Provider<T, N>, N: Network> IUniswapV2PairInstance<T, P, N>

Function calls.

Source

pub fn call_builder<C: SolCall>(&self, call: &C) -> SolCallBuilder<T, &P, C, 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.

Source

pub fn name(&self) -> SolCallBuilder<T, &P, nameCall, N>

Creates a new call builder for the [name] function.

Source

pub fn symbol(&self) -> SolCallBuilder<T, &P, symbolCall, N>

Creates a new call builder for the [symbol] function.

Source

pub fn decimals(&self) -> SolCallBuilder<T, &P, decimalsCall, N>

Creates a new call builder for the [decimals] function.

Source

pub fn totalSupply(&self) -> SolCallBuilder<T, &P, totalSupplyCall, N>

Creates a new call builder for the [totalSupply] function.

Source

pub fn balanceOf( &self, owner: Address, ) -> SolCallBuilder<T, &P, balanceOfCall, N>

Creates a new call builder for the [balanceOf] function.

Source

pub fn allowance( &self, owner: Address, spender: Address, ) -> SolCallBuilder<T, &P, allowanceCall, N>

Creates a new call builder for the [allowance] function.

Source

pub fn approve( &self, spender: Address, value: U256, ) -> SolCallBuilder<T, &P, approveCall, N>

Creates a new call builder for the [approve] function.

Source

pub fn transfer( &self, to: Address, value: U256, ) -> SolCallBuilder<T, &P, transferCall, N>

Creates a new call builder for the [transfer] function.

Source

pub fn transferFrom( &self, from: Address, to: Address, value: U256, ) -> SolCallBuilder<T, &P, transferFromCall, N>

Creates a new call builder for the [transferFrom] function.

Source

pub fn DOMAIN_SEPARATOR(&self) -> SolCallBuilder<T, &P, DOMAIN_SEPARATORCall, N>

Creates a new call builder for the [DOMAIN_SEPARATOR] function.

Source

pub fn PERMIT_TYPEHASH(&self) -> SolCallBuilder<T, &P, PERMIT_TYPEHASHCall, N>

Creates a new call builder for the [PERMIT_TYPEHASH] function.

Source

pub fn nonces(&self, owner: Address) -> SolCallBuilder<T, &P, noncesCall, N>

Creates a new call builder for the [nonces] function.

Source

pub fn permit( &self, owner: Address, spender: Address, value: U256, deadline: U256, v: u8, r: FixedBytes<32>, s: FixedBytes<32>, ) -> SolCallBuilder<T, &P, permitCall, N>

Creates a new call builder for the [permit] function.

Source

pub fn MINIMUM_LIQUIDITY( &self, ) -> SolCallBuilder<T, &P, MINIMUM_LIQUIDITYCall, N>

Creates a new call builder for the [MINIMUM_LIQUIDITY] function.

Source

pub fn factory(&self) -> SolCallBuilder<T, &P, factoryCall, N>

Creates a new call builder for the [factory] function.

Source

pub fn token0(&self) -> SolCallBuilder<T, &P, token0Call, N>

Creates a new call builder for the [token0] function.

Source

pub fn token1(&self) -> SolCallBuilder<T, &P, token1Call, N>

Creates a new call builder for the [token1] function.

Source

pub fn getReserves(&self) -> SolCallBuilder<T, &P, getReservesCall, N>

Creates a new call builder for the [getReserves] function.

Source

pub fn price0CumulativeLast( &self, ) -> SolCallBuilder<T, &P, price0CumulativeLastCall, N>

Creates a new call builder for the [price0CumulativeLast] function.

Source

pub fn price1CumulativeLast( &self, ) -> SolCallBuilder<T, &P, price1CumulativeLastCall, N>

Creates a new call builder for the [price1CumulativeLast] function.

Source

pub fn kLast(&self) -> SolCallBuilder<T, &P, kLastCall, N>

Creates a new call builder for the [kLast] function.

Source

pub fn mint(&self, to: Address) -> SolCallBuilder<T, &P, mintCall, N>

Creates a new call builder for the [mint] function.

Source

pub fn burn(&self, to: Address) -> SolCallBuilder<T, &P, burnCall, N>

Creates a new call builder for the [burn] function.

Source

pub fn swap( &self, amount0Out: U256, amount1Out: U256, to: Address, data: Bytes, ) -> SolCallBuilder<T, &P, swapCall, N>

Creates a new call builder for the [swap] function.

Source

pub fn skim(&self, to: Address) -> SolCallBuilder<T, &P, skimCall, N>

Creates a new call builder for the [skim] function.

Source

pub fn sync(&self) -> SolCallBuilder<T, &P, syncCall, N>

Creates a new call builder for the [sync] function.

Source

pub fn initialize( &self, _0: Address, _1: Address, ) -> SolCallBuilder<T, &P, initializeCall, N>

Creates a new call builder for the [initialize] function.

Source§

impl<T: Transport + Clone, P: Provider<T, N>, N: Network> IUniswapV2PairInstance<T, P, N>

Event filters.

Source

pub fn event_filter<E: SolEvent>(&self) -> Event<T, &P, E, 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.

Source

pub fn Approval_filter(&self) -> Event<T, &P, Approval, N>

Creates a new event filter for the Approval event.

Source

pub fn Transfer_filter(&self) -> Event<T, &P, Transfer, N>

Creates a new event filter for the Transfer event.

Source

pub fn Mint_filter(&self) -> Event<T, &P, Mint, N>

Creates a new event filter for the Mint event.

Source

pub fn Burn_filter(&self) -> Event<T, &P, Burn, N>

Creates a new event filter for the Burn event.

Source

pub fn Swap_filter(&self) -> Event<T, &P, Swap, N>

Creates a new event filter for the Swap event.

Source

pub fn Sync_filter(&self) -> Event<T, &P, Sync, N>

Creates a new event filter for the Sync event.

Trait Implementations§

Source§

impl<T: Clone, P: Clone, N: Clone> Clone for IUniswapV2PairInstance<T, P, N>

Source§

fn clone(&self) -> IUniswapV2PairInstance<T, P, N>

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<T, P, N> Debug for IUniswapV2PairInstance<T, P, N>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T, P, N> Freeze for IUniswapV2PairInstance<T, P, N>
where P: Freeze,

§

impl<T, P, N> RefUnwindSafe for IUniswapV2PairInstance<T, P, N>

§

impl<T, P, N> Send for IUniswapV2PairInstance<T, P, N>
where P: Send, N: Send, T: Send,

§

impl<T, P, N> Sync for IUniswapV2PairInstance<T, P, N>
where P: Sync, N: Sync, T: Sync,

§

impl<T, P, N> Unpin for IUniswapV2PairInstance<T, P, N>
where P: Unpin, N: Unpin, T: Unpin,

§

impl<T, P, N> UnwindSafe for IUniswapV2PairInstance<T, P, N>
where P: UnwindSafe, N: UnwindSafe, T: UnwindSafe,

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§

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

🔬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

Source§

type Output = T

Should always be Self
Source§

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

Source§

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
§

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

§

fn try_clone(&self) -> Result<T, Error>

Clones self, possibly returning an error.
Source§

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

Source§

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>,

Source§

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

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.