diff --git a/.github/workflows/utility/generate_assetlist.mjs b/.github/workflows/utility/generate_assetlist.mjs index 1fb0e92e4..fb9b7f5a5 100644 --- a/.github/workflows/utility/generate_assetlist.mjs +++ b/.github/workflows/utility/generate_assetlist.mjs @@ -11,6 +11,8 @@ import { getAllRelatedAssets } from "./getRelatedAssets.mjs"; import * as assetlist from "./generate_assetlist_functions.mjs"; import * as localization from "./localization.mjs"; +import * as state from "./update_assetlist_state.mjs"; + //-- Functions -- @@ -116,7 +118,7 @@ const generateAssets = async ( chain_reg_assets.push(asset_data.chain_reg); //--Append to Frontend Assetlist-- - assetlist.reformatFrontendAsset(asset_data); + assetlist.reformatFrontendAssetFromAssetData(asset_data); frontend_assets.push(asset_data.frontend); //--Append to Asset_Detail Assetlist-- @@ -173,15 +175,24 @@ async function generateAssetlist(chainName) { asset_detail_assets ); + let frontend_assetlist = { + chainName: chainName, + assets: frontend_assets, + }; + + //state + state.updateState(chainName, frontend_assetlist); + + //post processing for reordering properties + //frontend_assets.forEach(asset => console.log(asset.coinMinimalDenom)); + frontend_assets.forEach(asset => assetlist.reformatFrontendAsset(asset)); + //zone_config_assets = await getAllRelatedAssets( // zone_config_assets, // zoneConfig //); - let frontend_assetlist = { - chainName: chainName, - assets: frontend_assets, - }; + zone.writeToFile( chainName, zone.zoneConfigAssetlist, diff --git a/.github/workflows/utility/generate_assetlist_functions.mjs b/.github/workflows/utility/generate_assetlist_functions.mjs index bc21bcfe3..bf5244fee 100644 --- a/.github/workflows/utility/generate_assetlist_functions.mjs +++ b/.github/workflows/utility/generate_assetlist_functions.mjs @@ -1612,7 +1612,7 @@ export function setDescription(asset_data) { } -export function reformatFrontendAsset(asset_data) { +export function reformatFrontendAssetFromAssetData(asset_data) { //--Setup Frontend Asset-- let reformattedAsset = { @@ -1651,6 +1651,48 @@ export function reformatFrontendAsset(asset_data) { asset_data.frontend = reformattedAsset; return; +} + +export function reformatFrontendAsset(asset) { + + //--Setup Frontend Asset-- + let reformattedAsset = { + chainName: asset.chainName, + sourceDenom: asset.sourceDenom, + coinMinimalDenom: asset.coinMinimalDenom, + symbol: asset.symbol, + decimals: asset.decimals, + logoURIs: asset.logoURIs, + coingeckoId: asset.coingeckoId, + price: asset.price, + categories: asset.categories ?? [], + pegMechanism: asset.pegMechanism, + transferMethods: asset.transferMethods ?? [], + counterparty: asset.counterparty ?? [], + //identity: asset.identityGroupKey, + variantGroupKey: asset.originAsset, + name: asset.name, + //description: asset.description, + isAlloyed: asset.isAlloyed ?? false, + contract: asset.contract, + verified: asset.verified ?? false, + unstable: asset.unstable ?? false, + disabled: asset.disabled ?? false, + preview: asset.preview ?? false, + tooltipMessage: asset.tooltipMessage, + sortWith: asset.sortWith, + listingDate: asset.listingDate, + //relatedAssets: asset.relatedAssets, + }; + + // Check if listingDate exists and is a valid date + if (!asset.listingDate || isNaN(new Date(asset.listingDate).getTime())) { + // Remove listingDate from reformattedAsset if it's invalid or doesn't exist + delete reformattedAsset.listingDate; + } + + asset = reformattedAsset; + return; } diff --git a/.github/workflows/utility/json_management.mjs b/.github/workflows/utility/json_management.mjs index 4b4d95807..35507767c 100644 --- a/.github/workflows/utility/json_management.mjs +++ b/.github/workflows/utility/json_management.mjs @@ -38,6 +38,7 @@ export function readFromFile(location) { ); } catch (err) { console.log(err); + return err; } } @@ -52,5 +53,6 @@ export function writeToFile(location, value, indent = 2) { ); } catch (err) { console.log(err); + return err; } } \ No newline at end of file diff --git a/.github/workflows/utility/update_assetlist_state.mjs b/.github/workflows/utility/update_assetlist_state.mjs new file mode 100644 index 000000000..5efdcd93f --- /dev/null +++ b/.github/workflows/utility/update_assetlist_state.mjs @@ -0,0 +1,165 @@ + +/* Purpose: + * to manage the state for Osmosis Zone assets + * which includes data like: listingDate, ... + * + * + * State: + * "assets": [] + * for each asset object{}: + * "base_denom": "uosmo", + * "listingDate": "{UTC date time format}", + * "legacyAsset": true, + * ... + * + * + * Plan: + * For each asset, see if it's verified, if so, we should have a listing date for it + * see if we have a listing date in the state + * if so, proceed to next + * if not, we should add a listing date for that asset to the state + * unless they are a legacy asset, which wew can determine from the state + * + * Note about Legacy Assets: + * however, many verified assets don't have a listing date, in which case, we should identify them as a legacy asset + * the state will keep a property 'legacyAsset: true' where the asset is verified but doesn't have a listing date + * legacyAssets will have to be populated manually, but they are easier to identify in an initial setup + * becase they are just all the verified assets without any listingDate + * + * + * */ + + +//-- Imports -- + +import * as zone from "./assetlist_functions.mjs"; +import * as chain_reg from "../../../chain-registry/.github/workflows/utility/chain_registry.mjs"; +chain_reg.setup(); +import * as path from 'path'; + +const stateFileName = "state.json"; +const stateDirName = "state"; +const stateDir = path.join(zone.generatedDirectoryName, stateDirName); + +const stateLocations = [ + "assets" +]; +const stateAssetProperties = [ + "listingDate", + "legacyAsset" +]; + +const currentDateUTC = new Date().toISOString(); + + +// Problem: the listing date is stored both in the generate assetlist and in the state file. which do we generate first? + +function setAssetListingDate(stateAsset, assetlistAsset) { + + //legacy assets don't need a listing date + if (stateAsset.legacyAsset) { return; } + + //use the recorded listing date + if (!stateAsset.listingDate) { + //or else it's current datetime + stateAsset.listingDate = currentDateUTC; + } + + //save to assetlist + assetlistAsset.listingDate = stateAsset.listingDate; + +} + +//get the state asset +function getStateAsset(base_denom, state) { + let stateAsset = state.assets?.find(stateAsset => stateAsset.base_denom === base_denom); + if (!stateAsset) { + stateAsset = { + base_denom: base_denom + }; + state.assets.push(stateAsset); + } + return stateAsset; +} + +// Main function to convert one JSON file to another +const generateState = (chainName, assetlist) => { + + // Read the existing State file + let state = {}; + try { + state = zone.readFromFile(chainName, stateDir, stateFileName); + } catch (error) { + if (error.code === 'ENOENT') { + console.warn(`File not found: ${error.message}`); + state = {}; // Assign empty object if file doesn't exist + } else { + throw error; // Re-throw for unexpected errors + } + } + + + // Iterate each asset + if (!state.assets) { state.assets = [] } + for (let assetlistAsset of assetlist?.assets) { + + let stateAsset; + + //see if it's verified, and skip if not + if (assetlistAsset.verified) { + + //get the state asset + stateAsset = getStateAsset(assetlistAsset.coinMinimalDenom, state); + + // Property 1: Get the listing Date + setAssetListingDate(stateAsset, assetlistAsset); + + + // Property 2: anything else... + + + } + + } + + + // Write the state to the state file + zone.writeToFile(chainName, stateDir, stateFileName, state); + console.log(`Update state completed. Data saved.`); + +}; + + +function getAssetlistFromFile(chainNAme) { + + // Read the generate assetlist + const assetlist = zone.readFromFile(chainName, zone.zoneConfigAssetlist, zone.assetlistFileName); + //console.log(`Generated Assetlist is: ${assetlist}`); + +} + +function saveAssetlistToFile(chainName, assetlist) { + + // Write the state to the state file + zone.writeToFile(chainName, zone.zoneConfigAssetlist, zone.assetlistFileName, assetlist); + console.log(`Update assetlist completed. Data saved.`); + +} + + +export function updateState(chainName, assetlist) { + let assetlistFromFile = false; + if (!assetlist) { + assetlist = getAssetlistFromFile(chainName); + assetlistFromFile = true; + } + generateState(chainName, assetlist); + if (assetlistFromFile) { + saveAssetlistToFile(chainName, assetlist); + } +} + + +function main() { + zone.chainNames.forEach(chainName => generateState(chainName)); +} \ No newline at end of file diff --git a/osmo-test-5/generated/frontend/assetlist.json b/osmo-test-5/generated/frontend/assetlist.json index 2e1e92e5c..6f4193945 100644 --- a/osmo-test-5/generated/frontend/assetlist.json +++ b/osmo-test-5/generated/frontend/assetlist.json @@ -25,7 +25,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "osmosistestnet", @@ -51,7 +52,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "cosmoshubtestnet", @@ -106,7 +108,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "axelartestnet", @@ -169,7 +172,8 @@ "sortWith": { "chainName": "axelar", "sourceDenom": "uaxl" - } + }, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "axelartestnet", @@ -242,7 +246,8 @@ "sortWith": { "chainName": "axelar", "sourceDenom": "uaxl" - } + }, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "junotestnet", @@ -294,7 +299,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "marstestnet", @@ -345,7 +351,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "nobletestnet", @@ -397,7 +404,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "akashtestnet", @@ -448,7 +456,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "kyvetestnet", @@ -503,7 +512,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "quicksilvertestnet", @@ -557,7 +567,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "chain4energytestnet", @@ -610,7 +621,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "persistencetestnet2", @@ -666,7 +678,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "xiontestnet", @@ -715,7 +728,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "sagatestnet", @@ -770,7 +784,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "impacthubtestnet", @@ -825,7 +840,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "archwaytestnet", @@ -880,7 +896,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "symphonytestnet", @@ -929,7 +946,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "kimanetworktestnet", @@ -980,7 +998,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" }, { "chainName": "nomictestnet", @@ -1031,7 +1050,8 @@ "verified": true, "unstable": false, "disabled": false, - "preview": false + "preview": false, + "listingDate": "2024-11-21T20:26:11.259Z" } ] } \ No newline at end of file diff --git a/osmo-test-5/generated/state/state.json b/osmo-test-5/generated/state/state.json new file mode 100644 index 000000000..e69de29bb diff --git a/osmosis-1/generated/state/state.json b/osmosis-1/generated/state/state.json new file mode 100644 index 000000000..ec61e22ec --- /dev/null +++ b/osmosis-1/generated/state/state.json @@ -0,0 +1,1056 @@ +{ + "assets": [ + { + "base_denom": "uosmo", + "legacyAsset": true + }, + { + "base_denom": "uion", + "legacyAsset": true + }, + { + "base_denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "legacyAsset": true + }, + { + "base_denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "legacyAsset": true + }, + { + "base_denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "legacyAsset": true + }, + { + "base_denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "legacyAsset": true + }, + { + "base_denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "legacyAsset": true + }, + { + "base_denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + "legacyAsset": true + }, + { + "base_denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "legacyAsset": true + }, + { + "base_denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "legacyAsset": true + }, + { + "base_denom": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", + "legacyAsset": true + }, + { + "base_denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", + "legacyAsset": true + }, + { + "base_denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "legacyAsset": true + }, + { + "base_denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "legacyAsset": true + }, + { + "base_denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "legacyAsset": true + }, + { + "base_denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", + "legacyAsset": true + }, + { + "base_denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "legacyAsset": true + }, + { + "base_denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "legacyAsset": true + }, + { + "base_denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "legacyAsset": true + }, + { + "base_denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "legacyAsset": true + }, + { + "base_denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "legacyAsset": true + }, + { + "base_denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "legacyAsset": true + }, + { + "base_denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "legacyAsset": true + }, + { + "base_denom": "ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961", + "legacyAsset": true + }, + { + "base_denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "legacyAsset": true + }, + { + "base_denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "legacyAsset": true + }, + { + "base_denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "legacyAsset": true + }, + { + "base_denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "legacyAsset": true + }, + { + "base_denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "legacyAsset": true + }, + { + "base_denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "legacyAsset": true + }, + { + "base_denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "legacyAsset": true + }, + { + "base_denom": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", + "legacyAsset": true + }, + { + "base_denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "legacyAsset": true + }, + { + "base_denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "legacyAsset": true + }, + { + "base_denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", + "legacyAsset": true + }, + { + "base_denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", + "legacyAsset": true + }, + { + "base_denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "legacyAsset": true + }, + { + "base_denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", + "legacyAsset": true + }, + { + "base_denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", + "legacyAsset": true + }, + { + "base_denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", + "legacyAsset": true + }, + { + "base_denom": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", + "legacyAsset": true + }, + { + "base_denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", + "legacyAsset": true + }, + { + "base_denom": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", + "legacyAsset": true + }, + { + "base_denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "legacyAsset": true + }, + { + "base_denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", + "legacyAsset": true + }, + { + "base_denom": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", + "legacyAsset": true + }, + { + "base_denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "legacyAsset": true + }, + { + "base_denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "legacyAsset": true + }, + { + "base_denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", + "legacyAsset": true + }, + { + "base_denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", + "legacyAsset": true + }, + { + "base_denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "legacyAsset": true + }, + { + "base_denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "legacyAsset": true + }, + { + "base_denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "legacyAsset": true + }, + { + "base_denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "legacyAsset": true + }, + { + "base_denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", + "legacyAsset": true + }, + { + "base_denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", + "legacyAsset": true + }, + { + "base_denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "legacyAsset": true + }, + { + "base_denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "legacyAsset": true + }, + { + "base_denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", + "legacyAsset": true + }, + { + "base_denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", + "legacyAsset": true + }, + { + "base_denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", + "legacyAsset": true + }, + { + "base_denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "legacyAsset": true + }, + { + "base_denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", + "legacyAsset": true + }, + { + "base_denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", + "legacyAsset": true + }, + { + "base_denom": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", + "legacyAsset": true + }, + { + "base_denom": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", + "legacyAsset": true + }, + { + "base_denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "legacyAsset": true + }, + { + "base_denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", + "legacyAsset": true + }, + { + "base_denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", + "legacyAsset": true + }, + { + "base_denom": "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", + "legacyAsset": true + }, + { + "base_denom": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", + "legacyAsset": true + }, + { + "base_denom": "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", + "legacyAsset": true + }, + { + "base_denom": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", + "legacyAsset": true + }, + { + "base_denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "legacyAsset": true + }, + { + "base_denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "legacyAsset": true + }, + { + "base_denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "legacyAsset": true + }, + { + "base_denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "legacyAsset": true + }, + { + "base_denom": "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", + "legacyAsset": true + }, + { + "base_denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", + "legacyAsset": true + }, + { + "base_denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", + "legacyAsset": true + }, + { + "base_denom": "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", + "legacyAsset": true + }, + { + "base_denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "legacyAsset": true + }, + { + "base_denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "legacyAsset": true + }, + { + "base_denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", + "legacyAsset": true + }, + { + "base_denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", + "legacyAsset": true + }, + { + "base_denom": "ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88", + "listingDate": "2024-10-29T18:00:00.000Z" + }, + { + "base_denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "legacyAsset": true + }, + { + "base_denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "legacyAsset": true + }, + { + "base_denom": "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", + "legacyAsset": true + }, + { + "base_denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", + "legacyAsset": true + }, + { + "base_denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", + "legacyAsset": true + }, + { + "base_denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", + "legacyAsset": true + }, + { + "base_denom": "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", + "legacyAsset": true + }, + { + "base_denom": "ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83", + "legacyAsset": true + }, + { + "base_denom": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", + "legacyAsset": true + }, + { + "base_denom": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", + "legacyAsset": true + }, + { + "base_denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", + "legacyAsset": true + }, + { + "base_denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "legacyAsset": true + }, + { + "base_denom": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", + "legacyAsset": true + }, + { + "base_denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", + "legacyAsset": true + }, + { + "base_denom": "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", + "legacyAsset": true + }, + { + "base_denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", + "legacyAsset": true + }, + { + "base_denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", + "legacyAsset": true + }, + { + "base_denom": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", + "legacyAsset": true + }, + { + "base_denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", + "legacyAsset": true + }, + { + "base_denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "legacyAsset": true + }, + { + "base_denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", + "legacyAsset": true + }, + { + "base_denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", + "legacyAsset": true + }, + { + "base_denom": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", + "legacyAsset": true + }, + { + "base_denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", + "legacyAsset": true + }, + { + "base_denom": "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", + "legacyAsset": true + }, + { + "base_denom": "ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8", + "legacyAsset": true + }, + { + "base_denom": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", + "legacyAsset": true + }, + { + "base_denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "legacyAsset": true + }, + { + "base_denom": "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", + "legacyAsset": true + }, + { + "base_denom": "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", + "legacyAsset": true + }, + { + "base_denom": "ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46", + "legacyAsset": true + }, + { + "base_denom": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", + "legacyAsset": true + }, + { + "base_denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "legacyAsset": true + }, + { + "base_denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", + "legacyAsset": true + }, + { + "base_denom": "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "legacyAsset": true + }, + { + "base_denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "legacyAsset": true + }, + { + "base_denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "legacyAsset": true + }, + { + "base_denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "legacyAsset": true + }, + { + "base_denom": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", + "legacyAsset": true + }, + { + "base_denom": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", + "legacyAsset": true + }, + { + "base_denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "legacyAsset": true + }, + { + "base_denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "legacyAsset": true + }, + { + "base_denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", + "legacyAsset": true + }, + { + "base_denom": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", + "legacyAsset": true + }, + { + "base_denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "legacyAsset": true + }, + { + "base_denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "legacyAsset": true + }, + { + "base_denom": "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", + "legacyAsset": true + }, + { + "base_denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", + "legacyAsset": true + }, + { + "base_denom": "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", + "legacyAsset": true + }, + { + "base_denom": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", + "legacyAsset": true + }, + { + "base_denom": "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", + "legacyAsset": true + }, + { + "base_denom": "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", + "legacyAsset": true + }, + { + "base_denom": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", + "legacyAsset": true + }, + { + "base_denom": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", + "legacyAsset": true + }, + { + "base_denom": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", + "legacyAsset": true + }, + { + "base_denom": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", + "legacyAsset": true + }, + { + "base_denom": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", + "legacyAsset": true + }, + { + "base_denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "legacyAsset": true + }, + { + "base_denom": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", + "legacyAsset": true + }, + { + "base_denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", + "legacyAsset": true + }, + { + "base_denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "legacyAsset": true + }, + { + "base_denom": "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", + "legacyAsset": true + }, + { + "base_denom": "ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862", + "legacyAsset": true + }, + { + "base_denom": "ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7", + "legacyAsset": true + }, + { + "base_denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", + "legacyAsset": true + }, + { + "base_denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", + "legacyAsset": true + }, + { + "base_denom": "ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65", + "legacyAsset": true + }, + { + "base_denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "legacyAsset": true + }, + { + "base_denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "legacyAsset": true + }, + { + "base_denom": "ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9", + "legacyAsset": true + }, + { + "base_denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "legacyAsset": true + }, + { + "base_denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "legacyAsset": true + }, + { + "base_denom": "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqbtc", + "legacyAsset": true + }, + { + "base_denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "legacyAsset": true + }, + { + "base_denom": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", + "legacyAsset": true + }, + { + "base_denom": "ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5", + "legacyAsset": true + }, + { + "base_denom": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "legacyAsset": true + }, + { + "base_denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "legacyAsset": true + }, + { + "base_denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "legacyAsset": true + }, + { + "base_denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", + "legacyAsset": true + }, + { + "base_denom": "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", + "listingDate": "2024-01-24T10:58:00.000Z" + }, + { + "base_denom": "ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317", + "legacyAsset": true + }, + { + "base_denom": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", + "legacyAsset": true + }, + { + "base_denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "listingDate": "2024-01-29T09:57:00.000Z" + }, + { + "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", + "listingDate": "2024-01-19T15:51:00.000Z" + }, + { + "base_denom": "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", + "listingDate": "2024-01-22T21:05:00.000Z" + }, + { + "base_denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", + "listingDate": "2024-01-29T12:48:00.000Z" + }, + { + "base_denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", + "listingDate": "2024-01-31T23:17:00.000Z" + }, + { + "base_denom": "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", + "listingDate": "2024-04-09T15:50:00.000Z" + }, + { + "base_denom": "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", + "listingDate": "2024-04-10T18:38:00.000Z" + }, + { + "base_denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "listingDate": "2024-02-06T08:36:00.000Z" + }, + { + "base_denom": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", + "listingDate": "2024-03-13T17:30:00.000Z" + }, + { + "base_denom": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", + "listingDate": "2024-02-20T20:45:00.000Z" + }, + { + "base_denom": "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", + "listingDate": "2024-03-08T16:25:00.000Z" + }, + { + "base_denom": "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", + "listingDate": "2024-03-19T19:08:00.000Z" + }, + { + "base_denom": "ibc/62118FB4D5FEDD5D2B18DC93648A745CD5E5B01D420E9B7A5FED5381CB13A7E8", + "listingDate": "2024-03-06T12:52:00.000Z" + }, + { + "base_denom": "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", + "listingDate": "2024-03-03T22:27:00.000Z" + }, + { + "base_denom": "ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F", + "listingDate": "2024-03-12T23:14:00.000Z" + }, + { + "base_denom": "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", + "listingDate": "2024-03-14T03:23:00.000Z" + }, + { + "base_denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "listingDate": "2024-03-13T15:44:00.000Z" + }, + { + "base_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "listingDate": "2024-03-14T22:20:00.000Z" + }, + { + "base_denom": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", + "listingDate": "2024-03-15T19:51:00.000Z" + }, + { + "base_denom": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", + "listingDate": "2024-03-21T20:09:00.000Z" + }, + { + "base_denom": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", + "listingDate": "2024-03-25T19:39:00.000Z" + }, + { + "base_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "listingDate": "2024-04-02T15:53:00.000Z" + }, + { + "base_denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "listingDate": "2024-05-15T18:00:00.000Z" + }, + { + "base_denom": "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", + "listingDate": "2024-04-03T16:09:00.000Z" + }, + { + "base_denom": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", + "listingDate": "2024-04-03T17:37:00.000Z" + }, + { + "base_denom": "ibc/FD506CCA1FC574F2A8175FB574C981E9F6351E194AA48AC219BD67FF934E2F33", + "listingDate": "2024-05-16T17:00:00.000Z" + }, + { + "base_denom": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "listingDate": "2024-04-09T10:30:00.000Z" + }, + { + "base_denom": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", + "listingDate": "2024-04-09T16:00:00.000Z" + }, + { + "base_denom": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", + "listingDate": "2024-04-15T15:55:00.000Z" + }, + { + "base_denom": "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", + "listingDate": "2024-04-13T17:50:00.000Z" + }, + { + "base_denom": "ibc/2ED09B03AA396BC2F35B741F4CA4A82D33A24A1007BFC1973299842DD626F564", + "listingDate": "2024-04-13T17:50:00.000Z" + }, + { + "base_denom": "factory/osmo1s6ht8qrm8x0eg8xag5x3ckx9mse9g4se248yss/BERNESE", + "listingDate": "2024-04-23T02:49:00.000Z" + }, + { + "base_denom": "ibc/A23E590BA7E0D808706FB5085A449B3B9D6864AE4DDE7DAF936243CEBB2A3D43", + "listingDate": "2024-04-25T15:30:00.000Z" + }, + { + "base_denom": "ibc/5435437A8C9416B650DDA49C338B63CCFC6465123B715F6BAA9B1B2071E27913", + "listingDate": "2024-04-25T15:30:00.000Z" + }, + { + "base_denom": "ibc/0EFA07F312E05258A56AE1DD600E39B9151CF7A91C8A94EEBCF4F03ECFE5DD98", + "listingDate": "2024-04-25T15:30:00.000Z" + }, + { + "base_denom": "ibc/F17CCB4F07948CC2D8B72952C2D0A84F2B763962F698774BB121B872AE4611B5", + "listingDate": "2024-04-25T15:30:00.000Z" + }, + { + "base_denom": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", + "listingDate": "2024-04-30T12:00:00.000Z" + }, + { + "base_denom": "ibc/956AEF1DA92F70584266E87978C3F30A43B91EE6ABC62F03D097E79F6B99C4D8", + "listingDate": "2024-05-03T13:00:00.000Z" + }, + { + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", + "listingDate": "2024-05-06T12:00:00.000Z" + }, + { + "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", + "listingDate": "2024-05-14T15:45:04.000Z" + }, + { + "base_denom": "factory/osmo1em6xs47hd82806f5cxgyufguxrrc7l0aqx7nzzptjuqgswczk8csavdxek/alloyed/allUSDT", + "listingDate": "2024-06-17T19:30:00.000Z" + }, + { + "base_denom": "ibc/A8C568580D613F16F7E9075EA9FAD69FEBE0CC1F4AF46C60255FEC4459C166F1", + "listingDate": "2024-06-05T03:00:00.000Z" + }, + { + "base_denom": "factory/osmo1z6r6qdknhgsc0zeracktgpcxf43j6sekq07nw8sxduc9lg0qjjlqfu25e3/alloyed/allBTC", + "legacyAsset": true + }, + { + "base_denom": "ibc/245C3CA604AAB4BB9EEA5E86F23F52D59253D8722C8FC9C4E3E69F77C5CD3D2F", + "listingDate": "2024-07-04T12:00:00.000Z" + }, + { + "base_denom": "ibc/739D70CB432FE1C6D94AF306B68C14F4CFB0B9EDD1238D3A8718B1B0E84E8547", + "listingDate": "2024-07-09T17:30:00.000Z" + }, + { + "base_denom": "ibc/DAED51CBD967A3BE0C467687970AFD97B202AFE4A1718B36936F49178AFE0133", + "listingDate": "2024-11-15T04:00:00.000Z" + }, + { + "base_denom": "ibc/23104D411A6EB6031FA92FB75F227422B84989969E91DCAD56A535DD7FF0A373", + "listingDate": "2024-07-16T08:10:00.000Z" + }, + { + "base_denom": "ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839", + "listingDate": "2024-07-16T17:42:00.000Z" + }, + { + "base_denom": "factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH", + "legacyAsset": true + }, + { + "base_denom": "factory/osmo1n3n75av8awcnw4jl62n3l48e6e4sxqmaf97w5ua6ddu4s475q5qq9udvx4/alloyed/allSOL", + "legacyAsset": true + }, + { + "base_denom": "ibc/1AEF145C549D4F9847C79E49710B198C294C7F4A107F4610DEE8E725FFC4B378", + "listingDate": "2024-07-30T15:00:00.000Z" + }, + { + "base_denom": "ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372", + "listingDate": "2024-07-31T20:00:00.000Z" + }, + { + "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", + "listingDate": "2024-08-07T18:30:00.000Z" + }, + { + "base_denom": "ibc/4925733868E7999F5822C961ADE9470A7FC5FA4A560BAE1DE102783C3F64C201", + "listingDate": "2024-08-02T22:20:00.000Z" + }, + { + "base_denom": "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", + "listingDate": "2024-08-06T18:00:00.000Z" + }, + { + "base_denom": "ibc/3F8F00094F0F79D17750FF69C5F09B078084018570AAF4F1C92C86D3F73E6488", + "listingDate": "2024-08-07T17:30:00.000Z" + }, + { + "base_denom": "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", + "listingDate": "2024-09-27T00:00:00.000Z" + }, + { + "base_denom": "ibc/14A291DD362798D6805B7ABCB8D09AEEE02176108F89FA09AA43EA2EE096A2A9", + "listingDate": "2024-08-12T18:00:00.000Z" + }, + { + "base_denom": "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", + "listingDate": "2024-09-27T00:00:00.000Z" + }, + { + "base_denom": "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", + "listingDate": "2024-09-27T00:00:00.000Z" + }, + { + "base_denom": "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", + "listingDate": "2024-09-27T00:00:00.000Z" + }, + { + "base_denom": "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", + "listingDate": "2024-09-27T00:00:00.000Z" + }, + { + "base_denom": "factory/osmo1r53fx9fvcdzncrs7zkn4gw5vfelx5gk8k5wc6wqha2jpkh992rusr5tk02/alloyed/allDOT", + "legacyAsset": true + }, + { + "base_denom": "ibc/C91210281CEB708DC6E41A47FC9EC298F45712273DD58C682BEBAD00DCB59DC2", + "listingDate": "2024-08-12T23:00:00.000Z" + }, + { + "base_denom": "ibc/108604FDBE97DAEF128FD4ECFEB2A8AFC2D04A7162C97EAA2FD5BCB0869D0BBC", + "listingDate": "2024-08-15T12:00:00.000Z" + }, + { + "base_denom": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", + "listingDate": "2024-08-21T18:00:00.000Z" + }, + { + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD", + "listingDate": "2024-08-27T21:30:00.000Z" + }, + { + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD", + "listingDate": "2024-08-27T21:30:00.000Z" + }, + { + "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH", + "listingDate": "2024-08-27T21:30:00.000Z" + }, + { + "base_denom": "ibc/B67DF59507B3755EEDE0866C449445BD54B4DA82CCEBA89D775E53DC35664255", + "listingDate": "2024-10-01T20:00:00.000Z" + }, + { + "base_denom": "ibc/905889A7F0B94F1CE1506D9BADF13AE9141E4CBDBCD565E1DFC7AE418B3E3E98", + "listingDate": "2024-08-30T00:33:00.000Z" + }, + { + "base_denom": "factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON", + "listingDate": "2024-09-03T15:15:00.000Z" + }, + { + "base_denom": "ibc/92AE2F53284505223A1BB80D132F859A00E190C6A738772F0B3EF65E20BA484F", + "listingDate": "2024-09-19T20:00:00.000Z" + }, + { + "base_denom": "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", + "listingDate": "2024-10-04T13:20:00.000Z" + }, + { + "base_denom": "ibc/ABD49F44559CB3E557CC458459CB6A67CEBD66E23C7674A0B2B445230BDA1F6C", + "listingDate": "2024-10-20T12:00:00.000Z" + }, + { + "base_denom": "ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161", + "listingDate": "2024-10-14T18:00:00.000Z" + }, + { + "base_denom": "factory/osmo1eqjda4pc6e09jtxzxggf6jl3jye2yn453ja58we5gxwzmf5ah28qvlnaz8/alloyed/allUNI", + "listingDate": "2024-10-14T18:00:00.000Z" + }, + { + "base_denom": "ibc/B3DFDC2958A2BE482532DA3B6B5729B469BE7475598F7487D98B1B3E085245DE", + "listingDate": "2024-10-11T03:00:00.000Z" + }, + { + "base_denom": "factory/osmo10pk4crey8fpdyqd62rsau0y02e3rk055w5u005ah6ly7k849k5tsf72x40/alloyed/allDOGE", + "listingDate": "2024-11-19T20:00:00.000Z" + }, + { + "base_denom": "ibc/164807F6226F91990F358C6467EEE8B162E437BDCD3DADEC3F0CE20693720795", + "listingDate": "2024-10-23T19:00:00.000Z" + }, + { + "base_denom": "factory/osmo1n6asrjy9754q8y9jsxqf557zmsv3s3xa5m9eg5/uspice", + "listingDate": "2024-11-06T20:00:00.000Z" + }, + { + "base_denom": "ibc/3B95D63B520C283BCA86F8CD426D57584039463FD684A5CBA31D2780B86A1995", + "listingDate": "2024-11-18T20:00:00.000Z" + }, + { + "base_denom": "ibc/1B454982D3746951510D3845145B83628D4ED380D95722C8077776C4689F973A", + "listingDate": "2024-11-20T12:49:15.000Z" + } + ] +} \ No newline at end of file diff --git a/osmosis-1/osmosis.zone_assets.json b/osmosis-1/osmosis.zone_assets.json index 65d73e86f..82eb3198e 100644 --- a/osmosis-1/osmosis.zone_assets.json +++ b/osmosis-1/osmosis.zone_assets.json @@ -934,7 +934,6 @@ "base_denom": "rai-wei", "path": "transfer/channel-208/rai-wei", "osmosis_verified": false, - "listing_date_time_utc": "2024-03-29T20:12:00Z", "canonical": { "chain_name": "ethereum", "base_denom": "0x03ab458634910aad20ef5f1c8ee96f1d6ac54919" @@ -1343,7 +1342,6 @@ "base_denom": "ubze", "path": "transfer/channel-340/ubze", "osmosis_verified": true, - "listing_date_time_utc": "2024-10-29T18:00:00Z", "_comment": "BeeZee $BZE" }, { @@ -2919,7 +2917,6 @@ "base_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", "path": "transfer/channel-122/factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", "osmosis_verified": true, - "listing_date_time_utc": "2024-01-24T10:58:00Z", "transfer_methods": [ { "name": "Osmosis Pro TFM IBC Transfer", @@ -2983,8 +2980,7 @@ "chain_name": "juno", "base_denom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", "path": "transfer/channel-169/cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", - "osmosis_verified": false, - "listing_date_time_utc": "2024-01-17T17:14:00Z" + "osmosis_verified": false }, { "chain_name": "chihuahua", @@ -2993,15 +2989,13 @@ "osmosis_verified": false, "categories": [ "meme" - ], - "listing_date_time_utc": "2024-01-17T17:41:00Z" + ] }, { "chain_name": "stargaze", "base_denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", "path": "transfer/channel-75/factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", - "osmosis_verified": false, - "listing_date_time_utc": "2024-01-22T12:50:00Z" + "osmosis_verified": false }, { "chain_name": "osmosis", @@ -3010,8 +3004,7 @@ "chain_name": "ethereum", "base_denom": "0x2260fac5e5542a773aa44fbcfedf7c193bc2c599" }, - "osmosis_verified": true, - "listing_date_time_utc": "2024-01-29T09:57:00Z" + "osmosis_verified": true }, { "chain_name": "neutron", @@ -3020,15 +3013,13 @@ "osmosis_verified": false, "categories": [ "meme" - ], - "listing_date_time_utc": "2024-01-15T14:42:00Z" + ] }, { "chain_name": "juno", "base_denom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", "path": "transfer/channel-169/cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", - "osmosis_verified": false, - "listing_date_time_utc": "2024-01-18T15:42:00Z" + "osmosis_verified": false }, { "chain_name": "osmosis", @@ -3036,21 +3027,18 @@ "osmosis_verified": false, "categories": [ "meme" - ], - "listing_date_time_utc": "2024-01-22T15:42:00Z" + ] }, { "chain_name": "osmosis", "base_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", - "osmosis_verified": true, - "listing_date_time_utc": "2024-01-19T15:51:00Z" + "osmosis_verified": true }, { "chain_name": "neutron", "base_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "path": "transfer/channel-874/factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "osmosis_verified": true, - "listing_date_time_utc": "2024-01-22T21:05:00Z", "categories": [ "defi" ] @@ -3063,7 +3051,6 @@ "liquid_staking" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-01-29T12:48:00Z", "_comment": "Stride Staked DYDX $stDYDX" }, { @@ -3074,7 +3061,6 @@ "liquid_staking" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-01-31T23:17:00Z", "_comment": "Stride Staked TIA $stTIA" }, { @@ -3085,7 +3071,6 @@ "liquid_staking" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-04-09T15:50:00Z", "_comment": "Stride Staked SAGA $stSAGA" }, { @@ -3096,7 +3081,6 @@ "liquid_staking" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-04-10T18:38:00Z", "_comment": "Stride Staked INJ $stINJ" }, { @@ -3104,7 +3088,6 @@ "base_denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", "path": "transfer/channel-122/peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", "osmosis_verified": false, - "listing_date_time_utc": "2024-03-01T20:23:00Z", "override_properties": { "name": "Gelotto (Injective)" }, @@ -3130,7 +3113,6 @@ "base_denom": "adym", "path": "transfer/channel-19774/adym", "osmosis_verified": true, - "listing_date_time_utc": "2024-02-06T08:36:00Z", "transfer_methods": [ { "name": "Dymension Portal", @@ -3154,7 +3136,6 @@ "base_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", "path": "transfer/channel-21671/cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", "osmosis_verified": true, - "listing_date_time_utc": "2024-03-13T17:30:00Z", "transfer_methods": [ { "name": "Osmosis Pro TFM IBC Transfer", @@ -3172,7 +3153,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", "osmosis_verified": false, - "listing_date_time_utc": "2024-02-13T21:32:00Z", "categories": [ "meme" ], @@ -3183,7 +3163,6 @@ "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", "osmosis_verified": true, - "listing_date_time_utc": "2024-02-20T20:45:00Z", "peg_mechanism": "collateralized", "override_properties": { "logo_URIs": { @@ -3208,7 +3187,6 @@ "chain_name": "humans", "base_denom": "aheart", "path": "transfer/channel-20082/aheart", - "listing_date_time_utc": "2024-03-08T16:25:00Z", "osmosis_verified": true, "transfer_methods": [ { @@ -3227,7 +3205,6 @@ "path": "transfer/channel-204/erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", "base_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", "osmosis_verified": false, - "listing_date_time_utc": "2024-03-07T18:18:00Z", "transfer_methods": [ { "name": "Evmos App", @@ -3241,22 +3218,19 @@ "chain_name": "scorum", "base_denom": "nscr", "path": "transfer/channel-20100/nscr", - "osmosis_verified": true, - "listing_date_time_utc": "2024-03-19T19:08:00Z" + "osmosis_verified": true }, { "chain_name": "chain4energy", "base_denom": "uc4e", "path": "transfer/channel-22172/uc4e", - "osmosis_verified": true, - "listing_date_time_utc": "2024-03-06T12:52:00Z" + "osmosis_verified": true }, { "chain_name": "terra2", "base_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", "path": "transfer/channel-341/cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", "osmosis_verified": false, - "listing_date_time_utc": "2024-03-02T22:12:00Z", "transfer_methods": [ { "name": "Osmosis Pro TFM IBC Transfer", @@ -3272,7 +3246,6 @@ "base_denom": "ibc/FC5A7360EEED0713AE3E83E9D55A69AF873056A172AC495890ACE4582FF9685A", "path": "transfer/channel-8945/transfer/channel-1/erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09", "osmosis_verified": false, - "listing_date_time_utc": "2024-03-03T21:47:00Z", "canonical": { "chain_name": "binancesmartchain", "base_denom": "0x454b90716a9435e7161a9aea5cf00e0acbe565ae" @@ -3287,7 +3260,6 @@ "categories": [ "nft_protocol" ], - "listing_date_time_utc": "2024-03-03T22:27:00Z", "_comment": "Bedrock $ROCK" }, { @@ -3295,7 +3267,6 @@ "base_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst", "path": "transfer/channel-2186/factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/bqqqpqsxzelp2hdfd4cgmxr6ekpatlj8yt2eghk52vst", "osmosis_verified": false, - "listing_date_time_utc": "2024-03-21T20:09:00Z", "categories": [ "defi" ], @@ -3318,7 +3289,6 @@ "base_denom": "attoaioz", "path": "transfer/channel-779/attoaioz", "osmosis_verified": true, - "listing_date_time_utc": "2024-03-12T23:14:00Z", "transfer_methods": [ { "name": "Osmosis Pro TFM IBC Transfer", @@ -3340,7 +3310,6 @@ "liquid_staking" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-03-14T03:23:00Z", "_comment": "Stride Staked DYM $stDYM" }, { @@ -3351,7 +3320,6 @@ "meme" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-03-13T15:44:00Z", "_comment": "Doki $DOKI" }, { @@ -3361,7 +3329,6 @@ "categories": [ "sail_initiative" ], - "listing_date_time_utc": "2024-03-14T22:20:00Z", "_comment": "Sail DAO $SAIL" }, { @@ -3372,7 +3339,6 @@ "categories": [ "sail_initiative" ], - "listing_date_time_utc": "2024-03-15T19:51:00Z", "_comment": "Shark Protocol $SHARK" }, { @@ -3380,7 +3346,6 @@ "base_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", "path": "transfer/channel-2188/drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", "osmosis_verified": true, - "listing_date_time_utc": "2024-03-21T20:09:00Z", "override_properties": { "name": "Ripple (Coreum)", "logo_URIs": { @@ -3416,7 +3381,6 @@ "categories": [ "defi" ], - "listing_date_time_utc": "2024-03-25T19:39:00Z", "_comment": "Nibiru $NIBI" }, { @@ -3428,7 +3392,6 @@ "base_denom": "0xA4426666addBE8c4985377d36683D17FB40c31Be" }, "osmosis_verified": false, - "listing_date_time_utc": "2024-04-01T19:35:00Z", "transfer_methods": [ { "name": "Osmosis Pro TFM IBC Transfer", @@ -3454,7 +3417,6 @@ "categories": [ "meme" ], - "listing_date_time_utc": "2024-04-01T21:57:00Z", "_comment": "Toro Coin $TORO" }, { @@ -3482,7 +3444,6 @@ "sail_initiative", "built_on_osmosis" ], - "listing_date_time_utc": "2024-04-02T15:53:00Z", "_comment": "LAB $LAB" }, { @@ -3493,7 +3454,6 @@ "sail_initiative" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-05-15T18:00:00Z", "_comment": "BackBone Labs Liquid Staked OSMO $bOSMO" }, { @@ -3515,7 +3475,6 @@ "categories": [ "depin" ], - "listing_date_time_utc": "2024-05-21T16:00:00Z", "_comment": "PundiX $PUNDIX" }, { @@ -3535,7 +3494,6 @@ } ], "osmosis_verified": true, - "listing_date_time_utc": "2024-04-03T16:09:00Z", "_comment": "Tinkernet $TNKR" }, { @@ -3558,7 +3516,6 @@ "bridges" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-04-03T17:37:00Z", "_comment": "Wormhole Token $W" }, { @@ -3569,7 +3526,6 @@ "categories": [ "dweb" ], - "listing_date_time_utc": "2024-05-16T17:00:00Z", "_comment": "dHealth Token $DHP" }, { @@ -3577,7 +3533,6 @@ "base_denom": "ufury", "path": "transfer/channel-74222/ufury", "osmosis_verified": false, - "listing_date_time_utc": "2024-04-29T16:37:00Z", "_comment": "Fury Token $FURY" }, { @@ -3588,7 +3543,6 @@ "categories": [ "gaming" ], - "listing_date_time_utc": "2024-04-09T10:30:00Z", "override_properties": { "logo_URIs": { "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga_white.png", @@ -3605,7 +3559,6 @@ "categories": [ "meme" ], - "listing_date_time_utc": "2024-04-09T16:00:00Z", "_comment": "ATOM1KLFG $ATOM1KLFG" }, { @@ -3639,7 +3592,6 @@ "meme" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-04-15T15:55:00Z", "_comment": "Hava Coin $HAVA" }, { @@ -3674,7 +3626,6 @@ "defi" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-04-13T17:50:00Z", "_comment": "Astroport $ASTRO" }, { @@ -3685,7 +3636,6 @@ "defi" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-04-13T17:50:00Z", "osmosis_unlisted": true, "_comment": "Staked Astroport $xASTRO" }, @@ -3694,7 +3644,6 @@ "base_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", "path": "transfer/channel-144/gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", "osmosis_verified": false, - "listing_date_time_utc": "2024-04-13T19:14:00Z", "override_properties": { "name": "Paxos Gold (Gravity Bridge)", "logo_URIs": { @@ -3719,7 +3668,6 @@ "base_denom": "factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", "path": "transfer/channel-642/factory/migaloo1d0uma9qzcts4fzt7ml39xp44aut5k6qyjfzz4asalnecppppr3rsl52vvv/rstk", "osmosis_verified": false, - "listing_date_time_utc": "2024-04-14T01:25:00Z", "_comment": "ReStake DAO $RSTK" }, { @@ -3729,7 +3677,6 @@ "categories": [ "meme" ], - "listing_date_time_utc": "2024-04-23T02:49:00Z", "_comment": "Bernese $BERNESE" }, { @@ -3737,7 +3684,6 @@ "base_denom": "ibc/F9D075D4079FC56A9C49B601E54A45292C319D8B0E8CC0F8439041130AA7166C", "path": "transfer/channel-1279/transfer/channel-52/wei", "osmosis_verified": true, - "listing_date_time_utc": "2024-04-25T15:30:00Z", "_comment": "Ether (Picasso) $ETH.pica", "transfer_methods": [ { @@ -3758,7 +3704,6 @@ "base_denom": "ibc/A342F6F8D1CDE1D934C50E8EAFF91E813D971E1BFEED7E557F1674E01004A533", "path": "transfer/channel-1279/transfer/channel-52/0x6b175474e89094c44da98b954eedeac495271d0f", "osmosis_verified": false, - "listing_date_time_utc": "2024-04-25T15:30:00Z", "_comment": "Dai Stablecoin (Picasso) $DAI.pica", "transfer_methods": [ { @@ -3779,7 +3724,6 @@ "base_denom": "ibc/5F9BE030FC355733EC79307409FA98398BBFC747C9430B326C144A74F6808B29", "path": "transfer/channel-1279/transfer/channel-52/0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0", "osmosis_verified": true, - "listing_date_time_utc": "2024-04-25T15:30:00Z", "_comment": "Frax Shares (Picasso) $FXS.pica", "transfer_methods": [ { @@ -3800,7 +3744,6 @@ "base_denom": "ibc/4F20D68B51ED559F99C3CD658383E91F45486D884BF546E7B25337A058562CDB", "path": "transfer/channel-1279/transfer/channel-52/0x853d955acef822db058eb8505911ed77f175b99e", "osmosis_verified": false, - "listing_date_time_utc": "2024-04-25T15:30:00Z", "_comment": "Frax (Picasso) $FRAX.pica", "transfer_methods": [ { @@ -3821,7 +3764,6 @@ "base_denom": "ibc/37CC704EA53E96AB09A9C31D79142DE7DB252420F3AB18015F9870AE219947BD", "path": "transfer/channel-1279/transfer/channel-52/0xdac17f958d2ee523a2206206994597c13d831ec7", "osmosis_verified": false, - "listing_date_time_utc": "2024-04-25T15:30:00Z", "_comment": "Tether USD (Ethereum via Picasso) $USDT.pica", "transfer_methods": [ { @@ -3842,7 +3784,6 @@ "base_denom": "ibc/5BD7F23FE150D9CF3BCC944DB829380BCC51A4022A131151C4D13B3AFAC2D1D9", "path": "transfer/channel-1279/transfer/channel-52/0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32", "osmosis_verified": true, - "listing_date_time_utc": "2024-04-25T15:30:00Z", "_comment": "Staked Frax (Picasso) $sFRAX.pica", "transfer_methods": [ { @@ -3863,7 +3804,6 @@ "base_denom": "ibc/458032E654E41DB91EF98F13E2CE4F9E0FE86BA3E0CDBEC074A854E9F5229A90", "path": "transfer/channel-1279/transfer/channel-52/0x5e8422345238f34275888049021821e8e08caa1f", "osmosis_verified": false, - "listing_date_time_utc": "2024-04-25T15:30:00Z", "_comment": "Frax Ether (Picasso) $frxETH.pica", "transfer_methods": [ { @@ -3884,7 +3824,6 @@ "base_denom": "ibc/4E0ECE7819D77B0F2B49F5C34B5E594A02D2BA8B1B0F103208F847B53EBFB69A", "path": "transfer/channel-1279/transfer/channel-52/0xac3e018457b222d93114458476f3e3416abbe38f", "osmosis_verified": true, - "listing_date_time_utc": "2024-04-25T15:30:00Z", "_comment": "Frax Staked Ether (Picasso) $sfrxETH.pica", "transfer_methods": [ { @@ -3908,7 +3847,6 @@ "social" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-04-29T12:00:00Z", "_comment": "Adam Clay FanToken $CLAY" }, { @@ -3919,14 +3857,12 @@ "social" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-04-29T12:00:00Z", "_comment": "404Deep Records Fantoken $404DR" }, { "chain_name": "osmosis", "base_denom": "factory/osmo19hdqma2mj0vnmgcxag6ytswjnr8a3y07q7e70p/wLIBRA", "osmosis_verified": true, - "listing_date_time_utc": "2024-04-30T12:00:00Z", "_comment": "Wrapped Libra Coin $wLIBRA" }, { @@ -3939,7 +3875,6 @@ }, "osmosis_verified": false, "osmosis_unstable": true, - "listing_date_time_utc": "2024-05-01T18:25:00Z", "transfer_methods": [ { "name": "Dymension Portal", @@ -3955,14 +3890,12 @@ "base_denom": "aseda", "path": "transfer/channel-75016/aseda", "osmosis_verified": true, - "listing_date_time_utc": "2024-05-03T13:00:00Z", "_comment": "SEDA $SEDA" }, { "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/cac", "osmosis_verified": true, - "listing_date_time_utc": "2024-05-06T12:00:00Z", "_comment": "Cosmos Airdrop Chat $CAC", "categories": [ "meme" @@ -3976,14 +3909,12 @@ "meme" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-05-08T18:00:00Z", "_comment": "$WEIRD Friends NFTs" }, { "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/pbb", "osmosis_verified": false, - "listing_date_time_utc": "2024-05-13T18:41:03Z", "_comment": "Power Bottom $PBB", "categories": [ "meme" @@ -3993,7 +3924,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bwh", "osmosis_verified": false, - "listing_date_time_utc": "2024-05-13T18:59:11Z", "_comment": "BeerWifHat $BWH", "categories": [ "meme" @@ -4004,14 +3934,12 @@ "base_denom": "cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", "path": "transfer/channel-169/cw20:juno1spjes0smg5yp40dl7gqyw0h8rn03tnmve06dd2m5acwgh6tlx86swha3xg", "osmosis_verified": false, - "listing_date_time_utc": "2024-05-13T19:00:00Z", "_comment": "Airdrop For All $AFA" }, { "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/shitmos", "osmosis_verified": true, - "listing_date_time_utc": "2024-05-14T15:45:04Z", "_comment": "Shitmos $SHITMOS", "categories": [ "meme" @@ -4025,7 +3953,6 @@ "categories": [ "liquid_staking" ], - "listing_date_time_utc": "2024-05-14T18:30:00Z", "_comment": "Quicksilver Staked JUNO $qJUNO" }, { @@ -4036,7 +3963,6 @@ "categories": [ "liquid_staking" ], - "listing_date_time_utc": "2024-05-14T18:30:00Z", "_comment": "Quicksilver Staked SAGA $qSAGA" }, { @@ -4047,7 +3973,6 @@ "categories": [ "liquid_staking" ], - "listing_date_time_utc": "2024-05-14T18:30:00Z", "_comment": "Quicksilver Staked DYDX $qDYDX" }, { @@ -4058,7 +3983,6 @@ "categories": [ "liquid_staking" ], - "listing_date_time_utc": "2024-05-14T18:30:00Z", "_comment": "Quicksilver Staked BLD $qBLD" }, { @@ -4233,7 +4157,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/wiha", "osmosis_verified": false, - "listing_date_time_utc": "2024-05-16T21:03:04Z", "_comment": "WiliHall $WIHA", "categories": [ "meme" @@ -4243,7 +4166,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/crazyhorse", "osmosis_verified": false, - "listing_date_time_utc": "2024-05-14T22:32:04Z", "_comment": "HorseShoeBar $CRAZYHORSE", "categories": [ "meme" @@ -4253,7 +4175,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/coca", "osmosis_verified": false, - "listing_date_time_utc": "2024-05-21T11:07:05Z", "_comment": "CosmusCartol $COCA", "categories": [ "meme" @@ -4264,7 +4185,6 @@ "base_denom": "ibc/D105950618E47CA2AEC314282BC401625025F80A4F812808DEEBB1941C685575", "path": "transfer/channel-1279/transfer/channel-71/Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB", "osmosis_verified": false, - "listing_date_time_utc": "2024-07-04T22:00:00Z", "_comment": "Tether USDT (Solana via Picasso) $USDT.solana.pica", "transfer_methods": [ { @@ -4285,7 +4205,6 @@ "base_denom": "ibc/BADB5950C4A81AC201696EBCB33CD295137FA86F0AA620CDDE946D3700E0208C", "path": "transfer/channel-1279/transfer/channel-71/edge86g9cVz87xcpKpy3J77vbp4wYd9idEV562CCntt", "osmosis_verified": false, - "listing_date_time_utc": "2024-07-04T22:00:00Z", "_comment": "Edgevana Staked SOL $edgeSOL.pica", "transfer_methods": [ { @@ -4306,7 +4225,6 @@ "base_denom": "ibc/55F5B582483FEFA5422794292B079B4D49A5BAB9881E7C801F9F271F1D234F1D", "path": "transfer/channel-1279/transfer/channel-71/LSTxxxnJzKDFSLr4dUkPcmCf5VyryEqzPLz5j4bpxFp", "osmosis_verified": false, - "listing_date_time_utc": "2024-07-04T22:00:00Z", "_comment": "Liquid Staking Token $LST.pica", "transfer_methods": [ { @@ -4327,7 +4245,6 @@ "base_denom": "ibc/91A2FE07F8BDFC0552B1C9972FCCBF2CFD067DDE5F496D81E5132CE57762B0F2", "path": "transfer/channel-1279/transfer/channel-71/J1toso1uCk3RLmjorhTtrVwY9HJ7X8V9yYac6Y7kGCPn", "osmosis_verified": false, - "listing_date_time_utc": "2024-07-04T22:00:00Z", "_comment": "Jito Staked SOL $jitoSOL.pica", "transfer_methods": [ { @@ -4348,7 +4265,6 @@ "base_denom": "ibc/2CC39C8141F257EBBA250F65B9D0F31DC8D153C225E51EC192DE6E3F65D43F0C", "path": "transfer/channel-1279/transfer/channel-71/So11111111111111111111111111111111111111112", "osmosis_verified": false, - "listing_date_time_utc": "2024-07-04T22:00:00Z", "_comment": "Wrapped Solana $wSOL.pica", "transfer_methods": [ { @@ -4374,7 +4290,6 @@ "osmosis_verified": true, "peg_mechanism": "collateralized", "is_alloyed": true, - "listing_date_time_utc": "2024-06-17T19:30:00Z", "_comment": "Alloyed USDT $allUSDT", "categories": [ "stablecoin" @@ -4412,7 +4327,6 @@ "chain_name": "solana", "base_denom": "ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump" }, - "listing_date_time_utc": "2024-06-05T03:00:00Z", "_comment": "WHINEcoin (Solana) $WHINE via Picasso", "transfer_methods": [ { @@ -4427,7 +4341,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bag", "osmosis_verified": false, - "listing_date_time_utc": "2024-06-15T13:59:04Z", "_comment": "Baguette $BAG", "categories": [ "meme" @@ -4452,7 +4365,6 @@ "social" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-06-25T12:00:00Z", "_comment": "N43 FanToken $N43" }, { @@ -4463,7 +4375,6 @@ "meme" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-06-29T21:00:00Z", "_comment": "Rakoff Token $RAKOFF" }, { @@ -4485,7 +4396,6 @@ "withdraw_url": "https://satellite.money/?source=osmosis&destination=ethereum&asset_denom=arbitrum-weth-wei" } ], - "listing_date_time_utc": "2024-07-03T19:00:00Z", "_comment": "Wrapped Ether (Arbitrum via Axelar) $ETH.arb.axl" }, { @@ -4507,7 +4417,6 @@ "withdraw_url": "https://satellite.money/?source=osmosis&destination=ethereum&asset_denom=base-weth-wei" } ], - "listing_date_time_utc": "2024-07-03T19:00:00Z", "_comment": "Wrapped Ether (Base via Axelar) $ETH.base.axl" }, { @@ -4529,7 +4438,6 @@ "withdraw_url": "https://satellite.money/?source=osmosis&destination=ethereum&asset_denom=polygon-weth-wei" } ], - "listing_date_time_utc": "2024-07-03T19:00:00Z", "_comment": "Wrapped Ether (Polygon via Axelar) $ETH.matic.axl" }, { @@ -4540,7 +4448,6 @@ "categories": [ "liquid_staking" ], - "listing_date_time_utc": "2024-07-04T12:00:00Z", "_comment": "Stride Staked ISLM $stISLM" }, { @@ -4552,7 +4459,6 @@ "base_denom": "amand" }, "osmosis_verified": true, - "listing_date_time_utc": "2024-07-09T17:30:00Z", "transfer_methods": [ { "name": "Dymension Portal", @@ -4568,7 +4474,6 @@ "base_denom": "uneutaro", "path": "transfer/channel-79092/uneutaro", "osmosis_verified": true, - "listing_date_time_utc": "2024-11-15T04:00:00Z", "_comment": "Neutaro $NTMPI" }, { @@ -4591,8 +4496,7 @@ "withdraw_url": "http://wormhole.bridge.sandwichswap.io/pumpfunosmo/pbj/withdraw" } ], - "_comment": "Pepe Bruce Jenner $PBJ", - "listing_date_time_utc": "2024-07-12T12:00:00Z" + "_comment": "Pepe Bruce Jenner $PBJ" }, { "chain_name": "noble", @@ -4604,14 +4508,12 @@ "stablecoin" ], "peg_mechanism": "collateralized", - "listing_date_time_utc": "2024-07-16T08:10:00Z", "_comment": "Ondo US Dollar Yield $USDY" }, { "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd", "osmosis_verified": false, - "listing_date_time_utc": "2024-07-16T04:01:13Z", "_comment": "TURDLE $TURD", "categories": [ "meme" @@ -4622,7 +4524,6 @@ "base_denom": "ufct", "path": "transfer/channel-79241/ufct", "osmosis_verified": true, - "listing_date_time_utc": "2024-07-16T17:42:00Z", "_comment": "FIRMACHAIN $FCT" }, { @@ -4664,7 +4565,6 @@ "base_denom": "ulava", "path": "transfer/channel-76971/ulava", "osmosis_verified": true, - "listing_date_time_utc": "2024-07-30T15:00:00Z", "_comment": "LAVA $LAVA" }, { @@ -4672,7 +4572,6 @@ "base_denom": "ibc/0FA9232B262B89E77D1335D54FB1E1F506A92A7E4B51524B400DC69C68D28372", "osmosis_verified": true, "osmosis_disabled": true, - "listing_date_time_utc": "2024-07-31T20:00:00Z", "canonical": { "chain_name": "penumbra", "base_denom": "upenumbra" @@ -4691,7 +4590,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/TRX.rt", "osmosis_verified": false, - "listing_date_time_utc": "2024-08-07T18:30:00Z", "transfer_methods": [ { "name": "Nitro Router", @@ -4706,7 +4604,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/USDT.rt", "osmosis_verified": true, - "listing_date_time_utc": "2024-08-07T18:30:00Z", "peg_mechanism": "collateralized", "transfer_methods": [ { @@ -4762,7 +4659,6 @@ "rwa" ], "osmosis_verified": true, - "listing_date_time_utc": "2024-08-02T22:20:00Z", "_comment": "Cosmo $COSMO" }, { @@ -4773,14 +4669,12 @@ "categories": [ "liquid_staking" ], - "listing_date_time_utc": "2024-08-06T10:00:00Z", "_comment": "Stride Staked BAND $stBAND" }, { "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/COOK", "osmosis_verified": false, - "listing_date_time_utc": "2024-08-06T14:30:00Z", "_comment": "COOK $COOK", "categories": [ "meme" @@ -4791,7 +4685,6 @@ "base_denom": "factory/osmo14mafhhp337yjj2aujplawz0tks6jd2lel4hkwz4agyzhvvztzaqsqzjq8x/alloyed/allTRX", "osmosis_verified": true, "is_alloyed": true, - "listing_date_time_utc": "2024-08-06T18:00:00Z", "_comment": "Alloyed TRX $allTRX", "canonical": { "chain_name": "tron", @@ -4802,7 +4695,6 @@ "chain_name": "routerchain", "base_denom": "route", "path": "transfer/channel-79180/route", - "listing_date_time_utc": "2024-08-07T17:30:00Z", "osmosis_verified": true, "categories": [ "bridges" @@ -4813,7 +4705,6 @@ "base_denom": "factory/osmo1nufyzqlm8qhu2w7lm0l4rrax0ec8rsk69mga4tel8eare7c7ljaqpk2lyg/alloyed/allOP", "osmosis_verified": true, "is_alloyed": true, - "listing_date_time_utc": "2024-09-27T00:00:00Z", "_comment": "Alloyed OP $allOP 2024-08-12T18:00:00Z", "canonical": { "chain_name": "optimism", @@ -4839,7 +4730,6 @@ "withdraw_url": "https://satellite.money/?source=osmosis&destination=optimism&asset_denom=op-wei" } ], - "listing_date_time_utc": "2024-08-12T18:00:00Z", "_comment": "Optimism (via Axelar) $OP.axl" }, { @@ -4847,7 +4737,6 @@ "base_denom": "factory/osmo1f588gk9dazpsueevdl2w6wfkmfmhg5gdvg2uerdlzl0atkasqhsq59qc6a/alloyed/allSHIB", "osmosis_verified": true, "is_alloyed": true, - "listing_date_time_utc": "2024-09-27T00:00:00Z", "_comment": "Alloyed SHIB $allSHIB 2024-08-12T18:00:00Z", "canonical": { "chain_name": "ethereum", @@ -4862,7 +4751,6 @@ "base_denom": "factory/osmo1p7x454ex08s4f9ztmm7wfv7lvtgdkfztj2u7v7fezfcauy85q35qmqrdpk/alloyed/allARB", "osmosis_verified": true, "is_alloyed": true, - "listing_date_time_utc": "2024-09-27T00:00:00Z", "_comment": "Alloyed ARB $allARB 2024-08-12T18:00:00Z", "canonical": { "chain_name": "arbitrum", @@ -4874,7 +4762,6 @@ "base_denom": "factory/osmo18zdw5yvs6gfp95rp74qqwug9yduw2fyr8kplk2xgs726s9axc5usa2vpgw/alloyed/allLINK", "osmosis_verified": true, "is_alloyed": true, - "listing_date_time_utc": "2024-09-27T00:00:00Z", "_comment": "Alloyed LINK $allLINK 2024-08-12T18:00:00Z", "canonical": { "chain_name": "ethereum", @@ -4889,7 +4776,6 @@ "base_denom": "factory/osmo1nnlxegt0scm9qkzys9c874t0ntapv4epfjy2w49c0xdrp3dr0v4ssmelzx/alloyed/allPEPE", "osmosis_verified": true, "is_alloyed": true, - "listing_date_time_utc": "2024-09-27T00:00:00Z", "_comment": "Alloyed PEPE $allPEPE 2024-08-12T18:00:00Z", "canonical": { "chain_name": "ethereum", @@ -4918,7 +4804,6 @@ "categories": [ "meme" ], - "listing_date_time_utc": "2024-08-12T23:00:00Z", "_comment": "Unicorn (Solana via Picasso) $UWU.pica", "transfer_methods": [ { @@ -4941,7 +4826,6 @@ "base_denom": "erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE", "path": "transfer/channel-1575/erc20/0x4FEBDDe47Ab9a76200e57eFcC80b212a07b3e6cE", "osmosis_verified": true, - "listing_date_time_utc": "2024-08-15T12:00:00Z", "peg_mechanism": "collateralized", "categories": [ "stablecoin", @@ -4956,7 +4840,6 @@ "rwa" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-08-15T08:05:00Z", "_comment": "CosmoUSD $COSMOUSD" }, { @@ -4966,7 +4849,6 @@ "categories": [ "meme" ], - "listing_date_time_utc": "2024-08-21T09:30:00Z", "_comment": "XTRUMP $XTRUMP" }, { @@ -4984,7 +4866,6 @@ } }, "_comment": "Tether USD (Ethereum via Peggy) $USDT.eth.inj $USDT.inj", - "listing_date_time_utc": "2024-08-21T18:00:00Z", "categories": [ "stablecoin" ] @@ -4993,7 +4874,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBAD", "osmosis_verified": true, - "listing_date_time_utc": "2024-08-27T21:30:00Z", "_comment": "Fractal BAD $fBAD", "categories": [ "nft_protocol", @@ -5004,7 +4884,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fMAD", "osmosis_verified": true, - "listing_date_time_utc": "2024-08-27T21:30:00Z", "_comment": "Fractal MAD $fMAD", "categories": [ "nft_protocol", @@ -5015,7 +4894,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fSLOTH", "osmosis_verified": true, - "listing_date_time_utc": "2024-08-27T21:30:00Z", "_comment": "Fractal SLOTH $fSLOTH", "categories": [ "nft_protocol", @@ -5026,7 +4904,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fNUT", "osmosis_verified": false, - "listing_date_time_utc": "2024-08-27T21:30:00Z", "_comment": "Fractal NUT $fNUT", "categories": [ "nft_protocol", @@ -5038,7 +4915,6 @@ "base_denom": "factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", "path": "transfer/channel-874/factory/neutron1ndu2wvkrxtane8se2tr48gv7nsm46y5gcqjhux/MARS", "osmosis_verified": true, - "listing_date_time_utc": "2024-10-01T20:00:00Z", "_comment": "Mars (Neutron) $MARS.ntrn", "categories": [ "defi", @@ -5050,7 +4926,6 @@ "base_denom": "factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton", "path": "transfer/channel-216/factory/orai1wuvhex9xqs3r539mvc6mtm7n20fcj3qr2m0y9khx6n5vtlngfzes3k0rq9/ton", "osmosis_verified": true, - "listing_date_time_utc": "2024-08-30T00:33:00Z", "_comment": "Toncoin (Orainchain) $TON.orai", "categories": [ "defi" @@ -5076,7 +4951,6 @@ "base_denom": "factory/osmo12lnwf54yd30p6amzaged2atln8k0l32n7ncxf04ctg7u7ymnsy7qkqgsw4/alloyed/allTON", "osmosis_verified": true, "is_alloyed": true, - "listing_date_time_utc": "2024-09-03T15:15:00Z", "_comment": "Alloyed TON $allTON 2024-09-03T15:15:00Z", "canonical": { "chain_name": "ton", @@ -5091,7 +4965,6 @@ "base_denom": "stBTC", "path": "transfer/channel-79840/stBTC", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-09T18:00:00Z", "_comment": "Lorenzo stBTC $stBTC", "categories": [ "liquid_staking" @@ -5101,7 +4974,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1xu0gk9aggv79597xwazyfzaggv2pze9z7cq3p9p72tkkux9a7xaqufa792/BVT", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-07T00:00:00Z", "_comment": "Banana Vault Token - Peelworks Factory II", "categories": [ "defi", @@ -5112,8 +4984,7 @@ "chain_name": "osmosis", "base_denom": "factory/osmo16nxtnrnl7lctvnhhpcxqmmpv63n93zgg0ukaveyc0jl4dtad79cs53c3an/BVT", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-07T00:00:00Z", - "_comment": "Banana Vault Token - Banana Beach (🍹,🌴) II", + "_comment": "Banana Vault Token - Banana Beach (\ud83c\udf79,\ud83c\udf34) II", "categories": [ "defi", "built_on_osmosis" @@ -5123,7 +4994,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/AVAIL.rt", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-10T20:00:00Z", "transfer_methods": [ { "name": "Nitro Router", @@ -5147,7 +5017,6 @@ "chain_name": "ethereum", "base_denom": "0x3231Cb76718CDeF2155FC47b5286d82e6eDA273f" }, - "listing_date_time_utc": "2024-09-19T20:00:00Z", "_comment": "Monerium EUR emoney $EURe" }, { @@ -5155,14 +5024,12 @@ "base_denom": "uandr", "path": "transfer/channel-81924/uandr", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-19T16:00:00Z", "_comment": "Adromeda $ANDR" }, { "chain_name": "osmosis", "base_denom": "factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-icrc-ckBTC", "osmosis_verified": true, - "listing_date_time_utc": "2024-10-04T13:20:00Z", "canonical": { "chain_name": "internetcomputer", "base_denom": "uckBTC" @@ -5181,7 +5048,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWIZ", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-24T19:00:00Z", "_comment": "Fractal Pixel Wizards $fWIZ", "categories": [ "nft_protocol", @@ -5192,7 +5058,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fWITCH", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-24T19:00:00Z", "_comment": "Fractal Pixel Witches $fWITCH", "categories": [ "nft_protocol", @@ -5203,7 +5068,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fCRYPTONIUM", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-24T19:00:00Z", "_comment": "Fractal Cryptonium Maker $fCRYPTONIUM", "categories": [ "nft_protocol", @@ -5214,7 +5078,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fATLAS", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-24T19:00:00Z", "_comment": "Fractal Atlas $fATLAS", "categories": [ "nft_protocol", @@ -5225,7 +5088,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fGECK", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-24T19:00:00Z", "_comment": "Fractal Geckies $fGECK", "categories": [ "nft_protocol", @@ -5236,7 +5098,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1dywfmhyc8y0wga7qpzej0x0mgwqg25fj4eccp494w8yafzdpgamsx9ryyv/fBULLS", "osmosis_verified": false, - "listing_date_time_utc": "2024-09-24T19:00:00Z", "_comment": "Fractal Rekt Bulls $fBULLS", "categories": [ "nft_protocol", @@ -5251,7 +5112,6 @@ "meme" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-09-26T03:00:00Z", "_comment": "SinGarden token" }, { @@ -5262,7 +5122,6 @@ "bridges" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-10-03T03:00:00Z", "_comment": "Kima token" }, { @@ -5270,7 +5129,6 @@ "base_denom": "wei", "path": "transfer/channel-81016/wei", "osmosis_verified": true, - "listing_date_time_utc": "2024-10-20T12:00:00Z", "_comment": "Stratos native token (STOS)" }, { @@ -5281,7 +5139,6 @@ "categories": [ "defi" ], - "listing_date_time_utc": "2024-10-14T18:00:00Z", "override_properties": { "logo_URIs": { "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/uni.axl.svg", @@ -5298,7 +5155,6 @@ "categories": [ "defi" ], - "listing_date_time_utc": "2024-10-14T18:00:00Z", "_comment": "Alloyed UNI $allUNI", "canonical": { "chain_name": "ethereum", @@ -5310,7 +5166,6 @@ "base_denom": "lp:8:uosmo", "path": "transfer/channel-75755/lp:8:uosmo", "osmosis_verified": false, - "listing_date_time_utc": "2024-10-15T18:00:00Z", "_comment": "Pryzm's Osmo Yield LP", "categories": [ "defi" @@ -5324,7 +5179,6 @@ "bridges" ], "osmosis_verified": false, - "listing_date_time_utc": "2024-10-11T03:00:00Z", "_comment": "Int3face token" }, { @@ -5346,7 +5200,6 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/doge.int3.png" } }, - "listing_date_time_utc": "2024-10-11T03:00:00Z", "_comment": "Dogecoin (DOGE via Int3face) $DOGE.int3" }, { @@ -5368,7 +5221,6 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/btc.int3.png" } }, - "listing_date_time_utc": "2024-10-11T03:00:00Z", "_comment": "Bitcoin (BTC via Int3face) $BTC.int3" }, { @@ -5390,7 +5242,6 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bch.int3.png" } }, - "listing_date_time_utc": "2024-10-11T03:00:00Z", "_comment": "Bitcoin Cash (BCH via Int3face) $BCH.int3" }, { @@ -5412,7 +5263,6 @@ "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ltc.int3.png" } }, - "listing_date_time_utc": "2024-10-11T03:00:00Z", "_comment": "Litecoin (LTC via Int3face) $LTC.int3" }, { @@ -5506,7 +5356,6 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1myv2g72h8dan7n4hx7stt3mmust6ws03zh6gxc7vz4hpmgp5z3lq9aunm9/BTC.rt", "osmosis_verified": false, - "listing_date_time_utc": "2024-10-17T00:00:00Z", "transfer_methods": [ { "name": "Nitro Router", @@ -5543,7 +5392,6 @@ "withdraw_url": "https://app.int3face.zone/bridge" } ], - "listing_date_time_utc": "2024-11-19T20:00:00Z", "_comment": "Alloyed Dogecoin $allDOGE" }, { @@ -5576,7 +5424,6 @@ "categories": [ "rwa" ], - "listing_date_time_utc": "2024-10-23T19:00:00Z", "_comment": "Mantra $OM" }, { @@ -5593,7 +5440,6 @@ "categories": [ "meme" ], - "listing_date_time_utc": "2024-11-06T20:00:00Z", "_comment": "Spice $SPICE" }, { @@ -5609,7 +5455,6 @@ "categories": [ "defi" ], - "listing_date_time_utc": "2024-10-25T01:00:00Z", "_comment": "Cacao Swap $YUM" }, { @@ -5624,14 +5469,12 @@ "base_denom": "udgn", "path": "transfer/channel-85791/udgn", "osmosis_verified": true, - "listing_date_time_utc": "2024-11-18T20:00:00Z", "_comment": "Dungeon $DGN" }, { "chain_name": "synternet", "base_denom": "usynt", "path": "transfer/channel-85186/usynt", - "listing_date_time_utc": "2024-11-20T12:49:15Z", "osmosis_verified": true, "categories": [ "depin" @@ -5642,11 +5485,10 @@ "chain_name": "osmosis", "base_denom": "factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/bomu", "osmosis_verified": false, - "listing_date_time_utc": "2024-11-16T22:31:35Z", "_comment": "$bomu $BOMU", "categories": [ "meme" ] } ] -} +} \ No newline at end of file