IPORListedVaultMetadata

Documentation for eth_defi.erc_4626.vault_protocol.ipor.offchain_metadata.IPORListedVaultMetadata Python class.

class IPORListedVaultMetadata

Bases: TypedDict

Metadata about an IPOR-listed vault from the public vault list.

Fetched from api.ipor.io/fusion/vaults.

Unlike vaults-customization-list, this endpoint is the broad public inventory the Fusion app uses for vault metrics. Most production vaults do not have custom descriptions, but they still appear in this list and should not be treated as unofficial merely because no customisation row exists.

Reference:

Attributes summary

chain_id

EVM chain ID (e.g.

vault_address

Vault contract address (checksummed)

name

IPOR display name for the vault.

asset

Denomination asset symbol, e.g.

asset_address

Denomination token address (checksummed), when IPOR exposes it.

tvl

Current TVL as returned by IPOR, usually a decimal string or None.

Methods summary

__init__(*args, **kwargs)

clear()

Remove all items from the dict.

copy()

Return a shallow copy of the dict.

fromkeys([value])

Create a new dictionary with keys from iterable and values set to value.

get(key[, default])

Return the value for key if key is in the dictionary, else default.

items()

Return a set-like object providing a view on the dict's items.

keys()

Return a set-like object providing a view on the dict's keys.

pop(k[,d])

If the key is not found, return the default if given; otherwise, raise a KeyError.

popitem()

Remove and return a (key, value) pair as a 2-tuple.

setdefault(key[, default])

Insert key with a value of default if key is not in the dictionary.

update([E, ]**F)

If E is present and has a .keys() method, then does: for k in E.keys(): D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]

values()

Return an object providing a view on the dict's values.

chain_id: int

EVM chain ID (e.g. 1 for Ethereum, 8453 for Base)

vault_address: str

Vault contract address (checksummed)

name: Optional[str]

IPOR display name for the vault.

asset: Optional[str]

Denomination asset symbol, e.g. USDC.

asset_address: Optional[str]

Denomination token address (checksummed), when IPOR exposes it.

tvl: Optional[str]

Current TVL as returned by IPOR, usually a decimal string or None.

__init__(*args, **kwargs)
__new__(**kwargs)
clear()

Remove all items from the dict.

copy()

Return a shallow copy of the dict.

fromkeys(value=None, /)

Create a new dictionary with keys from iterable and values set to value.

get(key, default=None, /)

Return the value for key if key is in the dictionary, else default.

items()

Return a set-like object providing a view on the dict’s items.

keys()

Return a set-like object providing a view on the dict’s keys.

pop(k[, d]) v, remove specified key and return the corresponding value.

If the key is not found, return the default if given; otherwise, raise a KeyError.

popitem()

Remove and return a (key, value) pair as a 2-tuple.

Pairs are returned in LIFO (last-in, first-out) order. Raises KeyError if the dict is empty.

setdefault(key, default=None, /)

Insert key with a value of default if key is not in the dictionary.

Return the value for key if key is in the dictionary, else default.

update([E, ]**F) None.  Update D from mapping/iterable E and F.

If E is present and has a .keys() method, then does: for k in E.keys(): D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]

values()

Return an object providing a view on the dict’s values.