Inspired by Ethereum's Token Lists project, Asset Lists aim to enhance the discoverability of Cosmos SDK denominations by associating them with metadata. While primarily used for assets transferred over IBC, this standard is still evolving. The assets format in the assetlist.json structure closely mirrors Cosmos SDK's banktypes.DenomMetadata, paving the way for potential migration into a Cosmos SDK module for on-chain maintenance in the future. Find the assetlist JSON Schema at the Cosmos Chain Registry.
The .assetlist.json files herein are generated, which will be triggered by additions to the corresponding osmosis.zone_assets.json file, fetching the metadata from the Cosmos Chain Registry. The primary prerequisite to adding an asset here is complete registration of the asset and it's originating chain (and the IBC connection between the origin chain and Osmosis, if not native to Osmosis) to the Cosmos Chain Registry, so please make sure that's done first. We have a guide on registering a Chain and Asset to the Cosmos Chain Registry.
Please see the asset listing requirements for information about displaying assets on Osmosis Zone.
To add an asset, add a new asset object to the very bottom of the osmosis.zone_assets.json file, containing some identifying and key details:
base_denomis the minimal/indivisible (i.e., exponent: 0) denomination unit for the asset, corresponding to itsbaseat the Chain Registry.chain_namemust be the exact value defined aschain_namein the chain's chain.json file at the Chain Registry.pathis required for all ics20 assets (i.e., assets that are transferred to Osmosis from another chain via IBC); the only exception are asset deployed directly on Osmosis (e.g., factory tokens). It is comprised of: the destination IBC port and channel for each IBC hop, followed by the base denom on the IBC-originating chain. The is used as input into the SHA256 hash function.- e.g.,
"path": "transfer/channel-0/uatom"
- e.g.,
osmosis_verifiedshould always be set tofalseupon initial listing; this indicates whether the 'Unverified Assets' setting must be toggled to reveal the asset on Osmosis Zone. After meeting the requirements described in the listing requirements page, an additional PR may created to set it totrue.
There are also some additional details that may be defined for an asset:
transfer_methodsshould be included whenever a basic IBC transfer initialatd via Osmosis Zone Deposit and Withdraw buttons is unable to carry-out an interchain transfer.override_propertiesmay be defined for cases where Osmosis Zone shall display the asset differently than how registered on its source chain.canonicalshall be defined for assets that are Osmosis' canonical representation of an asset different than its source (e.g., Axelar's WETH(.axl) is Osmosis' canonical representation of Ether $ETH on Osmosis)categoriesare best manually defined for an asset, including: "defi" and "meme".
An example asset object in osmosis.zone.json:
{
"base_denom": "uosmo",
"chain_name": "osmosis",
"osmosis_verified": true,
"_comment": "Osmosis $OSMO"
},
...
{
"base_denom": "ustk",
"chain_name": "steakchain",
"path": "transfer/channel-69/ustk",
"osmosis_verified": true,
"_comment": "Steak $STK"
},
{
"base_denom": "ufoocoin",
"chain_name": "fubarchain",
"path": "transfer/channel-420/ufoocoin",
"osmosis_verified": false
"osmosis_unlisted": true,
"_comment": "Foocoin $FOO"
}
Note that there are apps, interfaces, and tools that look at this repository as a data dependency:
- Osmosis Zone app (app.osmosis.zone):
- .../generated/frontend/assetlist.json
- .../generated/frontend/chainlist.json (soon)
- .../osmosis-1.chainlist.json
- .../osmo-test-5.chainlist.json
- Osmosis Labs' Sidecar Query Service (SQS):
- .../generated/frontend/assetlist.json
- Numia Data Services (e.g., API):
- .../generated/frontend/assetlist.json
- .../generated/chain-registry/assetlist.json