Skip to main content

PoolIdentifier

Enum PoolIdentifier 

Source
pub enum PoolIdentifier {
    Address(Ustr),
    PoolId(Ustr),
}
Expand description

Protocol-aware pool identifier for DeFi liquidity pools.

This enum distinguishes between two types of pool identifiers:

  • Address: Used by V2/V3 protocols where pool identifier equals pool contract address (42 chars: “0x” + 40 hex)
  • PoolId: Used by V4 protocols where pool identifier is a bytes32 hash (66 chars: “0x” + 64 hex)

The type implements case-insensitive equality and hashing for address comparison, while preserving the original case for display purposes.

DeFi pool data carries both this PoolIdentifier and an InstrumentId, which key different layers. The chain and database layers key on the PoolIdentifier: the raw on-chain identity used for log filters and table lookups. The engine, message bus, and cache key on the InstrumentId (Symbol(pool_identifier) at Venue(chain:dex)), so pool events flow through the same instrument-keyed infrastructure as any other data. The InstrumentId flattens the identifier to a string and loses the Address versus PoolId variant, so it cannot reconstruct this type: both are stored rather than derived.

Variants§

§

Address(Ustr)

V2/V3 pool identifier (checksummed Ethereum address)

§

PoolId(Ustr)

V4 pool identifier (32-byte pool ID as hex string)

Implementations§

Source§

impl PoolIdentifier

Source

pub fn new_checked<T: AsRef<str>>(value: T) -> Result<Self>

Creates a new PoolIdentifier instance with correctness checking.

Automatically detects variant based on string length:

  • 42 characters (0x + 40 hex): Address variant
  • 66 characters (0x + 64 hex): PoolId variant
§Errors

Returns an error if:

  • String doesn’t start with “0x”
  • Length is neither 42 nor 66 characters
  • Contains invalid hex characters
  • Address checksum validation fails (for Address variant)
Source

pub fn new<T: AsRef<str>>(value: T) -> Self

Creates a new PoolIdentifier instance.

§Panics

Panics if validation fails.

Source

pub fn from_address(address: Address) -> Self

Creates an Address variant from an alloy Address.

Returns the checksummed representation.

Source

pub fn from_pool_id_bytes(bytes: &[u8]) -> Result<Self>

Creates a PoolId variant from raw bytes (32 bytes).

§Errors

Returns an error if bytes length is not 32.

Source

pub fn from_pool_id_hex<T: AsRef<str>>(hex: T) -> Result<Self>

Creates a PoolId variant from a hex string (with or without 0x prefix).

§Errors

Returns an error if the string is not valid 64-character hex.

Source

pub fn inner(&self) -> Ustr

Returns the inner identifier value as a Ustr.

Source

pub fn as_str(&self) -> &str

Returns the inner identifier value as a string slice.

Source

pub fn is_address(&self) -> bool

Returns true if this is an Address variant (V2/V3 pools).

Source

pub fn is_pool_id(&self) -> bool

Returns true if this is a PoolId variant (V4 pools).

Source

pub fn to_address(&self) -> Result<Address>

Converts to native Address type (V2/V3 pools only).

Returns the underlying Address for use with alloy/ethers operations.

§Errors

Returns error if this is a PoolId variant or if parsing fails.

Source

pub fn to_pool_id_bytes(&self) -> Result<[u8; 32]>

Converts to native bytes array (V4 pools only).

Returns the 32-byte pool ID for use in V4-specific operations.

§Errors

Returns error if this is an Address variant or if hex decoding fails.

Trait Implementations§

Source§

impl AsRef<str> for PoolIdentifier

Source§

fn as_ref(&self) -> &str

Converts this type into a shared reference of the (usually inferred) input type.
Source§

impl Clone for PoolIdentifier

Source§

fn clone(&self) -> PoolIdentifier

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl Copy for PoolIdentifier

Source§

impl Debug for PoolIdentifier

Source§

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

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

impl<'de> Deserialize<'de> for PoolIdentifier

Source§

fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Display for PoolIdentifier

Source§

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

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

impl Eq for PoolIdentifier

Source§

impl From<&str> for PoolIdentifier

Source§

fn from(value: &str) -> Self

Converts to this type from the input type.
Source§

impl From<String> for PoolIdentifier

Source§

fn from(value: String) -> Self

Converts to this type from the input type.
Source§

impl FromStr for PoolIdentifier

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for PoolIdentifier

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for PoolIdentifier

Source§

fn cmp(&self, other: &PoolIdentifier) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 (const: unstable) · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 (const: unstable) · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 (const: unstable) · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for PoolIdentifier

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for PoolIdentifier

Source§

fn partial_cmp(&self, other: &PoolIdentifier) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 (const: unstable) · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 (const: unstable) · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 (const: unstable) · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for PoolIdentifier

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,

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
§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

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

Source§

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

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

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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.

§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

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

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
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<T> Ungil for T
where T: Send,