pub struct IMaverickPoolInstance<T, P, N = Ethereum> {
address: Address,
provider: P,
_network_transport: PhantomData<(N, T)>,
}
Expand description
A IMaverickPool
instance.
Contains type-safe methods for interacting with an on-chain instance of the
IMaverickPool
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> IMaverickPoolInstance<T, P, N>
impl<T: Transport + Clone, P: Provider<T, N>, N: Network> IMaverickPoolInstance<T, P, N>
Instantiation and getters/setters.
Sourcepub const fn new(address: Address, provider: P) -> Self
pub const fn new(address: Address, provider: P) -> Self
Creates a new wrapper around an on-chain IMaverickPool
contract instance.
See the wrapper’s documentation for more details.
Sourcepub fn set_address(&mut self, address: Address)
pub fn set_address(&mut self, address: Address)
Sets the address.
Source§impl<T, P: Clone, N> IMaverickPoolInstance<T, &P, N>
impl<T, P: Clone, N> IMaverickPoolInstance<T, &P, N>
Sourcepub fn with_cloned_provider(self) -> IMaverickPoolInstance<T, P, N>
pub fn with_cloned_provider(self) -> IMaverickPoolInstance<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> IMaverickPoolInstance<T, P, N>
impl<T: Transport + Clone, P: Provider<T, N>, N: Network> IMaverickPoolInstance<T, P, N>
Function calls.
Sourcepub fn call_builder<C: SolCall>(&self, call: &C) -> SolCallBuilder<T, &P, C, N>
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.
Sourcepub fn fee(&self) -> SolCallBuilder<T, &P, feeCall, N>
pub fn fee(&self) -> SolCallBuilder<T, &P, feeCall, N>
Creates a new call builder for the [fee
] function.
Sourcepub fn lookback(&self) -> SolCallBuilder<T, &P, lookbackCall, N>
pub fn lookback(&self) -> SolCallBuilder<T, &P, lookbackCall, N>
Creates a new call builder for the [lookback
] function.
Sourcepub fn tickSpacing(&self) -> SolCallBuilder<T, &P, tickSpacingCall, N>
pub fn tickSpacing(&self) -> SolCallBuilder<T, &P, tickSpacingCall, N>
Creates a new call builder for the [tickSpacing
] function.
Sourcepub fn tokenA(&self) -> SolCallBuilder<T, &P, tokenACall, N>
pub fn tokenA(&self) -> SolCallBuilder<T, &P, tokenACall, N>
Creates a new call builder for the [tokenA
] function.
Sourcepub fn tokenB(&self) -> SolCallBuilder<T, &P, tokenBCall, N>
pub fn tokenB(&self) -> SolCallBuilder<T, &P, tokenBCall, N>
Creates a new call builder for the [tokenB
] function.
Sourcepub fn factory(&self) -> SolCallBuilder<T, &P, factoryCall, N>
pub fn factory(&self) -> SolCallBuilder<T, &P, factoryCall, N>
Creates a new call builder for the [factory
] function.
Sourcepub fn binMap(&self, tick: i32) -> SolCallBuilder<T, &P, binMapCall, N>
pub fn binMap(&self, tick: i32) -> SolCallBuilder<T, &P, binMapCall, N>
Creates a new call builder for the [binMap
] function.
Sourcepub fn binPositions(
&self,
tick: i32,
kind: U256,
) -> SolCallBuilder<T, &P, binPositionsCall, N>
pub fn binPositions( &self, tick: i32, kind: U256, ) -> SolCallBuilder<T, &P, binPositionsCall, N>
Creates a new call builder for the [binPositions
] function.
Sourcepub fn binBalanceA(&self) -> SolCallBuilder<T, &P, binBalanceACall, N>
pub fn binBalanceA(&self) -> SolCallBuilder<T, &P, binBalanceACall, N>
Creates a new call builder for the [binBalanceA
] function.
Sourcepub fn binBalanceB(&self) -> SolCallBuilder<T, &P, binBalanceBCall, N>
pub fn binBalanceB(&self) -> SolCallBuilder<T, &P, binBalanceBCall, N>
Creates a new call builder for the [binBalanceB
] function.
Sourcepub fn getTwa(&self) -> SolCallBuilder<T, &P, getTwaCall, N>
pub fn getTwa(&self) -> SolCallBuilder<T, &P, getTwaCall, N>
Creates a new call builder for the [getTwa
] function.
Sourcepub fn getCurrentTwa(&self) -> SolCallBuilder<T, &P, getCurrentTwaCall, N>
pub fn getCurrentTwa(&self) -> SolCallBuilder<T, &P, getCurrentTwaCall, N>
Creates a new call builder for the [getCurrentTwa
] function.
Sourcepub fn getState(&self) -> SolCallBuilder<T, &P, getStateCall, N>
pub fn getState(&self) -> SolCallBuilder<T, &P, getStateCall, N>
Creates a new call builder for the [getState
] function.
Sourcepub fn getBin(&self, binId: u128) -> SolCallBuilder<T, &P, getBinCall, N>
pub fn getBin(&self, binId: u128) -> SolCallBuilder<T, &P, getBinCall, N>
Creates a new call builder for the [getBin
] function.
Sourcepub fn balanceOf(
&self,
tokenId: U256,
binId: u128,
) -> SolCallBuilder<T, &P, balanceOfCall, N>
pub fn balanceOf( &self, tokenId: U256, binId: u128, ) -> SolCallBuilder<T, &P, balanceOfCall, N>
Creates a new call builder for the [balanceOf
] function.
Sourcepub fn tokenAScale(&self) -> SolCallBuilder<T, &P, tokenAScaleCall, N>
pub fn tokenAScale(&self) -> SolCallBuilder<T, &P, tokenAScaleCall, N>
Creates a new call builder for the [tokenAScale
] function.
Sourcepub fn tokenBScale(&self) -> SolCallBuilder<T, &P, tokenBScaleCall, N>
pub fn tokenBScale(&self) -> SolCallBuilder<T, &P, tokenBScaleCall, N>
Creates a new call builder for the [tokenBScale
] function.
Source§impl<T: Transport + Clone, P: Provider<T, N>, N: Network> IMaverickPoolInstance<T, P, N>
impl<T: Transport + Clone, P: Provider<T, N>, N: Network> IMaverickPoolInstance<T, P, N>
Event filters.
Sourcepub fn event_filter<E: SolEvent>(&self) -> Event<T, &P, E, N>
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.
Sourcepub fn Swap_filter(&self) -> Event<T, &P, Swap, N>
pub fn Swap_filter(&self) -> Event<T, &P, Swap, N>
Creates a new event filter for the Swap
event.
Sourcepub fn AddLiquidity_filter(&self) -> Event<T, &P, AddLiquidity, N>
pub fn AddLiquidity_filter(&self) -> Event<T, &P, AddLiquidity, N>
Creates a new event filter for the AddLiquidity
event.
Sourcepub fn MigrateBinsUpStack_filter(&self) -> Event<T, &P, MigrateBinsUpStack, N>
pub fn MigrateBinsUpStack_filter(&self) -> Event<T, &P, MigrateBinsUpStack, N>
Creates a new event filter for the MigrateBinsUpStack
event.
Sourcepub fn TransferLiquidity_filter(&self) -> Event<T, &P, TransferLiquidity, N>
pub fn TransferLiquidity_filter(&self) -> Event<T, &P, TransferLiquidity, N>
Creates a new event filter for the TransferLiquidity
event.
Sourcepub fn RemoveLiquidity_filter(&self) -> Event<T, &P, RemoveLiquidity, N>
pub fn RemoveLiquidity_filter(&self) -> Event<T, &P, RemoveLiquidity, N>
Creates a new event filter for the RemoveLiquidity
event.
Sourcepub fn BinMerged_filter(&self) -> Event<T, &P, BinMerged, N>
pub fn BinMerged_filter(&self) -> Event<T, &P, BinMerged, N>
Creates a new event filter for the BinMerged
event.
Sourcepub fn BinMoved_filter(&self) -> Event<T, &P, BinMoved, N>
pub fn BinMoved_filter(&self) -> Event<T, &P, BinMoved, N>
Creates a new event filter for the BinMoved
event.
Sourcepub fn ProtocolFeeCollected_filter(
&self,
) -> Event<T, &P, ProtocolFeeCollected, N>
pub fn ProtocolFeeCollected_filter( &self, ) -> Event<T, &P, ProtocolFeeCollected, N>
Creates a new event filter for the ProtocolFeeCollected
event.
Sourcepub fn SetProtocolFeeRatio_filter(&self) -> Event<T, &P, SetProtocolFeeRatio, N>
pub fn SetProtocolFeeRatio_filter(&self) -> Event<T, &P, SetProtocolFeeRatio, N>
Creates a new event filter for the SetProtocolFeeRatio
event.
Trait Implementations§
Auto Trait Implementations§
impl<T, P, N> Freeze for IMaverickPoolInstance<T, P, N>where
P: Freeze,
impl<T, P, N> RefUnwindSafe for IMaverickPoolInstance<T, P, N>
impl<T, P, N> Send for IMaverickPoolInstance<T, P, N>
impl<T, P, N> Sync for IMaverickPoolInstance<T, P, N>
impl<T, P, N> Unpin for IMaverickPoolInstance<T, P, N>
impl<T, P, N> UnwindSafe for IMaverickPoolInstance<T, P, N>
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,
§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§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
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.