Yet Another Cosmos Asset Registry
Contains notable user addresses including native multisig and CW3 multisig accounts. This file is updated manually.
type Account = {
// The address of the wallet or smart contract
id: string;
// The entity which created or controls `id`
entity: string;
// A short descriptive label of `id`
label: string;
};
Contains notable cosmwasm smart contracts excluding CW3 multisig accounts. This file is updated manually.
type Contract = {
// The address of the smart contract
id: string;
// The entity which created or controls `id`
entity: string;
// A short descriptive label of `id`
label: string;
};
Contains notable cosmwasm binaries. This file is updated manually.
type Binary = {
// The code_id of the cosmwasm binary
id: string;
// The entity which created or controls `id`
entity: string;
// A short descriptive label of `id`
label: string;
};
Contains all verified and unverified native / IBC / CW20 / CW721 assets. This file will update automatically if all required fields of an asset can be inferred. The optional fields must be updated manually.
type Asset = {
// The contract address of the cw20 tokens or denom of the ibc/native coins
id: string;
// The entity which created or controls `id`
// A nullish value means that the asset is "unverified"
entity?: string | undefined;
// The canonical name of the asset (eg. "Axelar Wrapped Bitcoin")
name: string;
// The ticker of the asset (eg. "axlWBTC")
symbol: string;
// The number of decimals of the asset
decimals: string;
// The type of this asset: "native" | "ibc" | "cw20" | "cw721" | "tokenfactory"
type: string;
// The following fields are all optional
// The transaction hash that contains "Coinhall verification" memo
verification_tx?: string | undefined;
// Supply values, do not populate both static and dynamic amounts (see example below)
// Set the static amount of assets
circ_supply?: string | undefined;
total_supply?: string | undefined;
// Set the dynamic amount of assets through a URL link
circ_supply_api?: string | undefined;
total_supply_api?: string | undefined;
// These fields are all URL links
icon?: string | undefined;
coinmarketcap?: string | undefined;
coingecko?: string | undefined;
};
With static total supply, and dynamic circulating supply.
{
id: "ibc/example_asset_id",
name: "Example Asset",
symbol: "EA",
decimals: "6",
type: "ibc",
circ_supply_api: "https://exampleasset.com/circulating_supply",
total_supply: "1000000"
}
Invalid example, with both static and dynamic circ supply. Applies to total supply too
{
id: "ibc/example_asset_id",
name: "Example Asset",
symbol: "EA",
decimals: "6",
type: "ibc",
circ_supply: "1000000",
circ_supply_api: "https://exampleasset.com/circulating_supply",
total_supply: "1000000"
}
Contains all social information of a project. This file is updated manually.
type Entity = {
name: string;
website?: string | undefined;
telegram?: string | undefined;
twitter?: string | undefined;
discord?: string | undefined;
}
Contains dexes' liquidity pools. This file will update automatically if all required fields of a pool can be inferred (specifically, dex
and type
). Otherwise, the missing fields must be updated manually.
type Pool = {
// The contract address of the liquidity pool
id: string;
asset_ids: string[];
dex: string;
// The liquidity pool type: "xyk" | "stable" | "orderbook" | "balancerV1"
type: string;
// The contract address of the LP token (if it exists)
lp_token_id?: string | undefined;
};
- Fork this repo
- Push changes to your fork
- The files will be validated and formatted automatically
- If validation passes, create a pull request
- If necessary, seek for a review via Telegram