diff --git a/Cargo.toml b/Cargo.toml index 40ad2bf4..45e935ef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ "mantis/node", "mantis/blackbox_rs", ] -exclude = ["contracts/cosmwasm/node_modules/", "contracts/cosmwasm/dist"] +exclude = ["contracts/cosmwasm/node_modules/", "contracts/cosmwasm/dist", "contracts/cosmwasm/schema",] resolver = "2" package.version = "0.4.0" diff --git a/contracts/cosmwasm/package-lock.json b/contracts/cosmwasm/package-lock.json index aa02ed7c..c6c536c5 100644 --- a/contracts/cosmwasm/package-lock.json +++ b/contracts/cosmwasm/package-lock.json @@ -1,12 +1,12 @@ { "name": "cvm-cw-types", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cvm-cw-types", - "version": "0.3.0", + "version": "0.4.0", "license": "MIT", "dependencies": { "@cosmjs/cosmwasm-stargate": "^0.32.3", diff --git a/contracts/cosmwasm/package.json b/contracts/cosmwasm/package.json index af23eb74..21491ac8 100644 --- a/contracts/cosmwasm/package.json +++ b/contracts/cosmwasm/package.json @@ -1,13 +1,13 @@ { "name": "cvm-cw-types", - "version": "0.3.0", + "version": "0.4.0", "description": "Composable VM CosmWasm types and client", "files": [ "dist/**/*" ], "scripts": { - "build-cvm-runtime": "cosmwasm-ts-codegen generate --plugin client --schema ../../schema --no-bundle --out dist/cw-cvm-runtime/ --name cw-cvm-runtime && cp --recursive schema/* dist/cw-cvm-runtime/ ", - "build-cw-cvm-executor": "cosmwasm-ts-codegen generate --plugin client --schema ../../schema --no-bundle --out dist/cw-cvm-executor/ --name cw-cvm-executor && cp --recursive schema/* dist/cw-cvm-executor/", + "build-cvm-runtime": "cosmwasm-ts-codegen generate --plugin client --schema ./schema --no-bundle --out dist/cw-cvm-runtime/ --name cw-cvm-runtime && cp --recursive schema/* dist/cw-cvm-runtime/ ", + "build-cw-cvm-executor": "cosmwasm-ts-codegen generate --plugin client --schema ./schema --no-bundle --out dist/cw-cvm-executor/ --name cw-cvm-executor && cp --recursive schema/* dist/cw-cvm-executor/", "build-cw-mantis-order": "cosmwasm-ts-codegen generate --plugin client --schema ./schema --no-bundle --out ./dist/cw-mantis-order --name cw-mantis-order && cp --recursive schema/* dist/cw-mantis-order/" }, "type": "module", diff --git a/contracts/cosmwasm/schema/cvm-runtime.json b/contracts/cosmwasm/schema/cvm-runtime.json new file mode 100644 index 00000000..7dd85d55 --- /dev/null +++ b/contracts/cosmwasm/schema/cvm-runtime.json @@ -0,0 +1,3985 @@ +{ + "contract_name": "cvm-runtime", + "contract_version": "0.1.0", + "idl_version": "1.0.0", + "instantiate": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "InstantiateMsg", + "allOf": [ + { + "$ref": "#/definitions/HereItem" + } + ], + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "HereItem": { + "type": "object", + "required": [ + "admin", + "network_id" + ], + "properties": { + "admin": { + "description": "The admin which is allowed to update the bridge list.", + "allOf": [ + { + "$ref": "#/definitions/Addr" + } + ] + }, + "network_id": { + "description": "Network ID of this network where contract is deployed", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + } + } + }, + "execute": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "ExecuteMsg", + "oneOf": [ + { + "type": "object", + "required": [ + "config" + ], + "properties": { + "config": { + "$ref": "#/definitions/ConfigSubMsg" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "admin" + ], + "properties": { + "admin": { + "$ref": "#/definitions/AdminSubMsg" + } + }, + "additionalProperties": false + }, + { + "description": "Sent by the user to execute a program on their behalf.", + "type": "object", + "required": [ + "execute_program" + ], + "properties": { + "execute_program": { + "$ref": "#/definitions/ExecuteProgramMsg_for_Nullable_Funds_for_Displayed_for_uint128" + } + }, + "additionalProperties": false + }, + { + "description": "Request to execute a program on behalf of given user.\n\nThis can only be sent by trusted contract. The message is", + "type": "object", + "required": [ + "execute_program_privileged" + ], + "properties": { + "execute_program_privileged": { + "type": "object", + "required": [ + "call_origin", + "execute_program" + ], + "properties": { + "call_origin": { + "description": "The origin of the call.", + "allOf": [ + { + "$ref": "#/definitions/CallOrigin" + } + ] + }, + "execute_program": { + "description": "Program to execute.", + "allOf": [ + { + "$ref": "#/definitions/ExecuteProgramMsg_for_Funds_for_Displayed_for_uint128" + } + ] + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Message sent from executor trying to spawn program on another network.", + "type": "object", + "required": [ + "bridge_forward" + ], + "properties": { + "bridge_forward": { + "$ref": "#/definitions/BridgeForwardMsg" + } + }, + "additionalProperties": false + }, + { + "description": "simple permissionless message which produce CVM program to test routes", + "type": "object", + "required": [ + "shortcut" + ], + "properties": { + "shortcut": { + "$ref": "#/definitions/ShortcutSubMsg" + } + }, + "additionalProperties": false + }, + { + "description": "executed by host as part of memo handling", + "type": "object", + "required": [ + "message_hook" + ], + "properties": { + "message_hook": { + "$ref": "#/definitions/XcMessageData" + } + }, + "additionalProperties": false + } + ], + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AdminSubMsg": { + "description": "can only be executed by gov or admin", + "oneOf": [ + { + "type": "object", + "required": [ + "execute_packet_i_c_s20" + ], + "properties": { + "execute_packet_i_c_s20": { + "$ref": "#/definitions/ExecutePacketICS20Msg" + } + }, + "additionalProperties": false + } + ] + }, + "Adr08IbcCallbacks": { + "description": "if chain has IBC SDK callbacks enabled", + "type": "object" + }, + "Amount": { + "description": "See https://en.wikipedia.org/wiki/Linear_equation#Slope%E2%80%93intercept_form_or_Gradient-intercept_form", + "type": "object", + "properties": { + "intercept": { + "description": "absolute amount, optional, default is 0", + "allOf": [ + { + "$ref": "#/definitions/Displayed_for_uint128" + } + ] + }, + "slope": { + "description": "part of `MAX_PARTS` from remaining after intercept subtraction, optional, default is 0", + "allOf": [ + { + "$ref": "#/definitions/Displayed_for_uint64" + } + ] + } + } + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "AssetsVenueItem": { + "description": "assets which can be transomed into each other via venue", + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "venue_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "venue_id": { + "$ref": "#/definitions/VenueId" + } + } + }, + "BindingValue": { + "oneOf": [ + { + "type": "object", + "required": [ + "register" + ], + "properties": { + "register": { + "$ref": "#/definitions/Register" + } + }, + "additionalProperties": false + }, + { + "description": "Asset's address", + "type": "object", + "required": [ + "asset" + ], + "properties": { + "asset": { + "$ref": "#/definitions/AssetId" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "asset_amount" + ], + "properties": { + "asset_amount": { + "type": "array", + "items": [ + { + "$ref": "#/definitions/AssetId" + }, + { + "$ref": "#/definitions/Amount" + } + ], + "maxItems": 2, + "minItems": 2 + } + }, + "additionalProperties": false + } + ] + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "BridgeForwardMsg": { + "type": "object", + "required": [ + "executor_origin", + "msg", + "to_network" + ], + "properties": { + "executor_origin": { + "$ref": "#/definitions/ExecutorOrigin" + }, + "msg": { + "$ref": "#/definitions/ExecuteProgramMsg_for_Funds_for_Displayed_for_uint128" + }, + "to_network": { + "description": "target network", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "CallOrigin": { + "description": "The Origin that executed the CVM operation. Origin was verified to satisfy security semantics for execution.", + "oneOf": [ + { + "type": "object", + "required": [ + "Remote" + ], + "properties": { + "Remote": { + "type": "object", + "required": [ + "user_origin" + ], + "properties": { + "user_origin": { + "$ref": "#/definitions/UserOrigin" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "Local" + ], + "properties": { + "Local": { + "type": "object", + "required": [ + "user" + ], + "properties": { + "user": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "ChannelId": { + "type": "string" + }, + "ChannelInfo": { + "description": "Information associated with an IBC channel.", + "type": "object", + "required": [ + "connection_id", + "counterparty_endpoint", + "id" + ], + "properties": { + "connection_id": { + "description": "the connection this exists on (you can use to query client/consensus info)", + "allOf": [ + { + "$ref": "#/definitions/ConnectionId" + } + ] + }, + "counterparty_endpoint": { + "description": "the remote channel/port we connect to", + "allOf": [ + { + "$ref": "#/definitions/IbcEndpoint" + } + ] + }, + "id": { + "description": "id of this channel", + "allOf": [ + { + "$ref": "#/definitions/ChannelId" + } + ] + } + } + }, + "ConfigSubMsg": { + "description": "cross cross chain routing requires a lot of configuration, about chain executing this contract, about connectivity to and of other chains (even if not connected directly) and about assets and services on these chains (in future block hooks and some set of host extensions/precompiles would help to get some info automatically) `Force` message sets the data unconditionally.", + "oneOf": [ + { + "description": "Permissioned message (gov or admin) to force set information about network contract is executed. Network can be any network or this network (so it overrides some this network parameters too)", + "type": "object", + "required": [ + "force_network" + ], + "properties": { + "force_network": { + "$ref": "#/definitions/NetworkItem" + } + }, + "additionalProperties": false + }, + { + "description": "Sets network to network connectivity/routing information", + "type": "object", + "required": [ + "force_network_to_network" + ], + "properties": { + "force_network_to_network": { + "$ref": "#/definitions/NetworkToNetworkItem" + } + }, + "additionalProperties": false + }, + { + "description": "Permissioned message (gov or admin) to force set asset information.", + "type": "object", + "required": [ + "force_asset" + ], + "properties": { + "force_asset": { + "$ref": "#/definitions/AssetItem" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "force_asset_to_network_map" + ], + "properties": { + "force_asset_to_network_map": { + "$ref": "#/definitions/NetworkAssetItem" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "force_exchange" + ], + "properties": { + "force_exchange": { + "$ref": "#/definitions/ExchangeItem" + } + }, + "additionalProperties": false + }, + { + "description": "Message sent by an admin to remove an asset from registry.", + "type": "object", + "required": [ + "force_remove_asset" + ], + "properties": { + "force_remove_asset": { + "type": "object", + "required": [ + "asset_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "short cut to rollout config faster", + "type": "object", + "required": [ + "force" + ], + "properties": { + "force": { + "type": "array", + "items": { + "$ref": "#/definitions/ConfigSubMsg" + } + } + }, + "additionalProperties": false + }, + { + "description": "instantiates default executor on behalf of user `salt` - human string, converted to hex or base64 depending on implementation", + "type": "object", + "required": [ + "force_instantiate" + ], + "properties": { + "force_instantiate": { + "type": "object", + "required": [ + "user_origin" + ], + "properties": { + "salt": { + "type": "string" + }, + "user_origin": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "force_assets_venue" + ], + "properties": { + "force_assets_venue": { + "$ref": "#/definitions/AssetsVenueItem" + } + }, + "additionalProperties": false + } + ] + }, + "ConnectionId": { + "type": "string" + }, + "Destination_for_XcAddr": { + "oneOf": [ + { + "type": "string", + "enum": [ + "tip" + ] + }, + { + "type": "object", + "required": [ + "account" + ], + "properties": { + "account": { + "$ref": "#/definitions/XcAddr" + } + }, + "additionalProperties": false + } + ] + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "Displayed_for_uint64": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "ExchangeItem": { + "description": "allows to execute Exchange instruction", + "type": "object", + "required": [ + "exchange", + "exchange_id", + "network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "exchange": { + "$ref": "#/definitions/ExchangeType" + }, + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "ExchangeType": { + "oneOf": [ + { + "type": "object", + "required": [ + "osmosis_pool_manager_module_v1_beta1" + ], + "properties": { + "osmosis_pool_manager_module_v1_beta1": { + "type": "object", + "required": [ + "pool_id", + "token_a", + "token_b" + ], + "properties": { + "pool_id": { + "type": "integer", + "format": "uint64", + "minimum": 0.0 + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "astroport_router_contract" + ], + "properties": { + "astroport_router_contract": { + "type": "object", + "required": [ + "address", + "token_a", + "token_b" + ], + "properties": { + "address": { + "$ref": "#/definitions/Addr" + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "ExecutePacketICS20Msg": { + "description": "can only be executed by gov or admin", + "type": "object", + "required": [ + "packet_data_hex" + ], + "properties": { + "packet_data_hex": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + } + }, + "ExecuteProgramMsg_for_Funds_for_Displayed_for_uint128": { + "description": "Definition of a program to be executed including its context.", + "type": "object", + "required": [ + "assets", + "program" + ], + "properties": { + "assets": { + "description": "Assets to fund the CVM executor instance. The executor is funded prior to execution. If None, 100% of CosmWasm native received funds go to executor.", + "allOf": [ + { + "$ref": "#/definitions/Funds_for_Displayed_for_uint128" + } + ] + }, + "program": { + "description": "The program.", + "allOf": [ + { + "$ref": "#/definitions/Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + ] + }, + "salt": { + "description": "The program salt. If JSON, than hex encoded non prefixed lower case string. If not specified, uses no salt.", + "type": "string" + }, + "tip": { + "type": [ + "string", + "null" + ] + } + } + }, + "ExecuteProgramMsg_for_Nullable_Funds_for_Displayed_for_uint128": { + "description": "Definition of a program to be executed including its context.", + "type": "object", + "required": [ + "program" + ], + "properties": { + "assets": { + "description": "Assets to fund the CVM executor instance. The executor is funded prior to execution. If None, 100% of CosmWasm native received funds go to executor.", + "anyOf": [ + { + "$ref": "#/definitions/Funds_for_Displayed_for_uint128" + }, + { + "type": "null" + } + ] + }, + "program": { + "description": "The program.", + "allOf": [ + { + "$ref": "#/definitions/Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + ] + }, + "salt": { + "description": "The program salt. If JSON, than hex encoded non prefixed lower case string. If not specified, uses no salt.", + "type": "string" + }, + "tip": { + "type": [ + "string", + "null" + ] + } + } + }, + "ExecutorOrigin": { + "description": "The executor origin, composite of a user origin and a salt.", + "type": "object", + "required": [ + "salt", + "user_origin" + ], + "properties": { + "salt": { + "type": "string" + }, + "user_origin": { + "$ref": "#/definitions/UserOrigin" + } + } + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "Funds_for_Amount": { + "description": "a set of assets with non zero balances", + "type": "array", + "items": { + "type": "array", + "items": [ + { + "$ref": "#/definitions/AssetId" + }, + { + "$ref": "#/definitions/Amount" + } + ], + "maxItems": 2, + "minItems": 2 + } + }, + "Funds_for_Displayed_for_uint128": { + "description": "a set of assets with non zero balances", + "type": "array", + "items": { + "type": "array", + "items": [ + { + "$ref": "#/definitions/AssetId" + }, + { + "$ref": "#/definitions/Displayed_for_uint128" + } + ], + "maxItems": 2, + "minItems": 2 + } + }, + "H160": { + "type": "string" + }, + "IbcChannels": { + "type": "object", + "properties": { + "ics20": { + "anyOf": [ + { + "$ref": "#/definitions/Ics20Channel" + }, + { + "type": "null" + } + ] + } + } + }, + "IbcEnabled": { + "type": "object", + "properties": { + "channels": { + "anyOf": [ + { + "$ref": "#/definitions/IbcChannels" + }, + { + "type": "null" + } + ] + } + } + }, + "IbcEndpoint": { + "type": "object", + "required": [ + "channel_id", + "port_id" + ], + "properties": { + "channel_id": { + "type": "string" + }, + "port_id": { + "type": "string" + } + } + }, + "IbcIcs20Sender": { + "type": "string", + "enum": [ + "CosmosStargateIbcApplicationsTransferV1MsgTransfer", + "CosmWasmStd1_3" + ] + }, + "Ics20Channel": { + "type": "object", + "required": [ + "sender" + ], + "properties": { + "features": { + "anyOf": [ + { + "$ref": "#/definitions/Ics20Features" + }, + { + "type": "null" + } + ] + }, + "sender": { + "description": "specific per chain way to send IBC ICS 20 assets", + "allOf": [ + { + "$ref": "#/definitions/IbcIcs20Sender" + } + ] + } + } + }, + "Ics20Features": { + "description": "what features/modules/version enabled/installed/configured", + "type": "object", + "properties": { + "ibc_callbacks": { + "anyOf": [ + { + "$ref": "#/definitions/Adr08IbcCallbacks" + }, + { + "type": "null" + } + ] + }, + "pfm": { + "anyOf": [ + { + "$ref": "#/definitions/PFM" + }, + { + "type": "null" + } + ] + }, + "wasm_hooks": { + "description": "if it is exists, chain has that enabled", + "anyOf": [ + { + "$ref": "#/definitions/OsmosisIbcHooks" + }, + { + "type": "null" + } + ] + } + } + }, + "IcsPair": { + "description": "we need both, so we can unwrap", + "type": "object", + "required": [ + "sink", + "source" + ], + "properties": { + "sink": { + "$ref": "#/definitions/ChannelId" + }, + "source": { + "$ref": "#/definitions/ChannelId" + } + } + }, + "Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount": { + "description": "Base CVM instructions. This set will remain as small as possible, expressiveness must come on `top` of the base instructions.", + "oneOf": [ + { + "description": "Transfer some [`Assets`] from the current program to the [`to`] account.", + "type": "object", + "required": [ + "transfer" + ], + "properties": { + "transfer": { + "type": "object", + "required": [ + "assets", + "to" + ], + "properties": { + "assets": { + "$ref": "#/definitions/Funds_for_Amount" + }, + "to": { + "$ref": "#/definitions/Destination_for_XcAddr" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Arbitrary payload representing a raw call inside the current network.\n\nOn picasso, this will be a SCALE encoded dispatch call. On ethereum, an ethereum ABI encoded call. On cosmos, a raw json WasmMsg call.\n\nDepending on the network, the payload might be more structured than the base call. For most of the network in fact, we need to provide the target address along the payload, which can be encoded inside this single payload.", + "type": "object", + "required": [ + "call" + ], + "properties": { + "call": { + "type": "object", + "required": [ + "bindings", + "encoded" + ], + "properties": { + "bindings": { + "type": "array", + "items": { + "type": "array", + "items": [ + { + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + { + "$ref": "#/definitions/BindingValue" + } + ], + "maxItems": 2, + "minItems": 2 + } + }, + "encoded": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Spawn a sub-program on the target `network`.\n\nThe program will be spawned with the desired [`Assets`]. The salt is used to track the program when events are dispatched in the network.", + "type": "object", + "required": [ + "spawn" + ], + "properties": { + "spawn": { + "type": "object", + "required": [ + "assets", + "network_id", + "program" + ], + "properties": { + "assets": { + "$ref": "#/definitions/Funds_for_Amount" + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + }, + "program": { + "$ref": "#/definitions/Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + }, + "salt": { + "description": "If JSON, than hex encoded non prefixed lower case string. Different salt allows to split funds into different virtual wallets So same salt shares assets on set of derived accounts on chains program executes.", + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "type": "object", + "required": [ + "exchange_id", + "give", + "want" + ], + "properties": { + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + }, + "give": { + "$ref": "#/definitions/Funds_for_Amount" + }, + "want": { + "$ref": "#/definitions/Funds_for_Amount" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "NetworkAssetItem": { + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "to_network_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "NetworkItem": { + "type": "object", + "required": [ + "network_id" + ], + "properties": { + "accounts": { + "description": "Account encoding type", + "anyOf": [ + { + "$ref": "#/definitions/Prefix" + }, + { + "type": "null" + } + ] + }, + "ibc": { + "anyOf": [ + { + "$ref": "#/definitions/IbcEnabled" + }, + { + "type": "null" + } + ] + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + }, + "outpost": { + "description": "something which will be receiver on other side case of network has CVM deployed as contract, account address is stored here", + "anyOf": [ + { + "$ref": "#/definitions/OutpostId" + }, + { + "type": "null" + } + ] + } + } + }, + "NetworkToNetworkItem": { + "type": "object", + "required": [ + "from_network_id", + "to_network", + "to_network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "from_network_id": { + "$ref": "#/definitions/NetworkId" + }, + "to_network": { + "description": "how to send `to_network_id` chain", + "allOf": [ + { + "$ref": "#/definitions/OtherNetworkItem" + } + ] + }, + "to_network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "OsmosisIbcHooks": { + "type": "object", + "required": [ + "callback" + ], + "properties": { + "callback": { + "type": "boolean" + } + } + }, + "OtherNetworkItem": { + "type": "object", + "required": [ + "counterparty_timeout" + ], + "properties": { + "counterparty_timeout": { + "description": "default timeout to use for direct send", + "allOf": [ + { + "$ref": "#/definitions/RelativeTimeout" + } + ] + }, + "ics27_channel": { + "description": "if there is ICS27 IBC channel opened", + "anyOf": [ + { + "$ref": "#/definitions/ChannelInfo" + }, + { + "type": "null" + } + ] + }, + "ics_20": { + "anyOf": [ + { + "$ref": "#/definitions/IcsPair" + }, + { + "type": "null" + } + ] + }, + "use_shortcut": { + "description": "if true, than will use shortcuts for example, if program transfer only program will just use native transfer or if connection supports exchange, it will use exchange default is false if target chain has CVM gateway", + "type": [ + "boolean", + "null" + ] + } + } + }, + "OutpostId": { + "description": "when message is sent to other side, we should identify receiver of some kind", + "oneOf": [ + { + "type": "object", + "required": [ + "cosm_wasm" + ], + "properties": { + "cosm_wasm": { + "type": "object", + "required": [ + "admin", + "contract", + "executor_code_id" + ], + "properties": { + "admin": { + "description": "admin of everything", + "allOf": [ + { + "$ref": "#/definitions/Addr" + } + ] + }, + "contract": { + "$ref": "#/definitions/Addr" + }, + "executor_code_id": { + "description": "CVM executor contract code", + "type": "integer", + "format": "uint64", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "PFM": { + "type": "object" + }, + "Packet_for_Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount": { + "type": "object", + "required": [ + "assets", + "executor", + "program", + "salt", + "user_origin" + ], + "properties": { + "assets": { + "description": "The assets that were attached to the program.", + "allOf": [ + { + "$ref": "#/definitions/Funds_for_Displayed_for_uint128" + } + ] + }, + "executor": { + "description": "The executor that was the origin of this packet.", + "type": "string" + }, + "program": { + "description": "The protobuf encoded program.", + "allOf": [ + { + "$ref": "#/definitions/Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + ] + }, + "salt": { + "description": "The salt associated with the program.", + "type": "string" + }, + "user_origin": { + "description": "The user that originated the first CVM call.", + "allOf": [ + { + "$ref": "#/definitions/UserOrigin" + } + ] + } + } + }, + "Prefix": { + "description": "given prefix you may form accounts from 32 bit addresses or partially identify chains", + "oneOf": [ + { + "type": "object", + "required": [ + "s_s58" + ], + "properties": { + "s_s58": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "bech" + ], + "properties": { + "bech": { + "type": "string" + } + }, + "additionalProperties": false + } + ] + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount": { + "type": "object", + "required": [ + "instructions" + ], + "properties": { + "instructions": { + "description": "list of instructions to be executed", + "type": "array", + "items": { + "$ref": "#/definitions/Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + }, + "tag": { + "description": "In JSON, hex encoded identifiers to identify the program off chain (for example in indexer).", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + }, + "Register": { + "oneOf": [ + { + "description": "Instruction pointer", + "type": "string", + "enum": [ + "ip" + ] + }, + { + "description": "Tip's address", + "type": "string", + "enum": [ + "tip" + ] + }, + { + "description": "Executor's address", + "type": "string", + "enum": [ + "this" + ] + }, + { + "description": "Result of the last executed instruction. If not empty, program did not executed to the end.", + "type": "string", + "enum": [ + "result" + ] + }, + { + "description": "Refers to amount transferred via Spawn or originating call", + "type": "object", + "required": [ + "carry" + ], + "properties": { + "carry": { + "$ref": "#/definitions/AssetId" + } + }, + "additionalProperties": false + } + ] + }, + "RelativeTimeout": { + "description": "relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + "oneOf": [ + { + "description": "Timeout is relative to the current block timestamp of counter party", + "type": "object", + "required": [ + "seconds" + ], + "properties": { + "seconds": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + } + ] + }, + "ShortcutSubMsg": { + "oneOf": [ + { + "type": "object", + "required": [ + "transfer" + ], + "properties": { + "transfer": { + "type": "object", + "required": [ + "amount", + "asset_id", + "network" + ], + "properties": { + "amount": { + "$ref": "#/definitions/Uint128" + }, + "asset_id": { + "description": "assets from there", + "allOf": [ + { + "$ref": "#/definitions/AssetId" + } + ] + }, + "network": { + "description": "target network, can hope over several networks if route is stored in state", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + }, + "receiver": { + "description": "by default receiver is this", + "type": [ + "string", + "null" + ] + } + } + } + }, + "additionalProperties": false + } + ] + }, + "Uint128": { + "description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```", + "type": "string" + }, + "UserId": { + "description": "Arbitrary `User` type that represent the identity of a user on a given network, usually a public key.", + "type": "string" + }, + "UserOrigin": { + "description": "The origin of a user, which consist of the composite, origin network and origin network user id.", + "type": "object", + "required": [ + "network_id", + "user_id" + ], + "properties": { + "network_id": { + "$ref": "#/definitions/NetworkId" + }, + "user_id": { + "$ref": "#/definitions/UserId" + } + } + }, + "VenueId": { + "oneOf": [ + { + "type": "string", + "enum": [ + "transfer" + ] + }, + { + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "$ref": "#/definitions/Displayed_for_uint128" + } + }, + "additionalProperties": false + } + ] + }, + "XcAddr": { + "description": "A wrapper around any address on any chain. Similar to `ibc_rs::Signer`(multi encoding), but not depend on ibc code bloat. Unlike parity MultiLocation/Account32/Account20 which hard codes enum into code. Better send canonical address to each chain for performance, But it will also decode/reencode best effort. Inner must be either base64 or hex encoded or contain only characters from these. Added with helper per chain to get final address to use.", + "type": "string" + }, + "XcMessageData": { + "description": "This message should be send as part of wasm termination memo. So that can match it to sender hash and know what channel and origin was used to send message. All information here is not secured until compared with existing secured data.", + "type": "object", + "required": [ + "from_network_id", + "packet" + ], + "properties": { + "from_network_id": { + "$ref": "#/definitions/NetworkId" + }, + "packet": { + "$ref": "#/definitions/Packet_for_Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + } + } + } + }, + "query": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "QueryMsg", + "oneOf": [ + { + "description": "Returns [`AssetReference`] for an asset with given id.", + "type": "object", + "required": [ + "get_asset_by_id" + ], + "properties": { + "get_asset_by_id": { + "type": "object", + "required": [ + "asset_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "get_all_asset_ids" + ], + "properties": { + "get_all_asset_ids": { + "type": "object" + } + }, + "additionalProperties": false + }, + { + "description": "Returns [`AssetItem`] for an asset with given local reference.", + "type": "object", + "required": [ + "get_local_asset_by_reference" + ], + "properties": { + "get_local_asset_by_reference": { + "type": "object", + "required": [ + "reference" + ], + "properties": { + "reference": { + "$ref": "#/definitions/AssetReference" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "get_ibc_ics20_route" + ], + "properties": { + "get_ibc_ics20_route": { + "type": "object", + "required": [ + "for_asset", + "to_network" + ], + "properties": { + "for_asset": { + "$ref": "#/definitions/AssetId" + }, + "to_network": { + "$ref": "#/definitions/NetworkId" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "get_exchange_by_id" + ], + "properties": { + "get_exchange_by_id": { + "type": "object", + "required": [ + "exchange_id" + ], + "properties": { + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Get all information this CVM knows about local and foreign assets/exchanges/networks", + "type": "object", + "required": [ + "get_config" + ], + "properties": { + "get_config": { + "type": "object" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "get_all_asset_venues" + ], + "properties": { + "get_all_asset_venues": { + "type": "object" + } + }, + "additionalProperties": false + } + ], + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "H160": { + "type": "string" + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + } + } + }, + "migrate": null, + "sudo": null, + "responses": { + "get_all_asset_ids": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Array_of_AssetItem", + "type": "array", + "items": { + "$ref": "#/definitions/AssetItem" + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "H160": { + "type": "string" + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + } + } + }, + "get_all_asset_venues": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Array_of_AssetsVenueItem", + "type": "array", + "items": { + "$ref": "#/definitions/AssetsVenueItem" + }, + "definitions": { + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetsVenueItem": { + "description": "assets which can be transomed into each other via venue", + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "venue_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "venue_id": { + "$ref": "#/definitions/VenueId" + } + } + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "VenueId": { + "oneOf": [ + { + "type": "string", + "enum": [ + "transfer" + ] + }, + { + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "$ref": "#/definitions/Displayed_for_uint128" + } + }, + "additionalProperties": false + } + ] + } + } + }, + "get_asset_by_id": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetAssetResponse", + "type": "object", + "required": [ + "asset" + ], + "properties": { + "asset": { + "$ref": "#/definitions/AssetItem" + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "H160": { + "type": "string" + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + } + } + }, + "get_config": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetConfigResponse", + "type": "object", + "required": [ + "asset_venue_items", + "assets", + "exchanges", + "network_assets", + "network_to_networks", + "networks" + ], + "properties": { + "asset_venue_items": { + "type": "array", + "items": { + "$ref": "#/definitions/AssetsVenueItem" + } + }, + "assets": { + "type": "array", + "items": { + "$ref": "#/definitions/AssetItem" + } + }, + "exchanges": { + "type": "array", + "items": { + "$ref": "#/definitions/ExchangeItem" + } + }, + "network_assets": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkAssetItem" + } + }, + "network_to_networks": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkToNetworkItem" + } + }, + "networks": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkItem" + } + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "Adr08IbcCallbacks": { + "description": "if chain has IBC SDK callbacks enabled", + "type": "object" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "AssetsVenueItem": { + "description": "assets which can be transomed into each other via venue", + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "venue_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "venue_id": { + "$ref": "#/definitions/VenueId" + } + } + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "ChannelId": { + "type": "string" + }, + "ChannelInfo": { + "description": "Information associated with an IBC channel.", + "type": "object", + "required": [ + "connection_id", + "counterparty_endpoint", + "id" + ], + "properties": { + "connection_id": { + "description": "the connection this exists on (you can use to query client/consensus info)", + "allOf": [ + { + "$ref": "#/definitions/ConnectionId" + } + ] + }, + "counterparty_endpoint": { + "description": "the remote channel/port we connect to", + "allOf": [ + { + "$ref": "#/definitions/IbcEndpoint" + } + ] + }, + "id": { + "description": "id of this channel", + "allOf": [ + { + "$ref": "#/definitions/ChannelId" + } + ] + } + } + }, + "ConnectionId": { + "type": "string" + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "ExchangeItem": { + "description": "allows to execute Exchange instruction", + "type": "object", + "required": [ + "exchange", + "exchange_id", + "network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "exchange": { + "$ref": "#/definitions/ExchangeType" + }, + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "ExchangeType": { + "oneOf": [ + { + "type": "object", + "required": [ + "osmosis_pool_manager_module_v1_beta1" + ], + "properties": { + "osmosis_pool_manager_module_v1_beta1": { + "type": "object", + "required": [ + "pool_id", + "token_a", + "token_b" + ], + "properties": { + "pool_id": { + "type": "integer", + "format": "uint64", + "minimum": 0.0 + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "astroport_router_contract" + ], + "properties": { + "astroport_router_contract": { + "type": "object", + "required": [ + "address", + "token_a", + "token_b" + ], + "properties": { + "address": { + "$ref": "#/definitions/Addr" + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "H160": { + "type": "string" + }, + "IbcChannels": { + "type": "object", + "properties": { + "ics20": { + "anyOf": [ + { + "$ref": "#/definitions/Ics20Channel" + }, + { + "type": "null" + } + ] + } + } + }, + "IbcEnabled": { + "type": "object", + "properties": { + "channels": { + "anyOf": [ + { + "$ref": "#/definitions/IbcChannels" + }, + { + "type": "null" + } + ] + } + } + }, + "IbcEndpoint": { + "type": "object", + "required": [ + "channel_id", + "port_id" + ], + "properties": { + "channel_id": { + "type": "string" + }, + "port_id": { + "type": "string" + } + } + }, + "IbcIcs20Sender": { + "type": "string", + "enum": [ + "CosmosStargateIbcApplicationsTransferV1MsgTransfer", + "CosmWasmStd1_3" + ] + }, + "Ics20Channel": { + "type": "object", + "required": [ + "sender" + ], + "properties": { + "features": { + "anyOf": [ + { + "$ref": "#/definitions/Ics20Features" + }, + { + "type": "null" + } + ] + }, + "sender": { + "description": "specific per chain way to send IBC ICS 20 assets", + "allOf": [ + { + "$ref": "#/definitions/IbcIcs20Sender" + } + ] + } + } + }, + "Ics20Features": { + "description": "what features/modules/version enabled/installed/configured", + "type": "object", + "properties": { + "ibc_callbacks": { + "anyOf": [ + { + "$ref": "#/definitions/Adr08IbcCallbacks" + }, + { + "type": "null" + } + ] + }, + "pfm": { + "anyOf": [ + { + "$ref": "#/definitions/PFM" + }, + { + "type": "null" + } + ] + }, + "wasm_hooks": { + "description": "if it is exists, chain has that enabled", + "anyOf": [ + { + "$ref": "#/definitions/OsmosisIbcHooks" + }, + { + "type": "null" + } + ] + } + } + }, + "IcsPair": { + "description": "we need both, so we can unwrap", + "type": "object", + "required": [ + "sink", + "source" + ], + "properties": { + "sink": { + "$ref": "#/definitions/ChannelId" + }, + "source": { + "$ref": "#/definitions/ChannelId" + } + } + }, + "NetworkAssetItem": { + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "to_network_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "NetworkItem": { + "type": "object", + "required": [ + "network_id" + ], + "properties": { + "accounts": { + "description": "Account encoding type", + "anyOf": [ + { + "$ref": "#/definitions/Prefix" + }, + { + "type": "null" + } + ] + }, + "ibc": { + "anyOf": [ + { + "$ref": "#/definitions/IbcEnabled" + }, + { + "type": "null" + } + ] + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + }, + "outpost": { + "description": "something which will be receiver on other side case of network has CVM deployed as contract, account address is stored here", + "anyOf": [ + { + "$ref": "#/definitions/OutpostId" + }, + { + "type": "null" + } + ] + } + } + }, + "NetworkToNetworkItem": { + "type": "object", + "required": [ + "from_network_id", + "to_network", + "to_network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "from_network_id": { + "$ref": "#/definitions/NetworkId" + }, + "to_network": { + "description": "how to send `to_network_id` chain", + "allOf": [ + { + "$ref": "#/definitions/OtherNetworkItem" + } + ] + }, + "to_network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "OsmosisIbcHooks": { + "type": "object", + "required": [ + "callback" + ], + "properties": { + "callback": { + "type": "boolean" + } + } + }, + "OtherNetworkItem": { + "type": "object", + "required": [ + "counterparty_timeout" + ], + "properties": { + "counterparty_timeout": { + "description": "default timeout to use for direct send", + "allOf": [ + { + "$ref": "#/definitions/RelativeTimeout" + } + ] + }, + "ics27_channel": { + "description": "if there is ICS27 IBC channel opened", + "anyOf": [ + { + "$ref": "#/definitions/ChannelInfo" + }, + { + "type": "null" + } + ] + }, + "ics_20": { + "anyOf": [ + { + "$ref": "#/definitions/IcsPair" + }, + { + "type": "null" + } + ] + }, + "use_shortcut": { + "description": "if true, than will use shortcuts for example, if program transfer only program will just use native transfer or if connection supports exchange, it will use exchange default is false if target chain has CVM gateway", + "type": [ + "boolean", + "null" + ] + } + } + }, + "OutpostId": { + "description": "when message is sent to other side, we should identify receiver of some kind", + "oneOf": [ + { + "type": "object", + "required": [ + "cosm_wasm" + ], + "properties": { + "cosm_wasm": { + "type": "object", + "required": [ + "admin", + "contract", + "executor_code_id" + ], + "properties": { + "admin": { + "description": "admin of everything", + "allOf": [ + { + "$ref": "#/definitions/Addr" + } + ] + }, + "contract": { + "$ref": "#/definitions/Addr" + }, + "executor_code_id": { + "description": "CVM executor contract code", + "type": "integer", + "format": "uint64", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "PFM": { + "type": "object" + }, + "Prefix": { + "description": "given prefix you may form accounts from 32 bit addresses or partially identify chains", + "oneOf": [ + { + "type": "object", + "required": [ + "s_s58" + ], + "properties": { + "s_s58": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "bech" + ], + "properties": { + "bech": { + "type": "string" + } + }, + "additionalProperties": false + } + ] + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + }, + "RelativeTimeout": { + "description": "relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + "oneOf": [ + { + "description": "Timeout is relative to the current block timestamp of counter party", + "type": "object", + "required": [ + "seconds" + ], + "properties": { + "seconds": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + } + ] + }, + "VenueId": { + "oneOf": [ + { + "type": "string", + "enum": [ + "transfer" + ] + }, + { + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "$ref": "#/definitions/Displayed_for_uint128" + } + }, + "additionalProperties": false + } + ] + } + } + }, + "get_exchange_by_id": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetExchangeResponse", + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "$ref": "#/definitions/ExchangeItem" + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "ExchangeItem": { + "description": "allows to execute Exchange instruction", + "type": "object", + "required": [ + "exchange", + "exchange_id", + "network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "exchange": { + "$ref": "#/definitions/ExchangeType" + }, + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "ExchangeType": { + "oneOf": [ + { + "type": "object", + "required": [ + "osmosis_pool_manager_module_v1_beta1" + ], + "properties": { + "osmosis_pool_manager_module_v1_beta1": { + "type": "object", + "required": [ + "pool_id", + "token_a", + "token_b" + ], + "properties": { + "pool_id": { + "type": "integer", + "format": "uint64", + "minimum": 0.0 + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "astroport_router_contract" + ], + "properties": { + "astroport_router_contract": { + "type": "object", + "required": [ + "address", + "token_a", + "token_b" + ], + "properties": { + "address": { + "$ref": "#/definitions/Addr" + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + } + } + }, + "get_ibc_ics20_route": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetIbcIcs20RouteResponse", + "type": "object", + "required": [ + "route" + ], + "properties": { + "route": { + "$ref": "#/definitions/IbcIcs20ProgramRoute" + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "ChannelId": { + "type": "string" + }, + "IbcIcs20ProgramRoute": { + "description": "route is used to describe how to send a full program packet to another network", + "type": "object", + "required": [ + "channel_to_send_over", + "counterparty_timeout", + "from_network", + "from_outpost", + "ibc_ics_20_sender", + "local_native_denom", + "on_remote_asset", + "to_outpost" + ], + "properties": { + "channel_to_send_over": { + "$ref": "#/definitions/ChannelId" + }, + "counterparty_timeout": { + "$ref": "#/definitions/RelativeTimeout" + }, + "from_network": { + "$ref": "#/definitions/NetworkId" + }, + "from_outpost": { + "$ref": "#/definitions/Addr" + }, + "ibc_ics_20_sender": { + "$ref": "#/definitions/IbcIcs20Sender" + }, + "local_native_denom": { + "type": "string" + }, + "on_remote_asset": { + "$ref": "#/definitions/AssetId" + }, + "to_outpost": { + "description": "the contract address of the gateway to send to assets", + "allOf": [ + { + "$ref": "#/definitions/OutpostId" + } + ] + } + } + }, + "IbcIcs20Sender": { + "type": "string", + "enum": [ + "CosmosStargateIbcApplicationsTransferV1MsgTransfer", + "CosmWasmStd1_3" + ] + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "OutpostId": { + "description": "when message is sent to other side, we should identify receiver of some kind", + "oneOf": [ + { + "type": "object", + "required": [ + "cosm_wasm" + ], + "properties": { + "cosm_wasm": { + "type": "object", + "required": [ + "admin", + "contract", + "executor_code_id" + ], + "properties": { + "admin": { + "description": "admin of everything", + "allOf": [ + { + "$ref": "#/definitions/Addr" + } + ] + }, + "contract": { + "$ref": "#/definitions/Addr" + }, + "executor_code_id": { + "description": "CVM executor contract code", + "type": "integer", + "format": "uint64", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "RelativeTimeout": { + "description": "relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + "oneOf": [ + { + "description": "Timeout is relative to the current block timestamp of counter party", + "type": "object", + "required": [ + "seconds" + ], + "properties": { + "seconds": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + } + ] + } + } + }, + "get_local_asset_by_reference": { + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetAssetResponse", + "type": "object", + "required": [ + "asset" + ], + "properties": { + "asset": { + "$ref": "#/definitions/AssetItem" + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "H160": { + "type": "string" + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + } + } + } + } +} diff --git a/contracts/cosmwasm/schema/raw/execute.json b/contracts/cosmwasm/schema/raw/execute.json new file mode 100644 index 00000000..288bf7c9 --- /dev/null +++ b/contracts/cosmwasm/schema/raw/execute.json @@ -0,0 +1,1720 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "ExecuteMsg", + "oneOf": [ + { + "type": "object", + "required": [ + "config" + ], + "properties": { + "config": { + "$ref": "#/definitions/ConfigSubMsg" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "admin" + ], + "properties": { + "admin": { + "$ref": "#/definitions/AdminSubMsg" + } + }, + "additionalProperties": false + }, + { + "description": "Sent by the user to execute a program on their behalf.", + "type": "object", + "required": [ + "execute_program" + ], + "properties": { + "execute_program": { + "$ref": "#/definitions/ExecuteProgramMsg_for_Nullable_Funds_for_Displayed_for_uint128" + } + }, + "additionalProperties": false + }, + { + "description": "Request to execute a program on behalf of given user.\n\nThis can only be sent by trusted contract. The message is", + "type": "object", + "required": [ + "execute_program_privileged" + ], + "properties": { + "execute_program_privileged": { + "type": "object", + "required": [ + "call_origin", + "execute_program" + ], + "properties": { + "call_origin": { + "description": "The origin of the call.", + "allOf": [ + { + "$ref": "#/definitions/CallOrigin" + } + ] + }, + "execute_program": { + "description": "Program to execute.", + "allOf": [ + { + "$ref": "#/definitions/ExecuteProgramMsg_for_Funds_for_Displayed_for_uint128" + } + ] + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Message sent from executor trying to spawn program on another network.", + "type": "object", + "required": [ + "bridge_forward" + ], + "properties": { + "bridge_forward": { + "$ref": "#/definitions/BridgeForwardMsg" + } + }, + "additionalProperties": false + }, + { + "description": "simple permissionless message which produce CVM program to test routes", + "type": "object", + "required": [ + "shortcut" + ], + "properties": { + "shortcut": { + "$ref": "#/definitions/ShortcutSubMsg" + } + }, + "additionalProperties": false + }, + { + "description": "executed by host as part of memo handling", + "type": "object", + "required": [ + "message_hook" + ], + "properties": { + "message_hook": { + "$ref": "#/definitions/XcMessageData" + } + }, + "additionalProperties": false + } + ], + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AdminSubMsg": { + "description": "can only be executed by gov or admin", + "oneOf": [ + { + "type": "object", + "required": [ + "execute_packet_i_c_s20" + ], + "properties": { + "execute_packet_i_c_s20": { + "$ref": "#/definitions/ExecutePacketICS20Msg" + } + }, + "additionalProperties": false + } + ] + }, + "Adr08IbcCallbacks": { + "description": "if chain has IBC SDK callbacks enabled", + "type": "object" + }, + "Amount": { + "description": "See https://en.wikipedia.org/wiki/Linear_equation#Slope%E2%80%93intercept_form_or_Gradient-intercept_form", + "type": "object", + "properties": { + "intercept": { + "description": "absolute amount, optional, default is 0", + "allOf": [ + { + "$ref": "#/definitions/Displayed_for_uint128" + } + ] + }, + "slope": { + "description": "part of `MAX_PARTS` from remaining after intercept subtraction, optional, default is 0", + "allOf": [ + { + "$ref": "#/definitions/Displayed_for_uint64" + } + ] + } + } + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "AssetsVenueItem": { + "description": "assets which can be transomed into each other via venue", + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "venue_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "venue_id": { + "$ref": "#/definitions/VenueId" + } + } + }, + "BindingValue": { + "oneOf": [ + { + "type": "object", + "required": [ + "register" + ], + "properties": { + "register": { + "$ref": "#/definitions/Register" + } + }, + "additionalProperties": false + }, + { + "description": "Asset's address", + "type": "object", + "required": [ + "asset" + ], + "properties": { + "asset": { + "$ref": "#/definitions/AssetId" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "asset_amount" + ], + "properties": { + "asset_amount": { + "type": "array", + "items": [ + { + "$ref": "#/definitions/AssetId" + }, + { + "$ref": "#/definitions/Amount" + } + ], + "maxItems": 2, + "minItems": 2 + } + }, + "additionalProperties": false + } + ] + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "BridgeForwardMsg": { + "type": "object", + "required": [ + "executor_origin", + "msg", + "to_network" + ], + "properties": { + "executor_origin": { + "$ref": "#/definitions/ExecutorOrigin" + }, + "msg": { + "$ref": "#/definitions/ExecuteProgramMsg_for_Funds_for_Displayed_for_uint128" + }, + "to_network": { + "description": "target network", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "CallOrigin": { + "description": "The Origin that executed the CVM operation. Origin was verified to satisfy security semantics for execution.", + "oneOf": [ + { + "type": "object", + "required": [ + "Remote" + ], + "properties": { + "Remote": { + "type": "object", + "required": [ + "user_origin" + ], + "properties": { + "user_origin": { + "$ref": "#/definitions/UserOrigin" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "Local" + ], + "properties": { + "Local": { + "type": "object", + "required": [ + "user" + ], + "properties": { + "user": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "ChannelId": { + "type": "string" + }, + "ChannelInfo": { + "description": "Information associated with an IBC channel.", + "type": "object", + "required": [ + "connection_id", + "counterparty_endpoint", + "id" + ], + "properties": { + "connection_id": { + "description": "the connection this exists on (you can use to query client/consensus info)", + "allOf": [ + { + "$ref": "#/definitions/ConnectionId" + } + ] + }, + "counterparty_endpoint": { + "description": "the remote channel/port we connect to", + "allOf": [ + { + "$ref": "#/definitions/IbcEndpoint" + } + ] + }, + "id": { + "description": "id of this channel", + "allOf": [ + { + "$ref": "#/definitions/ChannelId" + } + ] + } + } + }, + "ConfigSubMsg": { + "description": "cross cross chain routing requires a lot of configuration, about chain executing this contract, about connectivity to and of other chains (even if not connected directly) and about assets and services on these chains (in future block hooks and some set of host extensions/precompiles would help to get some info automatically) `Force` message sets the data unconditionally.", + "oneOf": [ + { + "description": "Permissioned message (gov or admin) to force set information about network contract is executed. Network can be any network or this network (so it overrides some this network parameters too)", + "type": "object", + "required": [ + "force_network" + ], + "properties": { + "force_network": { + "$ref": "#/definitions/NetworkItem" + } + }, + "additionalProperties": false + }, + { + "description": "Sets network to network connectivity/routing information", + "type": "object", + "required": [ + "force_network_to_network" + ], + "properties": { + "force_network_to_network": { + "$ref": "#/definitions/NetworkToNetworkItem" + } + }, + "additionalProperties": false + }, + { + "description": "Permissioned message (gov or admin) to force set asset information.", + "type": "object", + "required": [ + "force_asset" + ], + "properties": { + "force_asset": { + "$ref": "#/definitions/AssetItem" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "force_asset_to_network_map" + ], + "properties": { + "force_asset_to_network_map": { + "$ref": "#/definitions/NetworkAssetItem" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "force_exchange" + ], + "properties": { + "force_exchange": { + "$ref": "#/definitions/ExchangeItem" + } + }, + "additionalProperties": false + }, + { + "description": "Message sent by an admin to remove an asset from registry.", + "type": "object", + "required": [ + "force_remove_asset" + ], + "properties": { + "force_remove_asset": { + "type": "object", + "required": [ + "asset_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "short cut to rollout config faster", + "type": "object", + "required": [ + "force" + ], + "properties": { + "force": { + "type": "array", + "items": { + "$ref": "#/definitions/ConfigSubMsg" + } + } + }, + "additionalProperties": false + }, + { + "description": "instantiates default executor on behalf of user `salt` - human string, converted to hex or base64 depending on implementation", + "type": "object", + "required": [ + "force_instantiate" + ], + "properties": { + "force_instantiate": { + "type": "object", + "required": [ + "user_origin" + ], + "properties": { + "salt": { + "type": "string" + }, + "user_origin": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "force_assets_venue" + ], + "properties": { + "force_assets_venue": { + "$ref": "#/definitions/AssetsVenueItem" + } + }, + "additionalProperties": false + } + ] + }, + "ConnectionId": { + "type": "string" + }, + "Destination_for_XcAddr": { + "oneOf": [ + { + "type": "string", + "enum": [ + "tip" + ] + }, + { + "type": "object", + "required": [ + "account" + ], + "properties": { + "account": { + "$ref": "#/definitions/XcAddr" + } + }, + "additionalProperties": false + } + ] + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "Displayed_for_uint64": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "ExchangeItem": { + "description": "allows to execute Exchange instruction", + "type": "object", + "required": [ + "exchange", + "exchange_id", + "network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "exchange": { + "$ref": "#/definitions/ExchangeType" + }, + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "ExchangeType": { + "oneOf": [ + { + "type": "object", + "required": [ + "osmosis_pool_manager_module_v1_beta1" + ], + "properties": { + "osmosis_pool_manager_module_v1_beta1": { + "type": "object", + "required": [ + "pool_id", + "token_a", + "token_b" + ], + "properties": { + "pool_id": { + "type": "integer", + "format": "uint64", + "minimum": 0.0 + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "astroport_router_contract" + ], + "properties": { + "astroport_router_contract": { + "type": "object", + "required": [ + "address", + "token_a", + "token_b" + ], + "properties": { + "address": { + "$ref": "#/definitions/Addr" + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "ExecutePacketICS20Msg": { + "description": "can only be executed by gov or admin", + "type": "object", + "required": [ + "packet_data_hex" + ], + "properties": { + "packet_data_hex": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + } + }, + "ExecuteProgramMsg_for_Funds_for_Displayed_for_uint128": { + "description": "Definition of a program to be executed including its context.", + "type": "object", + "required": [ + "assets", + "program" + ], + "properties": { + "assets": { + "description": "Assets to fund the CVM executor instance. The executor is funded prior to execution. If None, 100% of CosmWasm native received funds go to executor.", + "allOf": [ + { + "$ref": "#/definitions/Funds_for_Displayed_for_uint128" + } + ] + }, + "program": { + "description": "The program.", + "allOf": [ + { + "$ref": "#/definitions/Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + ] + }, + "salt": { + "description": "The program salt. If JSON, than hex encoded non prefixed lower case string. If not specified, uses no salt.", + "type": "string" + }, + "tip": { + "type": [ + "string", + "null" + ] + } + } + }, + "ExecuteProgramMsg_for_Nullable_Funds_for_Displayed_for_uint128": { + "description": "Definition of a program to be executed including its context.", + "type": "object", + "required": [ + "program" + ], + "properties": { + "assets": { + "description": "Assets to fund the CVM executor instance. The executor is funded prior to execution. If None, 100% of CosmWasm native received funds go to executor.", + "anyOf": [ + { + "$ref": "#/definitions/Funds_for_Displayed_for_uint128" + }, + { + "type": "null" + } + ] + }, + "program": { + "description": "The program.", + "allOf": [ + { + "$ref": "#/definitions/Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + ] + }, + "salt": { + "description": "The program salt. If JSON, than hex encoded non prefixed lower case string. If not specified, uses no salt.", + "type": "string" + }, + "tip": { + "type": [ + "string", + "null" + ] + } + } + }, + "ExecutorOrigin": { + "description": "The executor origin, composite of a user origin and a salt.", + "type": "object", + "required": [ + "salt", + "user_origin" + ], + "properties": { + "salt": { + "type": "string" + }, + "user_origin": { + "$ref": "#/definitions/UserOrigin" + } + } + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "Funds_for_Amount": { + "description": "a set of assets with non zero balances", + "type": "array", + "items": { + "type": "array", + "items": [ + { + "$ref": "#/definitions/AssetId" + }, + { + "$ref": "#/definitions/Amount" + } + ], + "maxItems": 2, + "minItems": 2 + } + }, + "Funds_for_Displayed_for_uint128": { + "description": "a set of assets with non zero balances", + "type": "array", + "items": { + "type": "array", + "items": [ + { + "$ref": "#/definitions/AssetId" + }, + { + "$ref": "#/definitions/Displayed_for_uint128" + } + ], + "maxItems": 2, + "minItems": 2 + } + }, + "H160": { + "type": "string" + }, + "IbcChannels": { + "type": "object", + "properties": { + "ics20": { + "anyOf": [ + { + "$ref": "#/definitions/Ics20Channel" + }, + { + "type": "null" + } + ] + } + } + }, + "IbcEnabled": { + "type": "object", + "properties": { + "channels": { + "anyOf": [ + { + "$ref": "#/definitions/IbcChannels" + }, + { + "type": "null" + } + ] + } + } + }, + "IbcEndpoint": { + "type": "object", + "required": [ + "channel_id", + "port_id" + ], + "properties": { + "channel_id": { + "type": "string" + }, + "port_id": { + "type": "string" + } + } + }, + "IbcIcs20Sender": { + "type": "string", + "enum": [ + "CosmosStargateIbcApplicationsTransferV1MsgTransfer", + "CosmWasmStd1_3" + ] + }, + "Ics20Channel": { + "type": "object", + "required": [ + "sender" + ], + "properties": { + "features": { + "anyOf": [ + { + "$ref": "#/definitions/Ics20Features" + }, + { + "type": "null" + } + ] + }, + "sender": { + "description": "specific per chain way to send IBC ICS 20 assets", + "allOf": [ + { + "$ref": "#/definitions/IbcIcs20Sender" + } + ] + } + } + }, + "Ics20Features": { + "description": "what features/modules/version enabled/installed/configured", + "type": "object", + "properties": { + "ibc_callbacks": { + "anyOf": [ + { + "$ref": "#/definitions/Adr08IbcCallbacks" + }, + { + "type": "null" + } + ] + }, + "pfm": { + "anyOf": [ + { + "$ref": "#/definitions/PFM" + }, + { + "type": "null" + } + ] + }, + "wasm_hooks": { + "description": "if it is exists, chain has that enabled", + "anyOf": [ + { + "$ref": "#/definitions/OsmosisIbcHooks" + }, + { + "type": "null" + } + ] + } + } + }, + "IcsPair": { + "description": "we need both, so we can unwrap", + "type": "object", + "required": [ + "sink", + "source" + ], + "properties": { + "sink": { + "$ref": "#/definitions/ChannelId" + }, + "source": { + "$ref": "#/definitions/ChannelId" + } + } + }, + "Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount": { + "description": "Base CVM instructions. This set will remain as small as possible, expressiveness must come on `top` of the base instructions.", + "oneOf": [ + { + "description": "Transfer some [`Assets`] from the current program to the [`to`] account.", + "type": "object", + "required": [ + "transfer" + ], + "properties": { + "transfer": { + "type": "object", + "required": [ + "assets", + "to" + ], + "properties": { + "assets": { + "$ref": "#/definitions/Funds_for_Amount" + }, + "to": { + "$ref": "#/definitions/Destination_for_XcAddr" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Arbitrary payload representing a raw call inside the current network.\n\nOn picasso, this will be a SCALE encoded dispatch call. On ethereum, an ethereum ABI encoded call. On cosmos, a raw json WasmMsg call.\n\nDepending on the network, the payload might be more structured than the base call. For most of the network in fact, we need to provide the target address along the payload, which can be encoded inside this single payload.", + "type": "object", + "required": [ + "call" + ], + "properties": { + "call": { + "type": "object", + "required": [ + "bindings", + "encoded" + ], + "properties": { + "bindings": { + "type": "array", + "items": { + "type": "array", + "items": [ + { + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + { + "$ref": "#/definitions/BindingValue" + } + ], + "maxItems": 2, + "minItems": 2 + } + }, + "encoded": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Spawn a sub-program on the target `network`.\n\nThe program will be spawned with the desired [`Assets`]. The salt is used to track the program when events are dispatched in the network.", + "type": "object", + "required": [ + "spawn" + ], + "properties": { + "spawn": { + "type": "object", + "required": [ + "assets", + "network_id", + "program" + ], + "properties": { + "assets": { + "$ref": "#/definitions/Funds_for_Amount" + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + }, + "program": { + "$ref": "#/definitions/Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + }, + "salt": { + "description": "If JSON, than hex encoded non prefixed lower case string. Different salt allows to split funds into different virtual wallets So same salt shares assets on set of derived accounts on chains program executes.", + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "type": "object", + "required": [ + "exchange_id", + "give", + "want" + ], + "properties": { + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + }, + "give": { + "$ref": "#/definitions/Funds_for_Amount" + }, + "want": { + "$ref": "#/definitions/Funds_for_Amount" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "NetworkAssetItem": { + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "to_network_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "NetworkItem": { + "type": "object", + "required": [ + "network_id" + ], + "properties": { + "accounts": { + "description": "Account encoding type", + "anyOf": [ + { + "$ref": "#/definitions/Prefix" + }, + { + "type": "null" + } + ] + }, + "ibc": { + "anyOf": [ + { + "$ref": "#/definitions/IbcEnabled" + }, + { + "type": "null" + } + ] + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + }, + "outpost": { + "description": "something which will be receiver on other side case of network has CVM deployed as contract, account address is stored here", + "anyOf": [ + { + "$ref": "#/definitions/OutpostId" + }, + { + "type": "null" + } + ] + } + } + }, + "NetworkToNetworkItem": { + "type": "object", + "required": [ + "from_network_id", + "to_network", + "to_network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "from_network_id": { + "$ref": "#/definitions/NetworkId" + }, + "to_network": { + "description": "how to send `to_network_id` chain", + "allOf": [ + { + "$ref": "#/definitions/OtherNetworkItem" + } + ] + }, + "to_network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "OsmosisIbcHooks": { + "type": "object", + "required": [ + "callback" + ], + "properties": { + "callback": { + "type": "boolean" + } + } + }, + "OtherNetworkItem": { + "type": "object", + "required": [ + "counterparty_timeout" + ], + "properties": { + "counterparty_timeout": { + "description": "default timeout to use for direct send", + "allOf": [ + { + "$ref": "#/definitions/RelativeTimeout" + } + ] + }, + "ics27_channel": { + "description": "if there is ICS27 IBC channel opened", + "anyOf": [ + { + "$ref": "#/definitions/ChannelInfo" + }, + { + "type": "null" + } + ] + }, + "ics_20": { + "anyOf": [ + { + "$ref": "#/definitions/IcsPair" + }, + { + "type": "null" + } + ] + }, + "use_shortcut": { + "description": "if true, than will use shortcuts for example, if program transfer only program will just use native transfer or if connection supports exchange, it will use exchange default is false if target chain has CVM gateway", + "type": [ + "boolean", + "null" + ] + } + } + }, + "OutpostId": { + "description": "when message is sent to other side, we should identify receiver of some kind", + "oneOf": [ + { + "type": "object", + "required": [ + "cosm_wasm" + ], + "properties": { + "cosm_wasm": { + "type": "object", + "required": [ + "admin", + "contract", + "executor_code_id" + ], + "properties": { + "admin": { + "description": "admin of everything", + "allOf": [ + { + "$ref": "#/definitions/Addr" + } + ] + }, + "contract": { + "$ref": "#/definitions/Addr" + }, + "executor_code_id": { + "description": "CVM executor contract code", + "type": "integer", + "format": "uint64", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "PFM": { + "type": "object" + }, + "Packet_for_Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount": { + "type": "object", + "required": [ + "assets", + "executor", + "program", + "salt", + "user_origin" + ], + "properties": { + "assets": { + "description": "The assets that were attached to the program.", + "allOf": [ + { + "$ref": "#/definitions/Funds_for_Displayed_for_uint128" + } + ] + }, + "executor": { + "description": "The executor that was the origin of this packet.", + "type": "string" + }, + "program": { + "description": "The protobuf encoded program.", + "allOf": [ + { + "$ref": "#/definitions/Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + ] + }, + "salt": { + "description": "The salt associated with the program.", + "type": "string" + }, + "user_origin": { + "description": "The user that originated the first CVM call.", + "allOf": [ + { + "$ref": "#/definitions/UserOrigin" + } + ] + } + } + }, + "Prefix": { + "description": "given prefix you may form accounts from 32 bit addresses or partially identify chains", + "oneOf": [ + { + "type": "object", + "required": [ + "s_s58" + ], + "properties": { + "s_s58": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "bech" + ], + "properties": { + "bech": { + "type": "string" + } + }, + "additionalProperties": false + } + ] + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount": { + "type": "object", + "required": [ + "instructions" + ], + "properties": { + "instructions": { + "description": "list of instructions to be executed", + "type": "array", + "items": { + "$ref": "#/definitions/Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + }, + "tag": { + "description": "In JSON, hex encoded identifiers to identify the program off chain (for example in indexer).", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + }, + "Register": { + "oneOf": [ + { + "description": "Instruction pointer", + "type": "string", + "enum": [ + "ip" + ] + }, + { + "description": "Tip's address", + "type": "string", + "enum": [ + "tip" + ] + }, + { + "description": "Executor's address", + "type": "string", + "enum": [ + "this" + ] + }, + { + "description": "Result of the last executed instruction. If not empty, program did not executed to the end.", + "type": "string", + "enum": [ + "result" + ] + }, + { + "description": "Refers to amount transferred via Spawn or originating call", + "type": "object", + "required": [ + "carry" + ], + "properties": { + "carry": { + "$ref": "#/definitions/AssetId" + } + }, + "additionalProperties": false + } + ] + }, + "RelativeTimeout": { + "description": "relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + "oneOf": [ + { + "description": "Timeout is relative to the current block timestamp of counter party", + "type": "object", + "required": [ + "seconds" + ], + "properties": { + "seconds": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + } + ] + }, + "ShortcutSubMsg": { + "oneOf": [ + { + "type": "object", + "required": [ + "transfer" + ], + "properties": { + "transfer": { + "type": "object", + "required": [ + "amount", + "asset_id", + "network" + ], + "properties": { + "amount": { + "$ref": "#/definitions/Uint128" + }, + "asset_id": { + "description": "assets from there", + "allOf": [ + { + "$ref": "#/definitions/AssetId" + } + ] + }, + "network": { + "description": "target network, can hope over several networks if route is stored in state", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + }, + "receiver": { + "description": "by default receiver is this", + "type": [ + "string", + "null" + ] + } + } + } + }, + "additionalProperties": false + } + ] + }, + "Uint128": { + "description": "A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```", + "type": "string" + }, + "UserId": { + "description": "Arbitrary `User` type that represent the identity of a user on a given network, usually a public key.", + "type": "string" + }, + "UserOrigin": { + "description": "The origin of a user, which consist of the composite, origin network and origin network user id.", + "type": "object", + "required": [ + "network_id", + "user_id" + ], + "properties": { + "network_id": { + "$ref": "#/definitions/NetworkId" + }, + "user_id": { + "$ref": "#/definitions/UserId" + } + } + }, + "VenueId": { + "oneOf": [ + { + "type": "string", + "enum": [ + "transfer" + ] + }, + { + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "$ref": "#/definitions/Displayed_for_uint128" + } + }, + "additionalProperties": false + } + ] + }, + "XcAddr": { + "description": "A wrapper around any address on any chain. Similar to `ibc_rs::Signer`(multi encoding), but not depend on ibc code bloat. Unlike parity MultiLocation/Account32/Account20 which hard codes enum into code. Better send canonical address to each chain for performance, But it will also decode/reencode best effort. Inner must be either base64 or hex encoded or contain only characters from these. Added with helper per chain to get final address to use.", + "type": "string" + }, + "XcMessageData": { + "description": "This message should be send as part of wasm termination memo. So that can match it to sender hash and know what channel and origin was used to send message. All information here is not secured until compared with existing secured data.", + "type": "object", + "required": [ + "from_network_id", + "packet" + ], + "properties": { + "from_network_id": { + "$ref": "#/definitions/NetworkId" + }, + "packet": { + "$ref": "#/definitions/Packet_for_Program_for_Array_of_Instruction_for_Array_of_uint8_and_XcAddr_and_Funds_for_Amount" + } + } + } + } +} diff --git a/contracts/cosmwasm/schema/raw/instantiate.json b/contracts/cosmwasm/schema/raw/instantiate.json new file mode 100644 index 00000000..6710012d --- /dev/null +++ b/contracts/cosmwasm/schema/raw/instantiate.json @@ -0,0 +1,46 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "InstantiateMsg", + "allOf": [ + { + "$ref": "#/definitions/HereItem" + } + ], + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "HereItem": { + "type": "object", + "required": [ + "admin", + "network_id" + ], + "properties": { + "admin": { + "description": "The admin which is allowed to update the bridge list.", + "allOf": [ + { + "$ref": "#/definitions/Addr" + } + ] + }, + "network_id": { + "description": "Network ID of this network where contract is deployed", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + } + } +} diff --git a/contracts/cosmwasm/schema/raw/query.json b/contracts/cosmwasm/schema/raw/query.json new file mode 100644 index 00000000..5a4c3ba9 --- /dev/null +++ b/contracts/cosmwasm/schema/raw/query.json @@ -0,0 +1,273 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "QueryMsg", + "oneOf": [ + { + "description": "Returns [`AssetReference`] for an asset with given id.", + "type": "object", + "required": [ + "get_asset_by_id" + ], + "properties": { + "get_asset_by_id": { + "type": "object", + "required": [ + "asset_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "get_all_asset_ids" + ], + "properties": { + "get_all_asset_ids": { + "type": "object" + } + }, + "additionalProperties": false + }, + { + "description": "Returns [`AssetItem`] for an asset with given local reference.", + "type": "object", + "required": [ + "get_local_asset_by_reference" + ], + "properties": { + "get_local_asset_by_reference": { + "type": "object", + "required": [ + "reference" + ], + "properties": { + "reference": { + "$ref": "#/definitions/AssetReference" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "get_ibc_ics20_route" + ], + "properties": { + "get_ibc_ics20_route": { + "type": "object", + "required": [ + "for_asset", + "to_network" + ], + "properties": { + "for_asset": { + "$ref": "#/definitions/AssetId" + }, + "to_network": { + "$ref": "#/definitions/NetworkId" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "get_exchange_by_id" + ], + "properties": { + "get_exchange_by_id": { + "type": "object", + "required": [ + "exchange_id" + ], + "properties": { + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Get all information this CVM knows about local and foreign assets/exchanges/networks", + "type": "object", + "required": [ + "get_config" + ], + "properties": { + "get_config": { + "type": "object" + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "get_all_asset_venues" + ], + "properties": { + "get_all_asset_venues": { + "type": "object" + } + }, + "additionalProperties": false + } + ], + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "H160": { + "type": "string" + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + } + } +} diff --git a/contracts/cosmwasm/schema/raw/response_to_get_all_asset_ids.json b/contracts/cosmwasm/schema/raw/response_to_get_all_asset_ids.json new file mode 100644 index 00000000..40b2feff --- /dev/null +++ b/contracts/cosmwasm/schema/raw/response_to_get_all_asset_ids.json @@ -0,0 +1,251 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Array_of_AssetItem", + "type": "array", + "items": { + "$ref": "#/definitions/AssetItem" + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "H160": { + "type": "string" + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + } + } +} diff --git a/contracts/cosmwasm/schema/raw/response_to_get_all_asset_venues.json b/contracts/cosmwasm/schema/raw/response_to_get_all_asset_venues.json new file mode 100644 index 00000000..69fa9c08 --- /dev/null +++ b/contracts/cosmwasm/schema/raw/response_to_get_all_asset_venues.json @@ -0,0 +1,60 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Array_of_AssetsVenueItem", + "type": "array", + "items": { + "$ref": "#/definitions/AssetsVenueItem" + }, + "definitions": { + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetsVenueItem": { + "description": "assets which can be transomed into each other via venue", + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "venue_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "venue_id": { + "$ref": "#/definitions/VenueId" + } + } + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "VenueId": { + "oneOf": [ + { + "type": "string", + "enum": [ + "transfer" + ] + }, + { + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "$ref": "#/definitions/Displayed_for_uint128" + } + }, + "additionalProperties": false + } + ] + } + } +} diff --git a/contracts/cosmwasm/schema/raw/response_to_get_asset_by_id.json b/contracts/cosmwasm/schema/raw/response_to_get_asset_by_id.json new file mode 100644 index 00000000..d3e85ed5 --- /dev/null +++ b/contracts/cosmwasm/schema/raw/response_to_get_asset_by_id.json @@ -0,0 +1,256 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetAssetResponse", + "type": "object", + "required": [ + "asset" + ], + "properties": { + "asset": { + "$ref": "#/definitions/AssetItem" + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "H160": { + "type": "string" + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + } + } +} diff --git a/contracts/cosmwasm/schema/raw/response_to_get_config.json b/contracts/cosmwasm/schema/raw/response_to_get_config.json new file mode 100644 index 00000000..131279f8 --- /dev/null +++ b/contracts/cosmwasm/schema/raw/response_to_get_config.json @@ -0,0 +1,850 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetConfigResponse", + "type": "object", + "required": [ + "asset_venue_items", + "assets", + "exchanges", + "network_assets", + "network_to_networks", + "networks" + ], + "properties": { + "asset_venue_items": { + "type": "array", + "items": { + "$ref": "#/definitions/AssetsVenueItem" + } + }, + "assets": { + "type": "array", + "items": { + "$ref": "#/definitions/AssetItem" + } + }, + "exchanges": { + "type": "array", + "items": { + "$ref": "#/definitions/ExchangeItem" + } + }, + "network_assets": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkAssetItem" + } + }, + "network_to_networks": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkToNetworkItem" + } + }, + "networks": { + "type": "array", + "items": { + "$ref": "#/definitions/NetworkItem" + } + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "Adr08IbcCallbacks": { + "description": "if chain has IBC SDK callbacks enabled", + "type": "object" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "AssetsVenueItem": { + "description": "assets which can be transomed into each other via venue", + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "venue_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "venue_id": { + "$ref": "#/definitions/VenueId" + } + } + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "ChannelId": { + "type": "string" + }, + "ChannelInfo": { + "description": "Information associated with an IBC channel.", + "type": "object", + "required": [ + "connection_id", + "counterparty_endpoint", + "id" + ], + "properties": { + "connection_id": { + "description": "the connection this exists on (you can use to query client/consensus info)", + "allOf": [ + { + "$ref": "#/definitions/ConnectionId" + } + ] + }, + "counterparty_endpoint": { + "description": "the remote channel/port we connect to", + "allOf": [ + { + "$ref": "#/definitions/IbcEndpoint" + } + ] + }, + "id": { + "description": "id of this channel", + "allOf": [ + { + "$ref": "#/definitions/ChannelId" + } + ] + } + } + }, + "ConnectionId": { + "type": "string" + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "ExchangeItem": { + "description": "allows to execute Exchange instruction", + "type": "object", + "required": [ + "exchange", + "exchange_id", + "network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "exchange": { + "$ref": "#/definitions/ExchangeType" + }, + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "ExchangeType": { + "oneOf": [ + { + "type": "object", + "required": [ + "osmosis_pool_manager_module_v1_beta1" + ], + "properties": { + "osmosis_pool_manager_module_v1_beta1": { + "type": "object", + "required": [ + "pool_id", + "token_a", + "token_b" + ], + "properties": { + "pool_id": { + "type": "integer", + "format": "uint64", + "minimum": 0.0 + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "astroport_router_contract" + ], + "properties": { + "astroport_router_contract": { + "type": "object", + "required": [ + "address", + "token_a", + "token_b" + ], + "properties": { + "address": { + "$ref": "#/definitions/Addr" + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "H160": { + "type": "string" + }, + "IbcChannels": { + "type": "object", + "properties": { + "ics20": { + "anyOf": [ + { + "$ref": "#/definitions/Ics20Channel" + }, + { + "type": "null" + } + ] + } + } + }, + "IbcEnabled": { + "type": "object", + "properties": { + "channels": { + "anyOf": [ + { + "$ref": "#/definitions/IbcChannels" + }, + { + "type": "null" + } + ] + } + } + }, + "IbcEndpoint": { + "type": "object", + "required": [ + "channel_id", + "port_id" + ], + "properties": { + "channel_id": { + "type": "string" + }, + "port_id": { + "type": "string" + } + } + }, + "IbcIcs20Sender": { + "type": "string", + "enum": [ + "CosmosStargateIbcApplicationsTransferV1MsgTransfer", + "CosmWasmStd1_3" + ] + }, + "Ics20Channel": { + "type": "object", + "required": [ + "sender" + ], + "properties": { + "features": { + "anyOf": [ + { + "$ref": "#/definitions/Ics20Features" + }, + { + "type": "null" + } + ] + }, + "sender": { + "description": "specific per chain way to send IBC ICS 20 assets", + "allOf": [ + { + "$ref": "#/definitions/IbcIcs20Sender" + } + ] + } + } + }, + "Ics20Features": { + "description": "what features/modules/version enabled/installed/configured", + "type": "object", + "properties": { + "ibc_callbacks": { + "anyOf": [ + { + "$ref": "#/definitions/Adr08IbcCallbacks" + }, + { + "type": "null" + } + ] + }, + "pfm": { + "anyOf": [ + { + "$ref": "#/definitions/PFM" + }, + { + "type": "null" + } + ] + }, + "wasm_hooks": { + "description": "if it is exists, chain has that enabled", + "anyOf": [ + { + "$ref": "#/definitions/OsmosisIbcHooks" + }, + { + "type": "null" + } + ] + } + } + }, + "IcsPair": { + "description": "we need both, so we can unwrap", + "type": "object", + "required": [ + "sink", + "source" + ], + "properties": { + "sink": { + "$ref": "#/definitions/ChannelId" + }, + "source": { + "$ref": "#/definitions/ChannelId" + } + } + }, + "NetworkAssetItem": { + "type": "object", + "required": [ + "from_asset_id", + "to_asset_id", + "to_network_id" + ], + "properties": { + "from_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_asset_id": { + "$ref": "#/definitions/AssetId" + }, + "to_network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "NetworkItem": { + "type": "object", + "required": [ + "network_id" + ], + "properties": { + "accounts": { + "description": "Account encoding type", + "anyOf": [ + { + "$ref": "#/definitions/Prefix" + }, + { + "type": "null" + } + ] + }, + "ibc": { + "anyOf": [ + { + "$ref": "#/definitions/IbcEnabled" + }, + { + "type": "null" + } + ] + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + }, + "outpost": { + "description": "something which will be receiver on other side case of network has CVM deployed as contract, account address is stored here", + "anyOf": [ + { + "$ref": "#/definitions/OutpostId" + }, + { + "type": "null" + } + ] + } + } + }, + "NetworkToNetworkItem": { + "type": "object", + "required": [ + "from_network_id", + "to_network", + "to_network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "from_network_id": { + "$ref": "#/definitions/NetworkId" + }, + "to_network": { + "description": "how to send `to_network_id` chain", + "allOf": [ + { + "$ref": "#/definitions/OtherNetworkItem" + } + ] + }, + "to_network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "OsmosisIbcHooks": { + "type": "object", + "required": [ + "callback" + ], + "properties": { + "callback": { + "type": "boolean" + } + } + }, + "OtherNetworkItem": { + "type": "object", + "required": [ + "counterparty_timeout" + ], + "properties": { + "counterparty_timeout": { + "description": "default timeout to use for direct send", + "allOf": [ + { + "$ref": "#/definitions/RelativeTimeout" + } + ] + }, + "ics27_channel": { + "description": "if there is ICS27 IBC channel opened", + "anyOf": [ + { + "$ref": "#/definitions/ChannelInfo" + }, + { + "type": "null" + } + ] + }, + "ics_20": { + "anyOf": [ + { + "$ref": "#/definitions/IcsPair" + }, + { + "type": "null" + } + ] + }, + "use_shortcut": { + "description": "if true, than will use shortcuts for example, if program transfer only program will just use native transfer or if connection supports exchange, it will use exchange default is false if target chain has CVM gateway", + "type": [ + "boolean", + "null" + ] + } + } + }, + "OutpostId": { + "description": "when message is sent to other side, we should identify receiver of some kind", + "oneOf": [ + { + "type": "object", + "required": [ + "cosm_wasm" + ], + "properties": { + "cosm_wasm": { + "type": "object", + "required": [ + "admin", + "contract", + "executor_code_id" + ], + "properties": { + "admin": { + "description": "admin of everything", + "allOf": [ + { + "$ref": "#/definitions/Addr" + } + ] + }, + "contract": { + "$ref": "#/definitions/Addr" + }, + "executor_code_id": { + "description": "CVM executor contract code", + "type": "integer", + "format": "uint64", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "PFM": { + "type": "object" + }, + "Prefix": { + "description": "given prefix you may form accounts from 32 bit addresses or partially identify chains", + "oneOf": [ + { + "type": "object", + "required": [ + "s_s58" + ], + "properties": { + "s_s58": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "bech" + ], + "properties": { + "bech": { + "type": "string" + } + }, + "additionalProperties": false + } + ] + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + }, + "RelativeTimeout": { + "description": "relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + "oneOf": [ + { + "description": "Timeout is relative to the current block timestamp of counter party", + "type": "object", + "required": [ + "seconds" + ], + "properties": { + "seconds": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + } + ] + }, + "VenueId": { + "oneOf": [ + { + "type": "string", + "enum": [ + "transfer" + ] + }, + { + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "$ref": "#/definitions/Displayed_for_uint128" + } + }, + "additionalProperties": false + } + ] + } + } +} diff --git a/contracts/cosmwasm/schema/raw/response_to_get_exchange_by_id.json b/contracts/cosmwasm/schema/raw/response_to_get_exchange_by_id.json new file mode 100644 index 00000000..4bc7ac3e --- /dev/null +++ b/contracts/cosmwasm/schema/raw/response_to_get_exchange_by_id.json @@ -0,0 +1,119 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetExchangeResponse", + "type": "object", + "required": [ + "exchange" + ], + "properties": { + "exchange": { + "$ref": "#/definitions/ExchangeItem" + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "Displayed_for_uint128": { + "description": "A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#\"{\"value\":\"42\"}\"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#\"{\"value\":\"42\"}\"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```", + "type": "string" + }, + "ExchangeItem": { + "description": "allows to execute Exchange instruction", + "type": "object", + "required": [ + "exchange", + "exchange_id", + "network_id" + ], + "properties": { + "closed": { + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 0.0 + }, + "exchange": { + "$ref": "#/definitions/ExchangeType" + }, + "exchange_id": { + "$ref": "#/definitions/Displayed_for_uint128" + }, + "network_id": { + "$ref": "#/definitions/NetworkId" + } + } + }, + "ExchangeType": { + "oneOf": [ + { + "type": "object", + "required": [ + "osmosis_pool_manager_module_v1_beta1" + ], + "properties": { + "osmosis_pool_manager_module_v1_beta1": { + "type": "object", + "required": [ + "pool_id", + "token_a", + "token_b" + ], + "properties": { + "pool_id": { + "type": "integer", + "format": "uint64", + "minimum": 0.0 + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "astroport_router_contract" + ], + "properties": { + "astroport_router_contract": { + "type": "object", + "required": [ + "address", + "token_a", + "token_b" + ], + "properties": { + "address": { + "$ref": "#/definitions/Addr" + }, + "token_a": { + "type": "string" + }, + "token_b": { + "type": "string" + } + } + } + }, + "additionalProperties": false + } + ] + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + } + } +} diff --git a/contracts/cosmwasm/schema/raw/response_to_get_ibc_ics20_route.json b/contracts/cosmwasm/schema/raw/response_to_get_ibc_ics20_route.json new file mode 100644 index 00000000..b2d16fb6 --- /dev/null +++ b/contracts/cosmwasm/schema/raw/response_to_get_ibc_ics20_route.json @@ -0,0 +1,145 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetIbcIcs20RouteResponse", + "type": "object", + "required": [ + "route" + ], + "properties": { + "route": { + "$ref": "#/definitions/IbcIcs20ProgramRoute" + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "ChannelId": { + "type": "string" + }, + "IbcIcs20ProgramRoute": { + "description": "route is used to describe how to send a full program packet to another network", + "type": "object", + "required": [ + "channel_to_send_over", + "counterparty_timeout", + "from_network", + "from_outpost", + "ibc_ics_20_sender", + "local_native_denom", + "on_remote_asset", + "to_outpost" + ], + "properties": { + "channel_to_send_over": { + "$ref": "#/definitions/ChannelId" + }, + "counterparty_timeout": { + "$ref": "#/definitions/RelativeTimeout" + }, + "from_network": { + "$ref": "#/definitions/NetworkId" + }, + "from_outpost": { + "$ref": "#/definitions/Addr" + }, + "ibc_ics_20_sender": { + "$ref": "#/definitions/IbcIcs20Sender" + }, + "local_native_denom": { + "type": "string" + }, + "on_remote_asset": { + "$ref": "#/definitions/AssetId" + }, + "to_outpost": { + "description": "the contract address of the gateway to send to assets", + "allOf": [ + { + "$ref": "#/definitions/OutpostId" + } + ] + } + } + }, + "IbcIcs20Sender": { + "type": "string", + "enum": [ + "CosmosStargateIbcApplicationsTransferV1MsgTransfer", + "CosmWasmStd1_3" + ] + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "OutpostId": { + "description": "when message is sent to other side, we should identify receiver of some kind", + "oneOf": [ + { + "type": "object", + "required": [ + "cosm_wasm" + ], + "properties": { + "cosm_wasm": { + "type": "object", + "required": [ + "admin", + "contract", + "executor_code_id" + ], + "properties": { + "admin": { + "description": "admin of everything", + "allOf": [ + { + "$ref": "#/definitions/Addr" + } + ] + }, + "contract": { + "$ref": "#/definitions/Addr" + }, + "executor_code_id": { + "description": "CVM executor contract code", + "type": "integer", + "format": "uint64", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "RelativeTimeout": { + "description": "relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + "oneOf": [ + { + "description": "Timeout is relative to the current block timestamp of counter party", + "type": "object", + "required": [ + "seconds" + ], + "properties": { + "seconds": { + "type": "integer", + "format": "uint16", + "minimum": 0.0 + } + }, + "additionalProperties": false + } + ] + } + } +} diff --git a/contracts/cosmwasm/schema/raw/response_to_get_local_asset_by_reference.json b/contracts/cosmwasm/schema/raw/response_to_get_local_asset_by_reference.json new file mode 100644 index 00000000..d3e85ed5 --- /dev/null +++ b/contracts/cosmwasm/schema/raw/response_to_get_local_asset_by_reference.json @@ -0,0 +1,256 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "GetAssetResponse", + "type": "object", + "required": [ + "asset" + ], + "properties": { + "asset": { + "$ref": "#/definitions/AssetItem" + } + }, + "definitions": { + "Addr": { + "description": "A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + "type": "string" + }, + "AssetId": { + "description": "Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "string" + }, + "AssetItem": { + "type": "object", + "required": [ + "asset_id", + "local", + "network_id" + ], + "properties": { + "asset_id": { + "$ref": "#/definitions/AssetId" + }, + "bridged": { + "description": "if asset was bridged, it would have way to identify bridge/source/channel", + "anyOf": [ + { + "$ref": "#/definitions/BridgeAsset" + }, + { + "type": "null" + } + ] + }, + "local": { + "description": "TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local", + "allOf": [ + { + "$ref": "#/definitions/AssetReference" + } + ] + }, + "network_id": { + "description": "network id on which this asset id can be used locally", + "allOf": [ + { + "$ref": "#/definitions/NetworkId" + } + ] + } + } + }, + "AssetReference": { + "description": "Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).", + "oneOf": [ + { + "description": "Cosmos SDK native", + "type": "object", + "required": [ + "native" + ], + "properties": { + "native": { + "type": "object", + "required": [ + "denom" + ], + "properties": { + "denom": { + "type": "string" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "cw20" + ], + "properties": { + "cw20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/Addr" + } + } + } + }, + "additionalProperties": false + }, + { + "type": "object", + "required": [ + "erc20" + ], + "properties": { + "erc20": { + "type": "object", + "required": [ + "contract" + ], + "properties": { + "contract": { + "$ref": "#/definitions/H160" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "Solana VM default token, not only Solana has this token", + "type": "object", + "required": [ + "s_p_l20" + ], + "properties": { + "s_p_l20": { + "type": "object", + "required": [ + "mint" + ], + "properties": { + "mint": { + "$ref": "#/definitions/Pubkey" + } + } + } + }, + "additionalProperties": false + }, + { + "description": "usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value", + "type": "object", + "required": [ + "polkadot_substrate_asset" + ], + "properties": { + "polkadot_substrate_asset": { + "type": "object", + "required": [ + "general_index" + ], + "properties": { + "general_index": { + "type": "integer", + "format": "uint128", + "minimum": 0.0 + } + } + } + }, + "additionalProperties": false + } + ] + }, + "BridgeAsset": { + "type": "object", + "required": [ + "location_on_network" + ], + "properties": { + "location_on_network": { + "$ref": "#/definitions/ForeignAssetId" + } + } + }, + "ForeignAssetId": { + "oneOf": [ + { + "type": "object", + "required": [ + "ibc_ics20" + ], + "properties": { + "ibc_ics20": { + "$ref": "#/definitions/PrefixedDenom" + } + }, + "additionalProperties": false + }, + { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", + "type": "object", + "required": [ + "xcm_versioned_multi_location" + ], + "properties": { + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } + } + }, + "additionalProperties": false + } + ] + }, + "H160": { + "type": "string" + }, + "NetworkId": { + "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + "type": "integer", + "format": "uint32", + "minimum": 0.0 + }, + "PrefixedDenom": { + "description": "A type that contains the base denomination for ICS20 and the source tracing information path.", + "type": "object", + "required": [ + "base_denom", + "trace_path" + ], + "properties": { + "base_denom": { + "description": "Base denomination of the relayed fungible token.", + "type": "string" + }, + "trace_path": { + "description": "A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + "type": "string" + } + } + }, + "Pubkey": { + "description": "Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.", + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + }, + "maxItems": 32, + "minItems": 32 + } + } +} diff --git a/crates/cvm-route/src/transport.rs b/crates/cvm-route/src/transport.rs index 08f564ee..3c2c254c 100644 --- a/crates/cvm-route/src/transport.rs +++ b/crates/cvm-route/src/transport.rs @@ -127,8 +127,9 @@ pub struct ChannelInfo { pub enum ForeignAssetId { IbcIcs20(PrefixedDenom), - // `xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) - Xcm(serde_cw_value::Value), + /// `xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) + /// for now just store scale binary + XcmVersionedMultiLocation(Vec), // using serde_cw_value breaks py/ts generators } #[cfg(feature = "xcm")] diff --git a/mantis/blackbox/cvm_runtime/execute.py b/mantis/blackbox/cvm_runtime/execute.py index 3edde20e..4eb298e0 100644 --- a/mantis/blackbox/cvm_runtime/execute.py +++ b/mantis/blackbox/cvm_runtime/execute.py @@ -25,7 +25,7 @@ class Adr08IbcCallbacks(BaseModel): class AssetId(RootModel[str]): root: str = Field( ..., - description="Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -35,11 +35,11 @@ class Native(BaseModel): class AssetReference1(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Cosmos SDK native """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) native: Native @@ -50,20 +50,28 @@ class Cw20(BaseModel): class AssetReference2(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) cw20: Cw20 -class AssetReference(RootModel[Union[AssetReference1, AssetReference2]]): - root: Union[AssetReference1, AssetReference2] = Field( - ..., - description="Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can)", +class PolkadotSubstrateAsset(BaseModel): + general_index: conint(ge=0) + + +class AssetReference5(BaseModel): + """ + usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value + """ + + model_config = ConfigDict( + extra='forbid', ) + polkadot_substrate_asset: PolkadotSubstrateAsset class BindingValue2(BaseModel): @@ -72,7 +80,7 @@ class BindingValue2(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) asset: AssetId @@ -87,7 +95,7 @@ class CallOrigin2(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) Local: Local @@ -106,7 +114,7 @@ class ConfigSubMsg6(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) force_remove_asset: ForceRemoveAsset @@ -122,7 +130,7 @@ class ConfigSubMsg8(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) force_instantiate: ForceInstantiate @@ -132,7 +140,7 @@ class ConnectionId(RootModel[str]): class DestinationForXcAddr1(Enum): - tip = "tip" + tip = 'tip' class DisplayedForUint128(RootModel[str]): @@ -157,7 +165,7 @@ class OsmosisPoolManagerModuleV1Beta1(BaseModel): class ExchangeType1(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) osmosis_pool_manager_module_v1_beta1: OsmosisPoolManagerModuleV1Beta1 @@ -170,7 +178,7 @@ class AstroportRouterContract(BaseModel): class ExchangeType2(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) astroport_router_contract: AstroportRouterContract @@ -187,24 +195,43 @@ class ExecutePacketICS20Msg(BaseModel): packet_data_hex: List[conint(ge=0)] -class FundsForDisplayedForUint128(RootModel[List[List[Union[AssetId, DisplayedForUint128]]]]): +class ForeignAssetId2(BaseModel): + """ + `xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary + """ + + model_config = ConfigDict( + extra='forbid', + ) + xcm_versioned_multi_location: List[conint(ge=0)] + + +class FundsForDisplayedForUint128( + RootModel[List[List[Union[AssetId, DisplayedForUint128]]]] +): """ a set of assets with non zero balances """ root: List[List[Union[AssetId, DisplayedForUint128]]] = Field( - ..., description="a set of assets with non zero balances" + ..., description='a set of assets with non zero balances' ) +class H160(RootModel[str]): + root: str + + class IbcEndpoint(BaseModel): channel_id: str port_id: str class IbcIcs20Sender(Enum): - CosmosStargateIbcApplicationsTransferV1MsgTransfer = "CosmosStargateIbcApplicationsTransferV1MsgTransfer" - CosmWasmStd1_3 = "CosmWasmStd1_3" + CosmosStargateIbcApplicationsTransferV1MsgTransfer = ( + 'CosmosStargateIbcApplicationsTransferV1MsgTransfer' + ) + CosmWasmStd1_3 = 'CosmWasmStd1_3' class IcsPair(BaseModel): @@ -223,7 +250,7 @@ class Binding(RootModel[conint(ge=0)]): class NetworkId(RootModel[conint(ge=0)]): root: conint(ge=0) = Field( ..., - description="Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -232,9 +259,11 @@ class OsmosisIbcHooks(BaseModel): class CosmWasm(BaseModel): - admin: Addr = Field(..., description="admin of everything") + admin: Addr = Field(..., description='admin of everything') contract: Addr - executor_code_id: conint(ge=0) = Field(..., description="CVM executor contract code") + executor_code_id: conint(ge=0) = Field( + ..., description='CVM executor contract code' + ) class OutpostId1(BaseModel): @@ -243,7 +272,7 @@ class OutpostId1(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) cosm_wasm: CosmWasm @@ -251,7 +280,7 @@ class OutpostId1(BaseModel): class OutpostId(RootModel[OutpostId1]): root: OutpostId1 = Field( ..., - description="when message is sent to other side, we should identify receiver of some kind", + description='when message is sent to other side, we should identify receiver of some kind', ) @@ -265,7 +294,7 @@ class Prefix1(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) s_s58: conint(ge=0) @@ -276,7 +305,7 @@ class Prefix2(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) bech: str @@ -284,7 +313,7 @@ class Prefix2(BaseModel): class Prefix(RootModel[Union[Prefix1, Prefix2]]): root: Union[Prefix1, Prefix2] = Field( ..., - description="given prefix you may form accounts from 32 bit addresses or partially identify chains", + description='given prefix you may form accounts from 32 bit addresses or partially identify chains', ) @@ -293,10 +322,29 @@ class PrefixedDenom(BaseModel): A type that contains the base denomination for ICS20 and the source tracing information path. """ - base_denom: str = Field(..., description="Base denomination of the relayed fungible token.") + base_denom: str = Field( + ..., description='Base denomination of the relayed fungible token.' + ) trace_path: str = Field( ..., - description="A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + description='A series of `{port-id}/{channel-id}`s for tracing the source of the token.', + ) + + +class PubkeyItem(RootModel[conint(ge=0)]): + root: conint(ge=0) + + +class Pubkey(RootModel[List[PubkeyItem]]): + """ + Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding. + """ + + root: List[PubkeyItem] = Field( + ..., + description='Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.', + max_length=32, + min_length=32, ) @@ -305,7 +353,7 @@ class Register1(Enum): Instruction pointer """ - ip = "ip" + ip = 'ip' class Register2(Enum): @@ -313,7 +361,7 @@ class Register2(Enum): Tip's address """ - tip = "tip" + tip = 'tip' class Register3(Enum): @@ -321,7 +369,7 @@ class Register3(Enum): Executor's address """ - this = "this" + this = 'this' class Register4(Enum): @@ -329,7 +377,7 @@ class Register4(Enum): Result of the last executed instruction. If not empty, program did not executed to the end. """ - result = "result" + result = 'result' class Register5(BaseModel): @@ -338,7 +386,7 @@ class Register5(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) carry: AssetId @@ -353,7 +401,7 @@ class RelativeTimeout1(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) seconds: conint(ge=0) @@ -361,21 +409,21 @@ class RelativeTimeout1(BaseModel): class RelativeTimeout(RootModel[RelativeTimeout1]): root: RelativeTimeout1 = Field( ..., - description="relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + description='relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours', ) class Uint128(RootModel[str]): root: str = Field( ..., - description="A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```", + description='A thin wrapper around u128 that is using strings for JSON encoding/decoding, such that the full u128 range can be used for clients that convert JSON numbers to floats, like JavaScript and jq.\n\n# Examples\n\nUse `from` to create instances of this and `u128` to get the value out:\n\n``` # use cosmwasm_std::Uint128; let a = Uint128::from(123u128); assert_eq!(a.u128(), 123);\n\nlet b = Uint128::from(42u64); assert_eq!(b.u128(), 42);\n\nlet c = Uint128::from(70u32); assert_eq!(c.u128(), 70); ```', ) class UserId(RootModel[str]): root: str = Field( ..., - description="Arbitrary `User` type that represent the identity of a user on a given network, usually a public key.", + description='Arbitrary `User` type that represent the identity of a user on a given network, usually a public key.', ) @@ -388,10 +436,25 @@ class UserOrigin(BaseModel): user_id: UserId +class VenueId1(Enum): + transfer = 'transfer' + + +class VenueId2(BaseModel): + model_config = ConfigDict( + extra='forbid', + ) + exchange: DisplayedForUint128 + + +class VenueId(RootModel[Union[VenueId1, VenueId2]]): + root: Union[VenueId1, VenueId2] + + class XcAddr(RootModel[str]): root: str = Field( ..., - description="A wrapper around any address on any chain. Similar to `ibc_rs::Signer`(multi encoding), but not depend on ibc code bloat. Unlike parity MultiLocation/Account32/Account20 which hard codes enum into code. Better send canonical address to each chain for performance, But it will also decode/reencode best effort. Inner must be either base64 or hex encoded or contain only characters from these. Added with helper per chain to get final address to use.", + description='A wrapper around any address on any chain. Similar to `ibc_rs::Signer`(multi encoding), but not depend on ibc code bloat. Unlike parity MultiLocation/Account32/Account20 which hard codes enum into code. Better send canonical address to each chain for performance, But it will also decode/reencode best effort. Inner must be either base64 or hex encoded or contain only characters from these. Added with helper per chain to get final address to use.', ) @@ -401,13 +464,13 @@ class AdminSubMsg1(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) execute_packet_i_c_s20: ExecutePacketICS20Msg class AdminSubMsg(RootModel[AdminSubMsg1]): - root: AdminSubMsg1 = Field(..., description="can only be executed by gov or admin") + root: AdminSubMsg1 = Field(..., description='can only be executed by gov or admin') class Amount(BaseModel): @@ -415,29 +478,88 @@ class Amount(BaseModel): See https://en.wikipedia.org/wiki/Linear_equation#Slope%E2%80%93intercept_form_or_Gradient-intercept_form """ - intercept: Optional[DisplayedForUint128] = Field(None, description="absolute amount, optional, default is 0") + intercept: Optional[DisplayedForUint128] = Field( + None, description='absolute amount, optional, default is 0' + ) slope: Optional[DisplayedForUint64] = Field( None, - description="part of `MAX_PARTS` from remaining after intercept subtraction, optional, default is 0", + description='part of `MAX_PARTS` from remaining after intercept subtraction, optional, default is 0', + ) + + +class Erc20(BaseModel): + contract: H160 + + +class AssetReference3(BaseModel): + """ + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). + """ + + model_config = ConfigDict( + extra='forbid', + ) + erc20: Erc20 + + +class SPL20(BaseModel): + mint: Pubkey + + +class AssetReference4(BaseModel): + """ + Solana VM default token, not only Solana has this token + """ + + model_config = ConfigDict( + extra='forbid', + ) + s_p_l20: SPL20 + + +class AssetReference( + RootModel[ + Union[ + AssetReference1, + AssetReference2, + AssetReference3, + AssetReference4, + AssetReference5, + ] + ] +): + root: Union[ + AssetReference1, + AssetReference2, + AssetReference3, + AssetReference4, + AssetReference5, + ] = Field( + ..., + description='Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).', ) -class AssetToNetwork(BaseModel): - other_asset: AssetId - other_network: NetworkId - this_asset: AssetId +class AssetsVenueItem(BaseModel): + """ + assets which can be transomed into each other via venue + """ + + from_asset_id: AssetId + to_asset_id: AssetId + venue_id: VenueId class BindingValue1(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) - register_: Register = Field(..., alias="register") + register_: Register = Field(..., alias='register') class BindingValue3(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) asset_amount: List[Union[AssetId, Amount]] = Field(..., max_length=2, min_length=2) @@ -456,7 +578,7 @@ class CallOrigin1(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) Remote: Remote @@ -464,7 +586,7 @@ class CallOrigin1(BaseModel): class CallOrigin(RootModel[Union[CallOrigin1, CallOrigin2]]): root: Union[CallOrigin1, CallOrigin2] = Field( ..., - description="The Origin that executed the CVM operation. Origin was verified to satisfy security semantics for execution.", + description='The Origin that executed the CVM operation. Origin was verified to satisfy security semantics for execution.', ) @@ -475,31 +597,35 @@ class ChannelInfo(BaseModel): connection_id: ConnectionId = Field( ..., - description="the connection this exists on (you can use to query client/consensus info)", + description='the connection this exists on (you can use to query client/consensus info)', + ) + counterparty_endpoint: IbcEndpoint = Field( + ..., description='the remote channel/port we connect to' ) - counterparty_endpoint: IbcEndpoint = Field(..., description="the remote channel/port we connect to") - id: ChannelId = Field(..., description="id of this channel") + id: ChannelId = Field(..., description='id of this channel') -class ConfigSubMsg4(BaseModel): +class ConfigSubMsg9(BaseModel): """ cross cross chain routing requires a lot of configuration, about chain executing this contract, about connectivity to and of other chains (even if not connected directly) and about assets and services on these chains (in future block hooks and some set of host extensions/precompiles would help to get some info automatically) `Force` message sets the data unconditionally. """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) - force_asset_to_network_map: AssetToNetwork + force_assets_venue: AssetsVenueItem class DestinationForXcAddr2(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) account: XcAddr -class DestinationForXcAddr(RootModel[Union[DestinationForXcAddr1, DestinationForXcAddr2]]): +class DestinationForXcAddr( + RootModel[Union[DestinationForXcAddr1, DestinationForXcAddr2]] +): root: Union[DestinationForXcAddr1, DestinationForXcAddr2] @@ -525,13 +651,13 @@ class ExecutorOrigin(BaseModel): class ForeignAssetId1(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) ibc_ics20: PrefixedDenom -class ForeignAssetId(RootModel[ForeignAssetId1]): - root: ForeignAssetId1 +class ForeignAssetId(RootModel[Union[ForeignAssetId1, ForeignAssetId2]]): + root: Union[ForeignAssetId1, ForeignAssetId2] class FundsForAmount(RootModel[List[List[Union[AssetId, Amount]]]]): @@ -539,7 +665,9 @@ class FundsForAmount(RootModel[List[List[Union[AssetId, Amount]]]]): a set of assets with non zero balances """ - root: List[List[Union[AssetId, Amount]]] = Field(..., description="a set of assets with non zero balances") + root: List[List[Union[AssetId, Amount]]] = Field( + ..., description='a set of assets with non zero balances' + ) class Ics20Features(BaseModel): @@ -549,7 +677,9 @@ class Ics20Features(BaseModel): ibc_callbacks: Optional[Adr08IbcCallbacks] = None pfm: Optional[PFM] = None - wasm_hooks: Optional[OsmosisIbcHooks] = Field(None, description="if it is exists, chain has that enabled") + wasm_hooks: Optional[OsmosisIbcHooks] = Field( + None, description='if it is exists, chain has that enabled' + ) class Transfer(BaseModel): @@ -563,7 +693,7 @@ class InstructionForArrayOfUint8AndXcAddrAndFundsForAmount1(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) transfer: Transfer @@ -583,7 +713,7 @@ class InstructionForArrayOfUint8AndXcAddrAndFundsForAmount2(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) call: Call @@ -600,34 +730,44 @@ class InstructionForArrayOfUint8AndXcAddrAndFundsForAmount4(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) exchange: Exchange +class NetworkAssetItem(BaseModel): + from_asset_id: AssetId + to_asset_id: AssetId + to_network_id: NetworkId + + class OtherNetworkItem(BaseModel): - counterparty_timeout: RelativeTimeout = Field(..., description="default timeout to use for direct send") - ics27_channel: Optional[ChannelInfo] = Field(None, description="if there is ICS27 IBC channel opened") + counterparty_timeout: RelativeTimeout = Field( + ..., description='default timeout to use for direct send' + ) + ics27_channel: Optional[ChannelInfo] = Field( + None, description='if there is ICS27 IBC channel opened' + ) ics_20: Optional[IcsPair] = None use_shortcut: Optional[bool] = Field( None, - description="if true, than will use shortcuts for example, if program transfer only program will just use native transfer or if connection supports exchange, it will use exchange default is false if target chain has CVM gateway", + description='if true, than will use shortcuts for example, if program transfer only program will just use native transfer or if connection supports exchange, it will use exchange default is false if target chain has CVM gateway', ) class Transfer1(BaseModel): amount: Uint128 - asset_id: AssetId = Field(..., description="assets from there") + asset_id: AssetId = Field(..., description='assets from there') network: NetworkId = Field( ..., - description="target network, can hope over several networks if route is stored in state", + description='target network, can hope over several networks if route is stored in state', ) - receiver: Optional[str] = Field(None, description="by default receiver is this") + receiver: Optional[str] = Field(None, description='by default receiver is this') class ShortcutSubMsg1(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) transfer: Transfer1 @@ -638,7 +778,7 @@ class ShortcutSubMsg(RootModel[ShortcutSubMsg1]): class ExecuteMsg2(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) admin: AdminSubMsg @@ -649,7 +789,7 @@ class ExecuteMsg6(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) shortcut: ShortcutSubMsg @@ -658,26 +798,41 @@ class BridgeAsset(BaseModel): location_on_network: ForeignAssetId +class ConfigSubMsg4(BaseModel): + """ + cross cross chain routing requires a lot of configuration, about chain executing this contract, about connectivity to and of other chains (even if not connected directly) and about assets and services on these chains (in future block hooks and some set of host extensions/precompiles would help to get some info automatically) `Force` message sets the data unconditionally. + """ + + model_config = ConfigDict( + extra='forbid', + ) + force_asset_to_network_map: NetworkAssetItem + + class ConfigSubMsg5(BaseModel): """ cross cross chain routing requires a lot of configuration, about chain executing this contract, about connectivity to and of other chains (even if not connected directly) and about assets and services on these chains (in future block hooks and some set of host extensions/precompiles would help to get some info automatically) `Force` message sets the data unconditionally. """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) force_exchange: ExchangeItem class Ics20Channel(BaseModel): features: Optional[Ics20Features] = None - sender: IbcIcs20Sender = Field(..., description="specific per chain way to send IBC ICS 20 assets") + sender: IbcIcs20Sender = Field( + ..., description='specific per chain way to send IBC ICS 20 assets' + ) class NetworkToNetworkItem(BaseModel): closed: Optional[conint(ge=0)] = None from_network_id: NetworkId - to_network: OtherNetworkItem = Field(..., description="how to send `to_network_id` chain") + to_network: OtherNetworkItem = Field( + ..., description='how to send `to_network_id` chain' + ) to_network_id: NetworkId @@ -685,10 +840,15 @@ class AssetItem(BaseModel): asset_id: AssetId bridged: Optional[BridgeAsset] = Field( None, - description="if asset was bridged, it would have way to identify bridge/source/channel", + description='if asset was bridged, it would have way to identify bridge/source/channel', + ) + local: AssetReference = Field( + ..., + description='TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local', + ) + network_id: NetworkId = Field( + ..., description='network id on which this asset id can be used locally' ) - local: AssetReference - network_id: NetworkId = Field(..., description="network id on which this asset id can be used locally") class ConfigSubMsg2(BaseModel): @@ -697,7 +857,7 @@ class ConfigSubMsg2(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) force_network_to_network: NetworkToNetworkItem @@ -708,7 +868,7 @@ class ConfigSubMsg3(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) force_asset: AssetItem @@ -722,12 +882,12 @@ class IbcEnabled(BaseModel): class NetworkItem(BaseModel): - accounts: Optional[Prefix] = Field(None, description="Account encoding type") + accounts: Optional[Prefix] = Field(None, description='Account encoding type') ibc: Optional[IbcEnabled] = None network_id: NetworkId outpost: Optional[OutpostId] = Field( None, - description="something which will be receiver on other side case of network has CVM deployed as contract, account address is stored here", + description='something which will be receiver on other side case of network has CVM deployed as contract, account address is stored here', ) @@ -737,14 +897,14 @@ class ConfigSubMsg1(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) force_network: NetworkItem class ExecuteMsg1(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) config: ConfigSubMsg @@ -755,14 +915,16 @@ class ExecuteMsg3(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) execute_program: ExecuteProgramMsgForNullableFundsForDisplayedForUint128 class ExecuteProgramPrivileged(BaseModel): - call_origin: CallOrigin = Field(..., description="The origin of the call.") - execute_program: ExecuteProgramMsgForFundsForDisplayedForUint128 = Field(..., description="Program to execute.") + call_origin: CallOrigin = Field(..., description='The origin of the call.') + execute_program: ExecuteProgramMsgForFundsForDisplayedForUint128 = Field( + ..., description='Program to execute.' + ) class ExecuteMsg4(BaseModel): @@ -773,7 +935,7 @@ class ExecuteMsg4(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) execute_program_privileged: ExecuteProgramPrivileged @@ -784,7 +946,7 @@ class ExecuteMsg5(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) bridge_forward: BridgeForwardMsg @@ -795,7 +957,7 @@ class ExecuteMsg7(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) message_hook: XcMessageData @@ -821,13 +983,13 @@ class ExecuteMsg( ExecuteMsg5, ExecuteMsg6, ExecuteMsg7, - ] = Field(..., title="ExecuteMsg") + ] = Field(..., title='ExecuteMsg') class BridgeForwardMsg(BaseModel): executor_origin: ExecutorOrigin msg: ExecuteProgramMsgForFundsForDisplayedForUint128 - to_network: NetworkId = Field(..., description="target network") + to_network: NetworkId = Field(..., description='target network') class ConfigSubMsg7(BaseModel): @@ -836,7 +998,7 @@ class ConfigSubMsg7(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) force: List[ConfigSubMsg] @@ -852,6 +1014,7 @@ class ConfigSubMsg( ConfigSubMsg6, ConfigSubMsg7, ConfigSubMsg8, + ConfigSubMsg9, ] ] ): @@ -864,9 +1027,10 @@ class ConfigSubMsg( ConfigSubMsg6, ConfigSubMsg7, ConfigSubMsg8, + ConfigSubMsg9, ] = Field( ..., - description="cross cross chain routing requires a lot of configuration, about chain executing this contract, about connectivity to and of other chains (even if not connected directly) and about assets and services on these chains (in future block hooks and some set of host extensions/precompiles would help to get some info automatically) `Force` message sets the data unconditionally.", + description='cross cross chain routing requires a lot of configuration, about chain executing this contract, about connectivity to and of other chains (even if not connected directly) and about assets and services on these chains (in future block hooks and some set of host extensions/precompiles would help to get some info automatically) `Force` message sets the data unconditionally.', ) @@ -877,14 +1041,14 @@ class ExecuteProgramMsgForFundsForDisplayedForUint128(BaseModel): assets: FundsForDisplayedForUint128 = Field( ..., - description="Assets to fund the CVM executor instance. The executor is funded prior to execution. If None, 100% of received funds go to executor.", + description='Assets to fund the CVM executor instance. The executor is funded prior to execution. If None, 100% of CosmWasm native received funds go to executor.', ) - program: ProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount = Field( - ..., description="The program." + program: ProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount = ( + Field(..., description='The program.') ) salt: Optional[str] = Field( None, - description="The program salt. If JSON, than hex encoded non prefixed lower case string. If not specified, uses no salt.", + description='The program salt. If JSON, than hex encoded non prefixed lower case string. If not specified, uses no salt.', ) tip: Optional[str] = None @@ -896,14 +1060,14 @@ class ExecuteProgramMsgForNullableFundsForDisplayedForUint128(BaseModel): assets: Optional[FundsForDisplayedForUint128] = Field( None, - description="Assets to fund the CVM executor instance. The executor is funded prior to execution. If None, 100% of received funds go to executor.", + description='Assets to fund the CVM executor instance. The executor is funded prior to execution. If None, 100% of CosmWasm native received funds go to executor.', ) - program: ProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount = Field( - ..., description="The program." + program: ProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount = ( + Field(..., description='The program.') ) salt: Optional[str] = Field( None, - description="The program salt. If JSON, than hex encoded non prefixed lower case string. If not specified, uses no salt.", + description='The program salt. If JSON, than hex encoded non prefixed lower case string. If not specified, uses no salt.', ) tip: Optional[str] = None @@ -914,7 +1078,7 @@ class Spawn(BaseModel): program: ProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount salt: Optional[str] = Field( None, - description="If JSON, than hex encoded non prefixed lower case string. Different salt allows to split funds into different virtual wallets So same salt shares assets on set of derived accounts on chains program executes.", + description='If JSON, than hex encoded non prefixed lower case string. Different salt allows to split funds into different virtual wallets So same salt shares assets on set of derived accounts on chains program executes.', ) @@ -926,7 +1090,7 @@ class InstructionForArrayOfUint8AndXcAddrAndFundsForAmount3(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) spawn: Spawn @@ -948,27 +1112,35 @@ class InstructionForArrayOfUint8AndXcAddrAndFundsForAmount( InstructionForArrayOfUint8AndXcAddrAndFundsForAmount4, ] = Field( ..., - description="Base CVM instructions. This set will remain as small as possible, expressiveness must come on `top` of the base instructions.", + description='Base CVM instructions. This set will remain as small as possible, expressiveness must come on `top` of the base instructions.', ) -class PacketForProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount(BaseModel): - assets: FundsForDisplayedForUint128 = Field(..., description="The assets that were attached to the program.") - executor: str = Field(..., description="The executor that was the origin of this packet.") - program: ProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount = Field( - ..., description="The protobuf encoded program." +class PacketForProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount( + BaseModel +): + assets: FundsForDisplayedForUint128 = Field( + ..., description='The assets that were attached to the program.' + ) + executor: str = Field( + ..., description='The executor that was the origin of this packet.' + ) + program: ProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount = ( + Field(..., description='The protobuf encoded program.') + ) + salt: str = Field(..., description='The salt associated with the program.') + user_origin: UserOrigin = Field( + ..., description='The user that originated the first CVM call.' ) - salt: str = Field(..., description="The salt associated with the program.") - user_origin: UserOrigin = Field(..., description="The user that originated the first CVM call.") class ProgramForArrayOfInstructionForArrayOfUint8AndXcAddrAndFundsForAmount(BaseModel): instructions: List[InstructionForArrayOfUint8AndXcAddrAndFundsForAmount] = Field( - ..., description="list of instructions to be executed" + ..., description='list of instructions to be executed' ) tag: Optional[str] = Field( None, - description="In JSON, hex encoded identifiers to identify the program off chain (for example in indexer).", + description='In JSON, hex encoded identifiers to identify the program off chain (for example in indexer).', ) diff --git a/mantis/blackbox/cvm_runtime/instantiate.py b/mantis/blackbox/cvm_runtime/instantiate.py index 48180625..3655783b 100644 --- a/mantis/blackbox/cvm_runtime/instantiate.py +++ b/mantis/blackbox/cvm_runtime/instantiate.py @@ -16,13 +16,17 @@ class Addr(RootModel[str]): class NetworkId(RootModel[conint(ge=0)]): root: conint(ge=0) = Field( ..., - description="Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) class HereItem(BaseModel): - admin: Addr = Field(..., description="The admin which is allowed to update the bridge list.") - network_id: NetworkId = Field(..., description="Network ID of this network where contract is deployed") + admin: Addr = Field( + ..., description='The admin which is allowed to update the bridge list.' + ) + network_id: NetworkId = Field( + ..., description='Network ID of this network where contract is deployed' + ) class InstantiateMsg(HereItem): diff --git a/mantis/blackbox/cvm_runtime/query.py b/mantis/blackbox/cvm_runtime/query.py index f2df814b..3db59b42 100644 --- a/mantis/blackbox/cvm_runtime/query.py +++ b/mantis/blackbox/cvm_runtime/query.py @@ -3,22 +3,36 @@ from __future__ import annotations -from typing import Any, Dict, Union +from typing import Any, Dict, List, Union from pydantic import BaseModel, ConfigDict, Field, RootModel, conint -class QueryMsg5(BaseModel): +class QueryMsg2(BaseModel): + model_config = ConfigDict( + extra='forbid', + ) + get_all_asset_ids: Dict[str, Any] + + +class QueryMsg6(BaseModel): """ Get all information this CVM knows about local and foreign assets/exchanges/networks """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) get_config: Dict[str, Any] +class QueryMsg7(BaseModel): + model_config = ConfigDict( + extra='forbid', + ) + get_all_asset_venues: Dict[str, Any] + + class Addr(RootModel[str]): root: str = Field( ..., @@ -29,7 +43,7 @@ class Addr(RootModel[str]): class AssetId(RootModel[str]): root: str = Field( ..., - description="Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -37,13 +51,13 @@ class Native(BaseModel): denom: str -class AssetReference3(BaseModel): +class AssetReference6(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Cosmos SDK native """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) native: Native @@ -52,22 +66,30 @@ class Cw20(BaseModel): contract: Addr -class AssetReference4(BaseModel): +class AssetReference7(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) cw20: Cw20 -class AssetReference(RootModel[Union[AssetReference3, AssetReference4]]): - root: Union[AssetReference3, AssetReference4] = Field( - ..., - description="Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can)", +class PolkadotSubstrateAsset(BaseModel): + general_index: conint(ge=0) + + +class AssetReference10(BaseModel): + """ + usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value + """ + + model_config = ConfigDict( + extra='forbid', ) + polkadot_substrate_asset: PolkadotSubstrateAsset class DisplayedForUint128(RootModel[str]): @@ -77,41 +99,47 @@ class DisplayedForUint128(RootModel[str]): ) +class H160(RootModel[str]): + root: str + + class NetworkId(RootModel[conint(ge=0)]): root: conint(ge=0) = Field( ..., - description="Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) -class GetAssetById(BaseModel): - asset_id: AssetId +class PubkeyItem(RootModel[conint(ge=0)]): + root: conint(ge=0) -class QueryMsg1(BaseModel): +class Pubkey(RootModel[List[PubkeyItem]]): """ - Returns [`AssetReference`] for an asset with given id. + Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding. """ - model_config = ConfigDict( - extra="forbid", + root: List[PubkeyItem] = Field( + ..., + description='Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.', + max_length=32, + min_length=32, ) - get_asset_by_id: GetAssetById -class GetLocalAssetByReference(BaseModel): - reference: AssetReference +class GetAssetById(BaseModel): + asset_id: AssetId -class QueryMsg2(BaseModel): +class QueryMsg1(BaseModel): """ - Returns [`AssetItem`] for an asset with given local reference. + Returns [`AssetReference`] for an asset with given id. """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) - get_local_asset_by_reference: GetLocalAssetByReference + get_asset_by_id: GetAssetById class GetIbcIcs20Route(BaseModel): @@ -119,9 +147,9 @@ class GetIbcIcs20Route(BaseModel): to_network: NetworkId -class QueryMsg3(BaseModel): +class QueryMsg4(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) get_ibc_ics20_route: GetIbcIcs20Route @@ -130,12 +158,88 @@ class GetExchangeById(BaseModel): exchange_id: DisplayedForUint128 -class QueryMsg4(BaseModel): +class QueryMsg5(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) get_exchange_by_id: GetExchangeById -class QueryMsg(RootModel[Union[QueryMsg1, QueryMsg2, QueryMsg3, QueryMsg4, QueryMsg5]]): - root: Union[QueryMsg1, QueryMsg2, QueryMsg3, QueryMsg4, QueryMsg5] = Field(..., title="QueryMsg") +class Erc20(BaseModel): + contract: H160 + + +class AssetReference8(BaseModel): + """ + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). + """ + + model_config = ConfigDict( + extra='forbid', + ) + erc20: Erc20 + + +class SPL20(BaseModel): + mint: Pubkey + + +class AssetReference9(BaseModel): + """ + Solana VM default token, not only Solana has this token + """ + + model_config = ConfigDict( + extra='forbid', + ) + s_p_l20: SPL20 + + +class AssetReference( + RootModel[ + Union[ + AssetReference6, + AssetReference7, + AssetReference8, + AssetReference9, + AssetReference10, + ] + ] +): + root: Union[ + AssetReference6, + AssetReference7, + AssetReference8, + AssetReference9, + AssetReference10, + ] = Field( + ..., + description='Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).', + ) + + +class GetLocalAssetByReference(BaseModel): + reference: AssetReference + + +class QueryMsg3(BaseModel): + """ + Returns [`AssetItem`] for an asset with given local reference. + """ + + model_config = ConfigDict( + extra='forbid', + ) + get_local_asset_by_reference: GetLocalAssetByReference + + +class QueryMsg( + RootModel[ + Union[ + QueryMsg1, QueryMsg2, QueryMsg3, QueryMsg4, QueryMsg5, QueryMsg6, QueryMsg7 + ] + ] +): + root: Union[ + QueryMsg1, QueryMsg2, QueryMsg3, QueryMsg4, QueryMsg5, QueryMsg6, QueryMsg7 + ] = Field(..., title='QueryMsg') diff --git a/mantis/blackbox/cvm_runtime/response_to_get_all_asset_ids.py b/mantis/blackbox/cvm_runtime/response_to_get_all_asset_ids.py new file mode 100644 index 00000000..be145125 --- /dev/null +++ b/mantis/blackbox/cvm_runtime/response_to_get_all_asset_ids.py @@ -0,0 +1,207 @@ +# generated by datamodel-codegen: +# filename: response_to_get_all_asset_ids.json + +from __future__ import annotations + +from typing import List, Optional, Union + +from pydantic import BaseModel, ConfigDict, Field, RootModel, conint + + +class Addr(RootModel[str]): + root: str = Field( + ..., + description="A human readable address.\n\nIn Cosmos, this is typically bech32 encoded. But for multi-chain smart contracts no assumptions should be made other than being UTF-8 encoded and of reasonable length.\n\nThis type represents a validated address. It can be created in the following ways 1. Use `Addr::unchecked(input)` 2. Use `let checked: Addr = deps.api.addr_validate(input)?` 3. Use `let checked: Addr = deps.api.addr_humanize(canonical_addr)?` 4. Deserialize from JSON. This must only be done from JSON that was validated before such as a contract's state. `Addr` must not be used in messages sent by the user because this would result in unvalidated instances.\n\nThis type is immutable. If you really need to mutate it (Really? Are you sure?), create a mutable copy using `let mut mutable = Addr::to_string()` and operate on that `String` instance.", + ) + + +class AssetId(RootModel[str]): + root: str = Field( + ..., + description='Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', + ) + + +class Native(BaseModel): + denom: str + + +class AssetReference11(BaseModel): + """ + Cosmos SDK native + """ + + model_config = ConfigDict( + extra='forbid', + ) + native: Native + + +class Cw20(BaseModel): + contract: Addr + + +class AssetReference12(BaseModel): + """ + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). + """ + + model_config = ConfigDict( + extra='forbid', + ) + cw20: Cw20 + + +class PolkadotSubstrateAsset(BaseModel): + general_index: conint(ge=0) + + +class AssetReference15(BaseModel): + """ + usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value + """ + + model_config = ConfigDict( + extra='forbid', + ) + polkadot_substrate_asset: PolkadotSubstrateAsset + + +class ForeignAssetId4(BaseModel): + """ + `xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary + """ + + model_config = ConfigDict( + extra='forbid', + ) + xcm_versioned_multi_location: List[conint(ge=0)] + + +class H160(RootModel[str]): + root: str + + +class NetworkId(RootModel[conint(ge=0)]): + root: conint(ge=0) = Field( + ..., + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', + ) + + +class PrefixedDenom(BaseModel): + """ + A type that contains the base denomination for ICS20 and the source tracing information path. + """ + + base_denom: str = Field( + ..., description='Base denomination of the relayed fungible token.' + ) + trace_path: str = Field( + ..., + description='A series of `{port-id}/{channel-id}`s for tracing the source of the token.', + ) + + +class PubkeyItem(RootModel[conint(ge=0)]): + root: conint(ge=0) + + +class Pubkey(RootModel[List[PubkeyItem]]): + """ + Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding. + """ + + root: List[PubkeyItem] = Field( + ..., + description='Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.', + max_length=32, + min_length=32, + ) + + +class Erc20(BaseModel): + contract: H160 + + +class AssetReference13(BaseModel): + """ + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). + """ + + model_config = ConfigDict( + extra='forbid', + ) + erc20: Erc20 + + +class SPL20(BaseModel): + mint: Pubkey + + +class AssetReference14(BaseModel): + """ + Solana VM default token, not only Solana has this token + """ + + model_config = ConfigDict( + extra='forbid', + ) + s_p_l20: SPL20 + + +class AssetReference( + RootModel[ + Union[ + AssetReference11, + AssetReference12, + AssetReference13, + AssetReference14, + AssetReference15, + ] + ] +): + root: Union[ + AssetReference11, + AssetReference12, + AssetReference13, + AssetReference14, + AssetReference15, + ] = Field( + ..., + description='Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).', + ) + + +class ForeignAssetId3(BaseModel): + model_config = ConfigDict( + extra='forbid', + ) + ibc_ics20: PrefixedDenom + + +class ForeignAssetId(RootModel[Union[ForeignAssetId3, ForeignAssetId4]]): + root: Union[ForeignAssetId3, ForeignAssetId4] + + +class BridgeAsset(BaseModel): + location_on_network: ForeignAssetId + + +class AssetItem(BaseModel): + asset_id: AssetId + bridged: Optional[BridgeAsset] = Field( + None, + description='if asset was bridged, it would have way to identify bridge/source/channel', + ) + local: AssetReference = Field( + ..., + description='TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local', + ) + network_id: NetworkId = Field( + ..., description='network id on which this asset id can be used locally' + ) + + +class ArrayOfAssetItem(RootModel[List[AssetItem]]): + root: List[AssetItem] = Field(..., title='Array_of_AssetItem') diff --git a/mantis/blackbox/cvm_runtime/response_to_get_all_asset_venues.py b/mantis/blackbox/cvm_runtime/response_to_get_all_asset_venues.py new file mode 100644 index 00000000..27cefd0a --- /dev/null +++ b/mantis/blackbox/cvm_runtime/response_to_get_all_asset_venues.py @@ -0,0 +1,52 @@ +# generated by datamodel-codegen: +# filename: response_to_get_all_asset_venues.json + +from __future__ import annotations + +from enum import Enum +from typing import List, Union + +from pydantic import BaseModel, ConfigDict, Field, RootModel + + +class AssetId(RootModel[str]): + root: str = Field( + ..., + description='Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', + ) + + +class DisplayedForUint128(RootModel[str]): + root: str = Field( + ..., + description='A wrapper around a type which is serde-serialised as a string.\n\nFor serde-serialisation to be implemented for the type `T` must implement `Display` and `FromStr` traits.\n\n```rust use cvm::shared::Displayed;\n\n#[derive(serde::Serialize, serde::Deserialize)] struct Foo { value: Displayed }\n\nlet encoded = serde_json_wasm::to_string(&Foo { value: Displayed(42) }).unwrap(); assert_eq!(r#"{"value":"42"}"#, encoded);\n\nlet decoded = serde_json_wasm::from_str::(r#"{"value":"42"}"#).unwrap(); assert_eq!(Displayed(42), decoded.value); ```', + ) + + +class VenueId3(Enum): + transfer = 'transfer' + + +class VenueId4(BaseModel): + model_config = ConfigDict( + extra='forbid', + ) + exchange: DisplayedForUint128 + + +class VenueId(RootModel[Union[VenueId3, VenueId4]]): + root: Union[VenueId3, VenueId4] + + +class AssetsVenueItem(BaseModel): + """ + assets which can be transomed into each other via venue + """ + + from_asset_id: AssetId + to_asset_id: AssetId + venue_id: VenueId + + +class ArrayOfAssetsVenueItem(RootModel[List[AssetsVenueItem]]): + root: List[AssetsVenueItem] = Field(..., title='Array_of_AssetsVenueItem') diff --git a/mantis/blackbox/cvm_runtime/response_to_get_asset_by_id.py b/mantis/blackbox/cvm_runtime/response_to_get_asset_by_id.py index 70b350ca..a96dad41 100644 --- a/mantis/blackbox/cvm_runtime/response_to_get_asset_by_id.py +++ b/mantis/blackbox/cvm_runtime/response_to_get_asset_by_id.py @@ -3,7 +3,7 @@ from __future__ import annotations -from typing import Optional, Union +from typing import List, Optional, Union from pydantic import BaseModel, ConfigDict, Field, RootModel, conint @@ -18,7 +18,7 @@ class Addr(RootModel[str]): class AssetId(RootModel[str]): root: str = Field( ..., - description="Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -26,13 +26,13 @@ class Native(BaseModel): denom: str -class AssetReference5(BaseModel): +class AssetReference16(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Cosmos SDK native """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) native: Native @@ -41,28 +41,51 @@ class Cw20(BaseModel): contract: Addr -class AssetReference6(BaseModel): +class AssetReference17(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) cw20: Cw20 -class AssetReference(RootModel[Union[AssetReference5, AssetReference6]]): - root: Union[AssetReference5, AssetReference6] = Field( - ..., - description="Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can)", +class PolkadotSubstrateAsset(BaseModel): + general_index: conint(ge=0) + + +class AssetReference20(BaseModel): + """ + usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value + """ + + model_config = ConfigDict( + extra='forbid', ) + polkadot_substrate_asset: PolkadotSubstrateAsset + + +class ForeignAssetId6(BaseModel): + """ + `xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary + """ + + model_config = ConfigDict( + extra='forbid', + ) + xcm_versioned_multi_location: List[conint(ge=0)] + + +class H160(RootModel[str]): + root: str class NetworkId(RootModel[conint(ge=0)]): root: conint(ge=0) = Field( ..., - description="Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -71,22 +94,94 @@ class PrefixedDenom(BaseModel): A type that contains the base denomination for ICS20 and the source tracing information path. """ - base_denom: str = Field(..., description="Base denomination of the relayed fungible token.") + base_denom: str = Field( + ..., description='Base denomination of the relayed fungible token.' + ) trace_path: str = Field( ..., - description="A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + description='A series of `{port-id}/{channel-id}`s for tracing the source of the token.', ) -class ForeignAssetId2(BaseModel): +class PubkeyItem(RootModel[conint(ge=0)]): + root: conint(ge=0) + + +class Pubkey(RootModel[List[PubkeyItem]]): + """ + Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding. + """ + + root: List[PubkeyItem] = Field( + ..., + description='Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.', + max_length=32, + min_length=32, + ) + + +class Erc20(BaseModel): + contract: H160 + + +class AssetReference18(BaseModel): + """ + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). + """ + + model_config = ConfigDict( + extra='forbid', + ) + erc20: Erc20 + + +class SPL20(BaseModel): + mint: Pubkey + + +class AssetReference19(BaseModel): + """ + Solana VM default token, not only Solana has this token + """ + + model_config = ConfigDict( + extra='forbid', + ) + s_p_l20: SPL20 + + +class AssetReference( + RootModel[ + Union[ + AssetReference16, + AssetReference17, + AssetReference18, + AssetReference19, + AssetReference20, + ] + ] +): + root: Union[ + AssetReference16, + AssetReference17, + AssetReference18, + AssetReference19, + AssetReference20, + ] = Field( + ..., + description='Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).', + ) + + +class ForeignAssetId5(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) ibc_ics20: PrefixedDenom -class ForeignAssetId(RootModel[ForeignAssetId2]): - root: ForeignAssetId2 +class ForeignAssetId(RootModel[Union[ForeignAssetId5, ForeignAssetId6]]): + root: Union[ForeignAssetId5, ForeignAssetId6] class BridgeAsset(BaseModel): @@ -97,10 +192,15 @@ class AssetItem(BaseModel): asset_id: AssetId bridged: Optional[BridgeAsset] = Field( None, - description="if asset was bridged, it would have way to identify bridge/source/channel", + description='if asset was bridged, it would have way to identify bridge/source/channel', + ) + local: AssetReference = Field( + ..., + description='TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local', + ) + network_id: NetworkId = Field( + ..., description='network id on which this asset id can be used locally' ) - local: AssetReference - network_id: NetworkId = Field(..., description="network id on which this asset id can be used locally") class GetAssetResponse(BaseModel): diff --git a/mantis/blackbox/cvm_runtime/response_to_get_config.py b/mantis/blackbox/cvm_runtime/response_to_get_config.py index dd6ca49f..a807a136 100644 --- a/mantis/blackbox/cvm_runtime/response_to_get_config.py +++ b/mantis/blackbox/cvm_runtime/response_to_get_config.py @@ -25,7 +25,7 @@ class Adr08IbcCallbacks(BaseModel): class AssetId(RootModel[str]): root: str = Field( ..., - description="Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -33,13 +33,13 @@ class Native(BaseModel): denom: str -class AssetReference7(BaseModel): +class AssetReference21(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Cosmos SDK native """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) native: Native @@ -48,22 +48,30 @@ class Cw20(BaseModel): contract: Addr -class AssetReference8(BaseModel): +class AssetReference22(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) cw20: Cw20 -class AssetReference(RootModel[Union[AssetReference7, AssetReference8]]): - root: Union[AssetReference7, AssetReference8] = Field( - ..., - description="Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can)", +class PolkadotSubstrateAsset(BaseModel): + general_index: conint(ge=0) + + +class AssetReference25(BaseModel): + """ + usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value + """ + + model_config = ConfigDict( + extra='forbid', ) + polkadot_substrate_asset: PolkadotSubstrateAsset class ChannelId(RootModel[str]): @@ -89,7 +97,7 @@ class OsmosisPoolManagerModuleV1Beta1(BaseModel): class ExchangeType3(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) osmosis_pool_manager_module_v1_beta1: OsmosisPoolManagerModuleV1Beta1 @@ -102,7 +110,7 @@ class AstroportRouterContract(BaseModel): class ExchangeType4(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) astroport_router_contract: AstroportRouterContract @@ -111,14 +119,31 @@ class ExchangeType(RootModel[Union[ExchangeType3, ExchangeType4]]): root: Union[ExchangeType3, ExchangeType4] +class ForeignAssetId8(BaseModel): + """ + `xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary + """ + + model_config = ConfigDict( + extra='forbid', + ) + xcm_versioned_multi_location: List[conint(ge=0)] + + +class H160(RootModel[str]): + root: str + + class IbcEndpoint(BaseModel): channel_id: str port_id: str class IbcIcs20Sender(Enum): - CosmosStargateIbcApplicationsTransferV1MsgTransfer = "CosmosStargateIbcApplicationsTransferV1MsgTransfer" - CosmWasmStd1_3 = "CosmWasmStd1_3" + CosmosStargateIbcApplicationsTransferV1MsgTransfer = ( + 'CosmosStargateIbcApplicationsTransferV1MsgTransfer' + ) + CosmWasmStd1_3 = 'CosmWasmStd1_3' class IcsPair(BaseModel): @@ -133,7 +158,7 @@ class IcsPair(BaseModel): class NetworkId(RootModel[conint(ge=0)]): root: conint(ge=0) = Field( ..., - description="Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -142,9 +167,11 @@ class OsmosisIbcHooks(BaseModel): class CosmWasm(BaseModel): - admin: Addr = Field(..., description="admin of everything") + admin: Addr = Field(..., description='admin of everything') contract: Addr - executor_code_id: conint(ge=0) = Field(..., description="CVM executor contract code") + executor_code_id: conint(ge=0) = Field( + ..., description='CVM executor contract code' + ) class OutpostId2(BaseModel): @@ -153,7 +180,7 @@ class OutpostId2(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) cosm_wasm: CosmWasm @@ -161,7 +188,7 @@ class OutpostId2(BaseModel): class OutpostId(RootModel[OutpostId2]): root: OutpostId2 = Field( ..., - description="when message is sent to other side, we should identify receiver of some kind", + description='when message is sent to other side, we should identify receiver of some kind', ) @@ -175,7 +202,7 @@ class Prefix3(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) s_s58: conint(ge=0) @@ -186,7 +213,7 @@ class Prefix4(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) bech: str @@ -194,7 +221,7 @@ class Prefix4(BaseModel): class Prefix(RootModel[Union[Prefix3, Prefix4]]): root: Union[Prefix3, Prefix4] = Field( ..., - description="given prefix you may form accounts from 32 bit addresses or partially identify chains", + description='given prefix you may form accounts from 32 bit addresses or partially identify chains', ) @@ -203,10 +230,29 @@ class PrefixedDenom(BaseModel): A type that contains the base denomination for ICS20 and the source tracing information path. """ - base_denom: str = Field(..., description="Base denomination of the relayed fungible token.") + base_denom: str = Field( + ..., description='Base denomination of the relayed fungible token.' + ) trace_path: str = Field( ..., - description="A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + description='A series of `{port-id}/{channel-id}`s for tracing the source of the token.', + ) + + +class PubkeyItem(RootModel[conint(ge=0)]): + root: conint(ge=0) + + +class Pubkey(RootModel[List[PubkeyItem]]): + """ + Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding. + """ + + root: List[PubkeyItem] = Field( + ..., + description='Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.', + max_length=32, + min_length=32, ) @@ -216,7 +262,7 @@ class RelativeTimeout2(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) seconds: conint(ge=0) @@ -224,10 +270,88 @@ class RelativeTimeout2(BaseModel): class RelativeTimeout(RootModel[RelativeTimeout2]): root: RelativeTimeout2 = Field( ..., - description="relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + description='relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours', ) +class VenueId5(Enum): + transfer = 'transfer' + + +class VenueId6(BaseModel): + model_config = ConfigDict( + extra='forbid', + ) + exchange: DisplayedForUint128 + + +class VenueId(RootModel[Union[VenueId5, VenueId6]]): + root: Union[VenueId5, VenueId6] + + +class Erc20(BaseModel): + contract: H160 + + +class AssetReference23(BaseModel): + """ + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). + """ + + model_config = ConfigDict( + extra='forbid', + ) + erc20: Erc20 + + +class SPL20(BaseModel): + mint: Pubkey + + +class AssetReference24(BaseModel): + """ + Solana VM default token, not only Solana has this token + """ + + model_config = ConfigDict( + extra='forbid', + ) + s_p_l20: SPL20 + + +class AssetReference( + RootModel[ + Union[ + AssetReference21, + AssetReference22, + AssetReference23, + AssetReference24, + AssetReference25, + ] + ] +): + root: Union[ + AssetReference21, + AssetReference22, + AssetReference23, + AssetReference24, + AssetReference25, + ] = Field( + ..., + description='Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).', + ) + + +class AssetsVenueItem(BaseModel): + """ + assets which can be transomed into each other via venue + """ + + from_asset_id: AssetId + to_asset_id: AssetId + venue_id: VenueId + + class ChannelInfo(BaseModel): """ Information associated with an IBC channel. @@ -235,10 +359,12 @@ class ChannelInfo(BaseModel): connection_id: ConnectionId = Field( ..., - description="the connection this exists on (you can use to query client/consensus info)", + description='the connection this exists on (you can use to query client/consensus info)', + ) + counterparty_endpoint: IbcEndpoint = Field( + ..., description='the remote channel/port we connect to' ) - counterparty_endpoint: IbcEndpoint = Field(..., description="the remote channel/port we connect to") - id: ChannelId = Field(..., description="id of this channel") + id: ChannelId = Field(..., description='id of this channel') class ExchangeItem(BaseModel): @@ -252,15 +378,15 @@ class ExchangeItem(BaseModel): network_id: NetworkId -class ForeignAssetId3(BaseModel): +class ForeignAssetId7(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) ibc_ics20: PrefixedDenom -class ForeignAssetId(RootModel[ForeignAssetId3]): - root: ForeignAssetId3 +class ForeignAssetId(RootModel[Union[ForeignAssetId7, ForeignAssetId8]]): + root: Union[ForeignAssetId7, ForeignAssetId8] class Ics20Features(BaseModel): @@ -270,22 +396,28 @@ class Ics20Features(BaseModel): ibc_callbacks: Optional[Adr08IbcCallbacks] = None pfm: Optional[PFM] = None - wasm_hooks: Optional[OsmosisIbcHooks] = Field(None, description="if it is exists, chain has that enabled") + wasm_hooks: Optional[OsmosisIbcHooks] = Field( + None, description='if it is exists, chain has that enabled' + ) class NetworkAssetItem(BaseModel): - asset_id: AssetId + from_asset_id: AssetId to_asset_id: AssetId to_network_id: NetworkId class OtherNetworkItem(BaseModel): - counterparty_timeout: RelativeTimeout = Field(..., description="default timeout to use for direct send") - ics27_channel: Optional[ChannelInfo] = Field(None, description="if there is ICS27 IBC channel opened") + counterparty_timeout: RelativeTimeout = Field( + ..., description='default timeout to use for direct send' + ) + ics27_channel: Optional[ChannelInfo] = Field( + None, description='if there is ICS27 IBC channel opened' + ) ics_20: Optional[IcsPair] = None use_shortcut: Optional[bool] = Field( None, - description="if true, than will use shortcuts for example, if program transfer only program will just use native transfer or if connection supports exchange, it will use exchange default is false if target chain has CVM gateway", + description='if true, than will use shortcuts for example, if program transfer only program will just use native transfer or if connection supports exchange, it will use exchange default is false if target chain has CVM gateway', ) @@ -295,13 +427,17 @@ class BridgeAsset(BaseModel): class Ics20Channel(BaseModel): features: Optional[Ics20Features] = None - sender: IbcIcs20Sender = Field(..., description="specific per chain way to send IBC ICS 20 assets") + sender: IbcIcs20Sender = Field( + ..., description='specific per chain way to send IBC ICS 20 assets' + ) class NetworkToNetworkItem(BaseModel): closed: Optional[conint(ge=0)] = None from_network_id: NetworkId - to_network: OtherNetworkItem = Field(..., description="how to send `to_network_id` chain") + to_network: OtherNetworkItem = Field( + ..., description='how to send `to_network_id` chain' + ) to_network_id: NetworkId @@ -309,10 +445,15 @@ class AssetItem(BaseModel): asset_id: AssetId bridged: Optional[BridgeAsset] = Field( None, - description="if asset was bridged, it would have way to identify bridge/source/channel", + description='if asset was bridged, it would have way to identify bridge/source/channel', + ) + local: AssetReference = Field( + ..., + description='TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local', + ) + network_id: NetworkId = Field( + ..., description='network id on which this asset id can be used locally' ) - local: AssetReference - network_id: NetworkId = Field(..., description="network id on which this asset id can be used locally") class IbcChannels(BaseModel): @@ -324,16 +465,17 @@ class IbcEnabled(BaseModel): class NetworkItem(BaseModel): - accounts: Optional[Prefix] = Field(None, description="Account encoding type") + accounts: Optional[Prefix] = Field(None, description='Account encoding type') ibc: Optional[IbcEnabled] = None network_id: NetworkId outpost: Optional[OutpostId] = Field( None, - description="something which will be receiver on other side case of network has CVM deployed as contract, account address is stored here", + description='something which will be receiver on other side case of network has CVM deployed as contract, account address is stored here', ) class GetConfigResponse(BaseModel): + asset_venue_items: List[AssetsVenueItem] assets: List[AssetItem] exchanges: List[ExchangeItem] network_assets: List[NetworkAssetItem] diff --git a/mantis/blackbox/cvm_runtime/response_to_get_exchange_by_id.py b/mantis/blackbox/cvm_runtime/response_to_get_exchange_by_id.py index 9b573046..53428171 100644 --- a/mantis/blackbox/cvm_runtime/response_to_get_exchange_by_id.py +++ b/mantis/blackbox/cvm_runtime/response_to_get_exchange_by_id.py @@ -30,7 +30,7 @@ class OsmosisPoolManagerModuleV1Beta1(BaseModel): class ExchangeType5(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) osmosis_pool_manager_module_v1_beta1: OsmosisPoolManagerModuleV1Beta1 @@ -43,7 +43,7 @@ class AstroportRouterContract(BaseModel): class ExchangeType6(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) astroport_router_contract: AstroportRouterContract @@ -55,7 +55,7 @@ class ExchangeType(RootModel[Union[ExchangeType5, ExchangeType6]]): class NetworkId(RootModel[conint(ge=0)]): root: conint(ge=0) = Field( ..., - description="Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) diff --git a/mantis/blackbox/cvm_runtime/response_to_get_ibc_ics20_route.py b/mantis/blackbox/cvm_runtime/response_to_get_ibc_ics20_route.py index 7fc4e8ed..10777dd7 100644 --- a/mantis/blackbox/cvm_runtime/response_to_get_ibc_ics20_route.py +++ b/mantis/blackbox/cvm_runtime/response_to_get_ibc_ics20_route.py @@ -18,7 +18,7 @@ class Addr(RootModel[str]): class AssetId(RootModel[str]): root: str = Field( ..., - description="Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -27,21 +27,25 @@ class ChannelId(RootModel[str]): class IbcIcs20Sender(Enum): - CosmosStargateIbcApplicationsTransferV1MsgTransfer = "CosmosStargateIbcApplicationsTransferV1MsgTransfer" - CosmWasmStd1_3 = "CosmWasmStd1_3" + CosmosStargateIbcApplicationsTransferV1MsgTransfer = ( + 'CosmosStargateIbcApplicationsTransferV1MsgTransfer' + ) + CosmWasmStd1_3 = 'CosmWasmStd1_3' class NetworkId(RootModel[conint(ge=0)]): root: conint(ge=0) = Field( ..., - description="Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) class CosmWasm(BaseModel): - admin: Addr = Field(..., description="admin of everything") + admin: Addr = Field(..., description='admin of everything') contract: Addr - executor_code_id: conint(ge=0) = Field(..., description="CVM executor contract code") + executor_code_id: conint(ge=0) = Field( + ..., description='CVM executor contract code' + ) class OutpostId3(BaseModel): @@ -50,7 +54,7 @@ class OutpostId3(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) cosm_wasm: CosmWasm @@ -58,7 +62,7 @@ class OutpostId3(BaseModel): class OutpostId(RootModel[OutpostId3]): root: OutpostId3 = Field( ..., - description="when message is sent to other side, we should identify receiver of some kind", + description='when message is sent to other side, we should identify receiver of some kind', ) @@ -68,7 +72,7 @@ class RelativeTimeout3(BaseModel): """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) seconds: conint(ge=0) @@ -76,7 +80,7 @@ class RelativeTimeout3(BaseModel): class RelativeTimeout(RootModel[RelativeTimeout3]): root: RelativeTimeout3 = Field( ..., - description="relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours", + description='relative timeout to CW/IBC-rs time. very small, assumed messages are arriving fast enough, like less than hours', ) @@ -92,7 +96,9 @@ class IbcIcs20ProgramRoute(BaseModel): ibc_ics_20_sender: IbcIcs20Sender local_native_denom: str on_remote_asset: AssetId - to_outpost: OutpostId = Field(..., description="the contract address of the gateway to send to assets") + to_outpost: OutpostId = Field( + ..., description='the contract address of the gateway to send to assets' + ) class GetIbcIcs20RouteResponse(BaseModel): diff --git a/mantis/blackbox/cvm_runtime/response_to_get_local_asset_by_reference.py b/mantis/blackbox/cvm_runtime/response_to_get_local_asset_by_reference.py index bcab298c..2488207f 100644 --- a/mantis/blackbox/cvm_runtime/response_to_get_local_asset_by_reference.py +++ b/mantis/blackbox/cvm_runtime/response_to_get_local_asset_by_reference.py @@ -3,7 +3,7 @@ from __future__ import annotations -from typing import Optional, Union +from typing import List, Optional, Union from pydantic import BaseModel, ConfigDict, Field, RootModel, conint @@ -18,7 +18,7 @@ class Addr(RootModel[str]): class AssetId(RootModel[str]): root: str = Field( ..., - description="Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM assets ID. Must be unique for each asset and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -26,13 +26,13 @@ class Native(BaseModel): denom: str -class AssetReference9(BaseModel): +class AssetReference26(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Cosmos SDK native """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) native: Native @@ -41,28 +41,51 @@ class Cw20(BaseModel): contract: Addr -class AssetReference10(BaseModel): +class AssetReference27(BaseModel): """ - Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can) + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). """ model_config = ConfigDict( - extra="forbid", + extra='forbid', ) cw20: Cw20 -class AssetReference(RootModel[Union[AssetReference9, AssetReference10]]): - root: Union[AssetReference9, AssetReference10] = Field( - ..., - description="Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can)", +class PolkadotSubstrateAsset(BaseModel): + general_index: conint(ge=0) + + +class AssetReference30(BaseModel): + """ + usually on Polkadot/Kusama and parachains Subtrate runtimes assets encoded as numbers up to u128 value + """ + + model_config = ConfigDict( + extra='forbid', ) + polkadot_substrate_asset: PolkadotSubstrateAsset + + +class ForeignAssetId10(BaseModel): + """ + `xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary + """ + + model_config = ConfigDict( + extra='forbid', + ) + xcm_versioned_multi_location: List[conint(ge=0)] + + +class H160(RootModel[str]): + root: str class NetworkId(RootModel[conint(ge=0)]): root: conint(ge=0) = Field( ..., - description="Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", + description='Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.', ) @@ -71,22 +94,94 @@ class PrefixedDenom(BaseModel): A type that contains the base denomination for ICS20 and the source tracing information path. """ - base_denom: str = Field(..., description="Base denomination of the relayed fungible token.") + base_denom: str = Field( + ..., description='Base denomination of the relayed fungible token.' + ) trace_path: str = Field( ..., - description="A series of `{port-id}/{channel-id}`s for tracing the source of the token.", + description='A series of `{port-id}/{channel-id}`s for tracing the source of the token.', ) -class ForeignAssetId4(BaseModel): +class PubkeyItem(RootModel[conint(ge=0)]): + root: conint(ge=0) + + +class Pubkey(RootModel[List[PubkeyItem]]): + """ + Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding. + """ + + root: List[PubkeyItem] = Field( + ..., + description='Is `solana-program` crate `Pubkey` type, but with proper serde support into base58 encoding.', + max_length=32, + min_length=32, + ) + + +class Erc20(BaseModel): + contract: H160 + + +class AssetReference28(BaseModel): + """ + Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs). + """ + + model_config = ConfigDict( + extra='forbid', + ) + erc20: Erc20 + + +class SPL20(BaseModel): + mint: Pubkey + + +class AssetReference29(BaseModel): + """ + Solana VM default token, not only Solana has this token + """ + + model_config = ConfigDict( + extra='forbid', + ) + s_p_l20: SPL20 + + +class AssetReference( + RootModel[ + Union[ + AssetReference26, + AssetReference27, + AssetReference28, + AssetReference29, + AssetReference30, + ] + ] +): + root: Union[ + AssetReference26, + AssetReference27, + AssetReference28, + AssetReference29, + AssetReference30, + ] = Field( + ..., + description='Definition of an asset native to some chain to operate on. For example for Cosmos CW and EVM chains both CW20 and ERC20 can be actual. So if asset is local or only remote to some chain depends on context of network or connection. this design leads to some dummy matches, but in general unifies code (so that if one have to solve other chain route it can). One consensus(chain) can have assets produced by different protocols(VMs).', + ) + + +class ForeignAssetId9(BaseModel): model_config = ConfigDict( - extra="forbid", + extra='forbid', ) ibc_ics20: PrefixedDenom -class ForeignAssetId(RootModel[ForeignAssetId4]): - root: ForeignAssetId4 +class ForeignAssetId(RootModel[Union[ForeignAssetId9, ForeignAssetId10]]): + root: Union[ForeignAssetId9, ForeignAssetId10] class BridgeAsset(BaseModel): @@ -97,10 +192,15 @@ class AssetItem(BaseModel): asset_id: AssetId bridged: Optional[BridgeAsset] = Field( None, - description="if asset was bridged, it would have way to identify bridge/source/channel", + description='if asset was bridged, it would have way to identify bridge/source/channel', + ) + local: AssetReference = Field( + ..., + description='TODO: make sure one cannot access local if it is bridged until bridged was unwrapped basically to access asset need to provide network_id to use local', + ) + network_id: NetworkId = Field( + ..., description='network id on which this asset id can be used locally' ) - local: AssetReference - network_id: NetworkId = Field(..., description="network id on which this asset id can be used locally") class GetAssetResponse(BaseModel): diff --git a/schema/cvm-runtime.json b/schema/cvm-runtime.json index 0391eda0..7dd85d55 100644 --- a/schema/cvm-runtime.json +++ b/schema/cvm-runtime.json @@ -941,13 +941,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -1258,7 +1264,6 @@ } ] }, - "JSON": true, "NetworkAssetItem": { "type": "object", "required": [ @@ -2231,13 +2236,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -2247,7 +2258,6 @@ "H160": { "type": "string" }, - "JSON": true, "NetworkId": { "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", "type": "integer", @@ -2542,13 +2552,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -2558,7 +2574,6 @@ "H160": { "type": "string" }, - "JSON": true, "NetworkId": { "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", "type": "integer", @@ -2990,13 +3005,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -3137,7 +3158,6 @@ } } }, - "JSON": true, "NetworkAssetItem": { "type": "object", "required": [ @@ -3902,13 +3922,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -3918,7 +3944,6 @@ "H160": { "type": "string" }, - "JSON": true, "NetworkId": { "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", "type": "integer", diff --git a/schema/neutron_pools.json b/schema/neutron_pools.json index e8ad411f..0b9f1ba4 100644 --- a/schema/neutron_pools.json +++ b/schema/neutron_pools.json @@ -2,13 +2,13 @@ "json": [ { "chainId": "neutron-1", - "poolAddress": "neutron1e22zh5p8meddxjclevuhjmfj69jxfsa8uu3jvht72rv9d8lkhves6t8veq", - "lpAddress": "neutron1jkcf80nd4pfc2krce3xk9m9y994pllq58avx89sfzqlalej4frus27ms3a", - "dayVolumeUsd": 426737.659092, - "poolLiquidityUsd": 25755657.08695604, - "poolLiquidity": 3590165940861, - "poolStakedLiquidityUsd": 969089.2952374426, - "poolStakedLiquidity": 135084551315, + "poolAddress": "neutron1l3gtxnwjuy65rzk63k352d52ad0f2sh89kgrqwczgt56jc8nmc3qh5kag3", + "lpAddress": "neutron1sx99fxy4lqx0nv3ys86tkdrch82qygxyec5c8dxsk9raz4at5zpq48m66c", + "dayVolumeUsd": 1177195.064226, + "poolLiquidityUsd": 6744489.943808565, + "poolLiquidity": 3744725208012, + "poolStakedLiquidityUsd": 572996.1251768349, + "poolStakedLiquidity": 318143114145, "config": { "migrateToAddress": null, "whitelisted": true @@ -20,80 +20,128 @@ "isBlocked": false, "prices": { "token1Address": "untrn", - "token1PriceUsd": 1.09, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1PriceUsd": 0.686043, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.99953 }, "stakeable": true, "assets": [ { - "id": "657ba88ee71d0f468fea9a3f", + "id": "657ba8934405ce212e2447f0", "address": "untrn", - "amount": "11798180716228", + "amount": "4921852651166", "symbol": "NTRN" }, { - "id": "657ba88ee71d0f468fea9a40", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "1185261039179", - "symbol": "ATOM" + "id": "657ba8934405ce212e2447f1", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "3369471036832", + "symbol": "USDC.axl" } ], - "name": "NTRN - ATOM", + "name": "NTRN - USDC.axl", "isNew": false, "isIlliquid": false, "isDeregistered": false, "astroRewards": { - "apr": 0.5233039389455765, + "apr": 0.46352727033562063, "apy": 0, - "day": 1389.3924531171133 + "day": 727.6693967564544 }, "totalRewards": { - "apr": 0.5429640302811994, - "apy": 0.5429640302811994, - "day": 4510.946106761992 + "apr": 0.5913325403356207, + "apy": 0.5913325403356207, + "day": 6178.524625512909 }, "tradingFees": { - "apr": 0.01213216, - "apy": 0.01213216, - "day": 856.087124 + "apr": 0.12780527, + "apy": 0.12780527, + "day": 2361.592916 }, "rewards": [ { "symbol": "ASTRO", - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amountPerDay": "8728.929598464", - "amountPerSecond": "0.10102927776", - "priceUsd": 0.159171, + "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amountPerDay": "5836.530152448", + "amountPerSecond": "0.06755243232", + "priceUsd": 0.124675, "precision": 6, - "amountPerDayUsd": "1389.392453117113344", - "yield": 0.5233039389455765, + "amountPerDayUsd": "727.6693967564544", + "yield": 0.46352727033562063, "isExternal": false, "gaugeInfo": [] + } + ] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1ns2tcunrlrk5yk62fpl74ycazanceyfmmq7dlj6sq8n0rnkuvk7szstkyx", + "lpAddress": "neutron1eg8dttnylqnfjf2ckwj6k90n5lek3kt0nzv05agsmz7xkjqynu3q7teufc", + "dayVolumeUsd": 453404.34243, + "poolLiquidityUsd": 499486.5075943072, + "poolLiquidity": 499999900000, + "poolStakedLiquidityUsd": 9.989732149832173E-7, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0" + ], + "poolType": "transmuter", + "isBlocked": false, + "prices": { + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.99895, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999739 + }, + "stakeable": false, + "assets": [ + { + "id": "65c557fa68fc77acd9fa6055", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "485288255757", + "symbol": "USDC.axl" }, { - "symbol": "ASTRO", - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amountPerDay": "125.569057980198297312", - "amountPerSecond": "0.00145334557847451733", - "priceUsd": 0.159171, - "precision": 6, - "amountPerDayUsd": "19.986952527766143181448352", - "yield": 0.007527931335622885, - "isExternal": true, - "gaugeInfo": [] + "id": "65c557fa68fc77acd9fa6056", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "14711644245", + "symbol": "USDC" } - ] + ], + "name": "USDC.axl - USDC", + "isNew": false, + "isIlliquid": false, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1l3gtxnwjuy65rzk63k352d52ad0f2sh89kgrqwczgt56jc8nmc3qh5kag3", - "lpAddress": "neutron1sx99fxy4lqx0nv3ys86tkdrch82qygxyec5c8dxsk9raz4at5zpq48m66c", - "dayVolumeUsd": 575798.764295, - "poolLiquidityUsd": 8470138.4205674, - "poolLiquidity": 3743809330934, - "poolStakedLiquidityUsd": 714400.3816173854, - "poolStakedLiquidity": 315765655993, + "poolAddress": "neutron1e22zh5p8meddxjclevuhjmfj69jxfsa8uu3jvht72rv9d8lkhves6t8veq", + "lpAddress": "neutron1jkcf80nd4pfc2krce3xk9m9y994pllq58avx89sfzqlalej4frus27ms3a", + "dayVolumeUsd": 322958.293132, + "poolLiquidityUsd": 17696336.84145916, + "poolLiquidity": 3609634928571, + "poolStakedLiquidityUsd": 760131.0144656909, + "poolStakedLiquidity": 155048781264, "config": { "migrateToAddress": null, "whitelisted": true @@ -105,99 +153,112 @@ "isBlocked": false, "prices": { "token1Address": "untrn", - "token1PriceUsd": 1.09, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 1 + "token1PriceUsd": 0.68545, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.07 }, "stakeable": true, "assets": [ { - "id": "657ba8934405ce212e2447f0", + "id": "657ba88ee71d0f468fea9a3f", "address": "untrn", - "amount": "3890413148360", + "amount": "12918968691479", "symbol": "NTRN" }, { - "id": "657ba8934405ce212e2447f1", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "4229588088855", - "symbol": "USDC.axl" + "id": "657ba88ee71d0f468fea9a40", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "1095542720184", + "symbol": "ATOM" } ], - "name": "NTRN - USDC.axl", + "name": "NTRN - ATOM", "isNew": false, "isIlliquid": false, "isDeregistered": false, "astroRewards": { - "apr": 0.47464604324412474, + "apr": 0.5225703676036904, "apy": 0, - "day": 929.0063408953006 + "day": 1088.2792976884991 }, "totalRewards": { - "apr": 0.5244231532441247, - "apy": 0.5244231532441247, - "day": 4168.254001790601 + "apr": 0.5434510162293479, + "apy": 0.5434510162293479, + "day": 3487.9998736806797 }, "tradingFees": { - "apr": 0.04977711, - "apy": 0.04977711, - "day": 1155.12066 + "apr": 0.01336327, + "apy": 0.01336327, + "day": 647.892978 }, "rewards": [ { "symbol": "ASTRO", - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amountPerDay": "5836.530152448", - "amountPerSecond": "0.06755243232", - "priceUsd": 0.159171, + "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amountPerDay": "8728.929598464", + "amountPerSecond": "0.10102927776", + "priceUsd": 0.124675, "precision": 6, - "amountPerDayUsd": "929.006340895300608", - "yield": 0.47464604324412474, + "amountPerDayUsd": "1088.2792976884992", + "yield": 0.5225703676036905, "isExternal": false, "gaugeInfo": [] + }, + { + "symbol": "ASTRO.cw20", + "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amountPerDay": "125.569057980198297312", + "amountPerSecond": "0.00145334557847451733", + "priceUsd": 0.124675, + "precision": 6, + "amountPerDayUsd": "15.6553223036812227173736", + "yield": 0.00751737862565738, + "isExternal": true, + "gaugeInfo": [] } ] }, { "chainId": "neutron-1", - "poolAddress": "neutron1l7ny0rckx9rks2p2aq94wd74sehjczym6n9y4yax8lcy9s39uans4uga62", - "lpAddress": "neutron1y4330yyf0vc08scyq8a7rusl4j8p0pw98p4wvyqqkdu4aj6kv4pqxaa7na", - "dayVolumeUsd": 1.199155, - "poolLiquidityUsd": 5140176.96714262, - "poolLiquidity": 205443222251, - "poolStakedLiquidityUsd": 2.501993937797318e-05, + "poolAddress": "neutron1j4xpv03fw664mvntlhqnzp5hjqk2nfw00vrgx9qlq97rxc9fu3lqvmszl2", + "lpAddress": "neutron1s4rr0ekjfkvdkw7njpup0hydeudufwsh5txkww2425eyuqynjqxqnlws2n", + "dayVolumeUsd": 54576.669317, + "poolLiquidityUsd": 823783.618067566, + "poolLiquidity": 282593769130, + "poolStakedLiquidityUsd": 0.000002915080606734512, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "token1PriceUsd": 14.34, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token1PriceUsd": 0.9992, + "token2Address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "token2PriceUsd": 2.113254675742104 }, "stakeable": false, "assets": [ { - "id": "657ba53d568c6c3042b8843c", - "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "amount": "178709581335", - "symbol": "stATOM" + "id": "65c60eef68fc77acd9fb1b03", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "410003744096", + "symbol": "USDC" }, { - "id": "657ba53d568c6c3042b8843d", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "236900879669", - "symbol": "ATOM" + "id": "65c60eef68fc77acd9fb1b04", + "address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "amount": "195957392982661696092422", + "symbol": "DYDX" } ], - "name": "stATOM - ATOM", + "name": "USDC - DYDX", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -207,58 +268,58 @@ "day": 0 }, "totalRewards": { - "apr": 1.7e-07, - "apy": 1.7e-07, - "day": 0.004818 + "apr": 0.05418537, + "apy": 0.05418537, + "day": 244.586424 }, "tradingFees": { - "apr": 1.7e-07, - "apy": 1.7e-07, - "day": 0.002409 + "apr": 0.05418537, + "apy": 0.05418537, + "day": 122.293212 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1d73vc84e36d4mmm9dwqql4sty3fx4usjmupxewx36e4qudm5auqs0yryma", - "lpAddress": "neutron13jcw3sryrhpmamt3dqgatuts4tdewyjk4edzejcc7sjy3kypmqvshwexa8", - "dayVolumeUsd": 5676.662022, - "poolLiquidityUsd": 3892772.36909808, - "poolLiquidity": 160129807549, - "poolStakedLiquidityUsd": 2.431010457565497e-05, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1c4p33xy3ps35gs7w3mcc5vzsdfkwqd3klhnxry0yn2nhl4wnwhxslcp8g8", + "lpAddress": "neutron1gzp3p2puncr8q3x5xc0z4jdgn0c6tuedcwzrs9mdz84x0cslkv3sncd6dd", + "dayVolumeUsd": 52463.816806, + "poolLiquidityUsd": 424998.2574559092, + "poolLiquidity": 69176246838, + "poolStakedLiquidityUsd": 422475.7838515367, + "poolStakedLiquidity": 68765668080, "config": { "migrateToAddress": null, - "whitelisted": null + "whitelisted": true }, "feeRate": [ - "0.03", + "0.26", "0.45" ], "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token1PriceUsd": 10.88, - "token2Address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", - "token2PriceUsd": 13.58 + "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token1PriceUsd": 9.53, + "token2Address": "untrn", + "token2PriceUsd": 0.68306 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "65771bda5ae0109d7d38288f", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "178843716460", - "symbol": "ATOM" + "id": "657ba1662d294335e4f31516", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "22468517483", + "symbol": "TIA" }, { - "id": "65771bda5ae0109d7d382890", - "address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", - "amount": "143369126216", - "symbol": "stkATOM" + "id": "657ba1662d294335e4f31517", + "address": "untrn", + "amount": "308718539869", + "symbol": "NTRN" } ], - "name": "ATOM - stkATOM", + "name": "TIA - NTRN", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -268,26 +329,51 @@ "day": 0 }, "totalRewards": { - "apr": 8.032e-05, - "apy": 8.032e-05, - "day": 1.713256 + "apr": 0.47739369156561245, + "apy": 0.47739369156561245, + "day": 642.5380752555551 }, "tradingFees": { - "apr": 8.032e-05, - "apy": 8.032e-05, - "day": 0.856628 + "apr": 0.07681293, + "apy": 0.07681293, + "day": 89.439351 }, - "rewards": [] + "rewards": [ + { + "symbol": "NTRN", + "denom": "untrn", + "amountPerDay": "677.143226121427876608", + "amountPerSecond": "0.00783730585788689672", + "priceUsd": 0.683363, + "precision": 6, + "amountPerDayUsd": "462.734626432017318042472704", + "yield": 0.3997818220677928, + "isExternal": true, + "gaugeInfo": [] + }, + { + "symbol": "ASTRO.cw20", + "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amountPerDay": "7.417259462906338176", + "amountPerSecond": "0.00008584791045030484", + "priceUsd": 0.124675, + "precision": 6, + "amountPerDayUsd": "0.9247468235378477120928", + "yield": 0.0007989394978196603, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron194f0u63jenquqvxr5hj2glq4sdhx60arn8y86299c8qme6pspjesv444yd", - "lpAddress": "neutron1vfekl4kt5q73s6g9qalkkxaegsdctmhqhl6gqx2znf7ltlaae4nsv60hy8", - "dayVolumeUsd": 23758.128641, - "poolLiquidityUsd": 2373028.796686968, - "poolLiquidity": 927422049189, - "poolStakedLiquidityUsd": 2.558736643540322e-06, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1fqthra23dvgcnd6v4t98wzllvpvt6chn5tk34v0pgy8f8hhlwufs9rnf02", + "lpAddress": "neutron167z53yrhl72mpf22yty3ewf3689cvdem7n7fzt94w4pj4g5ct4qs2xcy22", + "dayVolumeUsd": 46447.95014, + "poolLiquidityUsd": 40915.90268053915, + "poolLiquidity": 57560584405, + "poolStakedLiquidityUsd": 40915.9019697072, + "poolStakedLiquidity": 57560583405, "config": { "migrateToAddress": null, "whitelisted": null @@ -299,56 +385,69 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "token2PriceUsd": 1.5 + "token1Address": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "token1PriceUsd": 0.125124, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999896 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "65fc02f905a65f3ca6f0bbbd", - "address": "untrn", - "amount": "1081104450648", - "symbol": "NTRN" + "id": "661954de86e23761bbb4a936", + "address": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amount": "168720621014", + "symbol": "ASTRO" }, { - "id": "65fc02f905a65f3ca6f0bbbe", - "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "amount": "795695894020", - "symbol": "AXL" + "id": "661954de86e23761bbb4a937", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "19806963621", + "symbol": "USDC" } ], - "name": "NTRN - AXL", + "name": "ASTRO - USDC", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { - "apr": 0, + "apr": 0.4272110666168602, "apy": 0, - "day": 0 + "day": 47.8896606084096 }, "totalRewards": { - "apr": 0.00814592, - "apy": 0.00814592, - "day": 105.920564 + "apr": 1.2119602166168602, + "apy": 1.2119602166168602, + "day": 271.71751321681916 }, "tradingFees": { - "apr": 0.00814592, - "apy": 0.00814592, - "day": 52.960282 + "apr": 0.78474915, + "apy": 0.78474915, + "day": 87.969096 }, - "rewards": [] + "rewards": [ + { + "symbol": "ASTRO", + "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amountPerDay": "384.115986432", + "amountPerSecond": "0.00444578688", + "priceUsd": 0.124675, + "precision": 6, + "amountPerDayUsd": "47.8896606084096", + "yield": 0.4272110666168602, + "isExternal": false, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", "poolAddress": "neutron18v0swe4fg2hdnc80zw74qfnjxulnwmw9f5uv99ukj2usrrpcgjyswslqc6", "lpAddress": "neutron1jh2vt0zl8pxdfpvllwctpd07c7ct62qwjfk04nvpexfnwh8ram2sa260jp", - "dayVolumeUsd": 29863.667801, - "poolLiquidityUsd": 2362927.20155234, - "poolLiquidity": 102006070500, - "poolStakedLiquidityUsd": 2321023.084293352, - "poolStakedLiquidity": 100197096302, + "dayVolumeUsd": 31670.644685, + "poolLiquidityUsd": 1847846.30309985, + "poolLiquidity": 97030410132, + "poolStakedLiquidityUsd": 1814144.557961636, + "poolStakedLiquidity": 95260731481, "config": { "migrateToAddress": null, "whitelisted": true @@ -361,22 +460,22 @@ "isBlocked": false, "prices": { "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token1PriceUsd": 11.62, + "token1PriceUsd": 9.53, "token2Address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", - "token2PriceUsd": 11.54 + "token2PriceUsd": 9.51 }, "stakeable": true, "assets": [ { "id": "65bba814cfb48263b3ce4423", "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "102307904787", + "amount": "97706482572", "symbol": "TIA" }, { "id": "65bba814cfb48263b3ce4424", "address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", - "amount": "101742577810", + "amount": "96393640819", "symbol": "stTIA" } ], @@ -390,14 +489,14 @@ "day": 0 }, "totalRewards": { - "apr": 0.11678977769929648, - "apy": 0.11678977769929648, - "day": 747.2288181932188 + "apr": 0.094064980592618, + "apy": 0.094064980592618, + "day": 472.38278298401747 }, "tradingFees": { - "apr": 0.00069307, - "apy": 0.00069307, - "day": 4.486822 + "apr": 0.00094189, + "apy": 0.00094189, + "day": 4.768449 }, "rewards": [ { @@ -405,22 +504,22 @@ "denom": "untrn", "amountPerDay": "677.267400810783283776", "amountPerSecond": "0.00783874306493962134", - "priceUsd": 1.09, + "priceUsd": 0.683363, "precision": 6, - "amountPerDayUsd": "738.22146688375377931584", - "yield": 0.1160914069472109, + "amountPerDayUsd": "462.819482820259297151018688", + "yield": 0.09311777856291814, "isExternal": true, "gaugeInfo": [] }, { - "symbol": "ASTRO", + "symbol": "ASTRO.cw20", "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", "amountPerDay": "0.211767906622771584", "amountPerSecond": "0.00000245101743776356", - "priceUsd": 0.159171, + "priceUsd": 0.124675, "precision": 6, - "amountPerDayUsd": "0.033707309465053175796864", - "yield": 5.3007520855786e-06, + "amountPerDayUsd": "0.0264021637581940472352", + "yield": 0.0000053120296998623, "isExternal": true, "gaugeInfo": [] } @@ -428,47 +527,46 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1yw0a7nxa8jdgzmdsme4gwxhj76n44z305qgwrzvlfavgna9epcys3k9m2f", - "lpAddress": "neutron1uywpz5esk0r3z7p7vl2h3vnqlrchra5phkex76z0rh2pckun0x9q3lj7va", - "dayVolumeUsd": 3982.733268, - "poolLiquidityUsd": 1927879.719696982, - "poolLiquidity": 253794630, - "poolStakedLiquidityUsd": 1856561.655712651, - "poolStakedLiquidity": 244406004, + "poolAddress": "neutron1qptxxgs39e2xpze9xlru9u03d049gd9en55sq6tu9yh967jmujhsw55j68", + "lpAddress": "neutron1y9y2n66cas4h0ymyfq8qklv9rayhpap5sdfzwe5am0alfwu23fcsud7d62", + "dayVolumeUsd": 30654.658523, + "poolLiquidityUsd": 33729.40408486192, + "poolLiquidity": 2347192431858, + "poolStakedLiquidityUsd": 1.437010601007229E-8, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ - "0.03", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token1PriceUsd": 4082.92, - "token2Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "token2PriceUsd": 3532.14 + "token1Address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/WOOF", + "token1PriceUsd": 0.00007469244367802521, + "token2Address": "untrn", + "token2PriceUsd": 0.683218 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "657b973ac427e416a805bec1", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "236275017844971059527", - "symbol": "wstETH" + "id": "661eb0cfbf036247bf900c7f", + "address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/WOOF", + "amount": "230028455699463", + "symbol": "WOOF" }, { - "id": "657b973ac427e416a805bec2", - "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "amount": "272692397197561017599", - "symbol": "WETH.axl" + "id": "661eb0cfbf036247bf900c80", + "address": "untrn", + "amount": "24220697659", + "symbol": "NTRN" } ], - "name": "wstETH - WETH.axl", - "isNew": false, - "isIlliquid": false, + "name": "WOOF - NTRN", + "isNew": true, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -476,38 +574,25 @@ "day": 0 }, "totalRewards": { - "apr": 0.1167259052563816, - "apy": 0.1167259052563816, - "day": 594.3429858145278 + "apr": 0.66548342, + "apy": 0.66548342, + "day": 122.99375 }, "tradingFees": { - "apr": 0.00011321, - "apy": 0.00011321, - "day": 0.597988 + "apr": 0.66548342, + "apy": 0.66548342, + "day": 61.496875 }, - "rewards": [ - { - "symbol": "wstETH", - "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amountPerDay": "0.145285161026817888", - "amountPerSecond": "0.00000168154121558817", - "priceUsd": 4082.64, - "precision": 18, - "amountPerDayUsd": "593.14700981452778226432", - "yield": 0.1166126952563816, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1j4xpv03fw664mvntlhqnzp5hjqk2nfw00vrgx9qlq97rxc9fu3lqvmszl2", - "lpAddress": "neutron1s4rr0ekjfkvdkw7njpup0hydeudufwsh5txkww2425eyuqynjqxqnlws2n", - "dayVolumeUsd": 16307.739187, - "poolLiquidityUsd": 1002652.732880504, - "poolLiquidity": 282593769130, - "poolStakedLiquidityUsd": 3.548035519042804e-06, + "poolAddress": "neutron14qaye93htdks0gfan7l2m3jfrzfm9x8xl677l9yn2tyy2x6fc6mqrqmjdq", + "lpAddress": "neutron1x0h37skwnddy3emjkdhfetwmdcyarrf9ftlg6mk905lkmfesj9xsdjumfk", + "dayVolumeUsd": 25171.636828, + "poolLiquidityUsd": 34868.37065791554, + "poolLiquidity": 59721564439, + "poolStakedLiquidityUsd": 5.838489156327317E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -520,29 +605,29 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token1PriceUsd": 1, - "token2Address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "token2PriceUsd": 3.12974913311477 + "token1Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "token1PriceUsd": 0.061188, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "65c60eef68fc77acd9fb1b03", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "497041556947", - "symbol": "USDC" + "id": "657b8c20c361c1dafb0301a3", + "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "amount": "284113086438", + "symbol": "MARS" }, { - "id": "65c60eef68fc77acd9fb1b04", - "address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "amount": "161550065014416218057333", - "symbol": "DYDX" + "id": "657b8c20c361c1dafb0301a4", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "17507589325", + "symbol": "USDC.axl" } ], - "name": "USDC - DYDX", + "name": "MARS - USDC.axl", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -550,57 +635,119 @@ "day": 0 }, "totalRewards": { - "apr": 0.01166463, - "apy": 0.01166463, - "day": 64.085344 + "apr": 0.4670539, + "apy": 0.4670539, + "day": 89.235116 }, "tradingFees": { - "apr": 0.01166463, - "apy": 0.01166463, - "day": 32.042672 + "apr": 0.4670539, + "apy": 0.4670539, + "day": 44.617558 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1fktxsflze70p7565yslwtth290zqad4agt4gpvjffy58h6raxvasz5etfw", - "lpAddress": "neutron1yy474ug5qn69twuaefzen64gfjyp5d6g0teeqgp7rugxl3lfxq3qtc0t09", - "dayVolumeUsd": 9441.412272, - "poolLiquidityUsd": 724113.302462802, - "poolLiquidity": 764115670553, - "poolStakedLiquidityUsd": 9.476488023227288e-07, + "poolAddress": "neutron1gqa97h9s2cq4jfyf58pdpk3r25t2p4vc0vaq7p92g5q9gzw53fnq9lprmf", + "lpAddress": "neutron1trgwplktz26cug572gavkk39agyssjfuvg3q3lxnfxjc70f0evuqzjxytz", + "dayVolumeUsd": 19184.358652, + "poolLiquidityUsd": 71353.77588366627, + "poolLiquidity": 406989069471, + "poolStakedLiquidityUsd": 1.753211107985895E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "token1PriceUsd": 0.125124, + "token2Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "token2PriceUsd": 0.061188 }, "stakeable": false, "assets": [ { - "id": "65ad65950a570e4941669293", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "2276040024999", - "symbol": "APOLLO" + "id": "661d6a47bf036247bf8e9650", + "address": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amount": "301531954248", + "symbol": "ASTRO" }, { - "id": "65ad65950a570e4941669294", + "id": "661d6a47bf036247bf8e9651", + "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "amount": "549534085774", + "symbol": "MARS" + } + ], + "name": "ASTRO - MARS", + "isNew": true, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0.18855185, + "apy": 0.18855185, + "day": 73.719926 + }, + "tradingFees": { + "apr": 0.18855185, + "apy": 0.18855185, + "day": 36.859963 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron194f0u63jenquqvxr5hj2glq4sdhx60arn8y86299c8qme6pspjesv444yd", + "lpAddress": "neutron1vfekl4kt5q73s6g9qalkkxaegsdctmhqhl6gqx2znf7ltlaae4nsv60hy8", + "dayVolumeUsd": 17495.285052, + "poolLiquidityUsd": 1650750.586370933, + "poolLiquidity": 917806120149, + "poolStakedLiquidityUsd": 0.000001798583109430724, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.26", + "0.45" + ], + "poolType": "concentrated", + "isBlocked": false, + "prices": { + "token1Address": "untrn", + "token1PriceUsd": 0.684651, + "token2Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "token2PriceUsd": 1.18 + }, + "stakeable": false, + "assets": [ + { + "id": "65fc02f905a65f3ca6f0bbbd", "address": "untrn", - "amount": "327719914234", + "amount": "1205515603731", "symbol": "NTRN" + }, + { + "id": "65fc02f905a65f3ca6f0bbbe", + "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "amount": "699485697255", + "symbol": "AXL" } ], - "name": "APOLLO - NTRN", + "name": "NTRN - AXL", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -610,29 +757,29 @@ "day": 0 }, "totalRewards": { - "apr": 0.00954728, - "apy": 0.00954728, - "day": 37.881184 + "apr": 0.00837358, + "apy": 0.00837358, + "day": 75.740802 }, "tradingFees": { - "apr": 0.00954728, - "apy": 0.00954728, - "day": 18.940592 + "apr": 0.00837358, + "apy": 0.00837358, + "day": 37.870401 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1c4p33xy3ps35gs7w3mcc5vzsdfkwqd3klhnxry0yn2nhl4wnwhxslcp8g8", - "lpAddress": "neutron1gzp3p2puncr8q3x5xc0z4jdgn0c6tuedcwzrs9mdz84x0cslkv3sncd6dd", - "dayVolumeUsd": 60082.369042, - "poolLiquidityUsd": 637556.86443392, - "poolLiquidity": 74177975462, - "poolStakedLiquidityUsd": 634026.8334891235, - "poolStakedLiquidity": 73767266138, + "poolAddress": "neutron1vxfnhwxdpr8gq3e5vkkcq5hsdhagk289458z8m77hgrx3tha252s25j6p4", + "lpAddress": "neutron1fffkcs7ml8jkl53g0gxk6yfv3u3kgngaw87xfaf3cteskvgur0nq3rwnm2", + "dayVolumeUsd": 13994.703657, + "poolLiquidityUsd": 388013.8963193857, + "poolLiquidity": 139209922758, + "poolStakedLiquidityUsd": 96357.07872202258, + "poolStakedLiquidity": 34570569800, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ "0.26", @@ -641,27 +788,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token1PriceUsd": 11.61, - "token2Address": "untrn", - "token2PriceUsd": 1.09 + "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token1PriceUsd": 8.07, + "token2Address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "token2PriceUsd": 0.2370435001692572 }, "stakeable": true, "assets": [ { - "id": "657ba1662d294335e4f31516", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "27576123627", - "symbol": "TIA" + "id": "656b20c1335acd8ad9341d18", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "24311502918", + "symbol": "ATOM" }, { - "id": "657ba1662d294335e4f31517", - "address": "untrn", - "amount": "291190889105", - "symbol": "NTRN" + "id": "656b20c1335acd8ad9341d19", + "address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "amount": "809218846474", + "symbol": "ECLIP" } ], - "name": "TIA - NTRN", + "name": "ATOM - ECLIP", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -671,37 +818,25 @@ "day": 0 }, "totalRewards": { - "apr": 0.47684575284095587, - "apy": 0.47684575284095587, - "day": 918.3440110783266 + "apr": 1.1845578604265474, + "apy": 1.1845578604265474, + "day": 363.71773744116535 }, "tradingFees": { - "apr": 0.05126068, - "apy": 0.05126068, - "day": 89.538641 + "apr": 0.02739038, + "apy": 0.02739038, + "day": 29.117392 }, "rewards": [ { - "symbol": "NTRN", - "denom": "untrn", - "amountPerDay": "677.143226121427876608", - "amountPerSecond": "0.00783730585788689672", - "priceUsd": 1.09, - "precision": 6, - "amountPerDayUsd": "738.08611647235638550272", - "yield": 0.42490541138434573, - "isExternal": true, - "gaugeInfo": [] - }, - { - "symbol": "ASTRO", - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amountPerDay": "7.417259462906338176", - "amountPerSecond": "0.00008584791045030484", - "priceUsd": 0.159171, + "symbol": "ECLIP", + "denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "amountPerDay": "1283.660719642386159552", + "amountPerSecond": "0.01485718425512021018", + "priceUsd": 0.2379779553636802, "precision": 6, - "amountPerDayUsd": "1.180612605970264753812096", - "yield": 0.0006796614566101603, + "amountPerDayUsd": "305.4829534411653768221756031431032704", + "yield": 1.1571674804265475, "isExternal": true, "gaugeInfo": [] } @@ -709,16 +844,16 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1jh27klc7z8xk3nr32nynvk40qm9f64eypq7nj2w48egtehu35n3q59pkfn", - "lpAddress": "neutron1unl6kjzn5effaksd96ss8g4dzh3n09xcm2xal4h6896ractxhphqydug7x", - "dayVolumeUsd": 23249.202217, - "poolLiquidityUsd": 543238.8075521961, - "poolLiquidity": 668832311714, - "poolStakedLiquidityUsd": 518000.2066508695, - "poolStakedLiquidity": 637758699979, + "poolAddress": "neutron1hk5nfsc2dc3hjf0pulnlxlcqdyxdturz6jvkx8z63u4vpjnz2a8ssqd9fz", + "lpAddress": "neutron1kch3ya4tdamuamtc2m37a5z2c5lezg0qszxf3k4jn9akj6s3srcsgsuj93", + "dayVolumeUsd": 13829.652882, + "poolLiquidityUsd": 168096.5278864643, + "poolLiquidity": 57358303516, + "poolStakedLiquidityUsd": 0.000002930639812822245, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": null + "whitelisted": true }, "feeRate": [ "0.26", @@ -727,68 +862,55 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.998656, + "token2Address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "token2PriceUsd": 2.108070467032493 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "657ba8934ac79bdd01a903ff", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "1723079943011", - "symbol": "ASTRO" - }, - { - "id": "657ba8934ac79bdd01a90400", + "id": "657ba89d750df6a352a4a4ad", "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "269100363785", + "amount": "83706578965", "symbol": "USDC.axl" + }, + { + "id": "657ba89d750df6a352a4a4ae", + "address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "amount": "40085211516931127668985", + "symbol": "DYDX" } ], - "name": "ASTRO - USDC.axl", + "name": "USDC.axl - DYDX", "isNew": false, "isIlliquid": false, "isDeregistered": false, "astroRewards": { - "apr": 0.043081345500148194, + "apr": 0, "apy": 0, - "day": 61.14012567636787 + "day": 0 }, "totalRewards": { - "apr": 0.06943316550014819, - "apy": 0.06943316550014819, - "day": 200.72042735273573 + "apr": 0.0672572, + "apy": 0.0672572, + "day": 61.94906 }, "tradingFees": { - "apr": 0.02635182, - "apy": 0.02635182, - "day": 39.220088 + "apr": 0.0672572, + "apy": 0.0672572, + "day": 30.97453 }, - "rewards": [ - { - "symbol": "ASTRO", - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amountPerDay": "384.115986432", - "amountPerSecond": "0.00444578688", - "priceUsd": 0.159171, - "precision": 6, - "amountPerDayUsd": "61.140125676367872", - "yield": 0.043081345500148194, - "isExternal": false, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", "poolAddress": "neutron1fr3h0w6sg62agzpvu42ewj8m6rn9x45py77egd8xefp2682st39suqnx6n", "lpAddress": "neutron15ww380rfn7r479tdyxpxa2mg2m8u85vlvdtr5tschh9q8s02gu8s7vr4dc", - "dayVolumeUsd": 7665.84708, - "poolLiquidityUsd": 511969.0378044422, - "poolLiquidity": 3797803716, - "poolStakedLiquidityUsd": 0.0001348066082608532, + "dayVolumeUsd": 8110.564913, + "poolLiquidityUsd": 414309.0542368585, + "poolLiquidity": 4210172530, + "poolStakedLiquidityUsd": 0.00009840666891277292, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -802,22 +924,22 @@ "isBlocked": false, "prices": { "token1Address": "untrn", - "token1PriceUsd": 1.091, + "token1PriceUsd": 0.684654, "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token2PriceUsd": 4082.92 + "token2PriceUsd": 3466.53 }, "stakeable": false, "assets": [ { "id": "657b9b9f2c53c2de989c2e19", "address": "untrn", - "amount": "236628851075", + "amount": "305327108496", "symbol": "NTRN" }, { "id": "657b9b9f2c53c2de989c2e1a", "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "62163099272485663829", + "amount": "59213573255283559960", "symbol": "wstETH" } ], @@ -831,57 +953,58 @@ "day": 0 }, "totalRewards": { - "apr": 0.0112178, - "apy": 0.0112178, - "day": 31.46943 + "apr": 0.01603308, + "apy": 0.01603308, + "day": 36.398102 }, "tradingFees": { - "apr": 0.0112178, - "apy": 0.0112178, - "day": 15.734715 + "apr": 0.01603308, + "apy": 0.01603308, + "day": 18.199051 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ns2tcunrlrk5yk62fpl74ycazanceyfmmq7dlj6sq8n0rnkuvk7szstkyx", - "lpAddress": "neutron1eg8dttnylqnfjf2ckwj6k90n5lek3kt0nzv05agsmz7xkjqynu3q7teufc", - "dayVolumeUsd": 379979.163177, - "poolLiquidityUsd": 499940.1356670391, - "poolLiquidity": 499999900000, - "poolStakedLiquidityUsd": 9.998804713101326e-07, + "poolAddress": "neutron16aq0p35g346xe3h60yuhkns3rhj6k66wwtz6czwgep7fwvmyjxqq206gh7", + "lpAddress": "neutron1mz05ajn6lzppsn042qxln7y3z9ng34l6ga6f5zkm2gswkjca59ysr5hwpa", + "dayVolumeUsd": 7379.610867, + "poolLiquidityUsd": 148323.4419445986, + "poolLiquidity": 69004032071, + "poolStakedLiquidityUsd": 0.00000214948949246663, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0" + "0.26", + "0.45" ], - "poolType": "transmuter", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token2PriceUsd": 1 + "token1Address": "untrn", + "token1PriceUsd": 0.683073, + "token2Address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", + "token2PriceUsd": 1.685927456301185 }, "stakeable": false, "assets": [ { - "id": "65c557fa68fc77acd9fa6055", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "90552022668", - "symbol": "USDC.axl" + "id": "65f2dcc5654cc523b1f51167", + "address": "untrn", + "amount": "109243008603", + "symbol": "NTRN" }, { - "id": "65c557fa68fc77acd9fa6056", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "409447877334", - "symbol": "USDC" + "id": "65f2dcc5654cc523b1f51168", + "address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", + "amount": "43716289247", + "symbol": "KUJI" } ], - "name": "USDC.axl - USDC", + "name": "NTRN - KUJI", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -891,26 +1014,26 @@ "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0 + "apr": 0.03772016, + "apy": 0.03772016, + "day": 30.656352 }, "tradingFees": { - "apr": 0, - "apy": 0, - "day": 0 + "apr": 0.03772016, + "apy": 0.03772016, + "day": 15.328176 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1vxfnhwxdpr8gq3e5vkkcq5hsdhagk289458z8m77hgrx3tha252s25j6p4", - "lpAddress": "neutron1fffkcs7ml8jkl53g0gxk6yfv3u3kgngaw87xfaf3cteskvgur0nq3rwnm2", - "dayVolumeUsd": 21198.784014, - "poolLiquidityUsd": 499392.2179365893, - "poolLiquidity": 137369868225, - "poolStakedLiquidityUsd": 118987.9907770038, - "poolStakedLiquidity": 32730515267, + "poolAddress": "neutron1jh27klc7z8xk3nr32nynvk40qm9f64eypq7nj2w48egtehu35n3q59pkfn", + "lpAddress": "neutron1unl6kjzn5effaksd96ss8g4dzh3n09xcm2xal4h6896ractxhphqydug7x", + "dayVolumeUsd": 5491.451695, + "poolLiquidityUsd": 462534.6645349452, + "poolLiquidity": 641883853529, + "poolStakedLiquidityUsd": 440158.6925873633, + "poolStakedLiquidity": 610831532046, "config": { "migrateToAddress": null, "whitelisted": null @@ -922,27 +1045,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token1PriceUsd": 10.88, - "token2Address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "token2PriceUsd": 0.2993609703383533 + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": true, "assets": [ { - "id": "656b20c1335acd8ad9341d18", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "22781383778", - "symbol": "ATOM" + "id": "657ba8934ac79bdd01a903ff", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "1783424630640", + "symbol": "ASTRO.cw20" }, { - "id": "656b20c1335acd8ad9341d19", - "address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "amount": "840225638458", - "symbol": "ECLIP" + "id": "657ba8934ac79bdd01a90400", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "239707608076", + "symbol": "USDC.axl" } ], - "name": "ATOM - ECLIP", + "name": "ASTRO.cw20 - USDC.axl", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -952,67 +1075,202 @@ "day": 0 }, "totalRewards": { - "apr": 1.213946178598332, - "apy": 1.213946178598332, - "day": 478.80974511849496 + "apr": 0.00879708, + "apy": 0.00879708, + "day": 22.295648 }, "tradingFees": { - "apr": 0.03446313, - "apy": 0.03446313, - "day": 47.152382 + "apr": 0.00879708, + "apy": 0.00879708, + "day": 11.147824 }, "rewards": [ { - "symbol": "ECLIP", - "denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "amountPerDay": "1283.660719642386159552", - "amountPerSecond": "0.01485718425512021018", - "priceUsd": 0.2995378570325139, + "symbol": "ASTRO", + "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amountPerDay": "0", + "amountPerSecond": "0", + "priceUsd": 0.124675, "precision": 6, - "amountPerDayUsd": "384.5049811184949728710467394170577728", - "yield": 1.179483048598332, - "isExternal": true, + "amountPerDayUsd": "0", + "yield": 0, + "isExternal": false, "gaugeInfo": [] } ] }, { "chainId": "neutron-1", - "poolAddress": "neutron1f8y0jrk7kvlvn7ujvmnd2ed5a0zf6cdz7dzztjula5dgn8va5p3qu30aw5", - "lpAddress": "neutron1xt60ngk9v9z05w7yn7xuj5503xcj78m488lw0kwlrq6png0w83uqt0vv2c", - "dayVolumeUsd": 23403.103361, - "poolLiquidityUsd": 390707.1384999299, - "poolLiquidity": 38493291266, - "poolStakedLiquidityUsd": 390707.0695712389, - "poolStakedLiquidity": 38493284475, + "poolAddress": "neutron14798daa6d6ysq28fjzpg7jkykaseq7tlz6euleeegj02e0a8gkksltdm9l", + "lpAddress": "neutron1jqu5fn5z5ssm862dspjepe5hwjn0xamu62jgpmg2v3d2maptu5pqw3ps6z", + "dayVolumeUsd": 5320.310741, + "poolLiquidityUsd": 217715.6198668964, + "poolLiquidity": 552622385349, + "poolStakedLiquidityUsd": 19725.43598407646, + "poolStakedLiquidity": 50068605515, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.03", + "0.26", "0.45" ], "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", - "token1PriceUsd": 5.17, - "token2Address": "ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070", - "token2PriceUsd": 4.999019758023546 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.05606097236000197, + "token2Address": "untrn", + "token2PriceUsd": 0.684297 }, "stakeable": true, "assets": [ { - "id": "65f84ae805a65f3ca6ebad77", + "id": "65a66ec1e8848f944ef5a5c6", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "1957598047249", + "symbol": "NEWT" + }, + { + "id": "65a66ec1e8848f944ef5a5c7", + "address": "untrn", + "amount": "157783491449", + "symbol": "NTRN" + } + ], + "name": "NEWT - NTRN", + "isNew": false, + "isIlliquid": false, + "isDeregistered": false, + "astroRewards": { + "apr": 0.3517307783156813, + "apy": 0, + "day": 19.008336852864 + }, + "totalRewards": { + "apr": 0.3659668283156813, + "apy": 0.3659668283156813, + "day": 54.999747705728 + }, + "tradingFees": { + "apr": 0.01423605, + "apy": 0.01423605, + "day": 8.491537 + }, + "rewards": [ + { + "symbol": "ASTRO", + "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amountPerDay": "152.46309888", + "amountPerSecond": "0.0017646192", + "priceUsd": 0.124675, + "precision": 6, + "amountPerDayUsd": "19.008336852864", + "yield": 0.3517307783156813, + "isExternal": false, + "gaugeInfo": [] + } + ] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1lys60a2wygdd0layel8u2t9u40g3dwln8xraje5a902xh39mhynsk8tfgs", + "lpAddress": "neutron1ge89fepxq630ze9y6cecy6xxgpa6h8xlcxrsfnqdqq9jxgwxrjvs5krvn0", + "dayVolumeUsd": 4870.59527, + "poolLiquidityUsd": 154634.6044240417, + "poolLiquidity": 97997685273, + "poolStakedLiquidityUsd": 0.000001577941396398039, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.26", + "0.45" + ], + "poolType": "concentrated", + "isBlocked": false, + "prices": { + "token1Address": "untrn", + "token1PriceUsd": 0.684654, + "token2Address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "token2PriceUsd": 0.903383 + }, + "stakeable": false, + "assets": [ + { + "id": "65ad63730a570e4941669029", + "address": "untrn", + "amount": "113882614553", + "symbol": "NTRN" + }, + { + "id": "65ad63730a570e494166902a", + "address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "amount": "84863692188", + "symbol": "OSMO" + } + ], + "name": "NTRN - OSMO", + "isNew": false, + "isIlliquid": false, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0.02490604, + "apy": 0.02490604, + "day": 21.103216 + }, + "tradingFees": { + "apr": 0.02490604, + "apy": 0.02490604, + "day": 10.551608 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1f8y0jrk7kvlvn7ujvmnd2ed5a0zf6cdz7dzztjula5dgn8va5p3qu30aw5", + "lpAddress": "neutron1xt60ngk9v9z05w7yn7xuj5503xcj78m488lw0kwlrq6png0w83uqt0vv2c", + "dayVolumeUsd": 4648.005915, + "poolLiquidityUsd": 350495.4749785471, + "poolLiquidity": 49837461931, + "poolStakedLiquidityUsd": 350495.4679457758, + "poolStakedLiquidity": 49837460931, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.03", + "0.45" + ], + "poolType": "concentrated", + "isBlocked": false, + "prices": { + "token1Address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", + "token1PriceUsd": 3.54, + "token2Address": "ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070", + "token2PriceUsd": 3.492268356753594 + }, + "stakeable": true, + "assets": [ + { + "id": "65f84ae805a65f3ca6ebad77", "address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", - "amount": "30895983164436669581197", + "amount": "42550915369116037701867", "symbol": "DYM" }, { "id": "65f84ae805a65f3ca6ebad78", "address": "ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070", - "amount": "46204039335726188128324", + "amount": "57230777865441787057715", "symbol": "stDYM" } ], @@ -1026,14 +1284,14 @@ "day": 0 }, "totalRewards": { - "apr": 0.2539510910981999, - "apy": 0.2539510910981999, - "day": 281.6750592861692 + "apr": 0.19247427492565572, + "apy": 0.19247427492565572, + "day": 186.05805905213697 }, "tradingFees": { - "apr": 0.00919079, - "apy": 0.00919079, - "day": 9.838105 + "apr": 0.0012834, + "apy": 0.0012834, + "day": 1.232406 }, "rewards": [ { @@ -1041,36 +1299,94 @@ "denom": "untrn", "amountPerDay": "126.89733187420309296", "amountPerSecond": "0.00146871911891438765", - "priceUsd": 1.09, + "priceUsd": 0.683363, "precision": 6, - "amountPerDayUsd": "138.3180917428813713264", - "yield": 0.12921727661993687, + "amountPerDayUsd": "86.71694140155104821442448", + "yield": 0.09030554317028396, "isExternal": true, "gaugeInfo": [] }, { - "symbol": "ASTRO", + "symbol": "ASTRO.cw20", "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", "amountPerDay": "777.03072508992126384", "amountPerSecond": "0.00899341117002223685", - "priceUsd": 0.159171, + "priceUsd": 0.124675, "precision": 6, - "amountPerDayUsd": "123.68075754328785748667664", - "yield": 0.11554302447826302, + "amountPerDayUsd": "96.876305650585933569252", + "yield": 0.10088533175537177, "isExternal": true, "gaugeInfo": [] } ] }, + { + "chainId": "neutron-1", + "poolAddress": "neutron12gkx5m4zgz3uttqjq36jh5hzqlxr23c2z4w5elzzdzxpw0zqupnsz02xx3", + "lpAddress": "neutron1pevcmuml2evcz3mj2nme9qjx0dzhvcsndjghhynxe6n5syvmw8mq9nkl69", + "dayVolumeUsd": 2858.953504, + "poolLiquidityUsd": 113595.8660366872, + "poolLiquidity": 332505212897, + "poolStakedLiquidityUsd": 3.41636345526576E-7, + "poolStakedLiquidity": 1, + "config": null, + "feeRate": [ + "0.26", + "0.45" + ], + "poolType": "concentrated", + "isBlocked": false, + "prices": { + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "token2PriceUsd": 0.04224132 + }, + "stakeable": false, + "assets": [ + { + "id": "647640314a71d2151077d903", + "address": "untrn", + "amount": "84274495028", + "symbol": "NTRN" + }, + { + "id": "656607b713d76f5033dcf2ee", + "address": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "amount": "1326539623221", + "symbol": "NLS" + } + ], + "name": "NTRN - NLS", + "isNew": false, + "isIlliquid": false, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0.01986628, + "apy": 0.01986628, + "day": 12.36563 + }, + "tradingFees": { + "apr": 0.01986628, + "apy": 0.01986628, + "day": 6.182815 + }, + "rewards": [] + }, { "chainId": "neutron-1", "poolAddress": "neutron1rrz3dpz9wn025e0fzru0qpuxquj9qzyfjjerr4f8snya8pzamtqqnf9j0z", "lpAddress": "neutron1f05u3m0wvs0ny65dqgn0pmjschqhklh602wsugazjvt8unm4m9pqh3std7", - "dayVolumeUsd": 10272.571216, - "poolLiquidityUsd": 336720.0996012466, - "poolLiquidity": 70764870141, - "poolStakedLiquidityUsd": 336720.094842952, - "poolStakedLiquidity": 70764869141, + "dayVolumeUsd": 2334.507998, + "poolLiquidityUsd": 222917.926041344, + "poolLiquidity": 71520807837, + "poolStakedLiquidityUsd": 222917.9229245178, + "poolStakedLiquidity": 71520806837, "config": { "migrateToAddress": null, "whitelisted": null @@ -1083,22 +1399,22 @@ "isBlocked": false, "prices": { "token1Address": "untrn", - "token1PriceUsd": 1.091, + "token1PriceUsd": 0.683019, "token2Address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", - "token2PriceUsd": 5.17 + "token2PriceUsd": 3.54 }, "stakeable": true, "assets": [ { "id": "65f981a605a65f3ca6ed78b6", "address": "untrn", - "amount": "152528034880", + "amount": "165142406002", "symbol": "NTRN" }, { "id": "65f981a605a65f3ca6ed78b7", "address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", - "amount": "32942362388233388227627", + "amount": "31108057919848567988116", "symbol": "DYM" } ], @@ -1112,14 +1428,14 @@ "day": 0 }, "totalRewards": { - "apr": 0.6111771724858175, - "apy": 0.6111771724858175, - "day": 583.3146245880424 + "apr": 0.6353454145128216, + "apy": 0.6353454145128216, + "day": 392.9409976942415 }, "tradingFees": { - "apr": 0.02112794, - "apy": 0.02112794, - "day": 19.490965 + "apr": 0.00804592, + "apy": 0.00804592, + "day": 4.913923 }, "rewards": [ { @@ -1127,22 +1443,22 @@ "denom": "untrn", "amountPerDay": "253.802170446147262944", "amountPerSecond": "0.00293752512090448221", - "priceUsd": 1.09, + "priceUsd": 0.683363, "precision": 6, - "amountPerDayUsd": "276.64436578630051660896", - "yield": 0.29987872734205256, + "amountPerDayUsd": "173.439012602590532047200672", + "yield": 0.2839845211610971, "isExternal": true, "gaugeInfo": [] }, { - "symbol": "ASTRO", + "symbol": "ASTRO.cw20", "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", "amountPerDay": "1681.765703562470149152", "amountPerSecond": "0.01946488082826933043", - "priceUsd": 0.159171, + "priceUsd": 0.124675, "precision": 6, - "amountPerDayUsd": "267.688328801741936110672992", - "yield": 0.2901705051437649, + "amountPerDayUsd": "209.6741390916509658455256", + "yield": 0.3433149733517245, "isExternal": true, "gaugeInfo": [] } @@ -1150,86 +1466,72 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron14798daa6d6ysq28fjzpg7jkykaseq7tlz6euleeegj02e0a8gkksltdm9l", - "lpAddress": "neutron1jqu5fn5z5ssm862dspjepe5hwjn0xamu62jgpmg2v3d2maptu5pqw3ps6z", - "dayVolumeUsd": 2340.084124, - "poolLiquidityUsd": 333399.8870736635, - "poolLiquidity": 554441483342, - "poolStakedLiquidityUsd": 30586.82051664258, - "poolStakedLiquidity": 50865650516, + "poolAddress": "neutron12mnfj6rggtr985fxmgxq03jp85gwyashvafnzq5wfavq5fjtsx8qn6s45u", + "lpAddress": "neutron1vahfvnzggmlwashee5f47mywxldndpttz9j9t3txdd7j05m5nc0saptqm7", + "dayVolumeUsd": 2242.040123, + "poolLiquidityUsd": 22147.23402652873, + "poolLiquidity": 2607842859049, + "poolStakedLiquidityUsd": 8.492549125463795E-9, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08210808061573163, + "token1Address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON", + "token1PriceUsd": 0.0000261634035921348, "token2Address": "untrn", - "token2PriceUsd": 1.09 + "token2PriceUsd": 0.683019 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "65a66ec1e8848f944ef5a5c6", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "2041171355494", - "symbol": "NEWT" + "id": "661ae3d76f8ac38ae02fa97b", + "address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON", + "amount": "423017624747056", + "symbol": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON" }, { - "id": "65a66ec1e8848f944ef5a5c7", + "id": "661ae3d76f8ac38ae02fa97c", "address": "untrn", - "amount": "152113050336", + "amount": "16221588541", "symbol": "NTRN" } ], - "name": "NEWT - NTRN", + "name": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON - NTRN", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { - "apr": 0.28959243812209345, + "apr": 0, "apy": 0, - "day": 24.26770391182848 + "day": 0 }, "totalRewards": { - "apr": 0.29524684812209345, - "apy": 0.29524684812209345, - "day": 58.86515982365696 + "apr": 0.07412646, + "apy": 0.07412646, + "day": 8.995596 }, "tradingFees": { - "apr": 0.00565441, - "apy": 0.00565441, - "day": 5.164876 + "apr": 0.07412646, + "apy": 0.07412646, + "day": 4.497798 }, - "rewards": [ - { - "symbol": "ASTRO", - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amountPerDay": "152.46309888", - "amountPerSecond": "0.0017646192", - "priceUsd": 0.159171, - "precision": 6, - "amountPerDayUsd": "24.26770391182848", - "yield": 0.28959243812209345, - "isExternal": false, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1zhjrgpvu2th5t8w5ndfw9lwsqp95sgr46kf4j3jrcfe2lep0hlnqfczpjm", - "lpAddress": "neutron1wzvvmz8qlqu7cngyac99frs6sdes4tpuk2lk78daenm92jqaz8ss3cgjz9", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 256476.5056407846, - "poolLiquidity": 788198990022, - "poolStakedLiquidityUsd": 3.253956283255239e-07, + "poolAddress": "neutron1funkzd54mng0agn09l2cdz503mzwhcflwdvmuypd62xqewsl7x3q2kne53", + "lpAddress": "neutron1m0e6n42cpqk9nn9hu6rx6w24v8sh43xj9alda2vyc3dt4zqeeguqux6sg4", + "dayVolumeUsd": 1928.233751, + "poolLiquidityUsd": 3270.609529549044, + "poolLiquidity": 7752723232, + "poolStakedLiquidityUsd": 4.218658955604197E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -1238,32 +1540,32 @@ "feeRate": [ "0.30" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token2PriceUsd": 0.159201 + "token1Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "token1PriceUsd": 0.061006, + "token2Address": "untrn", + "token2PriceUsd": 0.68306 }, "stakeable": false, "assets": [ { - "id": "65ad65950a570e4941669287", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "789278838054", - "symbol": "APOLLO" + "id": "65bfab2ccfb48263b3d0f6ca", + "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "amount": "26953917204", + "symbol": "MARS" }, { - "id": "65ad65950a570e4941669288", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "812545621063", - "symbol": "ASTRO" + "id": "65bfab2ccfb48263b3d0f6cb", + "address": "untrn", + "amount": "2380843347", + "symbol": "NTRN" } ], - "name": "APOLLO - ASTRO", + "name": "MARS - NTRN", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -1273,23 +1575,23 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0 + "day": 7.73655 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 3.868275 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1lys60a2wygdd0layel8u2t9u40g3dwln8xraje5a902xh39mhynsk8tfgs", - "lpAddress": "neutron1ge89fepxq630ze9y6cecy6xxgpa6h8xlcxrsfnqdqq9jxgwxrjvs5krvn0", - "dayVolumeUsd": 9002.841777, - "poolLiquidityUsd": 233238.659156787, - "poolLiquidity": 97997685273, - "poolStakedLiquidityUsd": 2.380042532489232e-06, + "poolAddress": "neutron1wj4tfjdd8qgzet4m8nv6v27j42qnz6j6cty5apy3vtcn45edspwsu4vt25", + "lpAddress": "neutron1ll5wuldtzlalrfy2vgnpukghdammdw7tewp98w0ql2zvkauxguvsrf07qt", + "dayVolumeUsd": 1123.50397, + "poolLiquidityUsd": 12070.14059913053, + "poolLiquidity": 19945107536, + "poolStakedLiquidityUsd": 6.0516798800301E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -1302,29 +1604,29 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "token2PriceUsd": 1.29 + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65ad63730a570e4941669029", - "address": "untrn", - "amount": "107444002407", - "symbol": "NTRN" + "id": "657ba893eacdd4555fc74667", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "45501084882", + "symbol": "ASTRO.cw20" }, { - "id": "65ad63730a570e494166902a", - "address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "amount": "89935854675", - "symbol": "OSMO" + "id": "657ba893eacdd4555fc74668", + "address": "untrn", + "amount": "9336289114", + "symbol": "NTRN" } ], - "name": "NTRN - OSMO", + "name": "ASTRO.cw20 - NTRN", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -1332,25 +1634,25 @@ "day": 0 }, "totalRewards": { - "apr": 0.02291765, - "apy": 0.02291765, - "day": 29.28922 + "apr": 0.06481792, + "apy": 0.06481792, + "day": 4.286912 }, "tradingFees": { - "apr": 0.02291765, - "apy": 0.02291765, - "day": 14.64461 + "apr": 0.06481792, + "apy": 0.06481792, + "day": 2.143456 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron16aq0p35g346xe3h60yuhkns3rhj6k66wwtz6czwgep7fwvmyjxqq206gh7", - "lpAddress": "neutron1mz05ajn6lzppsn042qxln7y3z9ng34l6ga6f5zkm2gswkjca59ysr5hwpa", - "dayVolumeUsd": 5608.268829, - "poolLiquidityUsd": 219209.6018962192, - "poolLiquidity": 69004032071, - "poolStakedLiquidityUsd": 3.176765113768823e-06, + "poolAddress": "neutron1fg4nua4xyd70kja80zkxkgevhxzk2lcjwa7mafz9tg0k7fjwaseqd5xtcp", + "lpAddress": "neutron1ec6rgn4z3h5laafelq6ge6ye88m07e860k9wd9cwvf2h4vjq0y9qq5d0ce", + "dayVolumeUsd": 993.917606, + "poolLiquidityUsd": 134106.5102059814, + "poolLiquidity": 137725339281, + "poolStakedLiquidityUsd": 9.737243042858755E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -1363,27 +1665,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", - "token2PriceUsd": 2.308060130394441 + "token1Address": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", + "token1PriceUsd": 0.3465691651538462, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65f2dcc5654cc523b1f51167", - "address": "untrn", - "amount": "99780927133", - "symbol": "NTRN" + "id": "65f08eb2654cc523b1f28e7a", + "address": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", + "amount": "195034096182", + "symbol": "MNTA" }, { - "id": "65f2dcc5654cc523b1f51168", - "address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", - "amount": "47810110725", - "symbol": "KUJI" + "id": "65f08eb2654cc523b1f28e7b", + "address": "untrn", + "amount": "97381926880", + "symbol": "NTRN" } ], - "name": "NTRN - KUJI", + "name": "MNTA - NTRN", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -1393,58 +1695,57 @@ "day": 0 }, "totalRewards": { - "apr": 0.0201886, - "apy": 0.0201886, - "day": 24.249516 + "apr": 0.00530618, + "apy": 0.00530618, + "day": 3.899144 }, "tradingFees": { - "apr": 0.0201886, - "apy": 0.0201886, - "day": 12.124758 + "apr": 0.00530618, + "apy": 0.00530618, + "day": 1.949572 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1hk5nfsc2dc3hjf0pulnlxlcqdyxdturz6jvkx8z63u4vpjnz2a8ssqd9fz", - "lpAddress": "neutron1kch3ya4tdamuamtc2m37a5z2c5lezg0qszxf3k4jn9akj6s3srcsgsuj93", - "dayVolumeUsd": 14531.83881, - "poolLiquidityUsd": 204873.108654922, - "poolLiquidity": 57358303516, - "poolStakedLiquidityUsd": 3.571812555261702e-06, + "poolAddress": "neutron15wal8wsy7mq37hagmrzchwmugpjzwlzrlw7pylkhlfuwukmc2kps722ems", + "lpAddress": "neutron127p6hzzvrms9vfw4xehs9gaxj3kyugvux4le88f96aqaf3nyjnuq2l22sr", + "dayVolumeUsd": 868.383385, + "poolLiquidityUsd": 142858.0457301763, + "poolLiquidity": 190783305970, + "poolStakedLiquidityUsd": 7.487974110244485E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "token2PriceUsd": 3.12974913311477 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999896 }, "stakeable": false, "assets": [ { - "id": "657ba89d750df6a352a4a4ad", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "101026221598", - "symbol": "USDC.axl" + "id": "65ad65960a570e49416692ab", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "572713503067", + "symbol": "APOLLO" }, { - "id": "657ba89d750df6a352a4a4ae", - "address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "amount": "33201882944451984102675", - "symbol": "DYDX" + "id": "65ad65960a570e49416692ac", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "72324199857", + "symbol": "USDC" } ], - "name": "USDC.axl - DYDX", + "name": "APOLLO - USDC", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -1454,26 +1755,26 @@ "day": 0 }, "totalRewards": { - "apr": 0.0479872, - "apy": 0.0479872, - "day": 53.870066 + "apr": 0.00445098, + "apy": 0.00445098, + "day": 3.484156 }, "tradingFees": { - "apr": 0.0479872, - "apy": 0.0479872, - "day": 26.935033 + "apr": 0.00445098, + "apy": 0.00445098, + "day": 1.742078 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1mwqu0y5lgdyxgev603py4u6xahcsaq4ekvf20gr9rwy2c5l4v9qqqj6rwe", - "lpAddress": "neutron1y5gapx6wrmmy2llgtlpxhrd0ejf8x3pl925r0u66f62ae3k9qu0q26f8gr", - "dayVolumeUsd": 13.935757, - "poolLiquidityUsd": 204647.1458882327, - "poolLiquidity": 48174889021102, - "poolStakedLiquidityUsd": 4.248004060204169e-09, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1dqanamhpvuljprfmwjxww0w3r5qd66zz3glkh8lxszw85zkdn0hq630d58", + "lpAddress": "neutron1068hu2ztra6x6ht8u3mgscg232ssqwanrvuzuk2ecfxnfftglcgqs48rst", + "dayVolumeUsd": 792.446547, + "poolLiquidityUsd": 11756.22491566346, + "poolLiquidity": 68316495320, + "poolStakedLiquidityUsd": 11752.01671119747, + "poolStakedLiquidity": 68292041060, "config": { "migrateToAddress": null, "whitelisted": null @@ -1481,32 +1782,32 @@ "feeRate": [ "0.30" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", - "token2PriceUsd": 27.99813275812923 + "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "token1PriceUsd": 0.01062373236439887, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "65d8f34568fc77acd914f7c1", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "635327470752", - "symbol": "APOLLO" + "id": "6602fc1905a65f3ca6f7a489", + "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "amount": "553051059407", + "symbol": "ATOM1KLFG" }, { - "id": "65d8f34568fc77acd914f7c2", - "address": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", - "amount": "3654657038312915", - "symbol": "(stTIA/TIA)VT" + "id": "6602fc1905a65f3ca6f7a48a", + "address": "untrn", + "amount": "8609948591", + "symbol": "NTRN" } ], - "name": "APOLLO - (stTIA/TIA)VT", + "name": "ATOM1KLFG - NTRN", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -1514,60 +1815,84 @@ "day": 0 }, "totalRewards": { - "apr": 4.986e-05, - "apy": 4.986e-05, - "day": 0.055914 + "apr": 2.1615493873195355, + "apy": 2.1615493873195355, + "day": 71.18637637676416 }, "tradingFees": { - "apr": 4.986e-05, - "apy": 4.986e-05, - "day": 0.027957 + "apr": 0.04935726, + "apy": 0.04935726, + "day": 1.58974 }, - "rewards": [] + "rewards": [ + { + "symbol": "ATOM", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amountPerDay": "0.932828084171440704", + "amountPerSecond": "0.00001079662134457686", + "priceUsd": 8.07, + "precision": 6, + "amountPerDayUsd": "7.52792263926352648128", + "yield": 0.23380597822951968, + "isExternal": true, + "gaugeInfo": [] + }, + { + "symbol": "ATOM1KLFG", + "denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "amountPerDay": "5681.408694764739704352", + "amountPerSecond": "0.06575704507829559843", + "priceUsd": 0.01064506656478178, + "precision": 6, + "amountPerDayUsd": "60.47897373750062416235389869259630656", + "yield": 1.8783861490900158, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron1fg4nua4xyd70kja80zkxkgevhxzk2lcjwa7mafz9tg0k7fjwaseqd5xtcp", - "lpAddress": "neutron1ec6rgn4z3h5laafelq6ge6ye88m07e860k9wd9cwvf2h4vjq0y9qq5d0ce", - "dayVolumeUsd": 1979.312485, - "poolLiquidityUsd": 200973.330752729, - "poolLiquidity": 137725339281, - "poolStakedLiquidityUsd": 1.459232787182676e-06, + "poolAddress": "neutron1vv8r56vkty5cyvmmekhxsj2g0d2jltus0uy40f54yflgnvsaga0shzuufz", + "lpAddress": "neutron1gw8c3p8qu8h92zdyjh6gctd2w8t3xn9daj2qm22cnfpzug9f9vvqaxgdpp", + "dayVolumeUsd": 615.471022, + "poolLiquidityUsd": 10142.26624953857, + "poolLiquidity": 34710555715, + "poolStakedLiquidityUsd": 2.921954443126251E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", - "token1PriceUsd": 0.487988236941567, + "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token1PriceUsd": 0.0292986375770778, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65f08eb2654cc523b1f28e7a", - "address": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", - "amount": "206642923760", - "symbol": "MNTA" + "id": "65ef12e268fc77acd931a6a7", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amount": "172845804501", + "symbol": "PROP16" }, { - "id": "65f08eb2654cc523b1f28e7b", + "id": "65ef12e268fc77acd931a6a8", "address": "untrn", - "amount": "91781864996", + "amount": "7434814649", "symbol": "NTRN" } ], - "name": "MNTA - NTRN", + "name": "PROP16 - NTRN", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -1575,59 +1900,60 @@ "day": 0 }, "totalRewards": { - "apr": 0.00804644, - "apy": 0.00804644, - "day": 8.860938 + "apr": 0.04443472, + "apy": 0.04443472, + "day": 2.469418 }, "tradingFees": { - "apr": 0.00804644, - "apy": 0.00804644, - "day": 4.430469 + "apr": 0.04443472, + "apy": 0.04443472, + "day": 1.234709 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron169vshmj6x7dlugd32zvwpv6ujwgz80d0l6xt8f5eufkn2dtvhk6s3ulgqv", - "lpAddress": "neutron13vptqlpfpwpvy4hyqzaa2td3t35scctna2q45f56dsmpmugs40jq7w9rqc", - "dayVolumeUsd": 1604.694804, - "poolLiquidityUsd": 195692.8978761243, - "poolLiquidity": 38830113277682, - "poolStakedLiquidityUsd": 5.039718337583404e-09, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1q0mdh594nxvvqr5e843ss0kx6004sfa97s36sshgs9jzc7yn72es4ql452", + "lpAddress": "neutron145rnrgw0exyzezc307s4t6gr3cknl4p0yq70pyn8cknc2477jaeqch4fhk", + "dayVolumeUsd": 491.211012, + "poolLiquidityUsd": 6930.776621652314, + "poolLiquidity": 2333508822, + "poolStakedLiquidityUsd": 6930.773651542856, + "poolStakedLiquidity": 2333507822, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token2PriceUsd": 4082.92 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/74B554DD3FF10F5D60E30175ADFB47E59F77F7C57024A8104A4F78CDC2EAD125", + "token2PriceUsd": 3.22 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "65ad65940a570e494166926f", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "598145306138", - "symbol": "APOLLO" + "id": "66153bc47deb69f60588605a", + "address": "untrn", + "amount": "5081941806", + "symbol": "NTRN" }, { - "id": "65ad65940a570e4941669270", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "24334973877488137818", - "symbol": "wstETH" + "id": "66153bc47deb69f60588605b", + "address": "ibc/74B554DD3FF10F5D60E30175ADFB47E59F77F7C57024A8104A4F78CDC2EAD125", + "amount": "1074445283", + "symbol": "SAGA" } ], - "name": "APOLLO - wstETH", + "name": "NTRN - SAGA", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -1635,57 +1961,71 @@ "day": 0 }, "totalRewards": { - "apr": 0.00600436, - "apy": 0.00600436, - "day": 6.438418 + "apr": 0.584887026135759, + "apy": 0.584887026135759, + "day": 12.193086567631594 }, "tradingFees": { - "apr": 0.00600436, - "apy": 0.00600436, - "day": 3.219209 + "apr": 0.05724565, + "apy": 0.05724565, + "day": 1.087005 }, - "rewards": [] + "rewards": [ + { + "symbol": "ASTRO.cw20", + "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amountPerDay": "80.361552577754916864", + "amountPerSecond": "0.00093011056224253376", + "priceUsd": 0.124675, + "precision": 6, + "amountPerDayUsd": "10.0190765676315942600192", + "yield": 0.527641376135759, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron15wal8wsy7mq37hagmrzchwmugpjzwlzrlw7pylkhlfuwukmc2kps722ems", - "lpAddress": "neutron127p6hzzvrms9vfw4xehs9gaxj3kyugvux4le88f96aqaf3nyjnuq2l22sr", - "dayVolumeUsd": 913.210873, - "poolLiquidityUsd": 163337.3114220283, - "poolLiquidity": 190783305970, - "poolStakedLiquidityUsd": 8.561404805124932e-07, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1yw0a7nxa8jdgzmdsme4gwxhj76n44z305qgwrzvlfavgna9epcys3k9m2f", + "lpAddress": "neutron1uywpz5esk0r3z7p7vl2h3vnqlrchra5phkex76z0rh2pckun0x9q3lj7va", + "dayVolumeUsd": 482.085294, + "poolLiquidityUsd": 1447632.141994182, + "poolLiquidity": 224490525, + "poolStakedLiquidityUsd": 1387089.378477717, + "poolStakedLiquidity": 215101899, "config": { "migrateToAddress": null, - "whitelisted": null + "whitelisted": true }, "feeRate": [ - "0.30" + "0.03", + "0.45" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token2PriceUsd": 1 + "token1Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token1PriceUsd": 3466.56, + "token2Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "token2PriceUsd": 2997.89 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "65ad65960a570e49416692ab", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "497048598548", - "symbol": "APOLLO" + "id": "657b973ac427e416a805bec1", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "207491942193428643586", + "symbol": "wstETH" }, { - "id": "65ad65960a570e49416692ac", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "83284439680", - "symbol": "USDC" + "id": "657b973ac427e416a805bec2", + "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "amount": "242953835819236356723", + "symbol": "WETH.axl" } ], - "name": "APOLLO - USDC", + "name": "wstETH - WETH.axl", "isNew": false, "isIlliquid": false, "isDeregistered": false, @@ -1695,27 +2035,43 @@ "day": 0 }, "totalRewards": { - "apr": 0.00409388, - "apy": 0.00409388, - "day": 3.66402 + "apr": 0.13321627823436677, + "apy": 0.13321627823436677, + "day": 506.32991183031567 }, "tradingFees": { - "apr": 0.00409388, - "apy": 0.00409388, - "day": 1.83201 + "apr": 0.00001825, + "apy": 0.00001825, + "day": 0.072394 }, - "rewards": [] + "rewards": [ + { + "symbol": "wstETH", + "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amountPerDay": "0.145285161026817888", + "amountPerSecond": "0.00000168154121558817", + "priceUsd": 3484.08, + "precision": 18, + "amountPerDayUsd": "506.18512383031566722304", + "yield": 0.13319802823436677, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron12gkx5m4zgz3uttqjq36jh5hzqlxr23c2z4w5elzzdzxpw0zqupnsz02xx3", - "lpAddress": "neutron1pevcmuml2evcz3mj2nme9qjx0dzhvcsndjghhynxe6n5syvmw8mq9nkl69", - "dayVolumeUsd": 2441.274645, - "poolLiquidityUsd": 159996.3985425924, - "poolLiquidity": 332685558450, - "poolStakedLiquidityUsd": 4.809237857905121e-07, + "poolAddress": "neutron1vgg9ykv2n9sjwgvmj2pjju7uhty8hc6d8zn8nrpcwef0fs4fgc8syspn8s", + "lpAddress": "neutron19jkkyp28jfv2e6sn3sfjz276ht9kyzzxequqshnhcj2975jpusdszcnw2h", + "dayVolumeUsd": 446.807123, + "poolLiquidityUsd": 2034.034889794668, + "poolLiquidity": 11576399306, + "poolStakedLiquidityUsd": 1.757053152672521E-7, "poolStakedLiquidity": 1, - "config": null, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, "feeRate": [ "0.26", "0.45" @@ -1723,29 +2079,29 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", - "token2PriceUsd": 0.05246 + "token1Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "token1PriceUsd": 0.061188, + "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token2PriceUsd": 0.125124 }, "stakeable": false, "assets": [ { - "id": "647640314a71d2151077d903", - "address": "untrn", - "amount": "72537348487", - "symbol": "NTRN" + "id": "65d5013368fc77acd91087e4", + "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "amount": "17282844379", + "symbol": "MARS" }, { - "id": "656607b713d76f5033dcf2ee", - "address": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", - "amount": "1541329610051", - "symbol": "NLS" + "id": "65d5013368fc77acd91087e5", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "7804515584", + "symbol": "ASTRO.cw20" } ], - "name": "NTRN - NLS", + "name": "MARS - ASTRO.cw20", "isNew": false, - "isIlliquid": false, + "isIlliquid": true, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -1753,29 +2109,29 @@ "day": 0 }, "totalRewards": { - "apr": 0.01235672, - "apy": 0.01235672, - "day": 10.833048 + "apr": 0, + "apy": 0, + "day": 1.654818 }, "tradingFees": { - "apr": 0.01235672, - "apy": 0.01235672, - "day": 5.416524 + "apr": 0, + "apy": 0, + "day": 0.827409 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ssz2lzs57l7f8znscaafc4lzxtfj0pyym9w0kj9q3qvhduxa28jsgt8gnd", - "lpAddress": "neutron1dj568n6pl8rdadc6waa5ygjnncqrecxy86aqzc0dtjku6r50vm2q0gte43", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 111619.9029210006, - "poolLiquidity": 10574396691, - "poolStakedLiquidityUsd": 1.055567576792702e-05, + "poolAddress": "neutron18aud0kjwzdjj3m2cqm7gqyyw556ctgp3h4metpe0kxad0ewx6s8sp3zknv", + "lpAddress": "neutron19p7fqw2njtf90y5atdv8367ehrzspjla6wu73z70ey9hk5pvtlqqx7gvzc", + "dayVolumeUsd": 410.9373, + "poolLiquidityUsd": 1765.325922308739, + "poolLiquidity": 834048129, + "poolStakedLiquidityUsd": 0.000002116575603877333, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, - "whitelisted": true + "migrateToAddress": "neutron194f0u63jenquqvxr5hj2glq4sdhx60arn8y86299c8qme6pspjesv444yd", + "whitelisted": null }, "feeRate": [ "0.30" @@ -1783,30 +2139,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/7ACF670DA8DA24B5999A0D17247C7F4349AB1038FC4FA76A3AF50AFDE407B258", - "token1PriceUsd": 11.43, - "token2Address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", - "token2PriceUsd": 8.75 + "token1Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "token1PriceUsd": 1.17, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "656690b378cf6ef04681c98a", - "address": "ibc/7ACF670DA8DA24B5999A0D17247C7F4349AB1038FC4FA76A3AF50AFDE407B258", - "amount": "9764456755", - "symbol": "vDOT" + "id": "657ba6d36fce3c3f5562314b", + "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "amount": "760831105", + "symbol": "AXL" }, { - "id": "656690b378cf6ef04681c98b", - "address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", - "amount": "13899670115", - "symbol": "DOT" + "id": "657ba6d36fce3c3f5562314c", + "address": "untrn", + "amount": "1281301881", + "symbol": "NTRN" } ], - "name": "vDOT - DOT", + "name": "AXL - NTRN", "isNew": false, - "isIlliquid": false, - "isDeregistered": false, + "isIlliquid": true, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -1815,57 +2171,56 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0 + "day": 1.648778 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.824389 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1vgg9ykv2n9sjwgvmj2pjju7uhty8hc6d8zn8nrpcwef0fs4fgc8syspn8s", - "lpAddress": "neutron19jkkyp28jfv2e6sn3sfjz276ht9kyzzxequqshnhcj2975jpusdszcnw2h", - "dayVolumeUsd": 1630.819949, - "poolLiquidityUsd": 92238.87306905663, - "poolLiquidity": 432778638772, - "poolStakedLiquidityUsd": 2.131317594361255e-07, + "poolAddress": "neutron1hl5s3yy8tlkn79de7wtcgd92s5x0gdpwrmc0rld043vku4wzn6esl0gudh", + "lpAddress": "neutron1032z69tscrugzsnwahlv6yhnuy2pxtdw888we6elt34haydxjfusz3l3n7", + "dayVolumeUsd": 367.637844, + "poolLiquidityUsd": 16480.93918558615, + "poolLiquidity": 2366316324659, + "poolStakedLiquidityUsd": 6.964807982524933E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "token1PriceUsd": 0.071059, - "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token2PriceUsd": 0.159201 + "token1Address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NFA", + "token1PriceUsd": 0.00001773941848872843, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65d5013368fc77acd91087e4", - "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "amount": "654279629809", - "symbol": "MARS" + "id": "661c9108bf036247bf8d8817", + "address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NFA", + "amount": "464257890892795", + "symbol": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NFA" }, { - "id": "65d5013368fc77acd91087e5", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "287350059701", - "symbol": "ASTRO" + "id": "661c9108bf036247bf8d8818", + "address": "untrn", + "amount": "12071807918", + "symbol": "NTRN" } ], - "name": "MARS - ASTRO", - "isNew": false, + "name": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NFA - NTRN", + "isNew": true, "isIlliquid": true, "isDeregistered": false, "astroRewards": { @@ -1874,26 +2229,26 @@ "day": 0 }, "totalRewards": { - "apr": 0.01190055, - "apy": 0.01190055, - "day": 6.014762 + "apr": 0.01633379, + "apy": 0.01633379, + "day": 1.475048 }, "tradingFees": { - "apr": 0.01190055, - "apy": 0.01190055, - "day": 3.007381 + "apr": 0.01633379, + "apy": 0.01633379, + "day": 0.737524 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1vv8r56vkty5cyvmmekhxsj2g0d2jltus0uy40f54yflgnvsaga0shzuufz", - "lpAddress": "neutron1gw8c3p8qu8h92zdyjh6gctd2w8t3xn9daj2qm22cnfpzug9f9vvqaxgdpp", - "dayVolumeUsd": 3181.517036, - "poolLiquidityUsd": 38114.04444708068, - "poolLiquidity": 34699232046, - "poolStakedLiquidityUsd": 1.098411757026445e-06, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1lehuwzfcaf576p05snwejek66ejd8xrc3y2p5zrw0adeql88qfksp5mwx8", + "lpAddress": "neutron1pn9t8h52sj0s64as5wfr8hzhnx9judw2z7ty6h40kn3d0qt8wvnq58r38d", + "dayVolumeUsd": 281.457255, + "poolLiquidityUsd": 1132.072615973178, + "poolLiquidity": 179593938990, + "poolStakedLiquidityUsd": 1132.072609669666, + "poolStakedLiquidity": 179593937990, "config": { "migrateToAddress": null, "whitelisted": null @@ -1904,27 +2259,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token1PriceUsd": 0.2622099128699426, + "token1Address": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/DANZA", + "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "65ef12e268fc77acd931a6a7", - "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "72675029396", - "symbol": "PROP16" + "id": "6609c2e205a65f3ca6ff0017", + "address": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/DANZA", + "amount": "21669289036755", + "symbol": "DANZA" }, { - "id": "65ef12e268fc77acd931a6a8", + "id": "6609c2e205a65f3ca6ff0018", "address": "untrn", - "amount": "17468314685", + "amount": "1657454062", "symbol": "NTRN" } ], - "name": "PROP16 - NTRN", + "name": "DANZA - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -1934,58 +2289,70 @@ "day": 0 }, "totalRewards": { - "apr": 0.0611222, - "apy": 0.0611222, - "day": 12.76501 + "apr": 0, + "apy": 0, + "day": 1.129274 }, "tradingFees": { - "apr": 0.0611222, - "apy": 0.0611222, - "day": 6.382505 + "apr": 0, + "apy": 0, + "day": 0.564637 }, - "rewards": [] + "rewards": [ + { + "symbol": "DANZA", + "denom": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/DANZA", + "amountPerDay": "46299.98046719574040176", + "amountPerSecond": "0.53587940355550625465", + "priceUsd": 0, + "precision": 6, + "amountPerDayUsd": "0", + "yield": 0, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron14qaye93htdks0gfan7l2m3jfrzfm9x8xl677l9yn2tyy2x6fc6mqrqmjdq", - "lpAddress": "neutron1x0h37skwnddy3emjkdhfetwmdcyarrf9ftlg6mk905lkmfesj9xsdjumfk", - "dayVolumeUsd": 2328.902205, - "poolLiquidityUsd": 37803.14019482216, - "poolLiquidity": 59936852425, - "poolStakedLiquidityUsd": 6.307161398125366e-07, - "poolStakedLiquidity": 1, + "poolAddress": "neutron12u0dqfv4w5s3338sztj4km67wgw7pvzmc94qljsv98rmq3dm952s6gt3j6", + "lpAddress": "neutron1u4lqplqax260mu54qf2tkyyzjkga2j57jzgjz8asm8vkhdc6xafskw7st7", + "dayVolumeUsd": 258.736251, + "poolLiquidityUsd": 832.9091604918009, + "poolLiquidity": 615270004564, + "poolStakedLiquidityUsd": 832.9091591380713, + "poolStakedLiquidity": 615270003564, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "token1PriceUsd": 0.071059, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "token1PriceUsd": 0, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "657b8c20c361c1dafb0301a3", - "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "amount": "268496094720", - "symbol": "MARS" + "id": "65c4f48e68fc77acd9fa18bb", + "address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "amount": "25904386868445", + "symbol": "BADDOG" }, { - "id": "657b8c20c361c1dafb0301a4", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "18736442252", - "symbol": "USDC.axl" + "id": "65c4f48e68fc77acd9fa18bc", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "14902815070", + "symbol": "NEWT" } ], - "name": "MARS - USDC.axl", + "name": "BADDOG - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -1995,57 +2362,71 @@ "day": 0 }, "totalRewards": { - "apr": 0.03533239, - "apy": 0.03533239, - "day": 7.31877 + "apr": 0, + "apy": 0, + "day": 0.658876 }, "tradingFees": { - "apr": 0.03533239, - "apy": 0.03533239, - "day": 3.659385 + "apr": 0, + "apy": 0, + "day": 0.329438 }, - "rewards": [] + "rewards": [ + { + "symbol": "BADDOG", + "denom": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "amountPerDay": "432194.982965752570248096", + "amountPerSecond": "5.00225674728880289639", + "priceUsd": 0, + "precision": 6, + "amountPerDayUsd": "0", + "yield": 0, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron18wpdnllkvn7sesuat3y6vtsv92q4v7ff9929jcxp8w2d7kfs3ewsnecrux", - "lpAddress": "neutron1hqm55a0gtzn0geuqm3qm9nfack0ngv6la9h5rxst066fhzl42zdstvazp6", - "dayVolumeUsd": 174.00708, - "poolLiquidityUsd": 31816.16384608139, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 31.81616384608139, + "poolAddress": "neutron17wlm5hwarf77acc0wk0nvcsk38hcl25522e0kvvvzaqdgdt7y4ss78ds0v", + "lpAddress": "neutron1u6cqvmnxdd0tv423c49esqxuahfr8kr2nsmzgtkszcct06vkejzqqnc55m", + "dayVolumeUsd": 230.698237, + "poolLiquidityUsd": 859.6975630253143, + "poolLiquidity": 200001000, + "poolStakedLiquidityUsd": 0.00000429846632279066, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": null + "whitelisted": true }, "feeRate": [ - "0.30" + "0.03", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "token1PriceUsd": 4.939094843591347, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "token1PriceUsd": 2.108070467032493, + "token2Address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", + "token2PriceUsd": 2.19 }, "stakeable": false, "assets": [ { - "id": "6594190cfa5a2b66abcd7f29", - "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "amount": "3214536439", - "symbol": "CIRCUS" + "id": "65b3d43fc56514afb6690208", + "address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "amount": "202883173547996111246", + "symbol": "DYDX" }, { - "id": "6594190cfa5a2b66abcd7f2a", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "1465005836", - "symbol": "ATOM" + "id": "65b3d43fc56514afb6690209", + "address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", + "amount": "197262802105459246490", + "symbol": "stDYDX" } ], - "name": "CIRCUS - ATOM", + "name": "DYDX - stDYDX", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -2055,98 +2436,85 @@ "day": 0 }, "totalRewards": { - "apr": 0.0040046, - "apy": 0.0040046, - "day": 0.698144 + "apr": 0.01917985, + "apy": 0.01917985, + "day": 0.09035 }, "tradingFees": { - "apr": 0.0040046, - "apy": 0.0040046, - "day": 0.349072 + "apr": 0.01917985, + "apy": 0.01917985, + "day": 0.045175 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1adk7gupr0thjr3e6wcnlxr7ugclcg4cukv2np8la29dz38zuzymqjcv5s4", - "lpAddress": "neutron1kmuv6zmpr2nd3fnqefcffgfmhm74c8vhyerklaphrawyp3398gws74huny", - "dayVolumeUsd": 18.020821, - "poolLiquidityUsd": 24977.82148916578, - "poolLiquidity": 24923227395, - "poolStakedLiquidityUsd": 23885.95656795906, - "poolStakedLiquidity": 23833748966, + "poolAddress": "neutron1m37c5sancnzzs2a0laxwrhlpphxpp2rrmnqmr2u83l4s43lez7kqam0dw0", + "lpAddress": "neutron1l5te0xlh76cjns7rnnmsx72e3sarcqfvv6fr594943t0w5x9jh7qcele5s", + "dayVolumeUsd": 229.548365, + "poolLiquidityUsd": 2343.904219010871, + "poolLiquidity": 913149883935, + "poolStakedLiquidityUsd": 2.566834050915978E-9, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.05" + "0.30" ], - "poolType": "stable", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "token2PriceUsd": 1.002 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", + "token2PriceUsd": 0 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "657ba53de71d0f468fea4cf4", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "12499635067", - "symbol": "USDC.axl" + "id": "660c85fe05a65f3ca6019eea", + "address": "untrn", + "amount": "3431682309", + "symbol": "NTRN" }, { - "id": "657ba53de71d0f468fea4cf5", - "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "amount": "12461513155", - "symbol": "USDT.axl" + "id": "660c85fe05a65f3ca6019eeb", + "address": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", + "amount": "247089625694901", + "symbol": "YAWP" } ], - "name": "USDC.axl - USDT.axl", + "name": "NTRN - YAWP", "isNew": false, "isIlliquid": true, "isDeregistered": false, "astroRewards": { - "apr": 0.16641382150938408, + "apr": 0, "apy": 0, - "day": 10.890283048989696 + "day": 0 }, "totalRewards": { - "apr": 0.16647969150938405, - "apy": 0.16647969150938405, - "day": 21.78958209797939 + "apr": 0, + "apy": 0, + "day": 0.921002 }, "tradingFees": { - "apr": 6.587e-05, - "apy": 6.587e-05, - "day": 0.004508 + "apr": 0, + "apy": 0, + "day": 0.460501 }, - "rewards": [ - { - "symbol": "ASTRO", - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amountPerDay": "68.418763776", - "amountPerSecond": "0.00079188384", - "priceUsd": 0.159171, - "precision": 6, - "amountPerDayUsd": "10.890283048989696", - "yield": 0.16641382150938405, - "isExternal": false, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1m37c5sancnzzs2a0laxwrhlpphxpp2rrmnqmr2u83l4s43lez7kqam0dw0", - "lpAddress": "neutron1l5te0xlh76cjns7rnnmsx72e3sarcqfvv6fr594943t0w5x9jh7qcele5s", - "dayVolumeUsd": 2760.165043, - "poolLiquidityUsd": 23100.42322759, - "poolLiquidity": 1678950330084, - "poolStakedLiquidityUsd": 1.375884839168222e-08, + "poolAddress": "neutron1zhjrgpvu2th5t8w5ndfw9lwsqp95sgr46kf4j3jrcfe2lep0hlnqfczpjm", + "lpAddress": "neutron1wzvvmz8qlqu7cngyac99frs6sdes4tpuk2lk78daenm92jqaz8ss3cgjz9", + "dayVolumeUsd": 204.198655, + "poolLiquidityUsd": 198884.2861561577, + "poolLiquidity": 787821055843, + "poolStakedLiquidityUsd": 2.524485518974929E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -2155,32 +2523,32 @@ "feeRate": [ "0.30" ], - "poolType": "xyk", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", - "token2PriceUsd": 4.282350235826524e-05 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token2PriceUsd": 0.125124 }, "stakeable": false, "assets": [ { - "id": "660c85fe05a65f3ca6019eea", - "address": "untrn", - "amount": "10586811745", - "symbol": "NTRN" + "id": "65ad65950a570e4941669287", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "835081162074", + "symbol": "APOLLO" }, { - "id": "660c85fe05a65f3ca6019eeb", - "address": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", - "amount": "269716650384289", - "symbol": "YAWP" + "id": "65ad65950a570e4941669288", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "767454537718", + "symbol": "ASTRO.cw20" } ], - "name": "NTRN - YAWP", + "name": "APOLLO - ASTRO.cw20", "isNew": false, - "isIlliquid": true, + "isIlliquid": false, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -2188,26 +2556,26 @@ "day": 0 }, "totalRewards": { - "apr": 0.08749125, - "apy": 0.08749125, - "day": 11.074438 + "apr": 0.00075179, + "apy": 0.00075179, + "day": 0.819294 }, "tradingFees": { - "apr": 0.08749125, - "apy": 0.08749125, - "day": 5.537219 + "apr": 0.00075179, + "apy": 0.00075179, + "day": 0.409647 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1dqanamhpvuljprfmwjxww0w3r5qd66zz3glkh8lxszw85zkdn0hq630d58", - "lpAddress": "neutron1068hu2ztra6x6ht8u3mgscg232ssqwanrvuzuk2ecfxnfftglcgqs48rst", - "dayVolumeUsd": 2317.728927, - "poolLiquidityUsd": 22687.65875862215, - "poolLiquidity": 102034046281, - "poolStakedLiquidityUsd": 22682.42137921136, - "poolStakedLiquidity": 102010492021, + "poolAddress": "neutron1q4zrgtgl5tvrn9hjq8csynfdakgff7ewp3tsyzln7m6nezr2fm0qnperhg", + "lpAddress": "neutron1dkme0wm6037tlsenxelq9vvzreenh440g35lnm436maakqtqzwwsyft8lt", + "dayVolumeUsd": 194.592688, + "poolLiquidityUsd": 12468.92470533156, + "poolLiquidity": 765818154, + "poolStakedLiquidityUsd": 0.00001628183484575593, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null @@ -2218,27 +2586,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "token1PriceUsd": 0.01115149534075275, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth", + "token1PriceUsd": 6.765638556764412, + "token2Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token2PriceUsd": 9.56 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "6602fc1905a65f3ca6f7a489", - "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "amount": "1018292231686", - "symbol": "ATOM1KLFG" + "id": "66152bca7deb69f605885358", + "address": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth", + "amount": "922919589", + "symbol": "SLOTH" }, { - "id": "6602fc1905a65f3ca6f7a48a", - "address": "untrn", - "amount": "10386963961", - "symbol": "NTRN" + "id": "66152bca7deb69f605885359", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "651128070", + "symbol": "TIA" } ], - "name": "ATOM1KLFG - NTRN", + "name": "SLOTH - TIA", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -2248,50 +2616,25 @@ "day": 0 }, "totalRewards": { - "apr": 1.2568298657452595, - "apy": 1.2568298657452595, - "day": 82.75467134501272 + "apr": 0.01142855, + "apy": 0.01142855, + "day": 0.780832 }, "tradingFees": { - "apr": 0.0748036, - "apy": 0.0748036, - "day": 4.64964 + "apr": 0.01142855, + "apy": 0.01142855, + "day": 0.390416 }, - "rewards": [ - { - "symbol": "ATOM", - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amountPerDay": "0.932828084171440704", - "amountPerSecond": "0.00001079662134457686", - "priceUsd": 10.88, - "precision": 6, - "amountPerDayUsd": "10.14916955578527485952", - "yield": 0.16331796442406205, - "isExternal": true, - "gaugeInfo": [] - }, - { - "symbol": "ATOM1KLFG", - "denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "amountPerDay": "5681.408694764739704352", - "amountPerSecond": "0.06575704507829559843", - "priceUsd": 0.0111426980860508, - "precision": 6, - "amountPerDayUsd": "63.3062217892274388856652850472530816", - "yield": 1.0187083013211973, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron14mssc4ycudkmznstwtcm3assr4gt40nq38x58ap574thgrxgzr0qpxhu9m", - "lpAddress": "neutron1fwuhcmag0nq7jl3mgn8ddpwrpr4w8y0d5y4sf3x47q64wlet5ftqku5lu3", - "dayVolumeUsd": 53.709345, - "poolLiquidityUsd": 21673.56777441607, - "poolLiquidity": 792399016, - "poolStakedLiquidityUsd": 2.735183580080443e-05, + "poolAddress": "neutron1fktxsflze70p7565yslwtth290zqad4agt4gpvjffy58h6raxvasz5etfw", + "lpAddress": "neutron1yy474ug5qn69twuaefzen64gfjyp5d6g0teeqgp7rugxl3lfxq3qtc0t09", + "dayVolumeUsd": 192.482827, + "poolLiquidityUsd": 500858.2591663548, + "poolLiquidity": 763745179021, + "poolStakedLiquidityUsd": 6.557923656794971E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -2300,32 +2643,32 @@ "feeRate": [ "0.30" ], - "poolType": "xyk", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token1PriceUsd": 10.88, - "token2Address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "token2PriceUsd": 0.0002586977590521827 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a3eb8e59423b792c444e1c", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "997448087", - "symbol": "ATOM" + "id": "65ad65950a570e4941669293", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "2015803065994", + "symbol": "APOLLO" }, { - "id": "65a3eb8e59423b792c444e1d", - "address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "amount": "41830020590450", - "symbol": "GODRD" + "id": "65ad65950a570e4941669294", + "address": "untrn", + "amount": "369786099249", + "symbol": "NTRN" } ], - "name": "ATOM - GODRD", + "name": "APOLLO - NTRN", "isNew": false, - "isIlliquid": true, + "isIlliquid": false, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -2333,14 +2676,14 @@ "day": 0 }, "totalRewards": { - "apr": 0.00181486, - "apy": 0.00181486, - "day": 0.215532 + "apr": 0.0002814, + "apy": 0.0002814, + "day": 0.772286 }, "tradingFees": { - "apr": 0.00181486, - "apy": 0.00181486, - "day": 0.107766 + "apr": 0.0002814, + "apy": 0.0002814, + "day": 0.386143 }, "rewards": [] }, @@ -2348,11 +2691,11 @@ "chainId": "neutron-1", "poolAddress": "neutron1gy8hpzwdqgq8m9ua5486wjw4377jer53qf3vnt5qdflvcrszdq8q8cfk3a", "lpAddress": "neutron1jvuwrarlkhuvphlzpjur68uknus7teykflvqxdgc6rykens9lfxqmvkrle", - "dayVolumeUsd": 59.046974, - "poolLiquidityUsd": 21520.80386908381, - "poolLiquidity": 10004965247767, - "poolStakedLiquidityUsd": 8088.76052809576, - "poolStakedLiquidity": 3760443544461, + "dayVolumeUsd": 119.41044, + "poolLiquidityUsd": 9138.497728617805, + "poolLiquidity": 7345719701267, + "poolStakedLiquidityUsd": 1369.953634548476, + "poolStakedLiquidity": 1101197997961, "config": { "migrateToAddress": null, "whitelisted": null @@ -2364,22 +2707,22 @@ "isBlocked": false, "prices": { "token1Address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "token1PriceUsd": 1.389860942377924e-05, + "token1PriceUsd": 0.000006832473420032125, "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token2PriceUsd": 0.0558893844270055 }, "stakeable": true, "assets": [ { "id": "65c809f368fc77acd9fced28", "address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "amount": "774718409531940", + "amount": "668915787091600", "symbol": "JIMMY" }, { "id": "65c809f368fc77acd9fced29", "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "130844626135", + "amount": "81735528847", "symbol": "NEWT" } ], @@ -2393,25 +2736,25 @@ "day": 0 }, "totalRewards": { - "apr": 0.9811553103624205, - "apy": 0.9811553103624205, - "day": 21.935758722814608 + "apr": 2.4568773064051217, + "apy": 2.4568773064051217, + "day": 9.664582667310802 }, "tradingFees": { - "apr": 0.00200903, - "apy": 0.00200903, - "day": 0.118455 + "apr": 0.00956788, + "apy": 0.00956788, + "day": 0.239551 }, "rewards": [ { "symbol": "NEWT", "denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amountPerDay": "264.271781292341887296", - "amountPerSecond": "0.00305870117236506814", - "priceUsd": 0.08210808061573163, + "amountPerDay": "163.361722054399704864", + "amountPerSecond": "0.00189076067192592251", + "priceUsd": 0.05622786385816882, "precision": 6, - "amountPerDayUsd": "21.69884872281460572758812846204237248", - "yield": 0.9791462803624205, + "amountPerDayUsd": "9.18548066731080140092559616348714048", + "yield": 2.4473094264051216, "isExternal": true, "gaugeInfo": [] } @@ -2419,12 +2762,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1wj4tfjdd8qgzet4m8nv6v27j42qnz6j6cty5apy3vtcn45edspwsu4vt25", - "lpAddress": "neutron1ll5wuldtzlalrfy2vgnpukghdammdw7tewp98w0ql2zvkauxguvsrf07qt", - "dayVolumeUsd": 1825.343825, - "poolLiquidityUsd": 18905.84456379532, - "poolLiquidity": 21987708155, - "poolStakedLiquidityUsd": 8.59836979282367e-07, + "poolAddress": "neutron134fg2rj3wtgjfwd8p9mn2w4d2rseucrkhzez28jds6pgkhnpy54q6dv7c9", + "lpAddress": "neutron18wuw6r2put9krzr40um0668pqxlq5xj6sn3zetvnynu50k560tfs8qut6p", + "dayVolumeUsd": 107.59935, + "poolLiquidityUsd": 1216.234794304233, + "poolLiquidity": 47665393380, + "poolStakedLiquidityUsd": 2.551609685645557E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -2437,27 +2780,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, + "token1Address": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", + "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657ba893eacdd4555fc74667", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "58894366514", - "symbol": "ASTRO" + "id": "65b11e3dc56514afb666b455", + "address": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", + "amount": "1295786409958", + "symbol": "WOSMO" }, { - "id": "657ba893eacdd4555fc74668", + "id": "65b11e3dc56514afb666b456", "address": "untrn", - "amount": "8734924400", + "amount": "1780674907", "symbol": "NTRN" } ], - "name": "ASTRO - NTRN", + "name": "WOSMO - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -2467,26 +2810,26 @@ "day": 0 }, "totalRewards": { - "apr": 0.05780017, - "apy": 0.05780017, - "day": 5.987732 + "apr": 0, + "apy": 0, + "day": 0.45415 }, "tradingFees": { - "apr": 0.05780017, - "apy": 0.05780017, - "day": 2.993866 + "apr": 0, + "apy": 0, + "day": 0.227075 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1nhhvdmasyq0ly4mydmyakcqw5h0p3wyvc7cq3ap3am2au0gd9edstmzmnq", - "lpAddress": "neutron1xkvnmm9f28qpp8xapsysjmpsg9u05zn7pct0rn4pgycs570q4tcsj03d6n", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 16436.01670942135, - "poolLiquidity": 70562726963, - "poolStakedLiquidityUsd": 2.329277425624151e-07, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1zmavvll4tr36ngw6gku5ksq6jmgcuadkagkgdndmtgj8kqry2lcqyrq37n", + "lpAddress": "neutron1mprzhq727neyvtvwysv4exw6e6vkkmr5lwskuwk4dma4l0ydhw6qvul9mm", + "dayVolumeUsd": 85.230922, + "poolLiquidityUsd": 2906.414391815928, + "poolLiquidity": 35365386027, + "poolStakedLiquidityUsd": 2906.414309633469, + "poolStakedLiquidity": 35365385027, "config": { "migrateToAddress": null, "whitelisted": null @@ -2497,27 +2840,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token2PriceUsd": 0.0292986375770778 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "65c1159ab49e7c63d0a381d6", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "51038854638", - "symbol": "APOLLO" - }, - { - "id": "65c1159ab49e7c63d0a381d7", + "id": "66006fcd05a65f3ca6f5253c", "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "99969717453", + "amount": "25972970077", "symbol": "NEWT" + }, + { + "id": "66006fcd05a65f3ca6f5253d", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amount": "49654222953", + "symbol": "PROP16" } ], - "name": "APOLLO - NEWT", + "name": "NEWT - PROP16", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -2527,57 +2870,70 @@ "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0 + "apr": 0.39909839367751654, + "apy": 0.39909839367751654, + "day": 3.5198982803727827 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.170983 }, - "rewards": [] + "rewards": [ + { + "symbol": "PROP16", + "denom": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amountPerDay": "108.169420354630439904", + "amountPerSecond": "0.00125196088373414861", + "priceUsd": 0.02937921151795045, + "precision": 6, + "amountPerDayUsd": "3.1779322803727824698824316759747568", + "yield": 0.39909839367751654, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ghhlz6zfc33r49u0y77u3shf5a88hcw2wrpwvuky7ucs24ye9ypqj3aypu", - "lpAddress": "neutron1cctxselwdj0csnd3e6z3z2stllwgkme8vzq20pdyct7xcv2h2pwss793hv", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 15086.70696849327, - "poolLiquidity": 3619998846283698000, - "poolStakedLiquidityUsd": 4.073410881493183e-15, + "poolAddress": "neutron1l76400fwjag5dax703mechjg636mvreq6z6yfewc5r3zwckva4ts3lpsmh", + "lpAddress": "neutron1ms63euh408j6vk5zjrw2uje9rcgda42wupl36uezl9ggnt9jugzqp250cq", + "dayVolumeUsd": 84.1629, + "poolLiquidityUsd": 4006.16171188959, + "poolLiquidity": 3246858401, + "poolStakedLiquidityUsd": 0.000001233857845678733, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.05" + "0.30" ], - "poolType": "stable", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", - "token1PriceUsd": 4241.51, - "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token2PriceUsd": 4082.92 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.05606097236000197, + "token2Address": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth", + "token2PriceUsd": 6.765638556764412 }, "stakeable": false, "assets": [ { - "id": "657b71c20390da6bb354c385", - "address": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", - "amount": "1814444210105239079", - "symbol": "wstETH.axl" + "id": "6616f4a386e23761bbb2565b", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "35899794677", + "symbol": "NEWT" }, { - "id": "657b71c20390da6bb354c386", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "1810156384864213808", - "symbol": "wstETH" + "id": "6616f4a386e23761bbb2565c", + "address": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth", + "amount": "294663142", + "symbol": "SLOTH" } ], - "name": "wstETH.axl - wstETH", + "name": "NEWT - SLOTH", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -2589,26 +2945,26 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.337682 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.168841 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1eqcl88ek70zp4pms4q3e3qff56lmf67dqg7nd57as0ge67geh5rqse5sph", - "lpAddress": "neutron1svx3sa9u8apwfgknp3jf4wzuel5km6s83pm0errfrklchgzend2s575m27", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 14121.73989583106, - "poolLiquidity": 1789733958057, - "poolStakedLiquidityUsd": 7.89041286452881e-09, - "poolStakedLiquidity": 1, + "poolAddress": "neutron107yytf64ul9l6ajxevfydt3pkxxwa0924srgt9u5qeaznq3xca2qwp72ls", + "lpAddress": "neutron1wmdfq56zkrfaaajxzlqmppe5t502wfpg3sa3c6pydsswgqxs93pq520pqw", + "dayVolumeUsd": 81.141914, + "poolLiquidityUsd": 4264.991300643975, + "poolLiquidity": 208942675106, + "poolStakedLiquidityUsd": 4255.011690375144, + "poolStakedLiquidity": 208453772241, "config": { - "migrateToAddress": "neutron1v2l6rk3j9x84w7kulgfkfm9acmflcqjzlsat8k2teux3vj5ec5yq7et2g4", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -2617,56 +2973,69 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "token2PriceUsd": 1.378e-05 + "token1Address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "token1PriceUsd": 0.000148994564869642, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "657b340958343f3c5b9f2a84", - "address": "untrn", - "amount": "6423079409", - "symbol": "NTRN" + "id": "65ab69b00a570e4941655fb9", + "address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "amount": "14327117737026", + "symbol": "GODRD" }, { - "id": "657b340958343f3c5b9f2a85", - "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "amount": "516267072613357", - "symbol": "CRBRUS" + "id": "65ab69b00a570e4941655fba", + "address": "untrn", + "amount": "3118988824", + "symbol": "NTRN" } ], - "name": "NTRN - CRBRUS", + "name": "GODRD - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0 + "apr": 0.8588279002231606, + "apy": 0.8588279002231606, + "day": 10.337405165670921 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.162781 }, - "rewards": [] + "rewards": [ + { + "symbol": "GODRD", + "denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "amountPerDay": "66977.76183266040321168", + "amountPerSecond": "0.77520557676690281495", + "priceUsd": 0.0001494801093933963, + "precision": 6, + "amountPerDayUsd": "10.011843165670920519315698253103028784", + "yield": 0.8588279002231606, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron1zmavvll4tr36ngw6gku5ksq6jmgcuadkagkgdndmtgj8kqry2lcqyrq37n", - "lpAddress": "neutron1mprzhq727neyvtvwysv4exw6e6vkkmr5lwskuwk4dma4l0ydhw6qvul9mm", - "dayVolumeUsd": 331.630971, - "poolLiquidityUsd": 11410.88095108555, - "poolLiquidity": 38390520330, - "poolStakedLiquidityUsd": 11410.88065385381, - "poolStakedLiquidity": 38390519330, + "poolAddress": "neutron1fa7dlwkaypg56cy6jgncu0n4mjhfclukr4mnwvvrvj6697s3x68sfly3w3", + "lpAddress": "neutron1asz50fqagqj8v94pnxc6pcj7dd4vr980flsk469vwfs65h8erres8jen6x", + "dayVolumeUsd": 79.845179, + "poolLiquidityUsd": 2337.196705744496, + "poolLiquidity": 3984426516, + "poolStakedLiquidityUsd": 2337.196119161535, + "poolStakedLiquidity": 3984425516, "config": { "migrateToAddress": null, "whitelisted": null @@ -2677,27 +3046,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08218369832394283, - "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token2PriceUsd": 0.2622099128699426 + "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "token1PriceUsd": 0.01062373236439887, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": true, "assets": [ { - "id": "66006fcd05a65f3ca6f5253c", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "69333081862", - "symbol": "NEWT" + "id": "6607c5a905a65f3ca6fd1738", + "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "amount": "109593854105", + "symbol": "ATOM1KLFG" }, { - "id": "66006fcd05a65f3ca6f5253d", - "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "21787245970", - "symbol": "PROP16" + "id": "6607c5a905a65f3ca6fd1739", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "145701979", + "symbol": "ATOM" } ], - "name": "NEWT - PROP16", + "name": "ATOM1KLFG - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -2707,25 +3076,25 @@ "day": 0 }, "totalRewards": { - "apr": 0.9277614606760423, - "apy": 0.9277614606760423, - "day": 29.669608041339554 + "apr": 1.94061185535398, + "apy": 1.94061185535398, + "day": 12.746649334608735 }, "tradingFees": { - "apr": 0.0212807, - "apy": 0.0212807, - "day": 0.665292 + "apr": 0, + "apy": 0, + "day": 0.160187 }, "rewards": [ { - "symbol": "PROP16", - "denom": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amountPerDay": "108.169420354630439904", - "amountPerSecond": "0.00125196088373414861", - "priceUsd": 0.2619873893049519, + "symbol": "ATOM1KLFG", + "denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "amountPerDay": "1167.327161271111192768", + "amountPerSecond": "0.01351073103323045362", + "priceUsd": 0.01064506656478178, "precision": 6, - "amountPerDayUsd": "28.3390240413395532694135971025606176", - "yield": 0.9064807606760423, + "amountPerDayUsd": "12.42627533460873452539932471743416704", + "yield": 1.94061185535398, "isExternal": true, "gaugeInfo": [] } @@ -2733,12 +3102,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1q4zrgtgl5tvrn9hjq8csynfdakgff7ewp3tsyzln7m6nezr2fm0qnperhg", - "lpAddress": "neutron1dkme0wm6037tlsenxelq9vvzreenh440g35lnm436maakqtqzwwsyft8lt", - "dayVolumeUsd": 3095.157763, - "poolLiquidityUsd": 10816.50384559435, - "poolLiquidity": 760900596, - "poolStakedLiquidityUsd": 1.421539673174201e-05, + "poolAddress": "neutron1q2dlznjrxshx6ej9rqxz39h2xdjlqxvajpdl9yz0x5wz72gkd2wq36ch25", + "lpAddress": "neutron1sfmzjsw5s4m06u7ucw78nc2m2pvaxgslxpp5wyes55vz2e9fjz4skg23cx", + "dayVolumeUsd": 59.818477, + "poolLiquidityUsd": 99.77470203504902, + "poolLiquidity": 98069565, + "poolStakedLiquidityUsd": 0.000001017387015380272, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -2750,28 +3119,28 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth", - "token1PriceUsd": 4.33690795408481, - "token2Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token2PriceUsd": 11.61 + "token1Address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "token1PriceUsd": 0.2361622826314721, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "66152bca7deb69f605885358", - "address": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth", - "amount": "1298177930", - "symbol": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth" + "id": "6585a8d5e74086cc3b8e6828", + "address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "amount": "213839947", + "symbol": "ECLIP" }, { - "id": "66152bca7deb69f605885359", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "446720556", - "symbol": "TIA" + "id": "6585a8d5e74086cc3b8e6829", + "address": "untrn", + "amount": "72141144", + "symbol": "NTRN" } ], - "name": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth - TIA", - "isNew": true, + "name": "ECLIP - NTRN", + "isNew": false, "isIlliquid": true, "isDeregistered": false, "astroRewards": { @@ -2780,28 +3149,28 @@ "day": 0 }, "totalRewards": { - "apr": 0.20953017, - "apy": 0.20953017, - "day": 12.418542 + "apr": 0, + "apy": 0, + "day": 0.240008 }, "tradingFees": { - "apr": 0.20953017, - "apy": 0.20953017, - "day": 6.209271 + "apr": 0, + "apy": 0, + "day": 0.120004 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ps5gjwq8e4pxprw30q5xyka0sttf84z46xlg0vtt0walnyl49ckqsqdtha", - "lpAddress": "neutron1rgluklcmuf95c0tnt2kpzql4tfkqcypjjtptka9pvdfagp0x0nsskj7hqx", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 9637.751926695895, - "poolLiquidity": 1010, - "poolStakedLiquidityUsd": 9.542328640292965, - "poolStakedLiquidity": 1, + "poolAddress": "neutron15lp0rhnpf3splmq5a920ql9t67nws5epp454vrspft3agrcsch6sracngq", + "lpAddress": "neutron1pmef8ucfmpnwyzde9665pmm86ll39w9awm690pkvtecdwr0utt2qnh276f", + "dayVolumeUsd": 57.953257, + "poolLiquidityUsd": 353.119236346863, + "poolLiquidity": 16165993354, + "poolStakedLiquidityUsd": 352.9043933470141, + "poolStakedLiquidity": 16156157723, "config": { - "migrateToAddress": "neutron18k4rdpqq5vzacwp0pujur8d9lxamemh7w3mcmzujydzt3uq2xqgs25m4yh", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -2811,87 +3180,99 @@ "isBlocked": false, "prices": { "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "token2PriceUsd": 3.294877335893006e-05 + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/scrap", + "token2PriceUsd": 0 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "657dc5e9e8125415cfb3fae0", + "id": "6609248f05a65f3ca6fe5ea6", "address": "untrn", - "amount": "4425172442", + "amount": "516997677", "symbol": "NTRN" }, { - "id": "657dc5e9e8125415cfb3fae1", - "address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "amount": "145980815130111", - "symbol": "CORGI" + "id": "6609248f05a65f3ca6fe5ea7", + "address": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/scrap", + "amount": "506687245962", + "symbol": "SCRAP" } ], - "name": "NTRN - CORGI", + "name": "NTRN - SCRAP", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0 + "apr": 2.1094794867123365, + "apy": 2.1094794867123365, + "day": 2.2716901877703775 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.116058 }, - "rewards": [] - }, - { + "rewards": [ + { + "symbol": "NTRN", + "denom": "untrn", + "amountPerDay": "2.984613137922857184", + "amountPerSecond": "0.00003454413354077381", + "priceUsd": 0.683363, + "precision": 6, + "amountPerDayUsd": "2.039574187770377453829792", + "yield": 2.1094794867123365, + "isExternal": true, + "gaugeInfo": [] + } + ] + }, + { "chainId": "neutron-1", - "poolAddress": "neutron13hsh7972clgl46my38atwj7kcsqlfzyd07yeayztan65lgx25l7qnrd7ve", - "lpAddress": "neutron1kyfd3fs8y9d83y7tkgk6fecldmz6k6t3lf9e2pxm0sfwga0fxx6qamj75w", - "dayVolumeUsd": 27.847162, - "poolLiquidityUsd": 8940.186756924406, - "poolLiquidity": 7002664541, - "poolStakedLiquidityUsd": 1.276683568739353e-06, + "poolAddress": "neutron18wpdnllkvn7sesuat3y6vtsv92q4v7ff9929jcxp8w2d7kfs3ewsnecrux", + "lpAddress": "neutron1hqm55a0gtzn0geuqm3qm9nfack0ngv6la9h5rxst066fhzl42zdstvazp6", + "dayVolumeUsd": 57.704106, + "poolLiquidityUsd": 20948.2078575171, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 20.9482078575171, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08218369832394283, - "token2Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "token2PriceUsd": 4.939094843591347 + "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "token1PriceUsd": 2.891976172473291, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "65b7bb06c56514afb66c622e", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "53810817034", - "symbol": "NEWT" - }, - { - "id": "65b7bb06c56514afb66c622f", + "id": "6594190cfa5a2b66abcd7f29", "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "amount": "914705011", + "amount": "3613180921", "symbol": "CIRCUS" + }, + { + "id": "6594190cfa5a2b66abcd7f2a", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "1304220463", + "symbol": "ATOM" } ], - "name": "NEWT - CIRCUS", + "name": "CIRCUS - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -2901,25 +3282,25 @@ "day": 0 }, "totalRewards": { - "apr": 0.00249676, - "apy": 0.00249676, - "day": 0.12231 + "apr": 0.00201709, + "apy": 0.00201709, + "day": 0.231532 }, "tradingFees": { - "apr": 0.00249676, - "apy": 0.00249676, - "day": 0.061155 + "apr": 0.00201709, + "apy": 0.00201709, + "day": 0.115766 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron14p0qdqn9kwpwveyzfrujefy4ahmyfpzn98hp95rdwn8ntac39kasl99p6d", - "lpAddress": "neutron16r4sqwxl0garln9g76gndr7wntawnu66wtxjg04yh3ykadujc35spsw4ns", - "dayVolumeUsd": 14.582461, - "poolLiquidityUsd": 8551.983741928001, - "poolLiquidity": 74067874277, - "poolStakedLiquidityUsd": 1.154614442576564e-07, + "poolAddress": "neutron1029p2g5xxvq29yg0z2zlrty728y8y9v6ufgan7r35fc7h0ps6jcst62m5m", + "lpAddress": "neutron1vlzvml5dfmk5x0uchmu6xxt0799aez37q26l0z5uc79jazjt48nslnc46v", + "dayVolumeUsd": 55.421047, + "poolLiquidityUsd": 448.3441435675878, + "poolLiquidity": 424264068711, + "poolStakedLiquidityUsd": 1.056757278966449E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -2931,27 +3312,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1hf07vxv7f53xjwxq8ec2nuet9k0cq7qepxm7c6/mip229", - "token1PriceUsd": 0.00303425069885961, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "token1PriceUsd": 0.01062373236439887, + "token2Address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON", + "token2PriceUsd": 0.0000261634035921348 }, "stakeable": false, "assets": [ { - "id": "66057bf805a65f3ca6faa843", - "address": "factory/neutron1hf07vxv7f53xjwxq8ec2nuet9k0cq7qepxm7c6/mip229", - "amount": "1409241455418", - "symbol": "MIP229" + "id": "661b00106f8ac38ae0304dae", + "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "amount": "21373003155", + "symbol": "ATOM1KLFG" }, { - "id": "66057bf805a65f3ca6faa844", - "address": "untrn", - "amount": "3919332604", - "symbol": "NTRN" + "id": "661b00106f8ac38ae0304daf", + "address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON", + "amount": "8457732857507", + "symbol": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON" } ], - "name": "MIP229 - NTRN", + "name": "ATOM1KLFG - factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -2961,26 +3342,26 @@ "day": 0 }, "totalRewards": { - "apr": 0.0012486, - "apy": 0.0012486, - "day": 0.05851 + "apr": 0, + "apy": 0, + "day": 0.222364 }, "tradingFees": { - "apr": 0.0012486, - "apy": 0.0012486, - "day": 0.029255 + "apr": 0, + "apy": 0, + "day": 0.111182 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron107yytf64ul9l6ajxevfydt3pkxxwa0924srgt9u5qeaznq3xca2qwp72ls", - "lpAddress": "neutron1wmdfq56zkrfaaajxzlqmppe5t502wfpg3sa3c6pydsswgqxs93pq520pqw", - "dayVolumeUsd": 46.474823, - "poolLiquidityUsd": 7264.743432851123, - "poolLiquidity": 213787659878, - "poolStakedLiquidityUsd": 7248.129967509683, - "poolStakedLiquidity": 213298757013, + "poolAddress": "neutron14mssc4ycudkmznstwtcm3assr4gt40nq38x58ap574thgrxgzr0qpxhu9m", + "lpAddress": "neutron1fwuhcmag0nq7jl3mgn8ddpwrpr4w8y0d5y4sf3x47q64wlet5ftqku5lu3", + "dayVolumeUsd": 43.829313, + "poolLiquidityUsd": 14154.09024527075, + "poolLiquidity": 792399016, + "poolStakedLiquidityUsd": 0.00001786232688258191, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null @@ -2991,27 +3372,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "token1PriceUsd": 0.0002586977590521827, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token1PriceUsd": 8.05, + "token2Address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "token2PriceUsd": 0.000148994564869642 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "65ab69b00a570e4941655fb9", - "address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "amount": "14084247065183", - "symbol": "GODRD" + "id": "65a3eb8e59423b792c444e1c", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "880104333", + "symbol": "ATOM" }, { - "id": "65ab69b00a570e4941655fba", - "address": "untrn", - "amount": "3319138661", - "symbol": "NTRN" + "id": "65a3eb8e59423b792c444e1d", + "address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "amount": "47446364038888", + "symbol": "GODRD" } ], - "name": "GODRD - NTRN", + "name": "ATOM - GODRD", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -3021,39 +3402,26 @@ "day": 0 }, "totalRewards": { - "apr": 0.8769990234045579, - "apy": 0.8769990234045579, - "day": 17.508797706427114 + "apr": 0.00226778, + "apy": 0.00226778, + "day": 0.175882 }, "tradingFees": { - "apr": 0.00468432, - "apy": 0.00468432, - "day": 0.093234 + "apr": 0.00226778, + "apy": 0.00226778, + "day": 0.087941 }, - "rewards": [ - { - "symbol": "GODRD", - "denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "amountPerDay": "66977.76183266040321168", - "amountPerSecond": "0.77520557676690281495", - "priceUsd": 0.0002586280764308881, - "precision": 6, - "amountPerDayUsd": "17.322329706427114582348578212794693008", - "yield": 0.8723147034045579, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1lehuwzfcaf576p05snwejek66ejd8xrc3y2p5zrw0adeql88qfksp5mwx8", - "lpAddress": "neutron1pn9t8h52sj0s64as5wfr8hzhnx9judw2z7ty6h40kn3d0qt8wvnq58r38d", - "dayVolumeUsd": 239.786407, - "poolLiquidityUsd": 6884.087751268, - "poolLiquidity": 197525392382, - "poolStakedLiquidityUsd": 6884.08771641634, - "poolStakedLiquidity": 197525391382, + "poolAddress": "neutron1ylks7ezlht2r6n9yejvtk24r9s7j6m097zuh4htd8hrp2auyx72qu7ghzy", + "lpAddress": "neutron1zpmq58ffj9572pqywfh98nqnuy4reqgsz6pvdc5uquzauk7jwkusp4s4t8", + "dayVolumeUsd": 38.049241, + "poolLiquidityUsd": 2361.010353916291, + "poolLiquidity": 518476257969, + "poolStakedLiquidityUsd": 4.553748241714681E-9, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null @@ -3064,101 +3432,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/DANZA", - "token1PriceUsd": 0.0002502840141227025, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "token2PriceUsd": 0.000006832473420032125 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "6609c2e205a65f3ca6ff0017", - "address": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/DANZA", - "amount": "13752551826768", - "symbol": "DANZA" - }, - { - "id": "6609c2e205a65f3ca6ff0018", + "id": "6583551f8c4c7910aa87f5ca", "address": "untrn", - "amount": "3154943974", + "amount": "1730952372", "symbol": "NTRN" - } - ], - "name": "DANZA - NTRN", - "isNew": false, - "isIlliquid": true, - "isDeregistered": false, - "astroRewards": { - "apr": 0, - "apy": 0, - "day": 0 - }, - "totalRewards": { - "apr": 0.6393550042983875, - "apy": 0.6393550042983875, - "day": 12.539605384046187 - }, - "tradingFees": { - "apr": 0.02550518, - "apy": 0.02550518, - "day": 0.481041 - }, - "rewards": [ - { - "symbol": "DANZA", - "denom": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/DANZA", - "amountPerDay": "46299.98046719574040176", - "amountPerSecond": "0.53587940355550625465", - "priceUsd": 0.0002500546062270813, - "precision": 6, - "amountPerDayUsd": "11.577523384046186545505794591454183088", - "yield": 0.6138498242983875, - "isExternal": true, - "gaugeInfo": [] - } - ] - }, - { - "chainId": "neutron-1", - "poolAddress": "neutron134fg2rj3wtgjfwd8p9mn2w4d2rseucrkhzez28jds6pgkhnpy54q6dv7c9", - "lpAddress": "neutron18wuw6r2put9krzr40um0668pqxlq5xj6sn3zetvnynu50k560tfs8qut6p", - "dayVolumeUsd": 215.723967, - "poolLiquidityUsd": 5859.875331489829, - "poolLiquidity": 64435733576, - "poolStakedLiquidityUsd": 5859.646292228247, - "poolStakedLiquidity": 64433215039, - "config": { - "migrateToAddress": null, - "whitelisted": null - }, - "feeRate": [ - "0.26", - "0.45" - ], - "poolType": "concentrated", - "isBlocked": false, - "prices": { - "token1Address": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", - "token1PriceUsd": 0.001867095498829594, - "token2Address": "untrn", - "token2PriceUsd": 1.09 - }, - "stakeable": true, - "assets": [ - { - "id": "65b11e3dc56514afb666b455", - "address": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", - "amount": "1606944587500", - "symbol": "WOSMO" }, { - "id": "65b11e3dc56514afb666b456", - "address": "untrn", - "amount": "2623446170", - "symbol": "NTRN" + "id": "6583551f8c4c7910aa87f5cb", + "address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "amount": "172519806998339", + "symbol": "JIMMY" } ], - "name": "WOSMO - NTRN", + "name": "NTRN - JIMMY", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -3168,38 +3462,25 @@ "day": 0 }, "totalRewards": { - "apr": 0.6512622363464246, - "apy": 0.6512622363464246, - "day": 10.862640315169848 + "apr": 0, + "apy": 0, + "day": 0.152664 }, "tradingFees": { - "apr": 0.02537451, - "apy": 0.02537451, - "day": 0.407374 + "apr": 0, + "apy": 0, + "day": 0.076332 }, - "rewards": [ - { - "symbol": "WOSMO", - "denom": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", - "amountPerDay": "5548.78740499242898752", - "amountPerSecond": "0.0642220764466716318", - "priceUsd": 0.001810826687309992, - "precision": 6, - "amountPerDayUsd": "10.04789231516984714880201899293929984", - "yield": 0.6258877263464245, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", "poolAddress": "neutron1wt7auugl0m384sr4cd2lhz68gvmgw90p4ye67hy4p8wqh9a3ulmqzvx58w", "lpAddress": "neutron1jrxupk3v9p4qrxt2sgv72559ajzm8t9qpgkuxedfxm4k59pnf90qn7vaw3", - "dayVolumeUsd": 78.31354, - "poolLiquidityUsd": 5250.018326976186, + "dayVolumeUsd": 31.613844, + "poolLiquidityUsd": 1346.35933358508, "poolLiquidity": 2294157185, - "poolStakedLiquidityUsd": 2.288430087181749e-06, + "poolStakedLiquidityUsd": 5.868644669872295E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -3212,22 +3493,22 @@ "isBlocked": false, "prices": { "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token1PriceUsd": 0.2622099128699426, + "token1PriceUsd": 0.0292986375770778, "token2Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "token2PriceUsd": 4.939094843591347 + "token2PriceUsd": 2.891976172473291 }, "stakeable": false, "assets": [ { "id": "6602a6d005a65f3ca6f72f3e", "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "10002190248", + "amount": "23034451896", "symbol": "PROP16" }, { "id": "6602a6d005a65f3ca6f72f3f", "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "amount": "531948662", + "amount": "232187693", "symbol": "CIRCUS" } ], @@ -3241,26 +3522,26 @@ "day": 0 }, "totalRewards": { - "apr": 0.01092256, - "apy": 0.01092256, - "day": 0.314212 + "apr": 0, + "apy": 0, + "day": 0.126844 }, "tradingFees": { - "apr": 0.01092256, - "apy": 0.01092256, - "day": 0.157106 + "apr": 0, + "apy": 0, + "day": 0.063422 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1funkzd54mng0agn09l2cdz503mzwhcflwdvmuypd62xqewsl7x3q2kne53", - "lpAddress": "neutron1m0e6n42cpqk9nn9hu6rx6w24v8sh43xj9alda2vyc3dt4zqeeguqux6sg4", - "dayVolumeUsd": 166.05094, - "poolLiquidityUsd": 4408.199320879547, - "poolLiquidity": 7752723232, - "poolStakedLiquidityUsd": 5.68600114905217e-07, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1qf39n2p66xlzq3mc9fay3tcqz3500hpnnkq0sle2mjkw24fsjezqev4ujt", + "lpAddress": "neutron1xd3fjzwgkd7u4e3cjfp5vvjevae77xp0jt9dgrjaw0vrkwe2s7ys5pcual", + "dayVolumeUsd": 30.798424, + "poolLiquidityUsd": 763.217401086197, + "poolLiquidity": 21434391352, + "poolStakedLiquidityUsd": 763.2173654790557, + "poolStakedLiquidity": 21434390352, "config": { "migrateToAddress": null, "whitelisted": null @@ -3271,27 +3552,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "token1PriceUsd": 0.070957, - "token2Address": "untrn", - "token2PriceUsd": 1.09 + "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "token1PriceUsd": 0.01062373236439887, + "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token2PriceUsd": 0.0292986375770778 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "65bfab2ccfb48263b3d0f6ca", - "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "amount": "31233438871", - "symbol": "MARS" + "id": "660690fe05a65f3ca6fbc41f", + "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "amount": "35849172943", + "symbol": "ATOM1KLFG" }, { - "id": "65bfab2ccfb48263b3d0f6cb", - "address": "untrn", - "amount": "2010979999", - "symbol": "NTRN" + "id": "660690fe05a65f3ca6fbc420", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amount": "13050619888", + "symbol": "PROP16" } ], - "name": "MARS - NTRN", + "name": "ATOM1KLFG - PROP16", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -3301,28 +3582,41 @@ "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0.666238 + "apr": 2.940058635703667, + "apy": 2.940058635703667, + "day": 6.271251661084109 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.333119 + "day": 0.061785 }, - "rewards": [] + "rewards": [ + { + "symbol": "ATOM1KLFG", + "denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "amountPerDay": "577.514628365326128", + "amountPerSecond": "0.006684197087561645", + "priceUsd": 0.01064506656478178, + "precision": 6, + "amountPerDayUsd": "6.14768166108410852829182885234784", + "yield": 2.940058635703667, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron100ux47warps0w6rhq5u453h56e8neplac2yme5rr478krtq9ql7s2ytj4g", - "lpAddress": "neutron1nwfxhw6v7sg5asyymrazmt706y009d6ryklj4d9vvjgusdnq6ltqnd8l90", - "dayVolumeUsd": 126.186151, - "poolLiquidityUsd": 4290.302993134861, - "poolLiquidity": 64999506444497, - "poolStakedLiquidityUsd": 6.60051531675717e-11, + "poolAddress": "neutron1eqcl88ek70zp4pms4q3e3qff56lmf67dqg7nd57as0ge67geh5rqse5sph", + "lpAddress": "neutron1svx3sa9u8apwfgknp3jf4wzuel5km6s83pm0errfrklchgzend2s575m27", + "dayVolumeUsd": 27.997617, + "poolLiquidityUsd": 9185.644045520557, + "poolLiquidity": 1779733958057, + "poolStakedLiquidityUsd": 5.161245567461289E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1v2l6rk3j9x84w7kulgfkfm9acmflcqjzlsat8k2teux3vj5ec5yq7et2g4", "whitelisted": null }, "feeRate": [ @@ -3331,87 +3625,88 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token1PriceUsd": 0.2622099128699426, - "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token2PriceUsd": 4082.92 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "token2PriceUsd": 0.00000941 }, "stakeable": false, "assets": [ { - "id": "6600e67205a65f3ca6f5908b", - "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "8157364434", - "symbol": "PROP16" + "id": "657b340958343f3c5b9f2a84", + "address": "untrn", + "amount": "6713942674", + "symbol": "NTRN" }, { - "id": "6600e67205a65f3ca6f5908c", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "526917298317711929", - "symbol": "wstETH" + "id": "657b340958343f3c5b9f2a85", + "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "amount": "488830354332386", + "symbol": "CRBRUS" } ], - "name": "PROP16 - wstETH", + "name": "NTRN - CRBRUS", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0.506292 + "apr": 0.00223184, + "apy": 0.00223184, + "day": 0.112334 }, "tradingFees": { - "apr": 0, - "apy": 0, - "day": 0.253146 + "apr": 0.00223184, + "apy": 0.00223184, + "day": 0.056167 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ylks7ezlht2r6n9yejvtk24r9s7j6m097zuh4htd8hrp2auyx72qu7ghzy", - "lpAddress": "neutron1zpmq58ffj9572pqywfh98nqnuy4reqgsz6pvdc5uquzauk7jwkusp4s4t8", - "dayVolumeUsd": 2.307933, - "poolLiquidityUsd": 4251.235162469528, - "poolLiquidity": 518476257969, - "poolStakedLiquidityUsd": 8.199478928205329e-09, + "poolAddress": "neutron1q3rfmflhp79rz0sdjxdgf7t3x5twce9az6n0fegspkjstrax42kq0g96rn", + "lpAddress": "neutron1wwz2em8h6pgmjj9xzrj9zz7ctgs82ryxv0797ry9ljh3ug7xdtsscyrctk", + "dayVolumeUsd": 27.223605, + "poolLiquidityUsd": 152.682993474998, + "poolLiquidity": 91287092, + "poolStakedLiquidityUsd": 0.0000016725584102833, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "token2PriceUsd": 1.389860942377924e-05 + "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token1PriceUsd": 0.999896, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6583551f8c4c7910aa87f5ca", - "address": "untrn", - "amount": "1954784480", - "symbol": "NTRN" + "id": "65fc0be205a65f3ca6f0c852", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "77527639", + "symbol": "USDC" }, { - "id": "6583551f8c4c7910aa87f5cb", - "address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "amount": "152430018730137", - "symbol": "JIMMY" + "id": "65fc0be205a65f3ca6f0c853", + "address": "untrn", + "amount": "110045866", + "symbol": "NTRN" } ], - "name": "NTRN - JIMMY", + "name": "USDC - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -3423,23 +3718,23 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.00926 + "day": 0.104518 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.00463 + "day": 0.052259 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ehutw0zmqf3xcqm7jljev0grfut7htyxduqjznre5tzrq7feguhsqw8nv5", - "lpAddress": "neutron1jha5yat2s8x6f8ncjqzgzjkvzvwjccxxe7xgzgkx7lp7ffrxlu2s53pg5k", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 4073.880961075461, - "poolLiquidity": 1911252079743, - "poolStakedLiquidityUsd": 2.131524671064831e-09, + "poolAddress": "neutron13hsh7972clgl46my38atwj7kcsqlfzyd07yeayztan65lgx25l7qnrd7ve", + "lpAddress": "neutron1kyfd3fs8y9d83y7tkgk6fecldmz6k6t3lf9e2pxm0sfwga0fxx6qamj75w", + "dayVolumeUsd": 22.103939, + "poolLiquidityUsd": 5640.816891246423, + "poolLiquidity": 7002664541, + "poolStakedLiquidityUsd": 8.05524362647562E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -3452,27 +3747,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "token1PriceUsd": 1.378e-05, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "token2PriceUsd": 2.891976172473291 }, "stakeable": false, "assets": [ { - "id": "65b7bd40c56514afb66c6500", - "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "amount": "146991085404976", - "symbol": "CRBRUS" - }, - { - "id": "65b7bd40c56514afb66c6501", + "id": "65b7bb06c56514afb66c622e", "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "24923967234", + "amount": "50019278009", "symbol": "NEWT" + }, + { + "id": "65b7bb06c56514afb66c622f", + "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "amount": "983849819", + "symbol": "CIRCUS" } ], - "name": "CRBRUS - NEWT", + "name": "NEWT - CIRCUS", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -3482,60 +3777,61 @@ "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0 + "apr": 0.00320079, + "apy": 0.00320079, + "day": 0.098932 }, "tradingFees": { - "apr": 0, - "apy": 0, - "day": 0 + "apr": 0.00320079, + "apy": 0.00320079, + "day": 0.049466 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron18h8cql8q6t8vcx39xh6qgfpu5nwhkvxmez66azmkkjnce9nupfys0gqa87", - "lpAddress": "neutron1wuvlq9usr5hx9wv2h0qrhg0eqcrxxzy8eqcmjhvpq77su6urt8asd99lhv", - "dayVolumeUsd": 12.26635, - "poolLiquidityUsd": 3813.108461187561, - "poolLiquidity": 11871445248, - "poolStakedLiquidityUsd": 3.2120002082153e-07, + "poolAddress": "neutron1p8ggzaew0juugwzf7hv00n0uckktxyq3kg9a23t25e6rjq3s095qxtje8r", + "lpAddress": "neutron1ehzjgyy4rd43vvuu0c3ay7gpp8krtel2av8e6k4zt6gzy57hj9uqsq94xm", + "dayVolumeUsd": 21.662433, + "poolLiquidityUsd": 2042.527123778294, + "poolLiquidity": 1000000001000, + "poolStakedLiquidityUsd": 2.042527103353023E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1zhjrgpvu2th5t8w5ndfw9lwsqp95sgr46kf4j3jrcfe2lep0hlnqfczpjm", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token2PriceUsd": 0.159201 + "token1Address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "token1PriceUsd": 0.0000183176135627049, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "659fcc46fdb9cb40c86ca24e", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "11694245547", - "symbol": "APOLLO" + "id": "65c91a6868fc77acd9fdd7c7", + "address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "amount": "56710427938012", + "symbol": "CORGI" }, { - "id": "659fcc46fdb9cb40c86ca24f", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "12120998280", - "symbol": "ASTRO" + "id": "65c91a6868fc77acd9fdd7c8", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "17959178297", + "symbol": "NEWT" } ], - "name": "APOLLO - ASTRO", + "name": "CORGI - NEWT", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -3544,27 +3840,27 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.049216 + "day": 0.09197 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.024608 + "day": 0.045985 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1fa7dlwkaypg56cy6jgncu0n4mjhfclukr4mnwvvrvj6697s3x68sfly3w3", - "lpAddress": "neutron1asz50fqagqj8v94pnxc6pcj7dd4vr980flsk469vwfs65h8erres8jen6x", - "dayVolumeUsd": 246.247744, - "poolLiquidityUsd": 3724.455551589188, - "poolLiquidity": 5337143487, - "poolStakedLiquidityUsd": 3724.454853752309, - "poolStakedLiquidity": 5337142487, + "poolAddress": "neutron1jpm7j2cmj2mmk5pnxv20dxz869tw2vyy87qdl0xjasqnn23l04psudtf2y", + "lpAddress": "neutron1vw93hy8tm3xekpz9286428gesmmc8dqxmw8cujsh3fcu3rt0hvdqvlyrrl", + "dayVolumeUsd": 19.803924, + "poolLiquidityUsd": 1835.376331990472, + "poolLiquidity": 2207742367, + "poolStakedLiquidityUsd": 8.31336282442334E-7, + "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, - "whitelisted": null + "migrateToAddress": "neutron1jh27klc7z8xk3nr32nynvk40qm9f64eypq7nj2w48egtehu35n3q59pkfn", + "whitelisted": true }, "feeRate": [ "0.30" @@ -3572,68 +3868,55 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "token1PriceUsd": 0.01115149534075275, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "6607c5a905a65f3ca6fd1738", - "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "amount": "166587951562", - "symbol": "ATOM1KLFG" + "id": "657ba6b283cb746a55cea61f", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "7008579090", + "symbol": "ASTRO.cw20" }, { - "id": "6607c5a905a65f3ca6fd1739", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "171576359", - "symbol": "ATOM" + "id": "657ba6b283cb746a55cea620", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "959724752", + "symbol": "USDC.axl" } ], - "name": "ATOM1KLFG - ATOM", + "name": "ASTRO.cw20 - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 1.2747150233527438, - "apy": 1.2747150233527438, - "day": 13.995200125690724 + "apr": 0.00790107, + "apy": 0.00790107, + "day": 0.07946 }, "tradingFees": { - "apr": 0, - "apy": 0, - "day": 0.494013 + "apr": 0.00790107, + "apy": 0.00790107, + "day": 0.03973 }, - "rewards": [ - { - "symbol": "ATOM1KLFG", - "denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "amountPerDay": "1167.327161271111192768", - "amountPerSecond": "0.01351073103323045362", - "priceUsd": 0.0111426980860508, - "precision": 6, - "amountPerDayUsd": "13.0071741256907242345417430906406144", - "yield": 1.2747150233527438, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1p8ggzaew0juugwzf7hv00n0uckktxyq3kg9a23t25e6rjq3s095qxtje8r", - "lpAddress": "neutron1ehzjgyy4rd43vvuu0c3ay7gpp8krtel2av8e6k4zt6gzy57hj9uqsq94xm", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 3322.14284562723, - "poolLiquidity": 1000000001000, - "poolStakedLiquidityUsd": 3.322142812405802e-09, + "poolAddress": "neutron1jpzzw0wzrerac8dm5kcxhwgl4r3jsux2c8qrkp09a5ch6myfgj4qzptxm8", + "lpAddress": "neutron1kvq3n7cdqnsu7z8m4x9ermpfyx3u2entnw7lqlej6p2a6sw23xcq5sehhg", + "dayVolumeUsd": 19.320139, + "poolLiquidityUsd": 1279.469859806919, + "poolLiquidity": 11665341, + "poolStakedLiquidityUsd": 0.0001096813080566489, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -3646,27 +3929,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "token1PriceUsd": 3.294877335893006e-05, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.998656, + "token2Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "token2PriceUsd": 2997.89 }, "stakeable": false, "assets": [ { - "id": "65c91a6868fc77acd9fdd7c7", - "address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "amount": "49635221137668", - "symbol": "CORGI" + "id": "657b91554a02d1029803f07d", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "634648485", + "symbol": "USDC.axl" }, { - "id": "65c91a6868fc77acd9fdd7c8", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "20523817109", - "symbol": "NEWT" + "id": "657b91554a02d1029803f07e", + "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "amount": "215376262094592723", + "symbol": "WETH.axl" } ], - "name": "CORGI - NEWT", + "name": "USDC.axl - WETH.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -3678,23 +3961,23 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.07057 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.035285 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1qmg55nvtjyt2h5n7uueeqd62sytkmtws6w8cekfaqak5shdzq4hqaxjpvt", - "lpAddress": "neutron132kxjr2qsx2456dp32cxl5yn4mzz9vtluhzl5f8t88u27dmgf46qq0gq6q", - "dayVolumeUsd": 28.285112, - "poolLiquidityUsd": 2843.719762265, - "poolLiquidity": 5181603, - "poolStakedLiquidityUsd": 0.0005488108143879246, + "poolAddress": "neutron1p04tjcuh33p7ruag3h7mh6pe30mujkcs9kkz4634gqpaah4fg20qdlpgla", + "lpAddress": "neutron1t45ytzyz382xelm6x6yn9xnl5ckhgc2xyn86vf4056fys6mwna3svwru49", + "dayVolumeUsd": 19.197351, + "poolLiquidityUsd": 1441.476036789856, + "poolLiquidity": 12027312, + "poolStakedLiquidityUsd": 0.0001198502239560909, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -3707,27 +3990,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", - "token2PriceUsd": 69092 + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.998656, + "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token2PriceUsd": 3466.56 }, "stakeable": false, "assets": [ { - "id": "65d5ec1268fc77acd9115d76", - "address": "untrn", - "amount": "1301426155", - "symbol": "NTRN" + "id": "657ba53d6fce3c3f556217ef", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "714953315", + "symbol": "USDC.axl" }, { - "id": "65d5ec1268fc77acd9115d77", - "address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", - "amount": "2060823", - "symbol": "WBTC (Osmosis)" + "id": "657ba53d6fce3c3f556217f0", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "209857501109230964", + "symbol": "wstETH" } ], - "name": "NTRN - WBTC (Osmosis)", + "name": "USDC.axl - wstETH", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -3739,27 +4022,27 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.12812 + "day": 0.075042 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.06406 + "day": 0.037521 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron18aud0kjwzdjj3m2cqm7gqyyw556ctgp3h4metpe0kxad0ewx6s8sp3zknv", - "lpAddress": "neutron19p7fqw2njtf90y5atdv8367ehrzspjla6wu73z70ey9hk5pvtlqqx7gvzc", - "dayVolumeUsd": 32.170802, - "poolLiquidityUsd": 2476.320808166, - "poolLiquidity": 834048129, - "poolStakedLiquidityUsd": 2.969038262964621e-06, + "poolAddress": "neutron1s2lr8u69xammmg3s8hemegcz57y07ae0wa7c7d2adupp6du3neyqd8ygp7", + "lpAddress": "neutron12zfwyzcpzyqwc7secjcmxa267n9quurr037sw449znnhdsn4w8qqpxcu7y", + "dayVolumeUsd": 18.849147, + "poolLiquidityUsd": 755.105844937188, + "poolLiquidity": 935432784, + "poolStakedLiquidityUsd": 8.072261928889646E-7, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron194f0u63jenquqvxr5hj2glq4sdhx60arn8y86299c8qme6pspjesv444yd", - "whitelisted": null + "migrateToAddress": "neutron1wj4tfjdd8qgzet4m8nv6v27j42qnz6j6cty5apy3vtcn45edspwsu4vt25", + "whitelisted": true }, "feeRate": [ "0.30" @@ -3767,27 +4050,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "token1PriceUsd": 1.5, + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657ba6d36fce3c3f5562314b", - "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "amount": "825876648", - "symbol": "AXL" + "id": "657ba6b2eacdd4555fc6fcdd", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "2910485105", + "symbol": "ASTRO.cw20" }, { - "id": "657ba6d36fce3c3f5562314c", + "id": "657ba6b2eacdd4555fc6fcde", "address": "untrn", - "amount": "1134285826", + "amount": "572362272", "symbol": "NTRN" } ], - "name": "AXL - NTRN", + "name": "ASTRO.cw20 - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": true, @@ -3797,85 +4080,86 @@ "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0.129078 + "apr": 0.01827837, + "apy": 0.01827837, + "day": 0.075628 }, "tradingFees": { - "apr": 0, - "apy": 0, - "day": 0.064539 + "apr": 0.01827837, + "apy": 0.01827837, + "day": 0.037814 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1jpm7j2cmj2mmk5pnxv20dxz869tw2vyy87qdl0xjasqnn23l04psudtf2y", - "lpAddress": "neutron1vw93hy8tm3xekpz9286428gesmmc8dqxmw8cujsh3fcu3rt0hvdqvlyrrl", - "dayVolumeUsd": 14.230694, - "poolLiquidityUsd": 2068.164729486532, - "poolLiquidity": 2208667880, - "poolStakedLiquidityUsd": 9.363855689663689e-07, + "poolAddress": "neutron1h3yv07ftzkfml82x5ev84ujhe3darvda0xu8ldtyxgpvps28vvms44mels", + "lpAddress": "neutron1y34aemcveq07cfxcjpvcqseumdxmvrlv8lufm4k5zxlwg8gpkmlstpec96", + "dayVolumeUsd": 12.649662, + "poolLiquidityUsd": 178.350018354256, + "poolLiquidity": 27903833, + "poolStakedLiquidityUsd": 0.000006391595676271971, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1jh27klc7z8xk3nr32nynvk40qm9f64eypq7nj2w48egtehu35n3q59pkfn", + "migrateToAddress": null, "whitelisted": true }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, + "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token1PriceUsd": 9.53, "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "657ba6b283cb746a55cea61f", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "6437716032", - "symbol": "ASTRO" + "id": "657ba1666fce3c3f5561d29b", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "9413021", + "symbol": "TIA" }, { - "id": "657ba6b283cb746a55cea620", + "id": "657ba1666fce3c3f5561d29c", "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "1043962915", + "amount": "88763226", "symbol": "USDC.axl" } ], - "name": "ASTRO - USDC.axl", + "name": "TIA - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 0.00503846, - "apy": 0.00503846, - "day": 0.057098 + "apr": 0.04760041, + "apy": 0.04760041, + "day": 0.046518 }, "tradingFees": { - "apr": 0.00503846, - "apy": 0.00503846, - "day": 0.028549 + "apr": 0.04760041, + "apy": 0.04760041, + "day": 0.023259 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1860zssqw5lcfaz8u4xjxwr8204s0ef90slaf507upurmj8jcne4qge0nuw", - "lpAddress": "neutron18fn95urks6gcu3z7snyx6y44hc9dxgsv4prsepdau437wmhjhvws5w9744", - "dayVolumeUsd": 7.288537, - "poolLiquidityUsd": 1972.698246343531, - "poolLiquidity": 213425688743, - "poolStakedLiquidityUsd": 9.243021569158454e-09, + "poolAddress": "neutron1y4gw5srpkt2e7q35tsahdxhz4d4grj4v6yv62caxj5whmflcgygqc7cwam", + "lpAddress": "neutron1z5lwsfwayg3e3hfvqvwufe65ss0tp7kdyqjvdkn4wh60zsaa6m5s4ts9qp", + "dayVolumeUsd": 10.520686, + "poolLiquidityUsd": 58.37547712693608, + "poolLiquidity": 24108707216, + "poolStakedLiquidityUsd": 2.421344147557908E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -3887,28 +4171,28 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "token1PriceUsd": 0.0002586977590521827, + "token1Address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON", + "token1PriceUsd": 0.0000261634035921348, "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "65de0f1c68fc77acd91b2295", - "address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "amount": "3829801846180", - "symbol": "GODRD" + "id": "661bffb973bed87952d06dd8", + "address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON", + "amount": "1099984543683", + "symbol": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON" }, { - "id": "65de0f1c68fc77acd91b2296", + "id": "661bffb973bed87952d06dd9", "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "11948076214", + "amount": "529548462", "symbol": "NEWT" } ], - "name": "GODRD - NEWT", - "isNew": false, + "name": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/DON - NEWT", + "isNew": true, "isIlliquid": true, "isDeregistered": false, "astroRewards": { @@ -3919,116 +4203,116 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.029244 + "day": 0.042212 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.014622 + "day": 0.021106 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1p04tjcuh33p7ruag3h7mh6pe30mujkcs9kkz4634gqpaah4fg20qdlpgla", - "lpAddress": "neutron1t45ytzyz382xelm6x6yn9xnl5ckhgc2xyn86vf4056fys6mwna3svwru49", - "dayVolumeUsd": 11.574301, - "poolLiquidityUsd": 1565.148145839812, - "poolLiquidity": 12027312, - "poolStakedLiquidityUsd": 0.0001301328298326117, + "poolAddress": "neutron1ps5gjwq8e4pxprw30q5xyka0sttf84z46xlg0vtt0walnyl49ckqsqdtha", + "lpAddress": "neutron1rgluklcmuf95c0tnt2kpzql4tfkqcypjjtptka9pvdfagp0x0nsskj7hqx", + "dayVolumeUsd": 8.795121, + "poolLiquidityUsd": 5686.588247558051, + "poolLiquidity": 1010, + "poolStakedLiquidityUsd": 5.630285393621833, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron18k4rdpqq5vzacwp0pujur8d9lxamemh7w3mcmzujydzt3uq2xqgs25m4yh", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token2PriceUsd": 4082.92 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "token2PriceUsd": 0.0000183176135627049 }, "stakeable": false, "assets": [ { - "id": "657ba53d6fce3c3f556217ef", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "790897182", - "symbol": "USDC.axl" + "id": "657dc5e9e8125415cfb3fae0", + "address": "untrn", + "amount": "4163460945", + "symbol": "NTRN" }, { - "id": "657ba53d6fce3c3f556217f0", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "189759524061194371", - "symbol": "wstETH" + "id": "657dc5e9e8125415cfb3fae1", + "address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "amount": "155198454571246", + "symbol": "CORGI" } ], - "name": "USDC.axl - wstETH", + "name": "NTRN - CORGI", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 0, - "apy": 0, - "day": 0.048182 + "apr": 0.00113249, + "apy": 0.00113249, + "day": 0.035288 }, "tradingFees": { - "apr": 0, - "apy": 0, - "day": 0.024091 + "apr": 0.00113249, + "apy": 0.00113249, + "day": 0.017644 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1qf39n2p66xlzq3mc9fay3tcqz3500hpnnkq0sle2mjkw24fsjezqev4ujt", - "lpAddress": "neutron1xd3fjzwgkd7u4e3cjfp5vvjevae77xp0jt9dgrjaw0vrkwe2s7ys5pcual", - "dayVolumeUsd": 139.613753, - "poolLiquidityUsd": 1506.339049082568, - "poolLiquidity": 13848810258, - "poolStakedLiquidityUsd": 1506.338940312282, - "poolStakedLiquidity": 13848809258, + "poolAddress": "neutron1tx7vhpvd5yjscf3nurxxpn695la9ka6f8zezgrnl7y4lsvemccsqwc3lz3", + "lpAddress": "neutron1gpalzmmp3xcq5dqf2a2clwx5ps85hckhg2fvpfzd90wntut6uspq2qya3x", + "dayVolumeUsd": 8.303799, + "poolLiquidityUsd": 1045.795563162624, + "poolLiquidity": 770278353118, + "poolStakedLiquidityUsd": 193.0159035440799, + "poolStakedLiquidity": 142165426537, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "token1PriceUsd": 0.01115149534075275, - "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token2PriceUsd": 0.2622099128699426 + "token1Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "token1PriceUsd": 0, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": true, "assets": [ { - "id": "660690fe05a65f3ca6fbc41f", - "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "amount": "66916259026", - "symbol": "ATOM1KLFG" + "id": "65a66ec3e8848f944ef5a606", + "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "amount": "568180271668476", + "symbol": "ASTROPEPE" }, { - "id": "660690fe05a65f3ca6fbc420", - "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "2898909084", - "symbol": "PROP16" + "id": "65a66ec3e8848f944ef5a607", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "1047203004", + "symbol": "USDC.axl" } ], - "name": "ATOM1KLFG - PROP16", + "name": "ASTROPEPE - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4038,25 +4322,25 @@ "day": 0 }, "totalRewards": { - "apr": 1.559277865530573, - "apy": 1.559277865530573, - "day": 6.995239144152659 + "apr": 0, + "apy": 0, + "day": 0.02508 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.280084 + "day": 0.01254 }, "rewards": [ { - "symbol": "ATOM1KLFG", - "denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "amountPerDay": "577.514628365326128", - "amountPerSecond": "0.006684197087561645", - "priceUsd": 0.0111426980860508, + "symbol": "ASTROPEPE", + "denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "amountPerDay": "7693190.17059364706779632", + "amountPerSecond": "89.04155290038943365505", + "priceUsd": 0, "precision": 6, - "amountPerDayUsd": "6.4350711441526584983523495753024", - "yield": 1.559277865530573, + "amountPerDayUsd": "0", + "yield": 0, "isExternal": true, "gaugeInfo": [] } @@ -4064,44 +4348,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron12u0dqfv4w5s3338sztj4km67wgw7pvzmc94qljsv98rmq3dm952s6gt3j6", - "lpAddress": "neutron1u4lqplqax260mu54qf2tkyyzjkga2j57jzgjz8asm8vkhdc6xafskw7st7", - "dayVolumeUsd": 154.500866, - "poolLiquidityUsd": 1473.818387740116, - "poolLiquidity": 639550139306, - "poolStakedLiquidityUsd": 1473.818385435655, - "poolStakedLiquidity": 639550138306, + "poolAddress": "neutron1xvv4zlprj4ukvthx94hfa3fauv3spv09wljp8zeknuzkurwhcp0s3krnh0", + "lpAddress": "neutron1lwdnxdldqtma7mthzrg6ac6y3tggrlwac8fdfjxrkdu0zxunfexs476m7k", + "dayVolumeUsd": 5.172151, + "poolLiquidityUsd": 36.26345866264037, + "poolLiquidity": 5000001000, + "poolStakedLiquidityUsd": 7.252690281989729E-9, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "token1Address": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", "token1PriceUsd": 0, "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token2PriceUsd": 0.0558893844270055 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "65c4f48e68fc77acd9fa18bb", - "address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", - "amount": "23182480752997", - "symbol": "BADDOG" + "id": "65b786f0c56514afb66c33d8", + "address": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", + "amount": "38885072083", + "symbol": "WOSMO" }, { - "id": "65c4f48e68fc77acd9fa18bc", + "id": "65b786f0c56514afb66c33d9", "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "17933220551", + "amount": "648843408", "symbol": "NEWT" } ], - "name": "BADDOG - NEWT", + "name": "WOSMO - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4113,68 +4398,56 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.2777 + "day": 0.022954 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.13885 + "day": 0.011477 }, - "rewards": [ - { - "symbol": "BADDOG", - "denom": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", - "amountPerDay": "432194.982965752570248096", - "amountPerSecond": "5.00225674728880289639", - "priceUsd": 0, - "precision": 6, - "amountPerDayUsd": "0", - "yield": 0, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1v2zgmqzkvhkx5t8y8nhpyeykuuu0t7kszz0645clzucuulqtal0snnmk0l", - "lpAddress": "neutron167n6rhrjzq0gznyvlwph6gh97xnf8e6s9x409xecdcqq7austeksuh8vxq", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 1416.089142690337, - "poolLiquidity": 108642179932, - "poolStakedLiquidityUsd": 1.303443232015901e-08, + "poolAddress": "neutron15th0f33w9rq35la0aqe66w8hmlr07wy5arap736x4rv836pddn0s8322fg", + "lpAddress": "neutron12z3hctlcaye2djjeuuwdyalxg3nftfsnppt7x5ml8v5f8q6n464supnxm3", + "dayVolumeUsd": 4.214809, + "poolLiquidityUsd": 176.5713683340743, + "poolLiquidity": 749090358, + "poolStakedLiquidityUsd": 2.357143787091971E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", - "token2PriceUsd": 42.23 + "token1Address": "ibc/A139C0E0B5E87CBA8EAEEB12B9BEE13AC7C814CFBBFA87BBCADD67E31003466C", + "token1PriceUsd": 0.02026527, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657314151ce1864ab9d3f024", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "712127748", - "symbol": "USDC.axl" + "id": "660ea6a905a65f3ca603b965", + "address": "ibc/A139C0E0B5E87CBA8EAEEB12B9BEE13AC7C814CFBBFA87BBCADD67E31003466C", + "amount": "4299699553", + "symbol": "STARS" }, { - "id": "657314151ce1864ab9d3f025", - "address": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", - "amount": "16680828771111", - "symbol": "KSM" + "id": "660ea6a905a65f3ca603b966", + "address": "untrn", + "amount": "130943350", + "symbol": "NTRN" } ], - "name": "USDC.axl - KSM", + "name": "STARS - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4186,27 +4459,27 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.015952 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.007976 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron14fv4gvf962xf565k53mx2zv6nj4cqwdz6ft8gv628046hv3c79asvntft2", - "lpAddress": "neutron1xj8y82q6q9ta8hgf8w6ntmgxkez3sc6d9rfy7cqadcwa756nsccq8ss9vg", - "dayVolumeUsd": 35.000874, - "poolLiquidityUsd": 1403.48494435324, - "poolLiquidity": 23577777624, - "poolStakedLiquidityUsd": 5.952575202988353e-08, + "poolAddress": "neutron1pejs80dp0ewvwgerchk35e4l4et5kxxcwdsdach2z66r2gdudyss8jwdmf", + "lpAddress": "neutron1y9v53n8l4quwul4gcu5084jpr493pv803leqnmrus8s5zlllpjlqymr0v2", + "dayVolumeUsd": 3.458031, + "poolLiquidityUsd": 13.55113642952902, + "poolLiquidity": 22207671047, + "poolStakedLiquidityUsd": 6.102007004134193E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ "0.30" @@ -4214,27 +4487,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", - "token2PriceUsd": 8.75 + "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "token1PriceUsd": 0.01062373236439887, + "token2Address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "657b64dd3e3065bec9abd6b2", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "723031386", - "symbol": "USDC.axl" + "id": "6608f06c05a65f3ca6fe3653", + "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "amount": "1275553258", + "symbol": "ATOM1KLFG" }, { - "id": "657b64dd3e3065bec9abd6b3", - "address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", - "amount": "778206581792", - "symbol": "DOT" + "id": "6608f06c05a65f3ca6fe3654", + "address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "amount": "388701929467", + "symbol": "BADDOG" } ], - "name": "USDC.axl - DOT", + "name": "ATOM1KLFG - BADDOG", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4244,25 +4517,25 @@ "day": 0 }, "totalRewards": { - "apr": 0.01826085, - "apy": 0.01826085, - "day": 0.140432 + "apr": 0, + "apy": 0, + "day": 0.006706 }, "tradingFees": { - "apr": 0.01826085, - "apy": 0.01826085, - "day": 0.070216 + "apr": 0, + "apy": 0, + "day": 0.003353 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1jpzzw0wzrerac8dm5kcxhwgl4r3jsux2c8qrkp09a5ch6myfgj4qzptxm8", - "lpAddress": "neutron1kvq3n7cdqnsu7z8m4x9ermpfyx3u2entnw7lqlej6p2a6sw23xcq5sehhg", - "dayVolumeUsd": 15.096597, - "poolLiquidityUsd": 1388.021659119056, - "poolLiquidity": 11665341, - "poolStakedLiquidityUsd": 0.0001189868053680547, + "poolAddress": "neutron1zfpthdexp60nm5lzwhph8ccrm8pra5pj2ssyn5pekz6vdwzrvcsq0epd58", + "lpAddress": "neutron1vu9f687t48dzpqx2wm8cx09u3flmunpe6pxkh0e6drqkpjeu58yshlhpw4", + "dayVolumeUsd": 2.133623, + "poolLiquidityUsd": 105.780584976827, + "poolLiquidity": 20694267, + "poolStakedLiquidityUsd": 0.000005111588875161504, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -4275,27 +4548,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "token2PriceUsd": 3532.14 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", + "token2PriceUsd": 9.53 }, "stakeable": false, "assets": [ { - "id": "657b91554a02d1029803f07d", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "706820542", - "symbol": "USDC.axl" + "id": "65c6486068fc77acd9fb5611", + "address": "untrn", + "amount": "78258833", + "symbol": "NTRN" }, { - "id": "657b91554a02d1029803f07e", - "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "amount": "192989977372577388", - "symbol": "WETH.axl" + "id": "65c6486068fc77acd9fb5612", + "address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", + "amount": "5490904", + "symbol": "stTIA" } ], - "name": "USDC.axl - WETH.axl", + "name": "NTRN - stTIA", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4307,23 +4580,23 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.067516 + "day": 0.009538 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.033758 + "day": 0.004769 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1tytqtunc9qhtethu439tcvwarfgd8rwaa24m55nj3092ur72pjjsawkgu6", - "lpAddress": "neutron1w6qnyq72h90yl93gl8td653sm005d4dtmnd30urtmeq6xndvcd3qquaahk", - "dayVolumeUsd": 0, - "poolLiquidityUsd": 1342.520820592293, - "poolLiquidity": 17760090017, - "poolStakedLiquidityUsd": 7.559200539638001e-08, + "poolAddress": "neutron1xrzzrndy8eyv7j0q87e20ea9xgrdhq7xyws6kqljua73y0z72despt9wef", + "lpAddress": "neutron1u0uvttvye9sly9qqp5y308yz5pplesjr2w8tej4gynxj294sy2yq27takq", + "dayVolumeUsd": 2.130039, + "poolLiquidityUsd": 40.44365342256, + "poolLiquidity": 7663297651, + "poolStakedLiquidityUsd": 5.277578304161752E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -4335,27 +4608,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "token1PriceUsd": 4.939094843591347, - "token2Address": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", - "token2PriceUsd": 0 + "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "token1PriceUsd": 0, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999896 }, "stakeable": false, "assets": [ { - "id": "65cb27cf68fc77acd900490d", - "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "amount": "271815153", - "symbol": "CIRCUS" + "id": "65995c8c84dc55803c282652", + "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "amount": "1706897303730", + "symbol": "BAD" }, { - "id": "65cb27cf68fc77acd900490e", - "address": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", - "amount": "1231090705623", - "symbol": "AUTISM" + "id": "65995c8c84dc55803c282653", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "40447860", + "symbol": "USDC" } ], - "name": "CIRCUS - AUTISM", + "name": "BAD - USDC", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4367,130 +4640,115 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.006274 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0 + "day": 0.003137 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1q0mdh594nxvvqr5e843ss0kx6004sfa97s36sshgs9jzc7yn72es4ql452", - "lpAddress": "neutron145rnrgw0exyzezc307s4t6gr3cknl4p0yq70pyn8cknc2477jaeqch4fhk", - "dayVolumeUsd": 62.550147, - "poolLiquidityUsd": 1243.850434899, - "poolLiquidity": 229879608, - "poolStakedLiquidityUsd": 1243.845024021342, - "poolStakedLiquidity": 229878608, + "poolAddress": "neutron1c9m39c3c2xr0axplqh4zaznx8chx3e5f368ddhwqcputuxmyckfsxra8xk", + "lpAddress": "neutron1knz3a9pau2nwxcwwspc8e23s5drzstaewtar9szv40hwwqnze5xszg645a", + "dayVolumeUsd": 2.121087, + "poolLiquidityUsd": 126.236246402772, + "poolLiquidity": 25807365072, + "poolStakedLiquidityUsd": 4.891481406258937E-9, + "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1trjxrt39sm7ux9tawqslu5v69lt4ythxwa8lp9u2wtvsd2jazpzsrn3kyc", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/74B554DD3FF10F5D60E30175ADFB47E59F77F7C57024A8104A4F78CDC2EAD125", - "token2PriceUsd": 6.71 + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "token2PriceUsd": 0 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "66153bc47deb69f60588605a", + "id": "6588a19afbb4c9d91fa989d1", "address": "untrn", - "amount": "568959339", + "amount": "184820988", "symbol": "NTRN" }, { - "id": "66153bc47deb69f60588605b", - "address": "ibc/74B554DD3FF10F5D60E30175ADFB47E59F77F7C57024A8104A4F78CDC2EAD125", - "amount": "92863755", - "symbol": "SAGA" + "id": "6588a19afbb4c9d91fa989d2", + "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "amount": "5259687149500", + "symbol": "BAD" } ], - "name": "NTRN - SAGA", - "isNew": true, + "name": "NTRN - BAD", + "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 3.7535210416004685, - "apy": 3.7535210416004685, - "day": 13.048162685353828 + "apr": 0, + "apy": 0, + "day": 0.002326 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.128467 + "day": 0.001163 }, - "rewards": [ - { - "symbol": "ASTRO", - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amountPerDay": "80.361552577754916864", - "amountPerSecond": "0.00093011056224253376", - "priceUsd": 0.159171, - "precision": 6, - "amountPerDayUsd": "12.791228685353827872159744", - "yield": 3.7535210416004685, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron17wlm5hwarf77acc0wk0nvcsk38hcl25522e0kvvvzaqdgdt7y4ss78ds0v", - "lpAddress": "neutron1u6cqvmnxdd0tv423c49esqxuahfr8kr2nsmzgtkszcct06vkejzqqnc55m", - "dayVolumeUsd": 22.777857, - "poolLiquidityUsd": 1230.084073640066, - "poolLiquidity": 200001000, - "poolStakedLiquidityUsd": 6.1503896162461e-06, + "poolAddress": "neutron1lj0zf62aglkzeq8jpu0ld9n24aqscqkgr0287rxcrdmn0rya4dvsndymwf", + "lpAddress": "neutron1f9znwwrgm0eqr3nukfc4anfn6vl339ks8nc5w5qlgmtk0mw2uwwsqlnemw", + "dayVolumeUsd": 2.113792, + "poolLiquidityUsd": 13.41240540244278, + "poolLiquidity": 13710455576, + "poolStakedLiquidityUsd": 9.78261103463759E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ - "0.03", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "token1PriceUsd": 3.12974913311477, - "token2Address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", - "token2PriceUsd": 3.02 + "token1Address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "token1PriceUsd": 0, + "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token2PriceUsd": 0.0292986375770778 }, "stakeable": false, "assets": [ { - "id": "65b3d43fc56514afb6690208", - "address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "amount": "193985274075851697190", - "symbol": "DYDX" + "id": "660753f405a65f3ca6fca466", + "address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "amount": "417084156240", + "symbol": "BADDOG" }, { - "id": "65b3d43fc56514afb6690209", - "address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", - "amount": "206277758365608699370", - "symbol": "stDYDX" + "id": "660753f405a65f3ca6fca467", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amount": "457782563", + "symbol": "PROP16" } ], - "name": "DYDX - stDYDX", + "name": "BADDOG - PROP16", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4500,58 +4758,57 @@ "day": 0 }, "totalRewards": { - "apr": 0.00102103, - "apy": 0.00102103, - "day": 0.006882 + "apr": 0, + "apy": 0, + "day": 0.008482 }, "tradingFees": { - "apr": 0.00102103, - "apy": 0.00102103, - "day": 0.003441 + "apr": 0, + "apy": 0, + "day": 0.004241 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1tx7vhpvd5yjscf3nurxxpn695la9ka6f8zezgrnl7y4lsvemccsqwc3lz3", - "lpAddress": "neutron1gpalzmmp3xcq5dqf2a2clwx5ps85hckhg2fvpfzd90wntut6uspq2qya3x", - "dayVolumeUsd": 79.081992, - "poolLiquidityUsd": 1202.65499448114, - "poolLiquidity": 801725837401, - "poolStakedLiquidityUsd": 260.4337100834233, - "poolStakedLiquidity": 173612910820, + "poolAddress": "neutron16gpxa7rg0lvagq7qhuhsh2ru4590g7wx5nxp478knjyelvj0m3zqymlpuj", + "lpAddress": "neutron1096y5ft0nfyjet5ktxd38maunqv9dljtdwx28dcslaa9p9nmgq8qqr5er9", + "dayVolumeUsd": 1.799444, + "poolLiquidityUsd": 58.38983854338662, + "poolLiquidity": 50000073539, + "poolStakedLiquidityUsd": 1.167795053038682E-9, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "65a66ec3e8848f944ef5a606", - "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "amount": "535756630634755", - "symbol": "ASTROPEPE" + "id": "65a35d7e59423b792c43732d", + "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "amount": "2479563931874", + "symbol": "BAD" }, { - "id": "65a66ec3e8848f944ef5a607", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "1203449271", - "symbol": "USDC.axl" + "id": "65a35d7e59423b792c43732e", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "1044739339", + "symbol": "NEWT" } ], - "name": "ASTROPEPE - USDC.axl", + "name": "BAD - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4563,97 +4820,85 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.093564 + "day": 0.00722 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.046782 + "day": 0.00361 }, - "rewards": [ - { - "symbol": "ASTROPEPE", - "denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "amountPerDay": "8556410.854959801303751488", - "amountPerSecond": "99.03253304351621879342", - "priceUsd": 0, - "precision": 6, - "amountPerDayUsd": "0", - "yield": 0, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1s2lr8u69xammmg3s8hemegcz57y07ae0wa7c7d2adupp6du3neyqd8ygp7", - "lpAddress": "neutron12zfwyzcpzyqwc7secjcmxa267n9quurr037sw449znnhdsn4w8qqpxcu7y", - "dayVolumeUsd": 13.526617, - "poolLiquidityUsd": 1161.787365886958, - "poolLiquidity": 1011124767, - "poolStakedLiquidityUsd": 1.149004953494126e-06, + "poolAddress": "neutron1trjxrt39sm7ux9tawqslu5v69lt4ythxwa8lp9u2wtvsd2jazpzsrn3kyc", + "lpAddress": "neutron1r3jg5apyq7nkwp9uggrv4tj6l82qpd04rjynd80dqp9gqvemjd3qn9eq78", + "dayVolumeUsd": 1.765158, + "poolLiquidityUsd": 254.829712951926, + "poolLiquidity": 59756808382, + "poolStakedLiquidityUsd": 4.264446508827796E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1wj4tfjdd8qgzet4m8nv6v27j42qnz6j6cty5apy3vtcn45edspwsu4vt25", - "whitelisted": true + "migrateToAddress": null, + "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, + "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657ba6b2eacdd4555fc6fcdd", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "3628710358", - "symbol": "ASTRO" + "id": "65a66ec1e8848f944ef5a5d6", + "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "amount": "10458291159108", + "symbol": "BAD" }, { - "id": "657ba6b2eacdd4555fc6fcde", + "id": "65a66ec1e8848f944ef5a5d7", "address": "untrn", - "amount": "535374013", + "amount": "373093154", "symbol": "NTRN" } ], - "name": "ASTRO - NTRN", + "name": "BAD - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 0.00852534, - "apy": 0.00852534, - "day": 0.054272 + "apr": 0, + "apy": 0, + "day": 0 }, "tradingFees": { - "apr": 0.00852534, - "apy": 0.00852534, - "day": 0.027136 + "apr": 0, + "apy": 0, + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron15lp0rhnpf3splmq5a920ql9t67nws5epp454vrspft3agrcsch6sracngq", - "lpAddress": "neutron1pmef8ucfmpnwyzde9665pmm86ll39w9awm690pkvtecdwr0utt2qnh276f", - "dayVolumeUsd": 38.137456, - "poolLiquidityUsd": 558.421385056, - "poolLiquidity": 15682665895, - "poolStakedLiquidityUsd": 558.0711622863068, - "poolStakedLiquidity": 15672830264, + "poolAddress": "neutron1na2apzyvkr9an4msnwlyp5ux90ljakm4qmwzcw8xj2z3xt48fmjqnwh0al", + "lpAddress": "neutron19ngwfjpscxq3vegckpvlqrhd05kx5puk0tlttkz8q764eyugruhqwp288e", + "dayVolumeUsd": 1.533144, + "poolLiquidityUsd": 35.965504786212, + "poolLiquidity": 34080232, + "poolStakedLiquidityUsd": 0.000001055318660571555, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null @@ -4664,27 +4909,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/scrap", - "token2PriceUsd": 0 + "token1Address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "token1PriceUsd": 2.15, + "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token2PriceUsd": 0.125124 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "6609248f05a65f3ca6fe5ea6", - "address": "untrn", - "amount": "511843616", - "symbol": "NTRN" + "id": "65cff2c068fc77acd90a031b", + "address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "amount": "8797875", + "symbol": "STRD" }, { - "id": "6609248f05a65f3ca6fe5ea7", - "address": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/scrap", - "amount": "481148628879", - "symbol": "SCRAP" + "id": "65cff2c068fc77acd90a031c", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "136265413", + "symbol": "ASTRO.cw20" } ], - "name": "NTRN - SCRAP", + "name": "STRD - ASTRO.cw20", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4694,38 +4939,85 @@ "day": 0 }, "totalRewards": { - "apr": 1.4563791178047027, - "apy": 1.4563791178047027, - "day": 2.228788457541854 + "apr": 0, + "apy": 0, + "day": 0.006156 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.00102 + "day": 0.003078 }, - "rewards": [ + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1l7ny0rckx9rks2p2aq94wd74sehjczym6n9y4yax8lcy9s39uans4uga62", + "lpAddress": "neutron1y4330yyf0vc08scyq8a7rusl4j8p0pw98p4wvyqqkdu4aj6kv4pqxaa7na", + "dayVolumeUsd": 1.390387, + "poolLiquidityUsd": 3804938.00098739, + "poolLiquidity": 205442836654, + "poolStakedLiquidityUsd": 0.0000185206652018463, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": true + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "token1PriceUsd": 10.62, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 + }, + "stakeable": false, + "assets": [ { - "symbol": "NTRN", - "denom": "untrn", - "amountPerDay": "2.042888493157663968", - "amountPerSecond": "0.00002364454274488037", - "priceUsd": 1.09, - "precision": 6, - "amountPerDayUsd": "2.22674845754185372512", - "yield": 1.4563791178047027, - "isExternal": true, - "gaugeInfo": [] + "id": "657ba53d568c6c3042b8843c", + "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "amount": "178886055272", + "symbol": "stATOM" + }, + { + "id": "657ba53d568c6c3042b8843d", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "236666843975", + "symbol": "ATOM" } - ] + ], + "name": "stATOM - ATOM", + "isNew": false, + "isIlliquid": false, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 2.6E-7, + "apy": 2.6E-7, + "day": 0.005582 + }, + "tradingFees": { + "apr": 2.6E-7, + "apy": 2.6E-7, + "day": 0.002791 + }, + "rewards": [] }, { "chainId": "neutron-1", "poolAddress": "neutron1y4048k0rn0y8wmcy8x6vj03w572g20xyj7s9zsarvcz283rslnyq9x50xx", "lpAddress": "neutron1jh29hfhqnq80s024f2qlraldhm8ukz6hezrcx7fzrasw806kyy2s78xus8", - "dayVolumeUsd": 1.195053, - "poolLiquidityUsd": 544.756349905, + "dayVolumeUsd": 1.379834, + "poolLiquidityUsd": 370.986703061346, "poolLiquidity": 52585116, - "poolStakedLiquidityUsd": 1.035951598747062e-05, + "poolStakedLiquidityUsd": 0.000007054975462283738, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -4738,22 +5030,22 @@ "isBlocked": false, "prices": { "token1Address": "untrn", - "token1PriceUsd": 1.091, + "token1PriceUsd": 0.683019, "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "token2PriceUsd": 14.34 + "token2PriceUsd": 10.62 }, "stakeable": false, "assets": [ { "id": "657b1dde142f357e732aabbd", "address": "untrn", - "amount": "247382795", + "amount": "270427334", "symbol": "NTRN" }, { "id": "657b1dde142f357e732aabbe", "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "amount": "19167484", + "amount": "17540461", "symbol": "stATOM" } ], @@ -4769,56 +5061,1105 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.004794 + "day": 0.00555 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.002397 + "day": 0.002775 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ew8szwvhn6f8rk5h8y3mxcecz837uu5f76wa26fp8tyvshntkm0sermu25", - "lpAddress": "neutron1glzy4hshdj0q726ejta4aaspyw39thrnukspvzlez7zgzvfga09qwlh2uf", - "dayVolumeUsd": 39.623426, - "poolLiquidityUsd": 530.5799920695824, - "poolLiquidity": 7399324293474, - "poolStakedLiquidityUsd": 7.170654356082413e-11, - "poolStakedLiquidity": 1, + "poolAddress": "neutron1adk7gupr0thjr3e6wcnlxr7ugclcg4cukv2np8la29dz38zuzymqjcv5s4", + "lpAddress": "neutron1kmuv6zmpr2nd3fnqefcffgfmhm74c8vhyerklaphrawyp3398gws74huny", + "dayVolumeUsd": 1.360772, + "poolLiquidityUsd": 22855.44666845597, + "poolLiquidity": 22789879021, + "poolStakedLiquidityUsd": 21762.83375429798, + "poolStakedLiquidity": 21700400592, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.05" ], - "poolType": "xyk", + "poolType": "stable", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1hn07a70wr6ladw7jdq5afesxm0eme958hht2rl/TEWT", - "token1PriceUsd": 0, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.998656, + "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "token2PriceUsd": 1.004 + }, + "stakeable": true, + "assets": [ + { + "id": "657ba53de71d0f468fea4cf4", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "11373031878", + "symbol": "USDC.axl" + }, + { + "id": "657ba53de71d0f468fea4cf5", + "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "amount": "11451892575", + "symbol": "USDT.axl" + } + ], + "name": "USDC.axl - USDT.axl", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0.14306454557243417, + "apy": 0, + "day": 8.5301093737728 + }, + "totalRewards": { + "apr": 0.14306996557243418, + "apy": 0.14306996557243418, + "day": 17.0608987475456 + }, + "tradingFees": { + "apr": 0.00000542, + "apy": 0.00000542, + "day": 0.00034 + }, + "rewards": [ + { + "symbol": "ASTRO", + "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amountPerDay": "68.418763776", + "amountPerSecond": "0.00079188384", + "priceUsd": 0.124675, + "precision": 6, + "amountPerDayUsd": "8.5301093737728", + "yield": 0.14306454557243417, + "isExternal": false, + "gaugeInfo": [] + } + ] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron16yll06qup0j0mnjc7v68stmw939e73ykr3twtd78l3hqlkstm2ysr0k4q8", + "lpAddress": "neutron1y7ty5e7gwq5770vrkzgkskgyjeyt48cfvd8x6ev9y66cyzk6320qumane4", + "dayVolumeUsd": 0.751018, + "poolLiquidityUsd": 74.354975450876, + "poolLiquidity": 33617800, + "poolStakedLiquidityUsd": 0.000002211773984343473, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": true + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 + }, + "stakeable": false, + "assets": [ + { + "id": "657b9cb3447807eaef0ca19c", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "282411499", + "symbol": "ASTRO.cw20" + }, + { + "id": "657b9cb3447807eaef0ca19d", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "4847021", + "symbol": "ATOM" + } + ], + "name": "ASTRO.cw20 - ATOM", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0.00740259, + "apy": 0.00740259, + "day": 0.003016 + }, + "tradingFees": { + "apr": 0.00740259, + "apy": 0.00740259, + "day": 0.001508 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron16r03vq6fydkfessnevj5vcvzx8f68lswd6pjfswgr8ye73s9t6psnazalp", + "lpAddress": "neutron1trmu0mfe587pj3e26mn3hgh8njflqvsj4g9eja8s4kpy4zv37d4qg0gs93", + "dayVolumeUsd": 0.673054, + "poolLiquidityUsd": 0.870298028667, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000870298028667, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 + }, + "stakeable": false, + "assets": [ + { + "id": "65aa06b50a570e49416409de", + "address": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "amount": "34037598162868", + "symbol": "RETRO" + }, + { + "id": "65aa06b50a570e49416409df", + "address": "untrn", + "amount": "1274193", + "symbol": "NTRN" + } + ], + "name": "RETRO - NTRN", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1926qqec0y8gw9x43etcxe369njza7vfjy3j0s9wzeh972hpv2mtsdplm00", + "lpAddress": "neutron1kpn7k259h7htlpygk5pmwrrqjwt6q4teyygefjk9sdh2ugt82nws8xnkpf", + "dayVolumeUsd": 0.670559, + "poolLiquidityUsd": 9.399678791202, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.009399678791202, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "factory/neutron1guar6dc2scpxtmmq8reh0q5cv2l37vs0uyfdru/dinosaur", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 + }, + "stakeable": false, + "assets": [ + { + "id": "65a526c7e8848f944ef43046", + "address": "factory/neutron1guar6dc2scpxtmmq8reh0q5cv2l37vs0uyfdru/dinosaur", + "amount": "2095408391674", + "symbol": "DSR" + }, + { + "id": "65a526c7e8848f944ef43047", + "address": "untrn", + "amount": "13761958", + "symbol": "NTRN" + } + ], + "name": "DSR - NTRN", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1ny6cysje5f6u5jlmvzfxnf06t4zgdr3v7eyvfc0cgwuxy74lqfusuewch3", + "lpAddress": "neutron12jlxn5gsyjpke7xdg0c3wnumn5dwlqhpehwy9q5pj69vmmmkq7sq8xjezg", + "dayVolumeUsd": 0.481102, + "poolLiquidityUsd": 19.15715879, + "poolLiquidity": 1082777, + "poolStakedLiquidityUsd": 0.00001769261703009941, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": true + }, + "feeRate": [ + "0.26", + "0.45" + ], + "poolType": "concentrated", + "isBlocked": false, + "prices": { + "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token1PriceUsd": 9.53, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 + }, + "stakeable": false, + "assets": [ + { + "id": "657b7cc7e7c5cb511c7da599", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "986083", + "symbol": "TIA" + }, + { + "id": "657b7cc7e7c5cb511c7da59a", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "1212396", + "symbol": "ATOM" + } + ], + "name": "TIA - ATOM", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0.02013894, + "apy": 0.02013894, + "day": 0.002114 + }, + "tradingFees": { + "apr": 0.02013894, + "apy": 0.02013894, + "day": 0.001057 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1306ufyfnz2emkdv7rdd9tcyrthsjtr0y2aqlcrem6zkln042t08sv2fxxu", + "lpAddress": "neutron1sljaq743f8w7k8qqc7ja37n9mdtknaxc4a0evgazjujht9v0953savfmrw", + "dayVolumeUsd": 0.40765, + "poolLiquidityUsd": 237.105414472096, + "poolLiquidity": 36294582450, + "poolStakedLiquidityUsd": 230.9615352319012, + "poolStakedLiquidity": 35354116657, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", + "token1PriceUsd": 0, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999896 + }, + "stakeable": true, + "assets": [ + { + "id": "65f7fee305a65f3ca6eb5283", + "address": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", + "amount": "5711983004482", + "symbol": "MOO" + }, + { + "id": "65f7fee305a65f3ca6eb5284", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "237130076", + "symbol": "USDC" + } + ], + "name": "MOO - USDC", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0.001638 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0.000819 + }, + "rewards": [ + { + "symbol": "MOO", + "denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", + "amountPerDay": "115131.99941311966905312", + "amountPerSecond": "1.3325462895036998733", + "priceUsd": 0, + "precision": 6, + "amountPerDayUsd": "0", + "yield": 0, + "isExternal": true, + "gaugeInfo": [] + } + ] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron173xvrtyu4zquzd7wk8l9jhzk2grkx6nvhk65t6y9hcq40erjyc8sf63jlg", + "lpAddress": "neutron17fey4t0t20hyk4kwxj9zyu5vc4wfv4mnk62gn8zg0ldry6cjgkcs5ncz40", + "dayVolumeUsd": 0.376825, + "poolLiquidityUsd": 6.826326780952, + "poolLiquidity": 1310853, + "poolStakedLiquidityUsd": 0.000005207545606526423, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": "neutron1c4p33xy3ps35gs7w3mcc5vzsdfkwqd3klhnxry0yn2nhl4wnwhxslcp8g8", + "whitelisted": true + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token1PriceUsd": 9.53, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 + }, + "stakeable": false, + "assets": [ + { + "id": "657b877fc361c1dafb02c0e6", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "362447", + "symbol": "TIA" + }, + { + "id": "657b877fc361c1dafb02c0e7", + "address": "untrn", + "amount": "4937208", + "symbol": "NTRN" + } + ], + "name": "TIA - NTRN", + "isNew": false, + "isIlliquid": true, + "isDeregistered": true, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0.04085066, + "apy": 0.04085066, + "day": 0.001528 + }, + "tradingFees": { + "apr": 0.04085066, + "apy": 0.04085066, + "day": 0.000764 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1ghhlz6zfc33r49u0y77u3shf5a88hcw2wrpwvuky7ucs24ye9ypqj3aypu", + "lpAddress": "neutron1cctxselwdj0csnd3e6z3z2stllwgkme8vzq20pdyct7xcv2h2pwss793hv", + "dayVolumeUsd": 0.141149, + "poolLiquidityUsd": 12622.37120767758, + "poolLiquidity": 3619998846283698000, + "poolStakedLiquidityUsd": 3.408040226072946E-15, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.05" + ], + "poolType": "stable", + "isBlocked": false, + "prices": { + "token1Address": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "token1PriceUsd": 3498.23, + "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token2PriceUsd": 3466.56 + }, + "stakeable": false, + "assets": [ + { + "id": "657b71c20390da6bb354c385", + "address": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "amount": "1806475743885771097", + "symbol": "wstETH.axl" + }, + { + "id": "657b71c20390da6bb354c386", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "1818201204117065484", + "symbol": "wstETH" + } + ], + "name": "wstETH.axl - wstETH", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0.00000101, + "apy": 0.00000101, + "day": 0.00007 + }, + "tradingFees": { + "apr": 0.00000101, + "apy": 0.00000101, + "day": 0.000035 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1ehutw0zmqf3xcqm7jljev0grfut7htyxduqjznre5tzrq7feguhsqw8nv5", + "lpAddress": "neutron1jha5yat2s8x6f8ncjqzgzjkvzvwjccxxe7xgzgkx7lp7ffrxlu2s53pg5k", + "dayVolumeUsd": 0.035965, + "poolLiquidityUsd": 2776.948474468902, + "poolLiquidity": 1911252079743, + "poolStakedLiquidityUsd": 1.45294726089486E-9, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.26", + "0.45" + ], + "poolType": "concentrated", + "isBlocked": false, + "prices": { + "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "token1PriceUsd": 0.00000941, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 + }, + "stakeable": false, + "assets": [ + { + "id": "65b7bd40c56514afb66c6500", + "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "amount": "147089259287835", + "symbol": "CRBRUS" + }, + { + "id": "65b7bd40c56514afb66c6501", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "24921343451", + "symbol": "NEWT" + } + ], + "name": "CRBRUS - NEWT", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0.00015 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0.000075 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1v2l6rk3j9x84w7kulgfkfm9acmflcqjzlsat8k2teux3vj5ec5yq7et2g4", + "lpAddress": "neutron1saac9n3vquyuv5nykx6yu5h89a5zjuajfq4vmck5j4eqjd6xkl6q2wk2fc", + "dayVolumeUsd": 0.03576, + "poolLiquidityUsd": 38.07207323502173, + "poolLiquidity": 7189609549, + "poolStakedLiquidityUsd": 5.29542988020809E-9, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.26", + "0.45" + ], + "poolType": "concentrated", + "isBlocked": false, + "prices": { + "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "token1PriceUsd": 0.00000941, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 + }, + "stakeable": false, + "assets": [ + { + "id": "65a66ec2e8848f944ef5a5e6", + "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "amount": "2061731751253", + "symbol": "CRBRUS" + }, + { + "id": "65a66ec2e8848f944ef5a5e7", + "address": "untrn", + "amount": "27336249", + "symbol": "NTRN" + } + ], + "name": "CRBRUS - NTRN", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0.00016 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0.00008 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1n2qzadpgcceyf6z4g57ansarfdn2a0sfgh7z4qa8wnmx3dx8580s4mzy4v", + "lpAddress": "neutron1ks5rldhnxjzthum937gj00vwrlpkld7jm6cxs0jws247n2z5cjxs90kvar", + "dayVolumeUsd": 0.012078, + "poolLiquidityUsd": 21.18685303526862, + "poolLiquidity": 61184166, + "poolStakedLiquidityUsd": 3.462800005358828E-7, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "token1PriceUsd": 0.2361622826314721, + "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token2PriceUsd": 0.125124 + }, + "stakeable": false, + "assets": [ + { + "id": "65977fdd84dc55803c230900", + "address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "amount": "47602882", + "symbol": "ECLIP" + }, + { + "id": "65977fdd84dc55803c230901", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "79479938", + "symbol": "ASTRO.cw20" + } + ], + "name": "ECLIP - ASTRO.cw20", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0.00005 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0.000025 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron17wg25zvvud2d27pnxjv76f5xk5tm5jfda4c7003valghrlju5u6q5dt83n", + "lpAddress": "neutron1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qdqc773", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.907351019968, + "poolLiquidity": 152461, + "poolStakedLiquidityUsd": 0.000005951364742248835, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token1PriceUsd": 8.05, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 + }, + "stakeable": false, + "assets": [ + { + "id": "65793faa2cb0abd8976d210c", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "56780", + "symbol": "ATOM" + }, + { + "id": "65793faa2cb0abd8976d210d", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "450878", + "symbol": "USDC.axl" + } + ], + "name": "ATOM - USDC.axl", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1gexnrw67sqje6y8taeehlmrl5nyw0tn9vtpq6tgxs62upsjhql5q2glanc", + "lpAddress": "neutron1msr69q9w67js23lammhal9xp4jhc9c87xyrj8lckq95mted540wscpzh4c", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 178.74839782, + "poolLiquidity": 19747337, + "poolStakedLiquidityUsd": 0.000009051772288080165, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": "neutron1l7ny0rckx9rks2p2aq94wd74sehjczym6n9y4yax8lcy9s39uans4uga62", + "whitelisted": null + }, + "feeRate": [ + "0.05" + ], + "poolType": "stable", + "isBlocked": false, + "prices": { + "token1Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "token1PriceUsd": 10.62, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 + }, + "stakeable": false, + "assets": [ + { + "id": "657b635f71234f47c08658d2", + "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "amount": "5830621", + "symbol": "stATOM" + }, + { + "id": "657b635f71234f47c08658d3", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "14512696", + "symbol": "ATOM" + } + ], + "name": "stATOM - ATOM", + "isNew": false, + "isIlliquid": true, + "isDeregistered": true, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron18dll2ugfwfhjsytrm46r5dyv7gfka8q334wvxu824s0glev0hdlsg8757n", + "lpAddress": "neutron18ut0pkc574g2tmg67zs64lsndm3fxffz2qql850tac20l5g95ces9tdgph", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 195.506234737404, + "poolLiquidity": 80394984, + "poolStakedLiquidityUsd": 0.000002431821302896836, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "token2PriceUsd": 10.62 + }, + "stakeable": false, + "assets": [ + { + "id": "657ba28f568c6c3042b85e43", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "734626471", + "symbol": "ASTRO.cw20" + }, + { + "id": "657ba28f568c6c3042b85e44", + "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "amount": "9753939", + "symbol": "stATOM" + } + ], + "name": "ASTRO.cw20 - stATOM", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron10fztjv4atdgs4dyfkh2yu9rhn9n6vkctvdqa34g7g4nc0qckygqqksvz0r", + "lpAddress": "neutron1prv32w2kempkvjy3expk3tuvpcg3j97f2024470zwe2n4hkvv58qy0f03x", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": true + }, + "feeRate": [ + "0.05" + ], + "poolType": "stable", + "isBlocked": false, + "prices": { + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.998656, + "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "token2PriceUsd": 10.62 + }, + "stakeable": false, + "assets": [ + { + "id": "655790a100acb1b382e6b63b", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "0", + "symbol": "USDC.axl" + }, + { + "id": "655790a100acb1b382e6b63c", + "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "amount": "0", + "symbol": "stATOM" + } + ], + "name": "USDC.axl - stATOM", + "isNew": false, + "isIlliquid": true, + "isDeregistered": false, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1u4v7xcvkhz8sxs3u9mjhprwc8vwc2p08x0tje4ugtrrkjhkagdysztt5dq", + "lpAddress": "neutron15cs5enz5tgalh9uc2xcfm6ldg0cjf0mp0rs0cntyhhvq86vaff0s3yaaue", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 37.537014402551, + "poolLiquidity": 20284360, + "poolStakedLiquidityUsd": 0.000001850539746018293, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": "neutron1lys60a2wygdd0layel8u2t9u40g3dwln8xraje5a902xh39mhynsk8tfgs", + "whitelisted": null + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "token1PriceUsd": 0.901526, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 + }, + "stakeable": false, + "assets": [ + { + "id": "657ba85d8e5876dedd099611", + "address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "amount": "20968645", + "symbol": "OSMO" + }, + { + "id": "657ba85d8e5876dedd099612", + "address": "untrn", + "amount": "27280699", + "symbol": "NTRN" + } + ], + "name": "OSMO - NTRN", + "isNew": false, + "isIlliquid": true, + "isDeregistered": true, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron14z9ke0yq90zcvu6uhctd48cgzqv8v4nqxhlx5w3gfamcvttmt0dsxdt7w7", + "lpAddress": "neutron1n07kw2nye3gvu954vpz5w6u06w5lqjswpgu009ruj8hhls0v2msqk4g3qq", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.006587148601, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000006587148601, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": "neutron1lw4fslhahxchrw6kjq60hl7x4vskxy75ym4x537dzr788cqv0k2q9vum75", + "whitelisted": true + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "token2PriceUsd": 1.004 + }, + "stakeable": false, + "assets": [ + { + "id": "657b9ba7aac34fec4897126e", + "address": "untrn", + "amount": "3979", + "symbol": "NTRN" + }, + { + "id": "657b9ba7aac34fec4897126f", + "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "amount": "3854", + "symbol": "USDT.axl" + } + ], + "name": "NTRN - USDT.axl", + "isNew": false, + "isIlliquid": true, + "isDeregistered": true, + "astroRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "totalRewards": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "tradingFees": { + "apr": 0, + "apy": 0, + "day": 0 + }, + "rewards": [] + }, + { + "chainId": "neutron-1", + "poolAddress": "neutron1v2zgmqzkvhkx5t8y8nhpyeykuuu0t7kszz0645clzucuulqtal0snnmk0l", + "lpAddress": "neutron167n6rhrjzq0gznyvlwph6gh97xnf8e6s9x409xecdcqq7austeksuh8vxq", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 1198.972506501445, + "poolLiquidity": 108642179932, + "poolStakedLiquidityUsd": 1.103597613920971E-8, + "poolStakedLiquidity": 1, + "config": { + "migrateToAddress": null, + "whitelisted": true + }, + "feeRate": [ + "0.30" + ], + "poolType": "xyk", + "isBlocked": false, + "prices": { + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.998656, + "token2Address": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", + "token2PriceUsd": 30.27 }, "stakeable": false, "assets": [ { - "id": "6612b6bf7deb69f605862f80", - "address": "factory/neutron1hn07a70wr6ladw7jdq5afesxm0eme958hht2rl/TEWT", - "amount": "8485705535152713", - "symbol": "TEWT" + "id": "657314151ce1864ab9d3f024", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "602882762", + "symbol": "USDC.axl" }, { - "id": "6612b6bf7deb69f605862f81", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "6456024770", - "symbol": "NEWT" + "id": "657314151ce1864ab9d3f025", + "address": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", + "amount": "19719194546864", + "symbol": "KSM" } ], - "name": "TEWT - NEWT", - "isNew": true, + "name": "USDC.axl - KSM", + "isNew": false, "isIlliquid": true, "isDeregistered": false, "astroRewards": { @@ -4829,56 +6170,55 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.052188 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.026094 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1qn453a4vlmqtfkzexa83x030h3mynyw0mcfcpn35fx0l4qpdegrq4r2vt4", - "lpAddress": "neutron1d6dsd49sxtvhfv5ec4ahunxv2ww3mex47qgyy9ldzy5u2dxkwjusdd7tra", - "dayVolumeUsd": 0.732897, - "poolLiquidityUsd": 436.8461338366293, - "poolLiquidity": 334403043, - "poolStakedLiquidityUsd": 1.30634616813495e-06, + "poolAddress": "neutron14fv4gvf962xf565k53mx2zv6nj4cqwdz6ft8gv628046hv3c79asvntft2", + "lpAddress": "neutron1xj8y82q6q9ta8hgf8w6ntmgxkez3sc6d9rfy7cqadcwa756nsccq8ss9vg", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 1216.532445736528, + "poolLiquidity": 23577777624, + "poolStakedLiquidityUsd": 5.159656966223524E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": null + "whitelisted": true }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", - "token1PriceUsd": 5.17, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.998656, + "token2Address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", + "token2PriceUsd": 6.58 }, "stakeable": false, "assets": [ { - "id": "65c62c3b68fc77acd9fb30ac", - "address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", - "amount": "41976217226741151451", - "symbol": "DYM" + "id": "657b64dd3e3065bec9abd6b2", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "600885653", + "symbol": "USDC.axl" }, { - "id": "65c62c3b68fc77acd9fb30ad", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "2674850308", - "symbol": "NEWT" + "id": "657b64dd3e3065bec9abd6b3", + "address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", + "amount": "936860764520", + "symbol": "DOT" } ], - "name": "DYM - NEWT", + "name": "USDC.axl - DOT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -4890,59 +6230,58 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.003048 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.001524 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1trjxrt39sm7ux9tawqslu5v69lt4ythxwa8lp9u2wtvsd2jazpzsrn3kyc", - "lpAddress": "neutron1r3jg5apyq7nkwp9uggrv4tj6l82qpd04rjynd80dqp9gqvemjd3qn9eq78", - "dayVolumeUsd": 13.713453, - "poolLiquidityUsd": 418.177663053, - "poolLiquidity": 63776268121, - "poolStakedLiquidityUsd": 6.55694782926353e-09, + "poolAddress": "neutron165m0r6rkhqxs30wch00t7mkykxxvgve9yyu254wknwhhjn34rmqsh6vfcj", + "lpAddress": "neutron124l9kllt4seuv0srjlzh6j4k56jvt7hla03nrkvamdpjrtqffs9quhxmyc", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.003054906656, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000003054906656, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron14qaye93htdks0gfan7l2m3jfrzfm9x8xl677l9yn2tyy2x6fc6mqrqmjdq", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "token1PriceUsd": 0.061188, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "65a66ec1e8848f944ef5a5d6", - "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "amount": "11506342318254", - "symbol": "BAD" + "id": "657ba85c921f61dd18b54477", + "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "amount": "392", + "symbol": "MARS" }, { - "id": "65a66ec1e8848f944ef5a5d7", - "address": "untrn", - "amount": "383297583", - "symbol": "NTRN" + "id": "657ba85c921f61dd18b54478", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "3035", + "symbol": "USDC.axl" } ], - "name": "BAD - NTRN", + "name": "MARS - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -4951,23 +6290,23 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.011674 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.005837 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1lhu8u9sy4trph3pkg9vwd8sqcva7zv370t6acu0xcp5y4d2zscmq5d87yc", - "lpAddress": "neutron1699q7dkpzda9randqkrcfmry4smrzs7lpwtcvq7c8746csw82dtqcn9lmk", - "dayVolumeUsd": 0.241803, - "poolLiquidityUsd": 323.87215437, - "poolLiquidity": 1023, - "poolStakedLiquidityUsd": 0.3165905712316716, + "poolAddress": "neutron1t6tnqqmp65uzmz9yr0udujhygegw85r2gfc5vvw2xlsmxgerm48s9euhss", + "lpAddress": "neutron1f3fquz79zxdcc4cnhgt5fd8dyug5dgmuuncp4jvfw9073jrkev9qalpk8t", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.000043503447, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 4.3503447E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -4979,27 +6318,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", - "token1PriceUsd": 0, + "token1Address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", + "token1PriceUsd": 6.58, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "658db8d9dc581afdfced7f23", - "address": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", - "amount": "9304122273836", - "symbol": "GDD" + "id": "657b64dd9996ae8c433cab3b", + "address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", + "amount": "36012", + "symbol": "DOT" }, { - "id": "658db8d9dc581afdfced7f24", + "id": "657b64dd9996ae8c433cab3c", "address": "untrn", - "amount": "296858070", + "amount": "29", "symbol": "NTRN" } ], - "name": "GDD - NTRN", + "name": "DOT - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -5022,16 +6361,16 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1306ufyfnz2emkdv7rdd9tcyrthsjtr0y2aqlcrem6zkln042t08sv2fxxu", - "lpAddress": "neutron1sljaq743f8w7k8qqc7ja37n9mdtknaxc4a0evgazjujht9v0953savfmrw", - "dayVolumeUsd": 9.952241, - "poolLiquidityUsd": 322.756428, - "poolLiquidity": 38649082904, - "poolStakedLiquidityUsd": 321.741490884807, - "poolStakedLiquidity": 38527547327, + "poolAddress": "neutron17hdxfavyu4qen5fy8cy09js2qud02h6d97dvx72m4uhtjryhdcks8de0wq", + "lpAddress": "neutron1fe8ryje4umsnsxthspqz8egx0hdlym5dueu9pr6ftgq23wecmzpqjlvq3q", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.8383684338000031, + "poolLiquidity": 4350433387, + "poolStakedLiquidityUsd": 1.927091761180288E-10, + "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, - "whitelisted": null + "migrateToAddress": "neutron1p04tjcuh33p7ruag3h7mh6pe30mujkcs9kkz4634gqpaah4fg20qdlpgla", + "whitelisted": true }, "feeRate": [ "0.30" @@ -5039,30 +6378,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", - "token1PriceUsd": 0, - "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token2PriceUsd": 1 + "token1Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token1PriceUsd": 3466.56, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "65f7fee305a65f3ca6eb5283", - "address": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", - "amount": "4755710229536", - "symbol": "MOO" + "id": "657b9b9f6fce3c3f5561a159", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "100032030390936", + "symbol": "wstETH" }, { - "id": "65f7fee305a65f3ca6eb5284", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "322756428", - "symbol": "USDC" + "id": "657b9b9f6fce3c3f5561a15a", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "492263", + "symbol": "USDC.axl" } ], - "name": "MOO - USDC", + "name": "wstETH - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -5071,39 +6410,26 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.03994 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.01997 + "day": 0 }, - "rewards": [ - { - "symbol": "MOO", - "denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", - "amountPerDay": "137469.870615646934211168", - "amountPerSecond": "1.59108646545887655337", - "priceUsd": 0, - "precision": 6, - "amountPerDayUsd": "0", - "yield": 0, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1hv0l0xrsm5lp546ylmp0sy2rh5u6tdp67svzxpmasdqy8xdgedgslps7n5", - "lpAddress": "neutron1f92zwels94fv29lm07j08rynjc6dc2f8ceruj9c4esaq8wuru02sz249l7", + "poolAddress": "neutron1s9fvdffwf3uvara287rfpzpq09mahk9qg4mjfrhu9jvc2unnps9qj5cfzu", + "lpAddress": "neutron1wvrced962a7080v3j65w9spnhmx2vcxul4fj06ujhqa0thg624wqgafdh6", "dayVolumeUsd": 0, - "poolLiquidityUsd": 296.444331277899, - "poolLiquidity": 13228756555322, - "poolStakedLiquidityUsd": 2.240908372541378e-11, + "poolLiquidityUsd": 0.00000106410163550574, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 1.06410163550574E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1jpzzw0wzrerac8dm5kcxhwgl4r3jsux2c8qrkp09a5ch6myfgj4qzptxm8", "whitelisted": null }, "feeRate": [ @@ -5112,30 +6438,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "token1PriceUsd": 0, - "token2Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "token2PriceUsd": 1.378e-05 + "token1Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "token1PriceUsd": 2997.89, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "659dea5dfdb9cb40c869d693", - "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "amount": "8680126553013", - "symbol": "BAD" + "id": "6576aa05af7005a9ef3f44d4", + "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "amount": "21830566", + "symbol": "WETH.axl" }, { - "id": "659dea5dfdb9cb40c869d694", - "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "amount": "21512651036132", - "symbol": "CRBRUS" + "id": "6576aa05af7005a9ef3f44d5", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "1", + "symbol": "USDC.axl" } ], - "name": "BAD - CRBRUS", + "name": "WETH.axl - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -5155,48 +6481,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron15th0f33w9rq35la0aqe66w8hmlr07wy5arap736x4rv836pddn0s8322fg", - "lpAddress": "neutron12z3hctlcaye2djjeuuwdyalxg3nftfsnppt7x5ml8v5f8q6n464supnxm3", - "dayVolumeUsd": 46.604794, - "poolLiquidityUsd": 262.7594460766377, - "poolLiquidity": 749090358, - "poolStakedLiquidityUsd": 3.507713632526408e-07, + "poolAddress": "neutron1wzsewgysr8ttdlw96lp7u2j55z3sg7rtuvfjmd70ajavvpr3308s3zekqu", + "lpAddress": "neutron190u6kv2esdm93vj4wxjayzrchau5j3ekpacupdayw3kqepwdnt5sg7lfjw", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 115.0795918476458, + "poolLiquidity": 17646682668006060, + "poolStakedLiquidityUsd": 6.520409674087611E-15, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, - "whitelisted": null + "migrateToAddress": "neutron1yw0a7nxa8jdgzmdsme4gwxhj76n44z305qgwrzvlfavgna9epcys3k9m2f", + "whitelisted": true }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/A139C0E0B5E87CBA8EAEEB12B9BEE13AC7C814CFBBFA87BBCADD67E31003466C", - "token1PriceUsd": 0.02817225, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token1PriceUsd": 3466.56, + "token2Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "token2PriceUsd": 2997.89 }, "stakeable": false, "assets": [ { - "id": "660ea6a905a65f3ca603b965", - "address": "ibc/A139C0E0B5E87CBA8EAEEB12B9BEE13AC7C814CFBBFA87BBCADD67E31003466C", - "amount": "4490977159", - "symbol": "STARS" + "id": "657b93ba88779c34563a14cf", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "16539956903583496", + "symbol": "wstETH" }, { - "id": "660ea6a905a65f3ca603b966", - "address": "untrn", - "amount": "124874899", - "symbol": "NTRN" + "id": "657b93ba88779c34563a14d0", + "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "amount": "19261159963827690", + "symbol": "WETH.axl" } ], - "name": "STARS - NTRN", + "name": "wstETH - WETH.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -5205,26 +6530,26 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.187482 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.093741 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron18dll2ugfwfhjsytrm46r5dyv7gfka8q334wvxu824s0glev0hdlsg8757n", - "lpAddress": "neutron18ut0pkc574g2tmg67zs64lsndm3fxffz2qql850tac20l5g95ces9tdgph", + "poolAddress": "neutron1tx80z5v3nurwfm2mulyv6396pc7mjdh3pmydrv80ulu889a9wfxsn8jh2m", + "lpAddress": "neutron1km0xpyt8z8s9lzga3hyruvswulwwc7qscjvz6xll6pvmv7u8d5qqvcgv8h", "dayVolumeUsd": 0, - "poolLiquidityUsd": 255.758971529232, - "poolLiquidity": 80394984, - "poolStakedLiquidityUsd": 3.181280209335335e-06, + "poolLiquidityUsd": 7.148493914927935, + "poolLiquidity": 32239535018, + "poolStakedLiquidityUsd": 2.217306766507278E-10, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1fr3h0w6sg62agzpvu42ewj8m6rn9x45py77egd8xefp2682st39suqnx6n", "whitelisted": null }, "feeRate": [ @@ -5233,30 +6558,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "token2PriceUsd": 14.34 + "token1Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token1PriceUsd": 3466.56, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657ba28f568c6c3042b85e43", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "807834832", - "symbol": "ASTRO" - }, - { - "id": "657ba28f568c6c3042b85e44", - "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "amount": "8866866", - "symbol": "stATOM" + "id": "657b636fbcee8a703cbaa0c8", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "1025677382246935", + "symbol": "wstETH" + }, + { + "id": "657b636fbcee8a703cbaa0c9", + "address": "untrn", + "amount": "5260354", + "symbol": "NTRN" } ], - "name": "ASTRO - stATOM", + "name": "wstETH - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -5276,47 +6601,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1gexnrw67sqje6y8taeehlmrl5nyw0tn9vtpq6tgxs62upsjhql5q2glanc", - "lpAddress": "neutron1msr69q9w67js23lammhal9xp4jhc9c87xyrj8lckq95mted540wscpzh4c", + "poolAddress": "neutron1ssz2lzs57l7f8znscaafc4lzxtfj0pyym9w0kj9q3qvhduxa28jsgt8gnd", + "lpAddress": "neutron1dj568n6pl8rdadc6waa5ygjnncqrecxy86aqzc0dtjku6r50vm2q0gte43", "dayVolumeUsd": 0, - "poolLiquidityUsd": 241.50923762, - "poolLiquidity": 19747337, - "poolStakedLiquidityUsd": 1.222996486158985e-05, + "poolLiquidityUsd": 83007.02840043567, + "poolLiquidity": 10574396691, + "poolStakedLiquidityUsd": 0.000007849812222773919, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1l7ny0rckx9rks2p2aq94wd74sehjczym6n9y4yax8lcy9s39uans4uga62", - "whitelisted": null + "migrateToAddress": null, + "whitelisted": true }, "feeRate": [ - "0.05" + "0.30" ], - "poolType": "stable", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "token1PriceUsd": 14.34, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/7ACF670DA8DA24B5999A0D17247C7F4349AB1038FC4FA76A3AF50AFDE407B258", + "token1PriceUsd": 8.5, + "token2Address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", + "token2PriceUsd": 6.58 }, "stakeable": false, "assets": [ { - "id": "657b635f71234f47c08658d2", - "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "amount": "5830621", - "symbol": "stATOM" + "id": "656690b378cf6ef04681c98a", + "address": "ibc/7ACF670DA8DA24B5999A0D17247C7F4349AB1038FC4FA76A3AF50AFDE407B258", + "amount": "9764456755", + "symbol": "vDOT" }, { - "id": "657b635f71234f47c08658d3", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "14512696", - "symbol": "ATOM" + "id": "656690b378cf6ef04681c98b", + "address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", + "amount": "13899670115", + "symbol": "DOT" } ], - "name": "stATOM - ATOM", + "name": "vDOT - DOT", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -5336,77 +6661,76 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1h3yv07ftzkfml82x5ev84ujhe3darvda0xu8ldtyxgpvps28vvms44mels", - "lpAddress": "neutron1y34aemcveq07cfxcjpvcqseumdxmvrlv8lufm4k5zxlwg8gpkmlstpec96", - "dayVolumeUsd": 9.640236, - "poolLiquidityUsd": 196.97356083136, - "poolLiquidity": 27903833, - "poolStakedLiquidityUsd": 7.059014466984334e-06, + "poolAddress": "neutron1mygtadpxd5fpvvc20qqmugtem7waq8wxyr643mmncf58sx7wd4rqgl0kdt", + "lpAddress": "neutron1h99wyd40fanqf2wpm3dg3uhqex2dydzjwryrst5avptez5sr9feqmkv038", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.017704, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000017704, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1ny6cysje5f6u5jlmvzfxnf06t4zgdr3v7eyvfc0cgwuxy74lqfusuewch3", "whitelisted": true }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token1PriceUsd": 11.62, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1PriceUsd": 9.53, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "657ba1666fce3c3f5561d29b", + "id": "657b6387b1ec06030f161509", "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "8499855", + "amount": "975", "symbol": "TIA" }, { - "id": "657ba1666fce3c3f5561d29c", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "98270104", - "symbol": "USDC.axl" + "id": "657b6387b1ec06030f16150a", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "1045", + "symbol": "ATOM" } ], - "name": "TIA - USDC.axl", + "name": "TIA - ATOM", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 0.0296505, - "apy": 0.0296505, - "day": 0.032002 + "apr": 0, + "apy": 0, + "day": 0 }, "tradingFees": { - "apr": 0.0296505, - "apy": 0.0296505, - "day": 0.016001 + "apr": 0, + "apy": 0, + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1c9m39c3c2xr0axplqh4zaznx8chx3e5f368ddhwqcputuxmyckfsxra8xk", - "lpAddress": "neutron1knz3a9pau2nwxcwwspc8e23s5drzstaewtar9szv40hwwqnze5xszg645a", + "poolAddress": "neutron17flu8lssy8u2qrr3qqkhqzues667gf5qzkkakk2hcyy4raz47jqq8spaa6", + "lpAddress": "neutron18snpetu34qx46dj5m0acwwxz3pfam2ff58s988w03qvk9e25l3jsemt26u", "dayVolumeUsd": 0, - "poolLiquidityUsd": 191.982109176, - "poolLiquidity": 26099213005, - "poolStakedLiquidityUsd": 7.355858166666559e-09, + "poolLiquidityUsd": 0.0063881048, + "poolLiquidity": 1013, + "poolStakedLiquidityUsd": 0.000006306125172754195, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1trjxrt39sm7ux9tawqslu5v69lt4ythxwa8lp9u2wtvsd2jazpzsrn3kyc", - "whitelisted": null + "migrateToAddress": "neutron1h3yv07ftzkfml82x5ev84ujhe3darvda0xu8ldtyxgpvps28vvms44mels", + "whitelisted": true }, "feeRate": [ "0.30" @@ -5414,27 +6738,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "token2PriceUsd": 0 + "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token1PriceUsd": 9.53, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "6588a19afbb4c9d91fa989d1", - "address": "untrn", - "amount": "175968936", - "symbol": "NTRN" + "id": "65590b8b620a1547f11d24e9", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "390", + "symbol": "TIA" }, { - "id": "6588a19afbb4c9d91fa989d2", - "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "amount": "5636944200039", - "symbol": "BAD" + "id": "65590b8b620a1547f11d24ea", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "2675", + "symbol": "USDC.axl" } ], - "name": "NTRN - BAD", + "name": "TIA - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": true, @@ -5457,48 +6781,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1q3rfmflhp79rz0sdjxdgf7t3x5twce9az6n0fegspkjstrax42kq0g96rn", - "lpAddress": "neutron1wwz2em8h6pgmjj9xzrj9zz7ctgs82ryxv0797ry9ljh3ug7xdtsscyrctk", - "dayVolumeUsd": 2.080585, - "poolLiquidityUsd": 191.01113708, - "poolLiquidity": 91287092, - "poolStakedLiquidityUsd": 2.092422191298241e-06, + "poolAddress": "neutron1trhuhvav04ezhklqwu0aecnmqpc48w7zqqzf3mh3y9teer0y9ulqant0w6", + "lpAddress": "neutron1rmj54935vejc3vx35tn3yqaeh5xd3j7vqrd6x78hl7yylssve0js6594tc", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.007503988, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000007503988, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1zwnj9zclxkxlyksnns3wuw7fq24kkn70ke6wezquw9nwqed24vkq8wlgh4", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token1PriceUsd": 1, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "token1PriceUsd": 1.004, + "token2Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token2PriceUsd": 9.53 }, "stakeable": false, "assets": [ { - "id": "65fc0be205a65f3ca6f0c852", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "98306816", - "symbol": "USDC" + "id": "6557909e00acb1b382e6b638", + "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "amount": "1627", + "symbol": "USDT.axl" }, { - "id": "65fc0be205a65f3ca6f0c853", - "address": "untrn", - "amount": "84971880", - "symbol": "NTRN" + "id": "6557909e00acb1b382e6b639", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "616", + "symbol": "TIA" } ], - "name": "USDC - NTRN", + "name": "USDT.axl - TIA", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -5507,27 +6830,27 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.008368 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.004184 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1zfpthdexp60nm5lzwhph8ccrm8pra5pj2ssyn5pekz6vdwzrvcsq0epd58", - "lpAddress": "neutron1vu9f687t48dzpqx2wm8cx09u3flmunpe6pxkh0e6drqkpjeu58yshlhpw4", - "dayVolumeUsd": 1.174803, - "poolLiquidityUsd": 147.107756256, - "poolLiquidity": 20694267, - "poolStakedLiquidityUsd": 7.108623671280206e-06, + "poolAddress": "neutron1zwnj9zclxkxlyksnns3wuw7fq24kkn70ke6wezquw9nwqed24vkq8wlgh4", + "lpAddress": "neutron1mwwgjw6ul09zkam9c99ejysf9h5s2q7vaxfl9g93ndnjnvfemuks80zgh7", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.006374244, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000006374244, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": null + "whitelisted": true }, "feeRate": [ "0.26", @@ -5536,27 +6859,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", - "token2PriceUsd": 11.54 + "token1Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "token1PriceUsd": 1.004, + "token2Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token2PriceUsd": 9.53 }, "stakeable": false, "assets": [ { - "id": "65c6486068fc77acd9fb5611", - "address": "untrn", - "amount": "66769416", - "symbol": "NTRN" + "id": "657b89865ea0166d2ff8fbef", + "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "amount": "3786", + "symbol": "USDT.axl" }, { - "id": "65c6486068fc77acd9fb5612", - "address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", - "amount": "6435210", - "symbol": "stTIA" + "id": "657b89865ea0166d2ff8fbf0", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "270", + "symbol": "TIA" } ], - "name": "NTRN - stTIA", + "name": "USDT.axl - TIA", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -5568,55 +6891,52 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.005058 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.002529 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1q2dlznjrxshx6ej9rqxz39h2xdjlqxvajpdl9yz0x5wz72gkd2wq36ch25", - "lpAddress": "neutron1sfmzjsw5s4m06u7ucw78nc2m2pvaxgslxpp5wyes55vz2e9fjz4skg23cx", - "dayVolumeUsd": 28.384106, - "poolLiquidityUsd": 140.744228602712, - "poolLiquidity": 98069565, - "poolStakedLiquidityUsd": 1.435146863378368e-06, + "poolAddress": "neutron18j8kpe4pd4ngdla9xtmvvw0sfym5ne7y2u62zt2w7fhuyz8csxuqcz3kfj", + "lpAddress": "neutron1n3lc3cumhfql94aejtf9ugsvgld07cu0cvt5nvy9s55qln38j4es3atah8", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, - "config": { - "migrateToAddress": null, - "whitelisted": null - }, + "config": null, "feeRate": [ "0.30" ], "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "token1PriceUsd": 0.2993609633423102, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "token1PriceUsd": 1.17, + "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "token2PriceUsd": 10.62 }, "stakeable": false, "assets": [ { - "id": "6585a8d5e74086cc3b8e6828", - "address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "amount": "235564191", - "symbol": "ECLIP" + "id": "6512ca6ba1435ff662da8746", + "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "amount": "0", + "symbol": "AXL" }, { - "id": "6585a8d5e74086cc3b8e6829", - "address": "untrn", - "amount": "64368016", - "symbol": "NTRN" + "id": "64872675d1c3bbd03b9adc04", + "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "amount": "0", + "symbol": "stATOM" } ], - "name": "ECLIP - NTRN", + "name": "AXL - stATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -5628,27 +6948,27 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.113886 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.056943 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1wzsewgysr8ttdlw96lp7u2j55z3sg7rtuvfjmd70ajavvpr3308s3zekqu", - "lpAddress": "neutron190u6kv2esdm93vj4wxjayzrchau5j3ekpacupdayw3kqepwdnt5sg7lfjw", + "poolAddress": "neutron1ytty6qu5yskwvwtpvfld6flfkpytq8m7t7q95rm5j7g625jwcghsrrf7tf", + "lpAddress": "neutron18g53drwvady7kwknjauxke0za9dscv0yjyvwska2d7wsgw2gemlsl9unw8", "dayVolumeUsd": 0, - "poolLiquidityUsd": 135.5644343954147, - "poolLiquidity": 17646682668006220, - "poolStakedLiquidityUsd": 7.681080852844195e-15, + "poolLiquidityUsd": 2.536006476848, + "poolLiquidity": 82679, + "poolStakedLiquidityUsd": 0.00003067292150180818, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1yw0a7nxa8jdgzmdsme4gwxhj76n44z305qgwrzvlfavgna9epcys3k9m2f", - "whitelisted": true + "migrateToAddress": null, + "whitelisted": null }, "feeRate": [ "0.30" @@ -5656,30 +6976,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token1PriceUsd": 4082.92, - "token2Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "token2PriceUsd": 3532.14 + "token1Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "token1PriceUsd": 1.17, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "657b93ba88779c34563a14cf", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "16539956903583645", - "symbol": "wstETH" + "id": "657b255493a9a5ece90050d8", + "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "amount": "1133463", + "symbol": "AXL" }, { - "id": "657b93ba88779c34563a14d0", - "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "amount": "19261159963827864", - "symbol": "WETH.axl" + "id": "657b255493a9a5ece90050d9", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "1211483", + "symbol": "USDC.axl" } ], - "name": "wstETH - WETH.axl", + "name": "AXL - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -5699,16 +7019,16 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1xvv4zlprj4ukvthx94hfa3fauv3spv09wljp8zeknuzkurwhcp0s3krnh0", - "lpAddress": "neutron1lwdnxdldqtma7mthzrg6ac6y3tggrlwac8fdfjxrkdu0zxunfexs476m7k", - "dayVolumeUsd": 2.557642, - "poolLiquidityUsd": 124.5298350276189, - "poolLiquidity": 5000001000, - "poolStakedLiquidityUsd": 2.490596202433037e-08, + "poolAddress": "neutron19p9jm0yskr8sc99afe7sna2z5ax6v97qlnx9u6j8emfsxrg2guvssexfkt", + "lpAddress": "neutron16dew6s7wte5p7y0f4wuy2urwrh73thjad2xe6qny5fsalu9hxv3sjdfvza", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.0179362, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.0000179362, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, - "whitelisted": null + "migrateToAddress": "neutron1d73vc84e36d4mmm9dwqql4sty3fx4usjmupxewx36e4qudm5auqs0yryma", + "whitelisted": true }, "feeRate": [ "0.26", @@ -5717,30 +7037,30 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", - "token1PriceUsd": 0.001868806128005473, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token1Address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "token1PriceUsd": 9.96, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "65b786f0c56514afb66c33d8", - "address": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", - "amount": "33513098780", - "symbol": "WOSMO" + "id": "65770977e9e56af04d30a1ef", + "address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "amount": "915", + "symbol": "stkATOM" }, { - "id": "65b786f0c56514afb66c33d9", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "753195000", - "symbol": "NEWT" + "id": "65770977e9e56af04d30a1f0", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "1096", + "symbol": "ATOM" } ], - "name": "WOSMO - NEWT", + "name": "stkATOM - ATOM", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -5749,59 +7069,58 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.0101 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.00505 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1yq9gtuegd0c8c2lhfcwg7s5e362u8ylhx7kd4p093ypsaugjufvsrqmp26", - "lpAddress": "neutron1sw7flhaxg4fqve4xrnpjsv2ndkes358pp7k67j4jhqnmyjnrpxjqhp5y47", - "dayVolumeUsd": 0.225191, - "poolLiquidityUsd": 114.8093617344844, - "poolLiquidity": 500001000, - "poolStakedLiquidityUsd": 2.296182642315219e-07, + "poolAddress": "neutron1uecnt9mmvxfy35f9slnqaje36yx6qgm5gz2cre0wf63wpgr9da9qjup07a", + "lpAddress": "neutron15fyg87k6nsf229cvw95ka0pcel0ajm2fqyfhrjfd55hp9y54tsls0xvqmw", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.000481352192, + "poolLiquidity": 47200, + "poolStakedLiquidityUsd": 1.019813966101695E-8, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1tx7vhpvd5yjscf3nurxxpn695la9ka6f8zezgrnl7y4lsvemccsqwc3lz3", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token1PriceUsd": 0.998656, + "token2Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65b7bbb4c56514afb66c631c", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "363133294", - "symbol": "ASTRO" + "id": "657ba85d750df6a352a4989d", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "482", + "symbol": "USDC.axl" }, { - "id": "65b7bbb4c56514afb66c631d", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "693546036", - "symbol": "NEWT" + "id": "657ba85d750df6a352a4989e", + "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "amount": "4773438", + "symbol": "ASTROPEPE" } ], - "name": "ASTRO - NEWT", + "name": "USDC.axl - ASTROPEPE", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -5810,58 +7129,59 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.000868 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.000434 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron16yll06qup0j0mnjc7v68stmw939e73ykr3twtd78l3hqlkstm2ysr0k4q8", - "lpAddress": "neutron1y7ty5e7gwq5770vrkzgkskgyjeyt48cfvd8x6ev9y66cyzk6320qumane4", + "poolAddress": "neutron174wu6vgx4p6vqtzfuyfqrxfmx9xkzm7cv7pydd4k27zlleefrmrsy36jep", + "lpAddress": "neutron1kuty0egqv9dpj58kwkch0ylvyj9wvfqlwcnmde7rmrzczlt92jzsqcrc72", "dayVolumeUsd": 0, - "poolLiquidityUsd": 97.362348517107, - "poolLiquidity": 33617800, - "poolStakedLiquidityUsd": 2.896154671545689e-06, + "poolLiquidityUsd": 0.002248385868, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000002248385868, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, - "whitelisted": true + "migrateToAddress": "neutron194f0u63jenquqvxr5hj2glq4sdhx60arn8y86299c8qme6pspjesv444yd", + "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "token1PriceUsd": 1.17, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657b9cb3447807eaef0ca19c", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "305402707", - "symbol": "ASTRO" + "id": "657ba53d83cb746a55cea517", + "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "amount": "1004", + "symbol": "AXL" }, { - "id": "657b9cb3447807eaef0ca19d", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "4479957", - "symbol": "ATOM" + "id": "657ba53d83cb746a55cea518", + "address": "untrn", + "amount": "1572", + "symbol": "NTRN" } ], - "name": "ASTRO - ATOM", + "name": "AXL - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -5881,44 +7201,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron16gpxa7rg0lvagq7qhuhsh2ru4590g7wx5nxp478knjyelvj0m3zqymlpuj", - "lpAddress": "neutron1096y5ft0nfyjet5ktxd38maunqv9dljtdwx28dcslaa9p9nmgq8qqr5er9", - "dayVolumeUsd": 2.332126, - "poolLiquidityUsd": 85.39846120362235, - "poolLiquidity": 50000073539, - "poolStakedLiquidityUsd": 1.707966711649718e-09, + "poolAddress": "neutron1lw4fslhahxchrw6kjq60hl7x4vskxy75ym4x537dzr788cqv0k2q9vum75", + "lpAddress": "neutron1kel2lp74j57ecwp3sr7053l5c9fcnx2utryhuc0r6s9anyrj5ueqn3370l", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.001740522081, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000001740522081, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "token1PriceUsd": 0, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "token2PriceUsd": 1.004 }, "stakeable": false, "assets": [ { - "id": "65a35d7e59423b792c43732d", - "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "amount": "2488248294597", - "symbol": "BAD" + "id": "657b6571dee02e013ce405cf", + "address": "untrn", + "amount": "899", + "symbol": "NTRN" }, { - "id": "65a35d7e59423b792c43732e", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "1039116795", - "symbol": "NEWT" + "id": "657b6571dee02e013ce405d0", + "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "amount": "1122", + "symbol": "USDT.axl" } ], - "name": "BAD - NEWT", + "name": "NTRN - USDT.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -5941,47 +7262,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1lj0zf62aglkzeq8jpu0ld9n24aqscqkgr0287rxcrdmn0rya4dvsndymwf", - "lpAddress": "neutron1f9znwwrgm0eqr3nukfc4anfn6vl339ks8nc5w5qlgmtk0mw2uwwsqlnemw", + "poolAddress": "neutron1ym2r2cj69hh02jnggdk0edj0fx34e6qa5ael29zqwsytgdny9nxq8rutm6", + "lpAddress": "neutron19h9z733xhenxm9wpuznrdnp6ahlv9gfjedlxl0gttqndxk7tmdlqqmw96a", "dayVolumeUsd": 0, - "poolLiquidityUsd": 58.65171403365915, - "poolLiquidity": 13710455576, - "poolStakedLiquidityUsd": 4.277882211952697e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1d73vc84e36d4mmm9dwqql4sty3fx4usjmupxewx36e4qudm5auqs0yryma", "whitelisted": null }, "feeRate": [ - "0.30" + "0.03", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", - "token1PriceUsd": 0, - "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token2PriceUsd": 0.2622099128699426 + "token1Address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "token1PriceUsd": 9.96, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "660753f405a65f3ca6fca466", - "address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", - "amount": "846793917142", - "symbol": "BADDOG" + "id": "6577110edbc0eb65bacf5f7f", + "address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "amount": "0", + "symbol": "stkATOM" }, { - "id": "660753f405a65f3ca6fca467", - "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "223682291", - "symbol": "PROP16" + "id": "6577110edbc0eb65bacf5f80", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "0", + "symbol": "ATOM" } ], - "name": "BADDOG - PROP16", + "name": "stkATOM - ATOM", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -6001,47 +7323,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1u4v7xcvkhz8sxs3u9mjhprwc8vwc2p08x0tje4ugtrrkjhkagdysztt5dq", - "lpAddress": "neutron15cs5enz5tgalh9uc2xcfm6ldg0cjf0mp0rs0cntyhhvq86vaff0s3yaaue", + "poolAddress": "neutron1d73vc84e36d4mmm9dwqql4sty3fx4usjmupxewx36e4qudm5auqs0yryma", + "lpAddress": "neutron13jcw3sryrhpmamt3dqgatuts4tdewyjk4edzejcc7sjy3kypmqvshwexa8", "dayVolumeUsd": 0, - "poolLiquidityUsd": 56.748679307, - "poolLiquidity": 20284360, - "poolStakedLiquidityUsd": 2.797656879831992e-06, + "poolLiquidityUsd": 2867665.13203848, + "poolLiquidity": 160129807549, + "poolStakedLiquidityUsd": 0.00001790837804984903, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1lys60a2wygdd0layel8u2t9u40g3dwln8xraje5a902xh39mhynsk8tfgs", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.03", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "token1PriceUsd": 1.29, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token1PriceUsd": 8.05, + "token2Address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "token2PriceUsd": 9.96 }, "stakeable": false, "assets": [ { - "id": "657ba85d8e5876dedd099611", - "address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "amount": "22344459", - "symbol": "OSMO" + "id": "65771bda5ae0109d7d38288f", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "179135622444", + "symbol": "ATOM" }, { - "id": "657ba85d8e5876dedd099612", - "address": "untrn", - "amount": "25595167", - "symbol": "NTRN" + "id": "65771bda5ae0109d7d382890", + "address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "amount": "143134876643", + "symbol": "stkATOM" } ], - "name": "OSMO - NTRN", + "name": "ATOM - stkATOM", "isNew": false, - "isIlliquid": true, - "isDeregistered": true, + "isIlliquid": false, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -6061,15 +7384,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1xrzzrndy8eyv7j0q87e20ea9xgrdhq7xyws6kqljua73y0z72despt9wef", - "lpAddress": "neutron1u0uvttvye9sly9qqp5y308yz5pplesjr2w8tej4gynxj294sy2yq27takq", - "dayVolumeUsd": 0.311089, - "poolLiquidityUsd": 49.436482, - "poolLiquidity": 7663297651, - "poolStakedLiquidityUsd": 6.451071620837963e-09, + "poolAddress": "neutron1f2ufsltxt9w0puxqsesacsl83t54qgmlehag762h3whjg9y66epstear2d", + "lpAddress": "neutron1jwynrf360hft5sza3z2agcnmx3j4gq2mxm3sds2ugex8lj07fnqspp763v", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0.0003968740504068586, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 3.968740504068586E-7, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron14798daa6d6ysq28fjzpg7jkykaseq7tlz6euleeegj02e0a8gkksltdm9l", "whitelisted": null }, "feeRate": [ @@ -6078,30 +7401,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "token1PriceUsd": 0, - "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token2PriceUsd": 1 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65995c8c84dc55803c282652", - "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "amount": "1392809393156", - "symbol": "BAD" + "id": "65793dc5e21c1a9d87a26f7d", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "3557", + "symbol": "NEWT" }, { - "id": "65995c8c84dc55803c282653", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "49436482", - "symbol": "USDC" + "id": "65793dc5e21c1a9d87a26f7e", + "address": "untrn", + "amount": "290", + "symbol": "NTRN" } ], - "name": "BAD - USDC", + "name": "NEWT - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -6121,12 +7444,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1na2apzyvkr9an4msnwlyp5ux90ljakm4qmwzcw8xj2z3xt48fmjqnwh0al", - "lpAddress": "neutron19ngwfjpscxq3vegckpvlqrhd05kx5puk0tlttkz8q764eyugruhqwp288e", - "dayVolumeUsd": 189.317263, - "poolLiquidityUsd": 48.763077647004, - "poolLiquidity": 34080232, - "poolStakedLiquidityUsd": 1.430831739848437e-06, + "poolAddress": "neutron1kqdw7nfcztre9k8xfkxmqe52hqc0wa7j3zr24g6nerh09aknmlmqnqnm5m", + "lpAddress": "neutron17w40jvkdk8xaaqvgymdwug62qtngch2drawmx9rrnmen99pk05esrgmxaf", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 1.194640242688, + "poolLiquidity": 50812891, + "poolStakedLiquidityUsd": 2.35105741707872E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6138,27 +7461,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "token1PriceUsd": 3.12, - "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token2PriceUsd": 0.159201 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "65cff2c068fc77acd90a031b", - "address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "amount": "7887012", - "symbol": "STRD" + "id": "657a8b004efa0ab8cad5013d", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "5406491039", + "symbol": "HUAHUA" }, { - "id": "65cff2c068fc77acd90a031c", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "151730204", - "symbol": "ASTRO" + "id": "657a8b004efa0ab8cad5013e", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "1196248", + "symbol": "USDC.axl" } ], - "name": "STRD - ASTRO", + "name": "HUAHUA - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6170,23 +7493,23 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.759596 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.379798 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1pejs80dp0ewvwgerchk35e4l4et5kxxcwdsdach2z66r2gdudyss8jwdmf", - "lpAddress": "neutron1y9v53n8l4quwul4gcu5084jpr493pv803leqnmrus8s5zlllpjlqymr0v2", + "poolAddress": "neutron1dw224e9jhlp83jfutgp8zmz699x9s0wgu7l5g25wu28apw7gwluqdghwhm", + "lpAddress": "neutron1lmrc7tfpuqjd6el66mq8lws4855ff9gsdl4thjtckynlgu5qg8zsdrluk9", "dayVolumeUsd": 0, - "poolLiquidityUsd": 43.89026580200325, - "poolLiquidity": 44415341093, - "poolStakedLiquidityUsd": 9.881780643896505e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6198,27 +7521,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "token1PriceUsd": 0.01115149534075275, - "token2Address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "token1PriceUsd": 0.00000941, + "token2Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "6608f06c05a65f3ca6fe3653", - "address": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", - "amount": "3935818871", - "symbol": "ATOM1KLFG" + "id": "658368f98c4c7910aa8805c1", + "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "amount": "0", + "symbol": "CRBRUS" }, { - "id": "6608f06c05a65f3ca6fe3654", - "address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", - "amount": "502057281015", - "symbol": "BADDOG" + "id": "658368f98c4c7910aa8805c2", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" } ], - "name": "ATOM1KLFG - BADDOG", + "name": "CRBRUS - HUAHUA", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6241,12 +7564,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron19tycfzc7hhfytfl7et6c3k4nuw4zvpn9xd70xxxjsa6x5chaj6gqp0hjx0", - "lpAddress": "neutron1730urt2qjrus8z6kgg54qskx3pet6kf49k2q795q58sqr76twcsqtwvhw2", + "poolAddress": "neutron1zwdvfyp3ppjv480vsm3el5q4vqt8cg2p9nmmcanu0ldv4aagjp8sgkcmeg", + "lpAddress": "neutron1a56m4utjh3a0hrazazlq5ahjquh62m0x85xjp5f4zdgrxtadgansfy8a34", "dayVolumeUsd": 0, - "poolLiquidityUsd": 37.477834529, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.037477834529, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6258,27 +7581,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "token1PriceUsd": 0.00000941, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "65a51916e8848f944ef422c4", - "address": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", - "amount": "74809494504805", - "symbol": "NTRL" + "id": "6583693d8c4c7910aa88065b", + "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "amount": "0", + "symbol": "CRBRUS" }, { - "id": "65a51916e8848f944ef422c5", - "address": "untrn", - "amount": "34351819", - "symbol": "NTRN" + "id": "6583693d8c4c7910aa88065c", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "0", + "symbol": "USDC.axl" } ], - "name": "NTRL - NTRN", + "name": "CRBRUS - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6301,12 +7624,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1n2qzadpgcceyf6z4g57ansarfdn2a0sfgh7z4qa8wnmx3dx8580s4mzy4v", - "lpAddress": "neutron1ks5rldhnxjzthum937gj00vwrlpkld7jm6cxs0jws247n2z5cjxs90kvar", + "poolAddress": "neutron1vfxxvazwq8p8etm8kesz0h6czuea75tl303j5jrxttwxzckd0hjqe0m7jq", + "lpAddress": "neutron1fdt0aftw6z4r26cvr5hu8j3gvjpe0mwa3ehv66pycpjat8kkqtmqw9yegv", "dayVolumeUsd": 0, - "poolLiquidityUsd": 26.82358241115849, - "poolLiquidity": 61184166, - "poolStakedLiquidityUsd": 4.384072573802367e-07, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6318,27 +7641,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "token1PriceUsd": 0.2993609633423102, - "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token2PriceUsd": 0.159201 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "65977fdd84dc55803c230900", - "address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "amount": "44833854", - "symbol": "ECLIP" + "id": "658369b68c4c7910aa8806ed", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65977fdd84dc55803c230901", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "84183370", - "symbol": "ASTRO" + "id": "658369b68c4c7910aa8806ee", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "0", + "symbol": "ATOM" } ], - "name": "ECLIP - ASTRO", + "name": "HUAHUA - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6361,45 +7684,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ny6cysje5f6u5jlmvzfxnf06t4zgdr3v7eyvfc0cgwuxy74lqfusuewch3", - "lpAddress": "neutron12jlxn5gsyjpke7xdg0c3wnumn5dwlqhpehwy9q5pj69vmmmkq7sq8xjezg", - "dayVolumeUsd": 0.91573, - "poolLiquidityUsd": 24.59079602, - "poolLiquidity": 1082777, - "poolStakedLiquidityUsd": 2.271085922586086e-05, + "poolAddress": "neutron10aaulqcs5ecnxh2c4jqqcdqn8479rdqqm8qwmzs5dnyf7hycardspyk5nw", + "lpAddress": "neutron1nsm8ljxngkdmwmx0r0v6ma72f9ruv57q95p2xqxjf7g2s03e3cyq7z4ywr", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token1PriceUsd": 11.62, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token2PriceUsd": 0.125124 }, "stakeable": false, "assets": [ { - "id": "657b7cc7e7c5cb511c7da599", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "1061733", - "symbol": "TIA" + "id": "65836b758c4c7910aa8809d7", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "657b7cc7e7c5cb511c7da59a", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "1126237", - "symbol": "ATOM" + "id": "65836b758c4c7910aa8809d8", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "0", + "symbol": "ASTRO.cw20" } ], - "name": "TIA - ATOM", + "name": "HUAHUA - ASTRO.cw20", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6409,26 +7731,26 @@ "day": 0 }, "totalRewards": { - "apr": 0.02181913, - "apy": 0.02181913, - "day": 0.00294 + "apr": 0, + "apy": 0, + "day": 0 }, "tradingFees": { - "apr": 0.02181913, - "apy": 0.02181913, - "day": 0.00147 + "apr": 0, + "apy": 0, + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1u6qv5hav82l4saj0nu6dhnz5aewwmw73lncylg7qa0cl3d7vrhusy4z4l0", - "lpAddress": "neutron1cvwyv49dm6e76ptqqcsrgkvjz3w5xue3faldy6yqjkythk3r7rqqj3pgle", + "poolAddress": "neutron15y2nx8r42kgw9t6602m57sz3pemnadv0zyppqspymxu32nuc796sekehd6", + "lpAddress": "neutron1hdlk7zpcv2lh82fukkt7ulvle294qh28agyscht3hf0l0ljsdt4qguyhj0", "dayVolumeUsd": 0, - "poolLiquidityUsd": 20.09346688, - "poolLiquidity": 1037503397, - "poolStakedLiquidityUsd": 20.09344751286642, - "poolStakedLiquidity": 1037502397, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, + "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null @@ -6439,27 +7761,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token1PriceUsd": 10.88, - "token2Address": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", - "token2PriceUsd": 0 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, - "stakeable": true, + "stakeable": false, "assets": [ { - "id": "65d7515568fc77acd9132a2c", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "1846826", - "symbol": "ATOM" + "id": "65836bbc8c4c7910aa880a08", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65d7515568fc77acd9132a2d", - "address": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", - "amount": "590434607594", - "symbol": "BADKID" + "id": "65836bbc8c4c7910aa880a09", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "ATOM - BADKID", + "name": "HUAHUA - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6478,63 +7800,49 @@ "apy": 0, "day": 0 }, - "rewards": [ - { - "symbol": "BADKID", - "denom": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", - "amountPerDay": "188885.46554136848760192", - "amountPerSecond": "2.1861743696917649028", - "priceUsd": 0, - "precision": 6, - "amountPerDayUsd": "0", - "yield": 0, - "isExternal": true, - "gaugeInfo": [] - } - ] + "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron15gxcjgy9l3g5n5fek0zdef3d4cegdpejpdhe70hyw5grjq2g49jq50tnql", - "lpAddress": "neutron1u3a7rzqsc7yv2npm0svs2dxfygyrwj26dynnm2alwav6f93rjqwsaz4ew3", - "dayVolumeUsd": 3.180919, - "poolLiquidityUsd": 14.8498604362, - "poolLiquidity": 2367239, - "poolStakedLiquidityUsd": 6.273071893543402e-06, + "poolAddress": "neutron17qr78j5z74x0337nf56ed92aqx86n36g778z6mns29xzqp360d5s5ml08v", + "lpAddress": "neutron1xqjcps3zqesmwwckua2t84dep7sk0paxpmqnzavgcftv0zmu049qj0c4jg", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/B6643B477C69060B125279D9FF69EC20189E4D15DC24CF0457E0BAA9DD1A26AE", - "token2PriceUsd": 5.98 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "66140b057deb69f605877ab9", - "address": "untrn", - "amount": "10771628", - "symbol": "NTRN" + "id": "65836bd68c4c7910aa880a15", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "66140b057deb69f605877aba", - "address": "ibc/B6643B477C69060B125279D9FF69EC20189E4D15DC24CF0457E0BAA9DD1A26AE", - "amount": "51806259", - "symbol": "SHD" + "id": "65836bd68c4c7910aa880a16", + "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "amount": "0", + "symbol": "ASTROPEPE" } ], - "name": "NTRN - SHD", - "isNew": true, + "name": "HUAHUA - ASTROPEPE", + "isNew": false, "isIlliquid": true, "isDeregistered": false, "astroRewards": { @@ -6545,23 +7853,23 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.01427 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.007135 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1926qqec0y8gw9x43etcxe369njza7vfjy3j0s9wzeh972hpv2mtsdplm00", - "lpAddress": "neutron1kpn7k259h7htlpygk5pmwrrqjwt6q4teyygefjk9sdh2ugt82nws8xnkpf", + "poolAddress": "neutron1suav7dgnuvtqzg0tehlqqjyrdwh4nfqenrmtcu20xrt08d9426hq20vyen", + "lpAddress": "neutron1hpn56vtxpelhexlqvzengqaxg5fzf02lml2pfy87zasawhsqxwjqmvu2am", "dayVolumeUsd": 0, - "poolLiquidityUsd": 13.050496178, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.013050496178, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6573,27 +7881,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1guar6dc2scpxtmmq8reh0q5cv2l37vs0uyfdru/dinosaur", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "token2PriceUsd": 1.17 }, "stakeable": false, "assets": [ { - "id": "65a526c7e8848f944ef43046", - "address": "factory/neutron1guar6dc2scpxtmmq8reh0q5cv2l37vs0uyfdru/dinosaur", - "amount": "2410019107039", - "symbol": "DSR" + "id": "65836bfc8c4c7910aa880a41", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65a526c7e8848f944ef43047", - "address": "untrn", - "amount": "11961958", - "symbol": "NTRN" + "id": "65836bfc8c4c7910aa880a42", + "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "amount": "0", + "symbol": "AXL" } ], - "name": "DSR - NTRN", + "name": "HUAHUA - AXL", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6616,12 +7924,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1qnmlnp70mjtmykwx5pt7gha3utlfj5z4fjffynrg94hpvzfanl5ssmxcwg", - "lpAddress": "neutron15xdxg98gyym4jduwl2jsas2mjl6ym8t4agvg7vxcur42hqwxk8csrq3su0", + "poolAddress": "neutron103rsyvenqk72lp7epzswyvluux9kdryls0ckycvtgaun6gq2me0slvhdah", + "lpAddress": "neutron1qwhth90h898fpj47d039e7gr9z0u859jz7krr9agqu79e9t4kggqejhgg2", "dayVolumeUsd": 0, - "poolLiquidityUsd": 12.294229161, - "poolLiquidity": 2449465901, - "poolStakedLiquidityUsd": 5.01914689071132e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6633,27 +7941,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "token2PriceUsd": 0.0000183176135627049 }, "stakeable": false, "assets": [ { - "id": "6604887b05a65f3ca6f98a1e", - "address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", - "amount": "533950232042", - "symbol": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI" + "id": "658374488c4c7910aa88100c", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "6604887b05a65f3ca6f98a1f", - "address": "untrn", - "amount": "11268771", - "symbol": "NTRN" + "id": "658374488c4c7910aa88100d", + "address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "amount": "0", + "symbol": "CORGI" } ], - "name": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI - NTRN", + "name": "HUAHUA - CORGI", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6676,15 +7984,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1tx80z5v3nurwfm2mulyv6396pc7mjdh3pmydrv80ulu889a9wfxsn8jh2m", - "lpAddress": "neutron1km0xpyt8z8s9lzga3hyruvswulwwc7qscjvz6xll6pvmv7u8d5qqvcgv8h", - "dayVolumeUsd": 0.355433, - "poolLiquidityUsd": 9.804430131615344, - "poolLiquidity": 32239535018, - "poolStakedLiquidityUsd": 3.04112020396085e-10, + "poolAddress": "neutron1cjsypm7echsufdrzdyxwrjs6k60azj9a6w4vz870k3gt3t8p3j5suytrhs", + "lpAddress": "neutron1qvtvws4gvwcz5pedxdqx9w6mnghrs3emlmtwsq84xu8kdu24hc3qm83ty9", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1fr3h0w6sg62agzpvu42ewj8m6rn9x45py77egd8xefp2682st39suqnx6n", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -6693,30 +8001,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token1PriceUsd": 4082.92, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "token2PriceUsd": 0.901526 }, "stakeable": false, "assets": [ { - "id": "657b636fbcee8a703cbaa0c8", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "1182752519671055", - "symbol": "wstETH" + "id": "6583748a8c4c7910aa881028", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "657b636fbcee8a703cbaa0c9", - "address": "untrn", - "amount": "4560354", - "symbol": "NTRN" + "id": "6583748a8c4c7910aa881029", + "address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "amount": "0", + "symbol": "OSMO" } ], - "name": "wstETH - NTRN", + "name": "HUAHUA - OSMO", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -6725,27 +8033,27 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 0.001426 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 0.000713 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron173xvrtyu4zquzd7wk8l9jhzk2grkx6nvhk65t6y9hcq40erjyc8sf63jlg", - "lpAddress": "neutron17fey4t0t20hyk4kwxj9zyu5vc4wfv4mnk62gn8zg0ldry6cjgkcs5ncz40", - "dayVolumeUsd": 0.037691, - "poolLiquidityUsd": 9.518026674, - "poolLiquidity": 1310853, - "poolStakedLiquidityUsd": 7.260941290899875e-06, + "poolAddress": "neutron1vyr9ahl4ld84p4ek30f0q20fqped5jnwn5yv89hajps7e9ek0uzq2zyadd", + "lpAddress": "neutron1w2p9kyud9vjfgh0fu7eylg935llkkuyecrn04k2v0y2m4q4q00qs7m07rx", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1c4p33xy3ps35gs7w3mcc5vzsdfkwqd3klhnxry0yn2nhl4wnwhxslcp8g8", - "whitelisted": true + "migrateToAddress": null, + "whitelisted": null }, "feeRate": [ "0.30" @@ -6753,55 +8061,55 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token1PriceUsd": 11.62, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "token2PriceUsd": 9.53 }, "stakeable": false, "assets": [ { - "id": "657b877fc361c1dafb02c0e6", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "410503", - "symbol": "TIA" + "id": "658374aa8c4c7910aa881037", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "657b877fc361c1dafb02c0e7", - "address": "untrn", - "amount": "4351954", - "symbol": "NTRN" + "id": "658374aa8c4c7910aa881038", + "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "amount": "0", + "symbol": "TIA" } ], - "name": "TIA - NTRN", + "name": "HUAHUA - TIA", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, "day": 0 }, "totalRewards": { - "apr": 0.00295281, - "apy": 0.00295281, - "day": 0.000154 + "apr": 0, + "apy": 0, + "day": 0 }, "tradingFees": { - "apr": 0.00295281, - "apy": 0.00295281, - "day": 7.7e-05 + "apr": 0, + "apy": 0, + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ghk7w43dgtmqjctyqwtd79q0apdj4wwuva6wjwex5vkrdlf0lqhqyjt4cu", - "lpAddress": "neutron1lvrhtkwhjyy77grw70wq0jcce60afpfch9r33eswdkuynljneazs4h86x2", + "poolAddress": "neutron1udj468a3vdrjcz5u7wefr4xmp0rrll0c3g5waulh4ec3mhrksfqq9j7ps7", + "lpAddress": "neutron187ph9r425t49dv2lcu3v76y7ujglavqsvr9wpk8y847z9wea4hwqn3kyu7", "dayVolumeUsd": 0, - "poolLiquidityUsd": 7.636998909, - "poolLiquidity": 13999998000, - "poolStakedLiquidityUsd": 5.454999999797275e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6813,27 +8121,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron1ny4u5eqrfhr547u3ephq7gr93zhcv90gmhuzzd/paampit", - "token2PriceUsd": 0 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "token2PriceUsd": 3498.23 }, "stakeable": false, "assets": [ { - "id": "65eae42668fc77acd92ce6b3", - "address": "untrn", - "amount": "6999999", - "symbol": "NTRN" + "id": "6583750f8c4c7910aa881091", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65eae42668fc77acd92ce6b4", - "address": "factory/neutron1ny4u5eqrfhr547u3ephq7gr93zhcv90gmhuzzd/paampit", - "amount": "27999999999999", - "symbol": "factory/neutron1ny4u5eqrfhr547u3ephq7gr93zhcv90gmhuzzd/paampit" + "id": "6583750f8c4c7910aa881092", + "address": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "amount": "0", + "symbol": "wstETH.axl" } ], - "name": "NTRN - factory/neutron1ny4u5eqrfhr547u3ephq7gr93zhcv90gmhuzzd/paampit", + "name": "HUAHUA - wstETH.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6856,12 +8164,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1m6cstaaheluc4aqkguqh4vgnndf8hu36jem287famuarwgpyd6zscr0e70", - "lpAddress": "neutron18n8qnctlc45u9rnztj0fy4pjz4600u3fpqczt9hpcj0ha2jsy92sfmd9q7", + "poolAddress": "neutron14auz6pv7jgwudw9uykce5fa6jf7wazaqqg499fve2hrf83rjjuwqx3l6tj", + "lpAddress": "neutron1s5nerk6frmxsthmtn6xvrg4t9g9ftvjuhutgugajcswmkxnyv4nqdjumnw", "dayVolumeUsd": 0, - "poolLiquidityUsd": 6.770340148, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.006770340148, + "poolLiquidityUsd": 0.0346656, + "poolLiquidity": 38729833462, + "poolStakedLiquidityUsd": 8.95061943078432E-13, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6873,27 +8181,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1x6dz920jhwuw9e4vf0rwwdrlkc2ztyss0eyl2n/newtkiller", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token2PriceUsd": 3466.56 }, "stakeable": false, "assets": [ { - "id": "65aa42f90a570e4941643258", - "address": "factory/neutron1x6dz920jhwuw9e4vf0rwwdrlkc2ztyss0eyl2n/newtkiller", - "amount": "7523824852", - "symbol": "NEWTK" + "id": "658375488c4c7910aa8810bc", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "150000000", + "symbol": "HUAHUA" }, { - "id": "65aa42f90a570e4941643259", - "address": "untrn", - "amount": "6205628", - "symbol": "NTRN" + "id": "658375488c4c7910aa8810bd", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "10000000000000", + "symbol": "wstETH" } ], - "name": "NEWTK - NTRN", + "name": "HUAHUA - wstETH", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6916,12 +8224,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1n3tyzn7fsfhhnwpdue7x44s0vzp77avuaaqk9apfpahnrjlerd0sepm8uv", - "lpAddress": "neutron1epnmqy46lfw4vpuv67wkhr0cgjsyusry84zgfz86prdajxu8k4vsv2vpq8", + "poolAddress": "neutron1ul5lyle69gn9glwvr6ct340ce9u23wx73z00lyp59nnaeh2serhqv8wlnz", + "lpAddress": "neutron179npka75zspsfag4m5gemgy6lea5ln46fp7cxdfy6e9nq52st92s2eklpk", "dayVolumeUsd": 0, - "poolLiquidityUsd": 6.545998909, - "poolLiquidity": 18973662797, - "poolStakedLiquidityUsd": 3.450044927009416e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -6933,27 +8241,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron1qx78ufgp2v9wgwvqwea98qc4d46c60493lf7ax/gettingsats", - "token2PriceUsd": 0 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "token2PriceUsd": 2997.89 }, "stakeable": false, "assets": [ { - "id": "65eae23068fc77acd92ce3d1", - "address": "untrn", - "amount": "5999999", - "symbol": "NTRN" + "id": "6583755d8c4c7910aa8810e2", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65eae23068fc77acd92ce3d2", - "address": "factory/neutron1qx78ufgp2v9wgwvqwea98qc4d46c60493lf7ax/gettingsats", - "amount": "59999999999999", - "symbol": "factory/neutron1qx78ufgp2v9wgwvqwea98qc4d46c60493lf7ax/gettingsats" + "id": "6583755d8c4c7910aa8810e3", + "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "amount": "0", + "symbol": "WETH.axl" } ], - "name": "NTRN - factory/neutron1qx78ufgp2v9wgwvqwea98qc4d46c60493lf7ax/gettingsats", + "name": "HUAHUA - WETH.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -6976,45 +8284,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron12s83yxf4475zu30tr66jdux3qezfmlpwq3gg98vrvvmerqdcca4qsalepd", - "lpAddress": "neutron1tsg0q6excrt0gm8a6sp8n6h7tze5e3d30c2tsmvhdyzadvyrzscsuvfn87", + "poolAddress": "neutron1n3v7vs8r5kjdkhj8xemlgu6qvjy6ggp53p32r6wd4ptzxrrv309sljmht2", + "lpAddress": "neutron1jqjyuk3h0tvrheatfu5yhwje830xnx00p74fsznmqdkvh9njuz0qtm3k5e", "dayVolumeUsd": 0, - "poolLiquidityUsd": 3.665127574085962, - "poolLiquidity": 9273543122, - "poolStakedLiquidityUsd": 3.952240827098888e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token2Address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", + "token2PriceUsd": 6.58 }, "stakeable": false, "assets": [ { - "id": "65d3388768fc77acd90e3b2a", - "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "amount": "1958466174935", - "symbol": "ASTROPEPE" + "id": "658375878c4c7910aa8810f4", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65d3388768fc77acd90e3b2b", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "44596771", - "symbol": "NEWT" + "id": "658375878c4c7910aa8810f5", + "address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", + "amount": "0", + "symbol": "DOT" } ], - "name": "ASTROPEPE - NEWT", + "name": "HUAHUA - DOT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7037,12 +8344,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ucymd67e5xfg7rvk83983880ncwm7cs9555ljchhd6hsz5t82xtqp59l2u", - "lpAddress": "neutron1tancysq86sx9ddfvajn6s8y8q68qlmfk6phudru3yfsy6quh4xgsk5vfke", + "poolAddress": "neutron1un2f7h2r00fc9qu67uphzgurnl0gr3xl8pce2ycxxjk4w7jsqg7syq39mp", + "lpAddress": "neutron1srt3wpanawfgdl3zym0yvmpy439eqdwp49v2vggjvnf6gzu6ltuslw8s5p", "dayVolumeUsd": 0, - "poolLiquidityUsd": 3.651810474, - "poolLiquidity": 334721400, - "poolStakedLiquidityUsd": 1.090999999998333e-08, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7054,27 +8361,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron12z93fsnd27kttuj5use0dqas8e0xszxvyxyd2j/Richtron", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "token2PriceUsd": 2.108070467032493 }, "stakeable": false, "assets": [ { - "id": "6598592684dc55803c255a1e", - "address": "factory/neutron12z93fsnd27kttuj5use0dqas8e0xszxvyxyd2j/Richtron", - "amount": "33472152253", - "symbol": "factory/neutron12z93fsnd27kttuj5use0dqas8e0xszxvyxyd2j/Richtron" + "id": "658375a58c4c7910aa881102", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "6598592684dc55803c255a1f", - "address": "untrn", - "amount": "3347214", - "symbol": "NTRN" + "id": "658375a58c4c7910aa881103", + "address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "amount": "0", + "symbol": "DYDX" } ], - "name": "factory/neutron12z93fsnd27kttuj5use0dqas8e0xszxvyxyd2j/Richtron - NTRN", + "name": "HUAHUA - DYDX", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7096,13 +8403,13 @@ "rewards": [] }, { - "chainId": "neutron-1", - "poolAddress": "neutron1cp5pea4zpq7sz9xkveupxxtfu37uekeg0q0wnvhm5rrgt5ud07aqtq7xvr", - "lpAddress": "neutron1mtszsa42k6fk8elldvc33ylandll7h8ncmc2vqk289wxp3qhhu7shcwzqc", - "dayVolumeUsd": 0.011573, - "poolLiquidityUsd": 2.895599753941371, - "poolLiquidity": 316227, - "poolStakedLiquidityUsd": 9.156712595513247e-06, + "chainId": "neutron-1", + "poolAddress": "neutron14r8m0urxqwpzmevtq78lmfefl8n5jj8va8e8cl03rjj7aatgy7hswctrdp", + "lpAddress": "neutron1s8f6v2x7dxsl9399yce3rn4z4elt0938a9w4yptmz829tftmp25s2pm8nl", + "dayVolumeUsd": 0, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7111,30 +8418,30 @@ "feeRate": [ "0.30" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "token2PriceUsd": 0.2361622826314721 }, "stakeable": false, "assets": [ { - "id": "65ad65940a570e494166927b", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "8595384", - "symbol": "APOLLO" + "id": "658375c28c4c7910aa881114", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65ad65940a570e494166927c", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "1512256", - "symbol": "USDC.axl" + "id": "658375c28c4c7910aa881115", + "address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "amount": "0", + "symbol": "ECLIP" } ], - "name": "APOLLO - USDC.axl", + "name": "HUAHUA - ECLIP", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7146,23 +8453,23 @@ "totalRewards": { "apr": 0, "apy": 0, - "day": 4.6e-05 + "day": 0 }, "tradingFees": { "apr": 0, "apy": 0, - "day": 2.3e-05 + "day": 0 }, "rewards": [] }, { "chainId": "neutron-1", - "poolAddress": "neutron1ytty6qu5yskwvwtpvfld6flfkpytq8m7t7q95rm5j7g625jwcghsrrf7tf", - "lpAddress": "neutron18g53drwvady7kwknjauxke0za9dscv0yjyvwska2d7wsgw2gemlsl9unw8", + "poolAddress": "neutron1nxzdx9uyhcwfn7rpjska0qwmyj6vq2cqt493d0jw79ytcj35zt2qqt4cvt", + "lpAddress": "neutron1jg3z6x63pdxc7yxscn23de8vp7cw79wuw37aufy5zqfcg6je934sslfdlg", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.86889921344, - "poolLiquidity": 82679, - "poolStakedLiquidityUsd": 3.469924906493787e-05, + "poolLiquidityUsd": 0.1169749156139331, + "poolLiquidity": 49705000, + "poolStakedLiquidityUsd": 2.35338327359186E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7174,27 +8481,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "token1PriceUsd": 1.5, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "token2PriceUsd": 0.000006832473420032125 }, "stakeable": false, "assets": [ { - "id": "657b255493a9a5ece90050d8", - "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "amount": "950824", - "symbol": "AXL" + "id": "658375db8c4c7910aa881124", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "565200", + "symbol": "ASTRO.cw20" }, { - "id": "657b255493a9a5ece90050d9", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "1443616", - "symbol": "USDC.axl" + "id": "658375db8c4c7910aa881125", + "address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "amount": "6769851556", + "symbol": "JIMMY" } ], - "name": "AXL - USDC.axl", + "name": "ASTRO.cw20 - JIMMY", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7217,12 +8524,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ekcp74wqtchth9wcr0rzkskl9n2s9mcuykt4trl2w8w7kw8j58lqtf6ssx", - "lpAddress": "neutron1xl083q2uxe4e6dqsdsl6502hms6plzemvlyz49mjv7g9t7f4kaxqpwf7x4", + "poolAddress": "neutron1j9ed09dy5jht8mlk3upjgzj9ml4a2fcc67au03aw29ku8zgf2xuswswx4v", + "lpAddress": "neutron1t3p4vhfay48w6pgq33ll85jdsjhv4gtvxz8f9qm72v7jjc2g264qw7d374", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.62117987874, - "poolLiquidity": 426533114, - "poolStakedLiquidityUsd": 6.145313910452651e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7234,27 +8541,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2Address": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", + "token2PriceUsd": 30.27 }, "stakeable": false, "assets": [ { - "id": "658a54bffbb4c9d91face70e", - "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "amount": "76443165840", - "symbol": "BAD" + "id": "658376098c4c7910aa881135", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "658a54bffbb4c9d91face70f", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "2622911", - "symbol": "USDC.axl" + "id": "658376098c4c7910aa881136", + "address": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", + "amount": "0", + "symbol": "KSM" } ], - "name": "BAD - USDC.axl", + "name": "HUAHUA - KSM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7277,48 +8584,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1rsmtl79e6nuhzke4sy0dtulvkpv4qaruepjr6fd5h7hx5vvr79gqm8gnfs", - "lpAddress": "neutron15lfasgdvyh5kg7fegzpv7gx0ryhchkn2n2njp4qev2l0hveldp5sc855vw", + "poolAddress": "neutron1k5yz47aqqyr5t5u36l35c37urn3dmfszjfdv3qtqllrujlcgyqkst5smgk", + "lpAddress": "neutron1ve985eh92srkx0q9q6x3j4pkja5x45rp90md3ajuyyv8yhwttsgss6my98", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.29179824, - "poolLiquidity": 152653491, - "poolStakedLiquidityUsd": 1.501307454538851e-08, + "poolLiquidityUsd": 0.000176118144, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 1.76118144E-7, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1vgg9ykv2n9sjwgvmj2pjju7uhty8hc6d8zn8nrpcwef0fs4fgc8syspn8s", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1a6c3fn9q68ef888sg8y6ja4veffgvxmr209dagxzz7r4ecqlfhxsayl9ku", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "token2PriceUsd": 0.061188 }, "stakeable": false, "assets": [ { - "id": "6597028784dc55803c21b1a1", - "address": "neutron1a6c3fn9q68ef888sg8y6ja4veffgvxmr209dagxzz7r4ecqlfhxsayl9ku", - "amount": "23768072084", - "symbol": "NEUTRINO" + "id": "6583762e8c4c7910aa881156", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "764", + "symbol": "ASTRO.cw20" }, { - "id": "6597028784dc55803c21b1a2", - "address": "untrn", - "amount": "2100640", - "symbol": "NTRN" + "id": "6583762e8c4c7910aa881157", + "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "amount": "1316", + "symbol": "MARS" } ], - "name": "NEUTRINO - NTRN", + "name": "ASTRO.cw20 - MARS", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -7338,12 +8644,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ug2kdpsvdya0ze0rffzyqru9tjtkrm8yr9zse6f85usyf48caq5sh2z3ay", - "lpAddress": "neutron1kvamzg7rtpwl27jxnjln067ngdg6vsf6g2yc4qyn52an9c56ayxqtdyjwg", + "poolAddress": "neutron1w2vryy3yevnnx9qfh56gg6kauk66rw5cpkc85syvxv9fypngenyq9vrmfr", + "lpAddress": "neutron1rx8cafrhjaghhdy83alasnyzlghty79v6k7zc676gypfk3nvtw7sgna704", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.647867129, - "poolLiquidity": 2853328199, - "poolStakedLiquidityUsd": 5.775245657137552e-10, + "poolLiquidityUsd": 0.000002515022299215247, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 2.515022299215247E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7355,27 +8661,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron13vg3sjfa4l7qv53jhjstd5vml2xxag8xp3m3pfjvtg7sx0k9v2vqg7a2y3", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "65cb634d68fc77acd900a421", - "address": "neutron13vg3sjfa4l7qv53jhjstd5vml2xxag8xp3m3pfjvtg7sx0k9v2vqg7a2y3", - "amount": "5411337341112", - "symbol": "PEPETRON" + "id": "6583763c8c4c7910aa881162", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "22535", + "symbol": "HUAHUA" }, { - "id": "65cb634d68fc77acd900a422", - "address": "untrn", - "amount": "1510419", - "symbol": "NTRN" + "id": "6583763c8c4c7910aa881163", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "45", + "symbol": "NEWT" } ], - "name": "PEPETRON - NTRN", + "name": "HUAHUA - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7398,12 +8704,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1m30eyhd4c0a42cvf4r6tcp3l7tw38k8psw98frkekxs6nkmc96wsg4c9fn", - "lpAddress": "neutron17wa8gxspavkfy8fpupj6yfg3fzp5gmwktgxfr4v2c7k3l33y7qfsavud0y", + "poolAddress": "neutron13j95gdlrqprvhfwypm5dchum20kkjc42mm4sh0cr75cljhwzqmmqu80kpp", + "lpAddress": "neutron1pyjej8wm6cuueuv2y2f6m4ljz2ghmkvdv55gwns9y8umcaavma0qm53z3t", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.377827173, - "poolLiquidity": 4572622217, - "poolStakedLiquidityUsd": 3.013210161664729e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7415,27 +8721,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron17txgrugvf4snxrxladf8v9ge8lw2n4hjvwgvfh/Raffy", - "token2PriceUsd": 0 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "token2PriceUsd": 0.04224132 }, "stakeable": false, "assets": [ { - "id": "658fe821fa5a2b66abc9bfde", - "address": "untrn", - "amount": "1262903", - "symbol": "NTRN" + "id": "658376598c4c7910aa88117c", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "658fe821fa5a2b66abc9bfdf", - "address": "factory/neutron17txgrugvf4snxrxladf8v9ge8lw2n4hjvwgvfh/Raffy", - "amount": "17929137006866", - "symbol": "factory/neutron17txgrugvf4snxrxladf8v9ge8lw2n4hjvwgvfh/Raffy" + "id": "658376598c4c7910aa88117d", + "address": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "amount": "0", + "symbol": "NLS" } ], - "name": "NTRN - factory/neutron17txgrugvf4snxrxladf8v9ge8lw2n4hjvwgvfh/Raffy", + "name": "HUAHUA - NLS", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7458,12 +8764,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1kqdw7nfcztre9k8xfkxmqe52hqc0wa7j3zr24g6nerh09aknmlmqnqnm5m", - "lpAddress": "neutron17w40jvkdk8xaaqvgymdwug62qtngch2drawmx9rrnmen99pk05esrgmxaf", + "poolAddress": "neutron1rnwwcxs4nju5l6763zeaqesrsgftgpv6k7x3ud09699smx6ht4asg6jzqu", + "lpAddress": "neutron1x9yz4ju5z2a5vt632vdn3jwnak7h8quc6a70zmvy5458mkltnr5qcfyu5x", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.19545847632, - "poolLiquidity": 50812891, - "poolStakedLiquidityUsd": 2.352667704578401e-08, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7477,25 +8783,25 @@ "prices": { "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "token2PriceUsd": 10.62 }, "stakeable": false, "assets": [ { - "id": "657a8b004efa0ab8cad5013d", + "id": "658376728c4c7910aa88118b", "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "5406491039", + "amount": "0", "symbol": "HUAHUA" }, { - "id": "657a8b004efa0ab8cad5013e", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "1196248", - "symbol": "USDC.axl" + "id": "658376728c4c7910aa88118c", + "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "amount": "0", + "symbol": "stATOM" } ], - "name": "HUAHUA - USDC.axl", + "name": "HUAHUA - stATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7518,10 +8824,10 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ey32kzppjanjvqrnkkzq78qpu6gl0ggue4yxx5x7k4uqvwlyq9hqrmeuhu", - "lpAddress": "neutron1r2265jz00gvrl99tcvp9ufr740wut2wghd374m23znpd68pxaenq9zxzpf", + "poolAddress": "neutron1mjz0d5zzccaq506l4lfcjwjtgnn04atesemeynaeecrv2jj0dqcsghvrrx", + "lpAddress": "neutron14u4d02rqgg5q2n4dmded4rp3egf3cqv057c52raejucf4e73xlzqn34fu9", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.091, + "poolLiquidityUsd": 0, "poolLiquidity": 0, "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, @@ -7535,27 +8841,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron15xz09wn3dvud2t62smtazxy86v5fxxmfkyc7gc/GODDARD", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "token2PriceUsd": 9.96 }, "stakeable": false, "assets": [ { - "id": "658d9cdadc581afdfced6373", - "address": "factory/neutron15xz09wn3dvud2t62smtazxy86v5fxxmfkyc7gc/GODDARD", + "id": "658376918c4c7910aa8811a7", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "amount": "0", - "symbol": "factory/neutron15xz09wn3dvud2t62smtazxy86v5fxxmfkyc7gc/GODDARD" + "symbol": "HUAHUA" }, { - "id": "658d9cdadc581afdfced6374", - "address": "untrn", - "amount": "1000000", - "symbol": "NTRN" + "id": "658376918c4c7910aa8811a8", + "address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "amount": "0", + "symbol": "stkATOM" } ], - "name": "factory/neutron15xz09wn3dvud2t62smtazxy86v5fxxmfkyc7gc/GODDARD - NTRN", + "name": "HUAHUA - stkATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7578,12 +8884,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron17wg25zvvud2d27pnxjv76f5xk5tm5jfda4c7003valghrlju5u6q5dt83n", - "lpAddress": "neutron1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qdqc773", + "poolAddress": "neutron1w9v23ss9797z295a73753kxvzrv6l08duegjww5lpmm4e6h7lwls5xzs0s", + "lpAddress": "neutron12tsx3ytgw73lks0uxt7vkaua4ecekwasqmtx43cw9fwffvc3jq3s4xxnef", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.05506837028, - "poolLiquidity": 152461, - "poolStakedLiquidityUsd": 6.92025088566912e-06, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7595,27 +8901,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token1PriceUsd": 10.88, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999896 }, "stakeable": false, "assets": [ { - "id": "65793faa2cb0abd8976d210c", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "47581", - "symbol": "ATOM" + "id": "658376d68c4c7910aa881217", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65793faa2cb0abd8976d210d", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "537742", - "symbol": "USDC.axl" + "id": "658376d68c4c7910aa881218", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "0", + "symbol": "USDC" } ], - "name": "ATOM - USDC.axl", + "name": "HUAHUA - USDC", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7638,16 +8944,16 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron17hdxfavyu4qen5fy8cy09js2qud02h6d97dvx72m4uhtjryhdcks8de0wq", - "lpAddress": "neutron1fe8ryje4umsnsxthspqz8egx0hdlym5dueu9pr6ftgq23wecmzpqjlvq3q", + "poolAddress": "neutron1fnkrhhn7v77dg3nxrhf5q4uv6ykjcnjhn55fenfq06ywewjygnfsn8dmqh", + "lpAddress": "neutron1k6mczd0t7phguus5t533fmc4j45430n3hpr99ykx0hjt32e8yxmsqm04ap", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.9003608839437605, - "poolLiquidity": 4350433387, - "poolStakedLiquidityUsd": 2.069588943935518e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1p04tjcuh33p7ruag3h7mh6pe30mujkcs9kkz4634gqpaah4fg20qdlpgla", - "whitelisted": true + "migrateToAddress": null, + "whitelisted": null }, "feeRate": [ "0.30" @@ -7655,30 +8961,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token1PriceUsd": 4082.92, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1PriceUsd": 0, + "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "token2PriceUsd": 1.004 }, "stakeable": false, "assets": [ { - "id": "657b9b9f6fce3c3f5561a159", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "100032030390936", - "symbol": "wstETH" + "id": "6583770c8c4c7910aa881242", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "657b9b9f6fce3c3f5561a15a", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "492263", - "symbol": "USDC.axl" + "id": "6583770c8c4c7910aa881243", + "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "amount": "0", + "symbol": "USDT.axl" } ], - "name": "wstETH - USDC.axl", + "name": "HUAHUA - USDT.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -7698,45 +9004,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1d344adr8t5ljqfecnw296gnpwpuka8upth7ajvzqpkgqkxgwyf0qmjq4p4", - "lpAddress": "neutron1gfawnl9q20g7caaw6xau907rk27vg3rw94cjfxzk9zn30g39rcsql9l3vk", + "poolAddress": "neutron1zwjpn9rvwwr89dzasrwd4fnntddxtmws4ywmu7c3mcg9d0fske9qefzsmg", + "lpAddress": "neutron17w5xsqg59fx4l7aqtjvacvjx0x0hru7tg2ekelpqruzzdas8j60q0qfajl", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.77861397, - "poolLiquidity": 1978049471, - "poolStakedLiquidityUsd": 3.936271470521996e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron14qhm3n6qyeth3ct0xa5tqtltcgr59ztq7m90mry2kg5meem4ehxstlmhx6", + "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/7ACF670DA8DA24B5999A0D17247C7F4349AB1038FC4FA76A3AF50AFDE407B258", + "token2PriceUsd": 8.5 }, "stakeable": false, "assets": [ { - "id": "65978c4384dc55803c232d31", - "address": "neutron14qhm3n6qyeth3ct0xa5tqtltcgr59ztq7m90mry2kg5meem4ehxstlmhx6", - "amount": "10657102055282", - "symbol": "ELECTRON" + "id": "658377888c4c7910aa881291", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" }, { - "id": "65978c4384dc55803c232d32", - "address": "untrn", - "amount": "713670", - "symbol": "NTRN" + "id": "658377888c4c7910aa881292", + "address": "ibc/7ACF670DA8DA24B5999A0D17247C7F4349AB1038FC4FA76A3AF50AFDE407B258", + "amount": "0", + "symbol": "vDOT" } ], - "name": "ELECTRON - NTRN", + "name": "HUAHUA - vDOT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7759,12 +9064,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1p3tydujy66u2d5t7tprr4045zs2z83e93z66vf7jcc9a70um53xqzn3dk5", - "lpAddress": "neutron1aytwurgjf9pgn6v5dte5naazg5r9p4dey95868d6et2hq6edj28q4cu52n", + "poolAddress": "neutron1ct9xg2x6wh9llg72qayd8n309r03gkvlyltx8gszdzd9jjktmv4sjcf54m", + "lpAddress": "neutron1plp6366xgqf4wd433yhrn328jlrlc7eqvmzyche4g0j6kr0rpfaqx6y9j0", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.771308634, - "poolLiquidity": 8379201604, - "poolStakedLiquidityUsd": 9.205037310282258e-11, + "poolLiquidityUsd": 0.000013998544, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 1.3998544E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7776,27 +9081,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1hz5upuygfdukc3h43fag59mm6g2s60qflejmcud5whd38euupevsd9kp5v", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token1PriceUsd": 0.999896, + "token2Address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/BLAST", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "6597557384dc55803c22a516", - "address": "neutron1hz5upuygfdukc3h43fag59mm6g2s60qflejmcud5whd38euupevsd9kp5v", - "amount": "100995666499520", - "symbol": "NeuLion" + "id": "658602abe74086cc3b8ef365", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "14", + "symbol": "USDC" }, { - "id": "6597557384dc55803c22a517", - "address": "untrn", - "amount": "706974", - "symbol": "NTRN" + "id": "658602abe74086cc3b8ef366", + "address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/BLAST", + "amount": "76695", + "symbol": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/BLAST" } ], - "name": "NeuLion - NTRN", + "name": "USDC - factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/BLAST", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7819,45 +9124,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1r9hwht93t6rngekrxem96uggyz50vqmxs4me5uj3czddhya8ssxqk29amw", - "lpAddress": "neutron1wxwamggxky82m4zykue7t98fmj7fnqjc0zyxzc84tz5uhl9mhk9qkcj3xk", + "poolAddress": "neutron1ekcp74wqtchth9wcr0rzkskl9n2s9mcuykt4trl2w8w7kw8j58lqtf6ssx", + "lpAddress": "neutron1xl083q2uxe4e6dqsdsl6502hms6plzemvlyz49mjv7g9t7f4kaxqpwf7x4", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.496112612, - "poolLiquidity": 43637465, - "poolStakedLiquidityUsd": 1.136896041050617e-08, + "poolLiquidityUsd": 2.319666172928, + "poolLiquidity": 426533114, + "poolStakedLiquidityUsd": 5.438419894690063E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", + "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "6597640f84dc55803c22dad2", - "address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", - "amount": "4774046695", - "symbol": "COSMONAUTS" + "id": "658a54bffbb4c9d91face70e", + "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "amount": "86341889836", + "symbol": "BAD" }, { - "id": "6597640f84dc55803c22dad3", - "address": "untrn", - "amount": "454732", - "symbol": "NTRN" + "id": "658a54bffbb4c9d91face70f", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "2322788", + "symbol": "USDC.axl" } ], - "name": "COSMONAUTS - NTRN", + "name": "BAD - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7880,12 +9184,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron13u97u4psdxxjpmkg34y2rlvd45mtdp7j06fw3x72xpkadl98y9hsz5g6fu", - "lpAddress": "neutron10ts9zcsfz234fhf0av7nd9d74zmx0vj4rrjkl29hhqsnpf622sks88u8z8", + "poolAddress": "neutron1epg2h5cnz9m677xe82r2zqdrj90u2th6spadm09mezcfwcxq9zwschacrj", + "lpAddress": "neutron1lr46a8u7ln262a8ygz23natyx77qwsqr80wmxfxuhp27zh6yap4sq6c24y", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.4534076280205893, - "poolLiquidity": 248837939, - "poolStakedLiquidityUsd": 1.822100077832841e-09, + "poolLiquidityUsd": 0.002099600406, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000002099600406, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7897,27 +9201,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/EC279EDDCD229637600C1027C1F1074A1EA09B5B30013D00C10DAB8572DB0B4B", + "token1Address": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", "token1PriceUsd": 0, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65c11564b49e7c63d0a38178", - "address": "ibc/EC279EDDCD229637600C1027C1F1074A1EA09B5B30013D00C10DAB8572DB0B4B", - "amount": "11265169822", - "symbol": "BADDOG (Osmosis)" + "id": "658b398cacdb67e3934f599f", + "address": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", + "amount": "10965644012", + "symbol": "GAY" }, { - "id": "65c11564b49e7c63d0a38179", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "5517002", - "symbol": "NEWT" + "id": "658b398cacdb67e3934f59a0", + "address": "untrn", + "amount": "3074", + "symbol": "NTRN" } ], - "name": "BADDOG (Osmosis) - NEWT", + "name": "GAY - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -7940,12 +9244,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron170j84hn9g2hjc9sgepj6g6zqafsaza38myq6zgtgpd3dy5ttmjtqe793lg", - "lpAddress": "neutron15m2y6vj5myj90sskd2s4efwk05cpurp6cjymv3898hadxs2gtczqf78lx5", + "poolAddress": "neutron1u558zt8rhw6frwaarsxk3zguhwuzsmqfecncjh3y5re7ngx4mskqk4asfq", + "lpAddress": "neutron1mn9rhkkf9wuvdrw6dkpt2c7vjrgmqvvz7e9tfc4fkgshuvu28tqqf6c9wx", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.42175878, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.00042175878, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -7957,27 +9261,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1gjzvc9jjwkp5zrkn0q6h8y33wlqq3ef80rd8ap/uhangman", + "token1Address": "factory/neutron1krz2jjuqcry28rz6u43hkenr43euqj8npj79eq/ELONTRON", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a9ff260a570e4941640565", - "address": "factory/neutron1gjzvc9jjwkp5zrkn0q6h8y33wlqq3ef80rd8ap/uhangman", - "amount": "15228417649508", - "symbol": "HGM" + "id": "658d0064acdb67e39351a517", + "address": "factory/neutron1krz2jjuqcry28rz6u43hkenr43euqj8npj79eq/ELONTRON", + "amount": "0", + "symbol": "factory/neutron1krz2jjuqcry28rz6u43hkenr43euqj8npj79eq/ELONTRON" }, { - "id": "65a9ff260a570e4941640566", + "id": "658d0064acdb67e39351a518", "address": "untrn", - "amount": "386580", + "amount": "0", "symbol": "NTRN" } ], - "name": "HGM - NTRN", + "name": "factory/neutron1krz2jjuqcry28rz6u43hkenr43euqj8npj79eq/ELONTRON - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8000,45 +9304,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1jtpskhvejskatzympeunhk3fd0vyjfkd5p4xj0s7v889xkmje93q6s5eq2", - "lpAddress": "neutron1zf9xv4t4me8pxmyksn5mx30hpyh9zll0hvqfj0tpfsy5yckelq5qsdrkx9", + "poolAddress": "neutron1kklg7yvg9e9mvy97z9mp4fn4zrlru336hx3jvkxv5kqu0c9nce0qlqjsx7", + "lpAddress": "neutron10k2qkp39uk2y83gfxzkz4f3hrgppe9va87djxdhxrhdff5enldjqvnytft", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.410926212, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.000410926212, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "token1Address": "factory/neutron16q4r0zp85zz39nexv2edlg9rlr69vvuqw463yd/GODDARD", "token1PriceUsd": 0, - "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "token2PriceUsd": 1.002 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a24c944a547903093ffe3d", - "address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", - "amount": "5534089720", - "symbol": "BDG" + "id": "658d31d6dc581afdfcecd2ba", + "address": "factory/neutron16q4r0zp85zz39nexv2edlg9rlr69vvuqw463yd/GODDARD", + "amount": "0", + "symbol": "factory/neutron16q4r0zp85zz39nexv2edlg9rlr69vvuqw463yd/GODDARD" }, { - "id": "65a24c944a547903093ffe3e", - "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "amount": "410106", - "symbol": "USDT.axl" + "id": "658d31d6dc581afdfcecd2bb", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "BDG - USDT.axl", + "name": "factory/neutron16q4r0zp85zz39nexv2edlg9rlr69vvuqw463yd/GODDARD - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8061,12 +9364,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron16r03vq6fydkfessnevj5vcvzx8f68lswd6pjfswgr8ye73s9t6psnazalp", - "lpAddress": "neutron1trmu0mfe587pj3e26mn3hgh8njflqvsj4g9eja8s4kpy4zv37d4qg0gs93", + "poolAddress": "neutron1ey32kzppjanjvqrnkkzq78qpu6gl0ggue4yxx5x7k4uqvwlyq9hqrmeuhu", + "lpAddress": "neutron1r2265jz00gvrl99tcvp9ufr740wut2wghd374m23znpd68pxaenq9zxzpf", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.299144563, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.000299144563, + "poolLiquidityUsd": 0.683019, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -8078,27 +9381,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "token1Address": "factory/neutron15xz09wn3dvud2t62smtazxy86v5fxxmfkyc7gc/GODDARD", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65aa06b50a570e49416409de", - "address": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", - "amount": "157029517811775", - "symbol": "RETRO" + "id": "658d9cdadc581afdfced6373", + "address": "factory/neutron15xz09wn3dvud2t62smtazxy86v5fxxmfkyc7gc/GODDARD", + "amount": "0", + "symbol": "factory/neutron15xz09wn3dvud2t62smtazxy86v5fxxmfkyc7gc/GODDARD" }, { - "id": "65aa06b50a570e49416409df", + "id": "658d9cdadc581afdfced6374", "address": "untrn", - "amount": "274193", + "amount": "1000000", "symbol": "NTRN" } ], - "name": "RETRO - NTRN", + "name": "factory/neutron15xz09wn3dvud2t62smtazxy86v5fxxmfkyc7gc/GODDARD - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8121,45 +9424,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1g40cdpd0l83s0mjdv75wec5h0cq7ppnd9ndlf3psgjn6u708yj5q9ehnmf", - "lpAddress": "neutron1hgcpeypc37wyhxuj7e0glz9w7r8sy4adfcx2sg2mutcckttvv5hqysf4w6", + "poolAddress": "neutron1lhu8u9sy4trph3pkg9vwd8sqcva7zv370t6acu0xcp5y4d2zscmq5d87yc", + "lpAddress": "neutron1699q7dkpzda9randqkrcfmry4smrzs7lpwtcvq7c8746csw82dtqcn9lmk", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.285713099469, - "poolLiquidity": 22147900849, - "poolStakedLiquidityUsd": 1.290023381411793e-11, + "poolLiquidityUsd": 202.75970211333, + "poolLiquidity": 1023, + "poolStakedLiquidityUsd": 0.1982010773346334, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659b7fcda36538cc17e98f7d", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "1794669", - "symbol": "ASTRO" + "id": "658db8d9dc581afdfced7f23", + "address": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "amount": "9304122273836", + "symbol": "GDD" }, { - "id": "659b7fcda36538cc17e98f7e", - "address": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", - "amount": "274731947634254", - "symbol": "BOY" + "id": "658db8d9dc581afdfced7f24", + "address": "untrn", + "amount": "296858070", + "symbol": "NTRN" } ], - "name": "ASTRO - BOY", + "name": "GDD - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8182,12 +9484,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1nxzdx9uyhcwfn7rpjska0qwmyj6vq2cqt493d0jw79ytcj35zt2qqt4cvt", - "lpAddress": "neutron1jg3z6x63pdxc7yxscn23de8vp7cw79wuw37aufy5zqfcg6je934sslfdlg", + "poolAddress": "neutron1s6ufn508mxaglt5h78x9eg4ferm4rwmk3ajxyraztte3zyjnt8cqzxw446", + "lpAddress": "neutron10jcryrydryzfw9df0taqwrv43wfpvmpnk6egu7wpx5uge5l7s3nqyykg5l", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.1840719278338082, - "poolLiquidity": 49705000, - "poolStakedLiquidityUsd": 3.703287955612713e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -8199,27 +9501,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "token2PriceUsd": 1.389860942377924e-05 + "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token1PriceUsd": 0.999896, + "token2Address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/LOOT", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "658375db8c4c7910aa881124", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "565200", - "symbol": "ASTRO" + "id": "658f4f00dc581afdfcef505c", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "0", + "symbol": "USDC" }, { - "id": "658375db8c4c7910aa881125", - "address": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "amount": "6769851556", - "symbol": "JIMMY" + "id": "658f4f00dc581afdfcef505d", + "address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/LOOT", + "amount": "0", + "symbol": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/LOOT" } ], - "name": "ASTRO - JIMMY", + "name": "USDC - factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/LOOT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8242,12 +9544,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ty6drfxqhzaclak34jkmv8xa8064txsmfs0qh87y3r396v88qxas9e23fg", - "lpAddress": "neutron1jea8tax7sn09k3hfdth3u9qfzunamchr5nrg9l00hlev8k5xyzmqhrsryz", + "poolAddress": "neutron172rhr6gwydw24e5ysm5x793ecumffynnu6jqyys38z2h4nzerplsj7gasw", + "lpAddress": "neutron1u557py2fhnj4am58gntl32q6vxfw4d790zus6yfds4gp52fa2yqsen3nfl", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.1656428876458733, - "poolLiquidity": 1669951843, - "poolStakedLiquidityUsd": 9.919021817170012e-11, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -8259,28 +9561,28 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08218369832394283, - "token2Address": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", + "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token1PriceUsd": 0.999896, + "token2Address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/TRASH", "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "66116eb205a65f3ca6067ef8", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "2015520", - "symbol": "NEWT" + "id": "658f5246dc581afdfcef5233", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "0", + "symbol": "USDC" }, { - "id": "66116eb205a65f3ca6067ef9", - "address": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", - "amount": "1383654065759", - "symbol": "GAY" + "id": "658f5246dc581afdfcef5234", + "address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/TRASH", + "amount": "0", + "symbol": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/TRASH" } ], - "name": "NEWT - GAY", - "isNew": true, + "name": "USDC - factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/TRASH", + "isNew": false, "isIlliquid": true, "isDeregistered": false, "astroRewards": { @@ -8302,45 +9604,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1aqezvp6e2tpeqzceqm3sdvwwas8a559u07tzca584r4pw6adxneq5mftyz", - "lpAddress": "neutron1x8w55552rkza92x2nmphgnnhaldnax4947lwu66r24y5hvyjprmqnwx6g2", + "poolAddress": "neutron1t7esx64dk9zdh2v5yxxs23favd43rdlvcda7huc60np7jcutxdlqm4vmdx", + "lpAddress": "neutron1v07t3he0dv4zxqc2texvzxs4ng8703jnfh8dxffzs8tjwqm8uwlqy09al9", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.161535642, - "poolLiquidity": 275787208, - "poolStakedLiquidityUsd": 5.85725651205611e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1cufdc05rp6c9r3mrky2fc4hwnweckz6923aut4fxh08gwx2rpkpqlppryj", + "token1Address": "factory//<99500000000000>", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6597e95f84dc55803c244c2c", - "address": "neutron1cufdc05rp6c9r3mrky2fc4hwnweckz6923aut4fxh08gwx2rpkpqlppryj", - "amount": "514514273252", - "symbol": "RUSHBOT" + "id": "658f6cbadc581afdfcef633b", + "address": "factory//<99500000000000>", + "amount": "0", + "symbol": "factory//<99500000000000>" }, { - "id": "6597e95f84dc55803c244c2d", + "id": "658f6cbadc581afdfcef633c", "address": "untrn", - "amount": "148062", + "amount": "0", "symbol": "NTRN" } ], - "name": "RUSHBOT - NTRN", + "name": "factory//<99500000000000> - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8363,45 +9664,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1t5wjz40hx69dte8c55ksep2hfn0upyshgjzd4fkcna9ud0u2xjuqrz0k22", - "lpAddress": "neutron1yzslh8xv6cjqdy0y7gmckenmeuuk7ur02u86xaf3q9cqk0t5sl4snfr0tn", + "poolAddress": "neutron1wyw9yxvustcgzuh7682mt5ed7xjetlck4zgelf8r2gt8rnv56upqczpr9e", + "lpAddress": "neutron17rwsalser9fzggzum5l50muqer0q0j4hua3z4rmfpwju55supjjsxsnuqd", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.155456120250513, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.000155456120250513, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08218369832394283, - "token2Address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", - "token2PriceUsd": 69092 + "token1Address": "factory/neutron1w754akfaeppu57j2rka76e49grctfpnym7mltz/ARTHAS", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65d5f0a768fc77acd9116182", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "714586", - "symbol": "NEWT" + "id": "658f854ffa5a2b66abc979e0", + "address": "factory/neutron1w754akfaeppu57j2rka76e49grctfpnym7mltz/ARTHAS", + "amount": "0", + "symbol": "factory/neutron1w754akfaeppu57j2rka76e49grctfpnym7mltz/ARTHAS" }, { - "id": "65d5f0a768fc77acd9116183", - "address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", - "amount": "140", - "symbol": "WBTC (Osmosis)" + "id": "658f854ffa5a2b66abc979e1", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "NEWT - WBTC (Osmosis)", + "name": "factory/neutron1w754akfaeppu57j2rka76e49grctfpnym7mltz/ARTHAS - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8424,12 +9724,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron12nlepgupaw9acnluuu6xmdfzzeu4x7p7nj546fdc4dum09ecx7wqaz2sj7", - "lpAddress": "neutron18d0w0lvfmvu0ps7zt7ljgwja9jzdz7pp2au2mj28rp64snvm6m4s4ylg0s", + "poolAddress": "neutron1m30eyhd4c0a42cvf4r6tcp3l7tw38k8psw98frkekxs6nkmc96wsg4c9fn", + "lpAddress": "neutron17wa8gxspavkfy8fpupj6yfg3fzp5gmwktgxfr4v2c7k3l33y7qfsavud0y", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.150320162, - "poolLiquidity": 188065274, - "poolStakedLiquidityUsd": 7.992978118848923e-10, + "poolLiquidityUsd": 0.862586744157, + "poolLiquidity": 4572622217, + "poolStakedLiquidityUsd": 1.886415940797508E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -8441,27 +9741,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1hk4cwg8wv02ter5ehszy9l6jqmqhmsdtyj4vqw/TACOS", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron17txgrugvf4snxrxladf8v9ge8lw2n4hjvwgvfh/Raffy", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65971c2584dc55803c222773", - "address": "factory/neutron1hk4cwg8wv02ter5ehszy9l6jqmqhmsdtyj4vqw/TACOS", - "amount": "2014960550030", - "symbol": "factory/neutron1hk4cwg8wv02ter5ehszy9l6jqmqhmsdtyj4vqw/TACOS" - }, - { - "id": "65971c2584dc55803c222774", + "id": "658fe821fa5a2b66abc9bfde", "address": "untrn", - "amount": "137782", + "amount": "1262903", "symbol": "NTRN" + }, + { + "id": "658fe821fa5a2b66abc9bfdf", + "address": "factory/neutron17txgrugvf4snxrxladf8v9ge8lw2n4hjvwgvfh/Raffy", + "amount": "17929137006866", + "symbol": "factory/neutron17txgrugvf4snxrxladf8v9ge8lw2n4hjvwgvfh/Raffy" } ], - "name": "factory/neutron1hk4cwg8wv02ter5ehszy9l6jqmqhmsdtyj4vqw/TACOS - NTRN", + "name": "NTRN - factory/neutron17txgrugvf4snxrxladf8v9ge8lw2n4hjvwgvfh/Raffy", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8484,12 +9784,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1nq94ner4nqrqnq4afhk6zz725cuxx7tfy822n8trvyejw57he4rsywfv9d", - "lpAddress": "neutron1nqtww2sy0kkptz27pz9ga0eu708xwcq6k7k9nsvqutvc6msvxp3qymy2w7", + "poolAddress": "neutron1gm2mcn59v45w77234e3gf5jxlmt3wgyat7jrvhd9jxme5dx67drstdfsmr", + "lpAddress": "neutron135yn3jgs7huh7dneu7me68xrjd89mn7kaklw47076y7rgs994jasaxtnpx", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.109107637, + "poolLiquidityUsd": 0.000002049057, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.000109107637, + "poolStakedLiquidityUsd": 2.049057E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -8501,27 +9801,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1vpwxg37cj5p4txep5jx8nsscyywu4wuf3rx5yv/PartialSetSecurityProp897Inu", + "token1Address": "factory/neutron1szljj7e9nsyvqjg8fq49wt3nesdg20p6nf5w2a/Muffy", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6605f34205a65f3ca6fb34ba", - "address": "factory/neutron1vpwxg37cj5p4txep5jx8nsscyywu4wuf3rx5yv/PartialSetSecurityProp897Inu", - "amount": "300", - "symbol": "factory/neutron1vpwxg37cj5p4txep5jx8nsscyywu4wuf3rx5yv/PartialSetSecurityProp897Inu" + "id": "658ff3d0fa5a2b66abc9c924", + "address": "factory/neutron1szljj7e9nsyvqjg8fq49wt3nesdg20p6nf5w2a/Muffy", + "amount": "492161", + "symbol": "factory/neutron1szljj7e9nsyvqjg8fq49wt3nesdg20p6nf5w2a/Muffy" }, { - "id": "6605f34205a65f3ca6fb34bb", + "id": "658ff3d0fa5a2b66abc9c925", "address": "untrn", - "amount": "100007", + "amount": "3", "symbol": "NTRN" } ], - "name": "factory/neutron1vpwxg37cj5p4txep5jx8nsscyywu4wuf3rx5yv/PartialSetSecurityProp897Inu - NTRN", + "name": "factory/neutron1szljj7e9nsyvqjg8fq49wt3nesdg20p6nf5w2a/Muffy - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8544,45 +9844,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron16nau90dr60zqs0zgx3x07pvug0lzyhl7qdqmuklnrxtv2dvy8j7sjyy5z3", - "lpAddress": "neutron1pa8sw44c4y69e4xdr4wy4xkf02l38qjuxxsnl242xgcrq6vuncgqx9l2jq", + "poolAddress": "neutron1a96knkkglau2cj2w6v50sglqpmzexte74dxtq26a3n3psh9zj8sqkrtjes", + "lpAddress": "neutron1jgklfd3x5328a6qjgmjszx9jjt78q5xv7r7kwj84w23f2sr9psuquh2x7p", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.109101091, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.000109101091, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1wz2yt6dv7jhtyyxutpgreus0l25dzramj860n656aa9g78tvwrmquyp0ck", + "token1Address": "factory/neutron1w7de3ejt83mgj3keqkvq9p96s0qjygpxyfnlhg/Evil", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6598cf4584dc55803c268be3", - "address": "neutron1wz2yt6dv7jhtyyxutpgreus0l25dzramj860n656aa9g78tvwrmquyp0ck", - "amount": "6822", - "symbol": "SEILUNTRN" + "id": "658ff4b9fa5a2b66abc9c97a", + "address": "factory/neutron1w7de3ejt83mgj3keqkvq9p96s0qjygpxyfnlhg/Evil", + "amount": "0", + "symbol": "factory/neutron1w7de3ejt83mgj3keqkvq9p96s0qjygpxyfnlhg/Evil" }, { - "id": "6598cf4584dc55803c268be4", + "id": "658ff4b9fa5a2b66abc9c97b", "address": "untrn", - "amount": "100001", + "amount": "0", "symbol": "NTRN" } ], - "name": "SEILUNTRN - NTRN", + "name": "factory/neutron1w7de3ejt83mgj3keqkvq9p96s0qjygpxyfnlhg/Evil - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8605,45 +9904,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1m6dm38fv7hvthzlqyl9ukslfakukaq57udva0knuz62lg30rxnxq63dwx0", - "lpAddress": "neutron1vcqhph2mkga5lsm9nj2rx8yl2vl96w3v4zhhr8z3ljpgddwz6z2s38cdgs", + "poolAddress": "neutron1ksfac8y00z7vdpf48wa5m78d5umh4xxys2vlwxkkjdh65uv692rq77gcl5", + "lpAddress": "neutron1xu05w35lar8m6nedgzs6yk4s465vpdkjmentzkntzd5mzs8y269szwdy69", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.109101091, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.000109101091, + "poolLiquidityUsd": 0.026510016447, + "poolLiquidity": 2646500, + "poolStakedLiquidityUsd": 1.001700980426965E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1t60674c98dpvvtsygpf4jtvl2d8q5txcrpnvlafh9aen4zf2ldlsfyt6e8", + "token1Address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659ac411a36538cc17e8281e", - "address": "neutron1t60674c98dpvvtsygpf4jtvl2d8q5txcrpnvlafh9aen4zf2ldlsfyt6e8", - "amount": "7154", - "symbol": "ECLIPSE" + "id": "65902e7ffa5a2b66abc9f0a1", + "address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", + "amount": "21896937445600", + "symbol": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS" }, { - "id": "659ac411a36538cc17e8281f", + "id": "65902e7ffa5a2b66abc9f0a2", "address": "untrn", - "amount": "100001", + "amount": "38813", "symbol": "NTRN" } ], - "name": "ECLIPSE - NTRN", + "name": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8666,12 +9964,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1q9d9athn9rauyauypcexpmacgp3ctcvpxagr9ue22k3jng64ykds762vuk", - "lpAddress": "neutron1dkqfmhwcq824ummjathmcg3jzrnv8swwtpg2klduavnnk0rg3ytq8ysu5w", + "poolAddress": "neutron1mn53qt00shgfz56jxt67ndrw56thuu6gvk7ljtkvfjms9pxv5qhszvl0sh", + "lpAddress": "neutron19mhk96p0spdd2w34mduej37xfxrz6msqmsrmx5zj3zu2rwfd6pds5xxer6", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.10104256, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 0.00010104256, + "poolLiquidityUsd": 0.007882722279, + "poolLiquidity": 1000000000, + "poolStakedLiquidityUsd": 7.882722279E-12, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -8683,27 +9981,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", + "token1Address": "factory/neutron1ng7nu0yqg4vl747khhez4j383d8e9ehhp2mavl/DonaldTrumpElonX", "token1PriceUsd": 0, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65d6bb5568fc77acd9123303", - "address": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", - "amount": "10983171304", - "symbol": "CARTEL" + "id": "6591174efa5a2b66abcab74f", + "address": "factory/neutron1ng7nu0yqg4vl747khhez4j383d8e9ehhp2mavl/DonaldTrumpElonX", + "amount": "102119808535630", + "symbol": "factory/neutron1ng7nu0yqg4vl747khhez4j383d8e9ehhp2mavl/DonaldTrumpElonX" }, { - "id": "65d6bb5568fc77acd9123304", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "9287", - "symbol": "ATOM" + "id": "6591174efa5a2b66abcab750", + "address": "untrn", + "amount": "11541", + "symbol": "NTRN" } ], - "name": "CARTEL - ATOM", + "name": "factory/neutron1ng7nu0yqg4vl747khhez4j383d8e9ehhp2mavl/DonaldTrumpElonX - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8726,12 +10024,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1jtdcd362hurqxyvqzrx284jz787xyxnn3fazhez0gxxv5l5wh4ysn9kza6", - "lpAddress": "neutron1h9cwcw0ymfl898zjma4jxehy26qrqnj7hg8mvan2md4ygdj5rqjqwd9u5j", + "poolAddress": "neutron1m4py8yewj66erak58kyz6zeuag056eam6399dsa3wchm9zrjql9sv9v328", + "lpAddress": "neutron1xp5tzee8mwjkkd2l4yfa0c7ye22vlxklzp4fk5zz79c90ty2kgxqlzwre5", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.051795225, - "poolLiquidity": 54655907, - "poolStakedLiquidityUsd": 9.47660149524162e-10, + "poolLiquidityUsd": 0.033945316096, + "poolLiquidity": 2326579, + "poolStakedLiquidityUsd": 1.459022715153867E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -8743,27 +10041,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1aw7r4gr83j2jjzj02j8eg8vmshzqj0a4rsdjhufw9hlryphswn3q7wex02", + "token1Address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "659779b284dc55803c2302b8", - "address": "neutron1aw7r4gr83j2jjzj02j8eg8vmshzqj0a4rsdjhufw9hlryphswn3q7wex02", - "amount": "68690304907", - "symbol": "NUCLEUS" + "id": "6591e751fa5a2b66abcb701f", + "address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", + "amount": "23159066747676", + "symbol": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS" }, { - "id": "659779b284dc55803c2302b9", - "address": "untrn", - "amount": "47475", - "symbol": "NTRN" + "id": "6591e751fa5a2b66abcb7020", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "33991", + "symbol": "USDC.axl" } ], - "name": "NUCLEUS - NTRN", + "name": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8786,15 +10084,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron14auz6pv7jgwudw9uykce5fa6jf7wazaqqg499fve2hrf83rjjuwqx3l6tj", - "lpAddress": "neutron1s5nerk6frmxsthmtn6xvrg4t9g9ftvjuhutgugajcswmkxnyv4nqdjumnw", + "poolAddress": "neutron17l9e4jzw0vxt3ukgxdcq3s4ydlanrfnav58nd7t30d7pn4m83hkqcmqtft", + "lpAddress": "neutron1ury7yrshkyuejpw5ujq4rujcdmwt3ldharz8rv5tj8p99cpywehsw7lmv5", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.0408292, - "poolLiquidity": 38729833462, - "poolStakedLiquidityUsd": 1.054205410733924e-12, + "poolLiquidityUsd": 0.003037080386398766, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000003037080386398766, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron165kzr6jwmpy509hdz97mkh4yh8yufhhlgjg8musjgu54lm34vcgsnc3xch", "whitelisted": null }, "feeRate": [ @@ -8803,30 +10101,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token2PriceUsd": 4082.92 + "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "token1PriceUsd": 2.891976172473291, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "658375488c4c7910aa8810bc", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "150000000", - "symbol": "HUAHUA" + "id": "659618c65d245ceccb92eb31", + "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "amount": "327", + "symbol": "CIRCUS" }, { - "id": "658375488c4c7910aa8810bd", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "amount": "10000000000000", - "symbol": "wstETH" + "id": "659618c65d245ceccb92eb32", + "address": "untrn", + "amount": "3062", + "symbol": "NTRN" } ], - "name": "HUAHUA - wstETH", + "name": "CIRCUS - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -8846,12 +10144,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1m4py8yewj66erak58kyz6zeuag056eam6399dsa3wchm9zrjql9sv9v328", - "lpAddress": "neutron1xp5tzee8mwjkkd2l4yfa0c7ye22vlxklzp4fk5zz79c90ty2kgxqlzwre5", + "poolAddress": "neutron1a4uqzd27gwgam99hugllyhqj24la05pev3m7huecnzvgvruagh3qgdcd07", + "lpAddress": "neutron1xnn25tscs7pj4yyjv2kckwujskrc4xf2k9h0nqjme5leqxf69uqspruvxd", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.04040131752, - "poolLiquidity": 2326579, - "poolStakedLiquidityUsd": 1.736511741918054e-08, + "poolLiquidityUsd": 0.000004098114, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 4.098114E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -8863,27 +10161,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", + "token1Address": "neutron1ydjtjhhsmh909e9ahu746qdhd0hppx03pawq28xcqec4vez4j24qz9g0jv", "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6591e751fa5a2b66abcb701f", - "address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", - "amount": "19464008405659", - "symbol": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS" + "id": "6596d5575d245ceccb9469f1", + "address": "neutron1ydjtjhhsmh909e9ahu746qdhd0hppx03pawq28xcqec4vez4j24qz9g0jv", + "amount": "187607", + "symbol": "BONK" }, { - "id": "6591e751fa5a2b66abcb7020", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "40428", - "symbol": "USDC.axl" + "id": "6596d5575d245ceccb9469f2", + "address": "untrn", + "amount": "6", + "symbol": "NTRN" } ], - "name": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS - USDC.axl", + "name": "BONK - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8906,44 +10204,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ksfac8y00z7vdpf48wa5m78d5umh4xxys2vlwxkkjdh65uv692rq77gcl5", - "lpAddress": "neutron1xu05w35lar8m6nedgzs6yk4s465vpdkjmentzkntzd5mzs8y269szwdy69", + "poolAddress": "neutron1rsmtl79e6nuhzke4sy0dtulvkpv4qaruepjr6fd5h7hx5vvr79gqm8gnfs", + "lpAddress": "neutron15lfasgdvyh5kg7fegzpv7gx0ryhchkn2n2njp4qev2l0hveldp5sc855vw", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.036213563, - "poolLiquidity": 2646500, - "poolStakedLiquidityUsd": 1.368356810882278e-08, + "poolLiquidityUsd": 1.435271537916, + "poolLiquidity": 152653491, + "poolStakedLiquidityUsd": 9.402153390085211E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", + "token1Address": "neutron1a6c3fn9q68ef888sg8y6ja4veffgvxmr209dagxzz7r4ecqlfhxsayl9ku", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65902e7ffa5a2b66abc9f0a1", - "address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", - "amount": "25595701593871", - "symbol": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS" + "id": "6597028784dc55803c21b1a1", + "address": "neutron1a6c3fn9q68ef888sg8y6ja4veffgvxmr209dagxzz7r4ecqlfhxsayl9ku", + "amount": "23764965447", + "symbol": "NEUTRINO" }, { - "id": "65902e7ffa5a2b66abc9f0a2", + "id": "6597028784dc55803c21b1a2", "address": "untrn", - "amount": "33193", + "amount": "2101364", "symbol": "NTRN" } ], - "name": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS - NTRN", + "name": "NEUTRINO - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -8966,48 +10265,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron19p9jm0yskr8sc99afe7sna2z5ax6v97qlnx9u6j8emfsxrg2guvssexfkt", - "lpAddress": "neutron16dew6s7wte5p7y0f4wuy2urwrh73thjad2xe6qny5fsalu9hxv3sjdfvza", + "poolAddress": "neutron14s3n75mfkz398d2jafvj56rv9eu5nv4ymt5f0fa0ks7chetsh63sy0crdf", + "lpAddress": "neutron182uzkfastmtt2vk8u534gq6ypyplla54vjwxlc563gxagkvuhurqdmvpav", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.02435018, + "poolLiquidityUsd": 0.000008675928517419874, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.435018e-05, + "poolStakedLiquidityUsd": 8.675928517419874E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1d73vc84e36d4mmm9dwqql4sty3fx4usjmupxewx36e4qudm5auqs0yryma", - "whitelisted": true + "migrateToAddress": null, + "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", - "token1PriceUsd": 13.58, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "token1PriceUsd": 2.891976172473291, + "token2Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65770977e9e56af04d30a1ef", - "address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", - "amount": "915", - "symbol": "stkATOM" + "id": "6597038b84dc55803c21b488", + "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "amount": "3", + "symbol": "CIRCUS" }, { - "id": "65770977e9e56af04d30a1f0", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "1096", - "symbol": "ATOM" + "id": "6597038b84dc55803c21b489", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "409201", + "symbol": "HUAHUA" } ], - "name": "stkATOM - ATOM", + "name": "CIRCUS - HUAHUA", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -9027,16 +10325,16 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1mygtadpxd5fpvvc20qqmugtem7waq8wxyr643mmncf58sx7wd4rqgl0kdt", - "lpAddress": "neutron1h99wyd40fanqf2wpm3dg3uhqex2dydzjwryrst5avptez5sr9feqmkv038", + "poolAddress": "neutron1ugrpc9jjgg3ssjmuhaxtte87kgg3h2c6xsmxlaz63dm3x9n0j0cqz4s0rg", + "lpAddress": "neutron18je0ezur9nu0nkv7608v6j08veflspfl7tz0cwhh9pqz9wn0vs9s2jdw2p", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.0226991, + "poolLiquidityUsd": 0.008776940282694738, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.26991e-05, + "poolStakedLiquidityUsd": 0.000008776940282694737, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1ny6cysje5f6u5jlmvzfxnf06t4zgdr3v7eyvfc0cgwuxy74lqfusuewch3", - "whitelisted": true + "migrateToAddress": null, + "whitelisted": null }, "feeRate": [ "0.30" @@ -9044,30 +10342,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token1PriceUsd": 11.62, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "token1PriceUsd": 2.891976172473291, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "657b6387b1ec06030f161509", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "975", - "symbol": "TIA" + "id": "659704d484dc55803c21bb3f", + "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "amount": "665", + "symbol": "CIRCUS" }, { - "id": "657b6387b1ec06030f16150a", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "1045", - "symbol": "ATOM" + "id": "659704d484dc55803c21bb40", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "6863", + "symbol": "USDC.axl" } ], - "name": "TIA - ATOM", + "name": "CIRCUS - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -9087,45 +10385,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1gpkny854j3ujs3eda3y6sfhu2zenxmzhmp3wp53psmftlcwe5qvq6j6ua5", - "lpAddress": "neutron1whad64v7kx372xh9wm8z24ptdgf5dqhh7rf00q20h0sl4d5gp5jshmq86y", + "poolAddress": "neutron12nlepgupaw9acnluuu6xmdfzzeu4x7p7nj546fdc4dum09ecx7wqaz2sj7", + "lpAddress": "neutron18d0w0lvfmvu0ps7zt7ljgwja9jzdz7pp2au2mj28rp64snvm6m4s4ylg0s", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.021822182, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.1822182e-05, + "poolLiquidityUsd": 0.094107723858, + "poolLiquidity": 188065274, + "poolStakedLiquidityUsd": 5.003992595561937E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1kvst0v7l83s9p6zhwfmnvgqgwvhntdkv28tshp3gxzqau6289qas4kk0k2", + "token1Address": "factory/neutron1hk4cwg8wv02ter5ehszy9l6jqmqhmsdtyj4vqw/TACOS", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6598435184dc55803c2541e0", - "address": "neutron1kvst0v7l83s9p6zhwfmnvgqgwvhntdkv28tshp3gxzqau6289qas4kk0k2", - "amount": "2094", - "symbol": "Simpsons" + "id": "65971c2584dc55803c222773", + "address": "factory/neutron1hk4cwg8wv02ter5ehszy9l6jqmqhmsdtyj4vqw/TACOS", + "amount": "2014960550030", + "symbol": "factory/neutron1hk4cwg8wv02ter5ehszy9l6jqmqhmsdtyj4vqw/TACOS" }, { - "id": "6598435184dc55803c2541e1", + "id": "65971c2584dc55803c222774", "address": "untrn", - "amount": "20002", + "amount": "137782", "symbol": "NTRN" } ], - "name": "Simpsons - NTRN", + "name": "factory/neutron1hk4cwg8wv02ter5ehszy9l6jqmqhmsdtyj4vqw/TACOS - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9148,44 +10445,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1wdp3u2f8ah9da8fpcnfax9dztz7l077z5cvnv8gu6n6ec477awjsqsq8fd", - "lpAddress": "neutron1kyr95h6d640wsdqqfejtwh04q6gejfllh9exkkvlv9e93jq35v8s3dr49t", + "poolAddress": "neutron13l406u0625nvas4glyu9t5zx2erpxdqy3earmp3344y88quh7duqx4sg7a", + "lpAddress": "neutron1sklgw5c57s42hpqlwu563zz27jsvzn07fy4t2vu3u6stqrhzcqascsydw5", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.0188415, - "poolLiquidity": 4423008026, - "poolStakedLiquidityUsd": 4.259883746324205e-12, + "poolLiquidityUsd": 0.000278671752, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 2.78671752E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", - "token1PriceUsd": 3.02, - "token2Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "token2PriceUsd": 1.5 + "token1Address": "neutron1wkshmjne0nclhfh6xw67w20885jgr9k52u7lnekme8jdvw897hmqraymux", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "66032e0e05a65f3ca6f7ec01", - "address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", - "amount": "3000000000000000", - "symbol": "stDYDX" - }, - { - "id": "66032e0e05a65f3ca6f7ec02", - "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "amount": "6521", - "symbol": "AXL" + "id": "6597289484dc55803c224a2b", + "address": "neutron1wkshmjne0nclhfh6xw67w20885jgr9k52u7lnekme8jdvw897hmqraymux", + "amount": "9188", + "symbol": "ATONE" + }, + { + "id": "6597289484dc55803c224a2c", + "address": "untrn", + "amount": "408", + "symbol": "NTRN" } ], - "name": "stDYDX - AXL", + "name": "ATONE - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9208,12 +10506,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron13a2ftxml6d3rddpzyf2xzjeuv8w6w8ym782s07q0na2m7m3cptrqmdy6kd", - "lpAddress": "neutron1yf25qx7mzxkacwgzprn0ytljrlr9uddtv2hgpc4yry07ta3dfrxqypms5v", + "poolAddress": "neutron1p3tydujy66u2d5t7tprr4045zs2z83e93z66vf7jcc9a70um53xqzn3dk5", + "lpAddress": "neutron1aytwurgjf9pgn6v5dte5naazg5r9p4dey95868d6et2hq6edj28q4cu52n", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.01406201742, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.406201742e-05, + "poolLiquidityUsd": 0.482876674506, + "poolLiquidity": 8379201604, + "poolStakedLiquidityUsd": 5.762800530368174E-11, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -9225,27 +10523,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "token1PriceUsd": 1.29, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "neutron1hz5upuygfdukc3h43fag59mm6g2s60qflejmcud5whd38euupevsd9kp5v", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "66059aec05a65f3ca6fadc43", - "address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "amount": "1672", - "symbol": "OSMO" + "id": "6597557384dc55803c22a516", + "address": "neutron1hz5upuygfdukc3h43fag59mm6g2s60qflejmcud5whd38euupevsd9kp5v", + "amount": "100995666499520", + "symbol": "NeuLion" }, { - "id": "66059aec05a65f3ca6fadc44", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "11913", - "symbol": "USDC.axl" + "id": "6597557384dc55803c22a517", + "address": "untrn", + "amount": "706974", + "symbol": "NTRN" } ], - "name": "OSMO - USDC.axl", + "name": "NeuLion - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9268,44 +10566,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1mn53qt00shgfz56jxt67ndrw56thuu6gvk7ljtkvfjms9pxv5qhszvl0sh", - "lpAddress": "neutron19mhk96p0spdd2w34mduej37xfxrz6msqmsrmx5zj3zu2rwfd6pds5xxer6", + "poolAddress": "neutron1r9hwht93t6rngekrxem96uggyz50vqmxs4me5uj3czddhya8ssxqk29amw", + "lpAddress": "neutron1wxwamggxky82m4zykue7t98fmj7fnqjc0zyxzc84tz5uhl9mhk9qkcj3xk", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.012591231, - "poolLiquidity": 1000000000, - "poolStakedLiquidityUsd": 1.2591231e-11, + "poolLiquidityUsd": 0.310590595908, + "poolLiquidity": 43637465, + "poolStakedLiquidityUsd": 7.117521512945473E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1ng7nu0yqg4vl747khhez4j383d8e9ehhp2mavl/DonaldTrumpElonX", + "token1Address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6591174efa5a2b66abcab74f", - "address": "factory/neutron1ng7nu0yqg4vl747khhez4j383d8e9ehhp2mavl/DonaldTrumpElonX", - "amount": "102119808535630", - "symbol": "factory/neutron1ng7nu0yqg4vl747khhez4j383d8e9ehhp2mavl/DonaldTrumpElonX" + "id": "6597640f84dc55803c22dad2", + "address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", + "amount": "4774046695", + "symbol": "COSMONAUTS" }, { - "id": "6591174efa5a2b66abcab750", + "id": "6597640f84dc55803c22dad3", "address": "untrn", - "amount": "11541", + "amount": "454732", "symbol": "NTRN" } ], - "name": "factory/neutron1ng7nu0yqg4vl747khhez4j383d8e9ehhp2mavl/DonaldTrumpElonX - NTRN", + "name": "COSMONAUTS - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9328,12 +10627,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1htud6dnxmkgwyc8n2yf7733yc845hvsjyz8qrl7cr0d82v90dplqrrxezl", - "lpAddress": "neutron15ypz8hzm09wcv6utkumn6779kxtd6rkdk574wplde3xyqvzsu6ts43qp5k", + "poolAddress": "neutron1jtdcd362hurqxyvqzrx284jz787xyxnn3fazhez0gxxv5l5wh4ysn9kza6", + "lpAddress": "neutron1h9cwcw0ymfl898zjma4jxehy26qrqnj7hg8mvan2md4ygdj5rqjqwd9u5j", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.01022111191532954, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.022111191532954e-05, + "poolLiquidityUsd": 0.032426327025, + "poolLiquidity": 54655907, + "poolStakedLiquidityUsd": 5.932812902546687E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -9345,27 +10644,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token1PriceUsd": 0.2622099128699426, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "neutron1aw7r4gr83j2jjzj02j8eg8vmshzqj0a4rsdjhufw9hlryphswn3q7wex02", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "660595fa05a65f3ca6faccbc", - "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "857", - "symbol": "PROP16" + "id": "659779b284dc55803c2302b8", + "address": "neutron1aw7r4gr83j2jjzj02j8eg8vmshzqj0a4rsdjhufw9hlryphswn3q7wex02", + "amount": "68690304907", + "symbol": "NUCLEUS" }, { - "id": "660595fa05a65f3ca6faccbd", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "10003", - "symbol": "USDC.axl" + "id": "659779b284dc55803c2302b9", + "address": "untrn", + "amount": "47475", + "symbol": "NTRN" } ], - "name": "PROP16 - USDC.axl", + "name": "NUCLEUS - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9388,44 +10687,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ugrpc9jjgg3ssjmuhaxtte87kgg3h2c6xsmxlaz63dm3x9n0j0cqz4s0rg", - "lpAddress": "neutron18je0ezur9nu0nkv7608v6j08veflspfl7tz0cwhh9pqz9wn0vs9s2jdw2p", + "poolAddress": "neutron1d344adr8t5ljqfecnw296gnpwpuka8upth7ajvzqpkgqkxgwyf0qmjq4p4", + "lpAddress": "neutron1gfawnl9q20g7caaw6xau907rk27vg3rw94cjfxzk9zn30g39rcsql9l3vk", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.01014296849098825, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.014296849098825e-05, + "poolLiquidityUsd": 0.48745016973, + "poolLiquidity": 1978049471, + "poolStakedLiquidityUsd": 2.464297161800608E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "token1PriceUsd": 4.939094843591347, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "neutron14qhm3n6qyeth3ct0xa5tqtltcgr59ztq7m90mry2kg5meem4ehxstlmhx6", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659704d484dc55803c21bb3f", - "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "amount": "665", - "symbol": "CIRCUS" + "id": "65978c4384dc55803c232d31", + "address": "neutron14qhm3n6qyeth3ct0xa5tqtltcgr59ztq7m90mry2kg5meem4ehxstlmhx6", + "amount": "10657102055282", + "symbol": "ELECTRON" }, { - "id": "659704d484dc55803c21bb40", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "6863", - "symbol": "USDC.axl" + "id": "65978c4384dc55803c232d32", + "address": "untrn", + "amount": "713670", + "symbol": "NTRN" } ], - "name": "CIRCUS - USDC.axl", + "name": "ELECTRON - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9448,12 +10748,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron13kfefn0e2ktc0jvcl7zpkmj8rxa4s9hwh9tapw3wweg3c73vyg0sy7u0x4", - "lpAddress": "neutron1eqrh9zu27wwwyvffna39syela3jdjae8amnafwzc46xx5kre8jzs65uduk", + "poolAddress": "neutron19qn3aw5j9fd94ja0a9p0dtnyp2tw5flqcgrklszsclcl6mg2vlzqtz7kr5", + "lpAddress": "neutron1r086u4s5fyafqfvrc8unrm97tm4xza52c4pr0774tjut8z6g64sq759vmh", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.00960704, + "poolLiquidityUsd": 0.00049105, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 9.60704e-06, + "poolStakedLiquidityUsd": 4.9105E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -9466,27 +10766,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron1plhm5ddznjmfvn2xdva5hfqvl5ksjdrwjc43e6mks9uam0r5r5xsd8kzzz", + "token1Address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", "token1PriceUsd": 0, "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "65981af884dc55803c24e305", - "address": "neutron1plhm5ddznjmfvn2xdva5hfqvl5ksjdrwjc43e6mks9uam0r5r5xsd8kzzz", - "amount": "1139", - "symbol": "LAMBO" + "id": "65978fa684dc55803c233523", + "address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", + "amount": "16552", + "symbol": "COSMONAUTS" }, { - "id": "65981af884dc55803c24e306", + "id": "65978fa684dc55803c233524", "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "883", + "amount": "61", "symbol": "ATOM" } ], - "name": "LAMBO - ATOM", + "name": "COSMONAUTS - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9509,47 +10809,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1trhuhvav04ezhklqwu0aecnmqpc48w7zqqzf3mh3y9teer0y9ulqant0w6", - "lpAddress": "neutron1rmj54935vejc3vx35tn3yqaeh5xd3j7vqrd6x78hl7yylssve0js6594tc", + "poolAddress": "neutron1x0j5twjla8uvpyxvwq4nyk8ve4sxh8rrlmkpz0fgdx2g8dmd9szsv0xyxt", + "lpAddress": "neutron1n3cfkvccm6x70g8qfqgtuxekeqwkkuvszaxfajy689htt35afyxqlamlk3", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.008788174, + "poolLiquidityUsd": 0.000005991936, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 8.788174e-06, + "poolStakedLiquidityUsd": 5.991936E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1zwnj9zclxkxlyksnns3wuw7fq24kkn70ke6wezquw9nwqed24vkq8wlgh4", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "token1PriceUsd": 1.002, - "token2Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token2PriceUsd": 11.62 + "token1Address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", + "token1PriceUsd": 0, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "6557909e00acb1b382e6b638", - "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "amount": "1627", - "symbol": "USDT.axl" + "id": "659791cd84dc55803c233fae", + "address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", + "amount": "316935", + "symbol": "COSMONAUTS" }, { - "id": "6557909e00acb1b382e6b639", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "616", - "symbol": "TIA" + "id": "659791cd84dc55803c233faf", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "6", + "symbol": "USDC.axl" } ], - "name": "USDT.axl - TIA", + "name": "COSMONAUTS - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -9569,47 +10870,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron14z9ke0yq90zcvu6uhctd48cgzqv8v4nqxhlx5w3gfamcvttmt0dsxdt7w7", - "lpAddress": "neutron1n07kw2nye3gvu954vpz5w6u06w5lqjswpgu009ruj8hhls0v2msqk4g3qq", + "poolAddress": "neutron1lz53yaac74ksu9xsmm25xm76swmpdpj30fhhmvkfymsqrtrqgpzsgr8624", + "lpAddress": "neutron18myaasn8any654awkzavecgd5tawaa77r0nv5nddf8j3kupdlc3qhvelfc", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.008202797, + "poolLiquidityUsd": 6.83019E-7, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 8.202797e-06, + "poolStakedLiquidityUsd": 6.83019E-10, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1lw4fslhahxchrw6kjq60hl7x4vskxy75ym4x537dzr788cqv0k2q9vum75", - "whitelisted": true + "migrateToAddress": null, + "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "token2PriceUsd": 1.002 + "token1Address": "neutron1tf7fxwrdqmgwu8rw0a9wnyvynmh2pt89mrne0ngf93jy22vmw4ls4238ea", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657b9ba7aac34fec4897126e", - "address": "untrn", - "amount": "3979", - "symbol": "NTRN" + "id": "6597dc8c84dc55803c242a42", + "address": "neutron1tf7fxwrdqmgwu8rw0a9wnyvynmh2pt89mrne0ngf93jy22vmw4ls4238ea", + "amount": "2490908", + "symbol": "bridgeSEIYAN" }, { - "id": "657b9ba7aac34fec4897126f", - "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "amount": "3854", - "symbol": "USDT.axl" + "id": "6597dc8c84dc55803c242a43", + "address": "untrn", + "amount": "1", + "symbol": "NTRN" } ], - "name": "NTRN - USDT.axl", + "name": "bridgeSEIYAN - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -9629,47 +10931,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron17flu8lssy8u2qrr3qqkhqzues667gf5qzkkakk2hcyy4raz47jqq8spaa6", - "lpAddress": "neutron18snpetu34qx46dj5m0acwwxz3pfam2ff58s988w03qvk9e25l3jsemt26u", + "poolAddress": "neutron1c63zdeyhfmn0t3kf6lw9puq2vv5uwat2rrqwxu25aqfxyzjvtpzsh8g68p", + "lpAddress": "neutron1xf6nlu92nesf6wwf0l2zh76gragknkgxnpjcvzfdp8z3apy7q4vsew5a5j", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.0072050345, - "poolLiquidity": 1013, - "poolStakedLiquidityUsd": 7.112571076011846e-06, + "poolLiquidityUsd": 0.000021856608, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 2.1856608E-8, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1h3yv07ftzkfml82x5ev84ujhe3darvda0xu8ldtyxgpvps28vvms44mels", - "whitelisted": true + "migrateToAddress": null, + "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token1PriceUsd": 11.62, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "neutron1juu7p9psal46c9teyrn29w9hxv6ryy809339dhy8lxcvqv5fwawshqrtyr", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65590b8b620a1547f11d24e9", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "390", - "symbol": "TIA" + "id": "6597e62684dc55803c2445e3", + "address": "neutron1juu7p9psal46c9teyrn29w9hxv6ryy809339dhy8lxcvqv5fwawshqrtyr", + "amount": "31655", + "symbol": "RUSHBOT" }, { - "id": "65590b8b620a1547f11d24ea", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "2675", - "symbol": "USDC.axl" + "id": "6597e62684dc55803c2445e4", + "address": "untrn", + "amount": "32", + "symbol": "NTRN" } ], - "name": "TIA - USDC.axl", + "name": "RUSHBOT - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -9689,16 +10992,16 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1zwnj9zclxkxlyksnns3wuw7fq24kkn70ke6wezquw9nwqed24vkq8wlgh4", - "lpAddress": "neutron1mwwgjw6ul09zkam9c99ejysf9h5s2q7vaxfl9g93ndnjnvfemuks80zgh7", + "poolAddress": "neutron1aqezvp6e2tpeqzceqm3sdvwwas8a559u07tzca584r4pw6adxneq5mftyz", + "lpAddress": "neutron1x8w55552rkza92x2nmphgnnhaldnax4947lwu66r24y5hvyjprmqnwx6g2", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.006930972, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 6.930972e-06, + "poolLiquidityUsd": 0.101129159178, + "poolLiquidity": 275787208, + "poolStakedLiquidityUsd": 3.666927117880892E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ "0.26", @@ -9707,27 +11010,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "token1PriceUsd": 1.002, - "token2Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token2PriceUsd": 11.62 + "token1Address": "neutron1cufdc05rp6c9r3mrky2fc4hwnweckz6923aut4fxh08gwx2rpkpqlppryj", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657b89865ea0166d2ff8fbef", - "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "amount": "3786", - "symbol": "USDT.axl" + "id": "6597e95f84dc55803c244c2c", + "address": "neutron1cufdc05rp6c9r3mrky2fc4hwnweckz6923aut4fxh08gwx2rpkpqlppryj", + "amount": "514514273252", + "symbol": "RUSHBOT" }, { - "id": "657b89865ea0166d2ff8fbf0", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "amount": "270", - "symbol": "TIA" + "id": "6597e95f84dc55803c244c2d", + "address": "untrn", + "amount": "148062", + "symbol": "NTRN" } ], - "name": "USDT.axl - TIA", + "name": "RUSHBOT - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9750,47 +11053,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron17l9e4jzw0vxt3ukgxdcq3s4ydlanrfnav58nd7t30d7pn4m83hkqcmqtft", - "lpAddress": "neutron1ury7yrshkyuejpw5ujq4rujcdmwt3ldharz8rv5tj8p99cpywehsw7lmv5", + "poolAddress": "neutron1jg422h2yu3v9rffhxf5c8hkme4c3xncpghdc0jzy4wv34atanh8syntrdq", + "lpAddress": "neutron1nclfvwqhw74mc44tu5u0qyupqcqv6t8hquaq6w2ehhvykxesyx0s4yfacl", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.00495572601385437, + "poolLiquidityUsd": 6.83019E-7, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 4.955726013854371e-06, + "poolStakedLiquidityUsd": 6.83019E-10, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron165kzr6jwmpy509hdz97mkh4yh8yufhhlgjg8musjgu54lm34vcgsnc3xch", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "token1PriceUsd": 4.939094843591347, + "token1Address": "neutron1d60mwrmktw35df0ypg2m2nmchvkj8awf0qljm6dm94f963g3tutsmcn7u2", + "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659618c65d245ceccb92eb31", - "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "amount": "327", - "symbol": "CIRCUS" + "id": "6597fb6384dc55803c247993", + "address": "neutron1d60mwrmktw35df0ypg2m2nmchvkj8awf0qljm6dm94f963g3tutsmcn7u2", + "amount": "1049475", + "symbol": "ASBOT" }, { - "id": "659618c65d245ceccb92eb32", + "id": "6597fb6384dc55803c247994", "address": "untrn", - "amount": "3062", + "amount": "1", "symbol": "NTRN" } ], - "name": "CIRCUS - NTRN", + "name": "ASBOT - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -9810,12 +11114,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron165kzr6jwmpy509hdz97mkh4yh8yufhhlgjg8musjgu54lm34vcgsnc3xch", - "lpAddress": "neutron1m8znhghznleajz2zyfe2knr5u5prhdpmqg65gyjk0gvpzujkftzstvlqag", + "poolAddress": "neutron1s4lagjyp97mjm0pqs3u7acwtatne2vcna85nkl48eaysjtl2adqq484fp4", + "lpAddress": "neutron1app3ht0twc3wt8227vk7kzr9yaraav8knj6z8p5l5lxk62ws5hnqhawkdg", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.004675203067275053, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 4.675203067275053e-06, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -9828,27 +11132,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "token2PriceUsd": 4.939094843591347 + "token1Address": "neutron1gl6yuc2n9d9l4z3n5dyd75zp8y34eqqlsqnykjtj8m4xlf7lalrsgzhk8k", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a66ec3e8848f944ef5a5f6", - "address": "untrn", - "amount": "2325", - "symbol": "NTRN" + "id": "6597ff8884dc55803c248593", + "address": "neutron1gl6yuc2n9d9l4z3n5dyd75zp8y34eqqlsqnykjtj8m4xlf7lalrsgzhk8k", + "amount": "0", + "symbol": "BARYON" }, { - "id": "65a66ec3e8848f944ef5a5f7", - "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "amount": "433", - "symbol": "CIRCUS" + "id": "6597ff8884dc55803c248594", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "NTRN - CIRCUS", + "name": "BARYON - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9871,12 +11175,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1k6jdj7m6vg9w8zq79265s2aq7hq00cr5kc9da4y5y9nf9udm9v0s2mfyjy", - "lpAddress": "neutron1wj4s8zud8wk28zu8q5w9lvspuw8nv3y2whvklvx9u24tpj6rlmxsjzu0y5", + "poolAddress": "neutron1pep8klxeqk3mtg7uwkhkpqan2lvpep3s4zj08vmz8ywdeurxpzjqnu763h", + "lpAddress": "neutron1qvcmlzwrj3ky4d229qx72l5tkdy7tzgt5f6gu3fhydvg63q977fsxdzevy", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.004661843, + "poolLiquidityUsd": 0.000001366038, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 4.661843e-06, + "poolStakedLiquidityUsd": 1.366038E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -9889,27 +11193,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron1gl688304p4h2kl542s6f8kaz2gy9nvd6u0wfdxd9wlve7tvt066qxqa24l", + "token1Address": "neutron12dv6a7ge5qd35mt842rjyqqgn0zu9tx8z0e9qa2678jlf0lvmwcquhjgfp", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659a6ce584dc55803c2a6f68", - "address": "neutron1gl688304p4h2kl542s6f8kaz2gy9nvd6u0wfdxd9wlve7tvt066qxqa24l", - "amount": "1035170", - "symbol": "NEWTON" + "id": "6598001a84dc55803c248893", + "address": "neutron12dv6a7ge5qd35mt842rjyqqgn0zu9tx8z0e9qa2678jlf0lvmwcquhjgfp", + "amount": "942202", + "symbol": "BARYON" }, { - "id": "659a6ce584dc55803c2a6f69", + "id": "6598001a84dc55803c248894", "address": "untrn", - "amount": "4273", + "amount": "2", "symbol": "NTRN" } ], - "name": "NEWTON - NTRN", + "name": "BARYON - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9932,44 +11236,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1nak996aj387z77qdpra3hs3jsuzjpv5nxxjypsjp0z28k66lvxas92ajf6", - "lpAddress": "neutron1s6cjyjdp5n6an07fmyz3y8plh5qyfgpdjxqq83a5e85xsfruf2msm8tf7s", + "poolAddress": "neutron1myzqugyrmujd5yuzkyeyuu4l2z5eh2rrwzpj6npkjtcyx06w3anqxmfh5g", + "lpAddress": "neutron1fy8uwv0fn82a6k89vvvswa6f8km6g4uqlest6hrcfrqv9ayly0hqf8aykv", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.00384032, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.84032e-06, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron1feg65h4ljx3qy4m7zvflp8ujgqvp0fz53cz6d485t54gscrmhwdqxdv3yg", + "token1Address": "neutron1plhm5ddznjmfvn2xdva5hfqvl5ksjdrwjc43e6mks9uam0r5r5xsd8kzzz", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65ce7fa368fc77acd90746df", - "address": "neutron1feg65h4ljx3qy4m7zvflp8ujgqvp0fz53cz6d485t54gscrmhwdqxdv3yg", - "amount": "285", - "symbol": "vlt" + "id": "6598192c84dc55803c24df95", + "address": "neutron1plhm5ddznjmfvn2xdva5hfqvl5ksjdrwjc43e6mks9uam0r5r5xsd8kzzz", + "amount": "0", + "symbol": "LAMBO" }, { - "id": "65ce7fa368fc77acd90746e0", + "id": "6598192c84dc55803c24df96", "address": "untrn", - "amount": "3520", + "amount": "0", "symbol": "NTRN" } ], - "name": "vlt - NTRN", + "name": "LAMBO - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -9992,15 +11297,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron174wu6vgx4p6vqtzfuyfqrxfmx9xkzm7cv7pydd4k27zlleefrmrsy36jep", - "lpAddress": "neutron1kuty0egqv9dpj58kwkch0ylvyj9wvfqlwcnmde7rmrzczlt92jzsqcrc72", + "poolAddress": "neutron13kfefn0e2ktc0jvcl7zpkmj8rxa4s9hwh9tapw3wweg3c73vyg0sy7u0x4", + "lpAddress": "neutron1eqrh9zu27wwwyvffna39syela3jdjae8amnafwzc46xx5kre8jzs65uduk", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.003526844, + "poolLiquidityUsd": 0.00710815, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.526844e-06, + "poolStakedLiquidityUsd": 0.00000710815, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron194f0u63jenquqvxr5hj2glq4sdhx60arn8y86299c8qme6pspjesv444yd", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -10010,30 +11315,30 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "token1PriceUsd": 1.5, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "neutron1plhm5ddznjmfvn2xdva5hfqvl5ksjdrwjc43e6mks9uam0r5r5xsd8kzzz", + "token1PriceUsd": 0, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "657ba53d83cb746a55cea517", - "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "amount": "690", - "symbol": "AXL" + "id": "65981af884dc55803c24e305", + "address": "neutron1plhm5ddznjmfvn2xdva5hfqvl5ksjdrwjc43e6mks9uam0r5r5xsd8kzzz", + "amount": "1139", + "symbol": "LAMBO" }, { - "id": "657ba53d83cb746a55cea518", - "address": "untrn", - "amount": "2284", - "symbol": "NTRN" + "id": "65981af884dc55803c24e306", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "883", + "symbol": "ATOM" } ], - "name": "AXL - NTRN", + "name": "LAMBO - ATOM", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -10053,44 +11358,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1epg2h5cnz9m677xe82r2zqdrj90u2th6spadm09mezcfwcxq9zwschacrj", - "lpAddress": "neutron1lr46a8u7ln262a8ygz23natyx77qwsqr80wmxfxuhp27zh6yap4sq6c24y", + "poolAddress": "neutron1tjcm8nfsndyr6nma30xd3pgn749d9d3ltxg4a9468nyz75376dnqefgcyl", + "lpAddress": "neutron1mhlelkqexuwfyucr4yu0axa8vakqcepqg5a6z5ddc5y3yyxxw2zqh8fdes", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.003353734, + "poolLiquidityUsd": 0.000001366038, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.353734e-06, + "poolStakedLiquidityUsd": 1.366038E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", + "token1Address": "neutron1p4cffwfxzqrtc64ulm5ygwyuxqk7dnm09p3d050hes4xsnevxnqs93yud8", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "658b398cacdb67e3934f599f", - "address": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", - "amount": "10965644012", - "symbol": "GAY" + "id": "6598322e84dc55803c251989", + "address": "neutron1p4cffwfxzqrtc64ulm5ygwyuxqk7dnm09p3d050hes4xsnevxnqs93yud8", + "amount": "948442", + "symbol": "bridgeWAIFU" }, { - "id": "658b398cacdb67e3934f59a0", + "id": "6598322e84dc55803c25198a", "address": "untrn", - "amount": "3074", + "amount": "2", "symbol": "NTRN" } ], - "name": "GAY - NTRN", + "name": "bridgeWAIFU - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10113,48 +11419,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1elxxjdxdhgdht8nxt6s0r0a0c3p7h24v9q4g0dy8sytrm2tx587sgkgjna", - "lpAddress": "neutron1qxte3va6pslendukh23a2tmyf6gjda55d845rthkhrxm2l4uvhgsqr7tyt", + "poolAddress": "neutron1y9y9wn09v0s7ext2ax5e9akw8yy86gl492lr6mneesp3wdqec5yqea0837", + "lpAddress": "neutron17k0sxtgalzzum7elfn6jqgkgyz9dk9gpmp09qc89cx3dwkhw7pmqpw2cs0", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.003334352305718798, + "poolLiquidityUsd": 6.83019E-7, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.334352305718798e-06, + "poolStakedLiquidityUsd": 6.83019E-10, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron16aq0p35g346xe3h60yuhkns3rhj6k66wwtz6czwgep7fwvmyjxqq206gh7", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", - "token1PriceUsd": 2.308060130394441, + "token1Address": "neutron1ppajkmsnkhygztka6zgzf3d25df623l6emftypr6gel5tjunmntqnxte6d", + "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65efe60868fc77acd932b115", - "address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", - "amount": "504", - "symbol": "KUJI" + "id": "65983a5684dc55803c253561", + "address": "neutron1ppajkmsnkhygztka6zgzf3d25df623l6emftypr6gel5tjunmntqnxte6d", + "amount": "7506182", + "symbol": "NEUTRAL" }, { - "id": "65efe60868fc77acd932b116", + "id": "65983a5684dc55803c253562", "address": "untrn", - "amount": "1990", + "amount": "1", "symbol": "NTRN" } ], - "name": "KUJI - NTRN", + "name": "NEUTRAL - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -10174,47 +11479,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron165m0r6rkhqxs30wch00t7mkykxxvgve9yyu254wknwhhjn34rmqsh6vfcj", - "lpAddress": "neutron124l9kllt4seuv0srjlzh6j4k56jvt7hla03nrkvamdpjrtqffs9quhxmyc", + "poolAddress": "neutron1j5sr2kja4hjlwqudnnyz9l2j3xj9xmaz5mj4tn54tavhe9dtuwtq0r8sny", + "lpAddress": "neutron1pv0vymlga9ah9j6qz2yvhlezcxzlzel6xpplwzk4quf7rdhlvnpqtuqfdh", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.003060852028, + "poolLiquidityUsd": 0.000001366038, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.060852028e-06, + "poolStakedLiquidityUsd": 1.366038E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron14qaye93htdks0gfan7l2m3jfrzfm9x8xl677l9yn2tyy2x6fc6mqrqmjdq", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "token1PriceUsd": 0.071059, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "neutron12m44vzyhx93uzth0ee875z9rajxdym24fvxzlhfdp0e0kch9ay3q9uphra", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657ba85c921f61dd18b54477", - "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "amount": "392", - "symbol": "MARS" + "id": "65983f3b84dc55803c253d5c", + "address": "neutron12m44vzyhx93uzth0ee875z9rajxdym24fvxzlhfdp0e0kch9ay3q9uphra", + "amount": "945762", + "symbol": "SNOWY" }, { - "id": "657ba85c921f61dd18b54478", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "3035", - "symbol": "USDC.axl" + "id": "65983f3b84dc55803c253d5d", + "address": "untrn", + "amount": "2", + "symbol": "NTRN" } ], - "name": "MARS - USDC.axl", + "name": "SNOWY - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -10234,44 +11540,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1h7uu0q6sgmnv29rl8we45kz5cystkmaqmy9wcpt0whm3nrukugqsefu2e6", - "lpAddress": "neutron1j8nzg03lxjrx6vajzwepum8fp2hstec85gdaw083c9wqyfa3dlfqthzz2g", + "poolAddress": "neutron1gpkny854j3ujs3eda3y6sfhu2zenxmzhmp3wp53psmftlcwe5qvq6j6ua5", + "lpAddress": "neutron1whad64v7kx372xh9wm8z24ptdgf5dqhh7rf00q20h0sl4d5gp5jshmq86y", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.002804414341292561, + "poolLiquidityUsd": 0.013661746038, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.804414341292561e-06, + "poolStakedLiquidityUsd": 0.000013661746038, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "neutron1kvst0v7l83s9p6zhwfmnvgqgwvhntdkv28tshp3gxzqau6289qas4kk0k2", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65ad65960a570e494166929f", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "5996", - "symbol": "APOLLO" + "id": "6598435184dc55803c2541e0", + "address": "neutron1kvst0v7l83s9p6zhwfmnvgqgwvhntdkv28tshp3gxzqau6289qas4kk0k2", + "amount": "2094", + "symbol": "Simpsons" }, { - "id": "65ad65960a570e49416692a0", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "169", - "symbol": "ATOM" + "id": "6598435184dc55803c2541e1", + "address": "untrn", + "amount": "20002", + "symbol": "NTRN" } ], - "name": "APOLLO - ATOM", + "name": "Simpsons - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10294,45 +11601,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1m36ksxs6kt8kf797fknyxm2nc9k56dgdu9g6rajeu6g6s3lqpqdqwcrc32", - "lpAddress": "neutron1m9ev8rhy4x0tlws5l86dkj9pxm0389yq4azskt95t2uelc0l5fxqw5h439", + "poolAddress": "neutron1ucymd67e5xfg7rvk83983880ncwm7cs9555ljchhd6hsz5t82xtqp59l2u", + "lpAddress": "neutron1tancysq86sx9ddfvajn6s8y8q68qlmfk6phudru3yfsy6quh4xgsk5vfke", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.00225251236, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.25251236e-06, + "poolLiquidityUsd": 2.286210759066, + "poolLiquidity": 334721400, + "poolStakedLiquidityUsd": 6.830189999989566E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron12ve9fafr8lj4k3nf6vmz82u3ulmmr80ut697ygq8j0ksudvv0csqfkkh2p", + "token1Address": "factory/neutron12z93fsnd27kttuj5use0dqas8e0xszxvyxyd2j/Richtron", "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a4a83559423b792c45567e", - "address": "neutron12ve9fafr8lj4k3nf6vmz82u3ulmmr80ut697ygq8j0ksudvv0csqfkkh2p", - "amount": "1005502", - "symbol": "BENGAL" + "id": "6598592684dc55803c255a1e", + "address": "factory/neutron12z93fsnd27kttuj5use0dqas8e0xszxvyxyd2j/Richtron", + "amount": "33472152253", + "symbol": "factory/neutron12z93fsnd27kttuj5use0dqas8e0xszxvyxyd2j/Richtron" }, { - "id": "65a4a83559423b792c45567f", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "2254", - "symbol": "USDC.axl" + "id": "6598592684dc55803c255a1f", + "address": "untrn", + "amount": "3347214", + "symbol": "NTRN" } ], - "name": "BENGAL - USDC.axl", + "name": "factory/neutron12z93fsnd27kttuj5use0dqas8e0xszxvyxyd2j/Richtron - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10355,15 +11661,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron16p723wktje066vckpgluf7v2gr4td20vuxfxn5t6973mxe5a4mxsuqnv5k", - "lpAddress": "neutron1u7epcqt09plpae6x20wuav9zzrvg0fh2pqkc9uxg7c5rs2l5z42s93cumw", + "poolAddress": "neutron1kv8am24radl4nyaw5t64cdkmlnqrt8hljp4yxy9eeypnk3ly7d6s5uxhhm", + "lpAddress": "neutron16r9lgaqsf4y02w7rpeyq3pzvszpr4dj5zulc99sjh7kzwpqeklcqc47eef", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.002162362, + "poolLiquidityUsd": 0.000003994624, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.162362e-06, + "poolStakedLiquidityUsd": 3.994624E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1q3rfmflhp79rz0sdjxdgf7t3x5twce9az6n0fegspkjstrax42kq0g96rn", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -10372,30 +11678,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token2PriceUsd": 1 + "token1Address": "factory/neutron18ps4ypzkq0dwzp84jctnd8ljrdcjgr6v27gymt/Quirky", + "token1PriceUsd": 0, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "659b2484a36538cc17e8c453", - "address": "untrn", - "amount": "982", - "symbol": "NTRN" + "id": "6598657d84dc55803c25680c", + "address": "factory/neutron18ps4ypzkq0dwzp84jctnd8ljrdcjgr6v27gymt/Quirky", + "amount": "417621", + "symbol": "QRKY" }, { - "id": "659b2484a36538cc17e8c454", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "1091", - "symbol": "USDC" + "id": "6598657d84dc55803c25680d", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "4", + "symbol": "USDC.axl" } ], - "name": "NTRN - USDC", + "name": "QRKY - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -10415,12 +11721,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1lw4fslhahxchrw6kjq60hl7x4vskxy75ym4x537dzr788cqv0k2q9vum75", - "lpAddress": "neutron1kel2lp74j57ecwp3sr7053l5c9fcnx2utryhuc0r6s9anyrj5ueqn3370l", + "poolAddress": "neutron16nau90dr60zqs0zgx3x07pvug0lzyhl7qdqmuklnrxtv2dvy8j7sjyy5z3", + "lpAddress": "neutron1pa8sw44c4y69e4xdr4wy4xkf02l38qjuxxsnl242xgcrq6vuncgqx9l2jq", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.002105053, + "poolLiquidityUsd": 0.068302583019, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.105053e-06, + "poolStakedLiquidityUsd": 0.000068302583019, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -10433,27 +11739,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "token2PriceUsd": 1.002 + "token1Address": "neutron1wz2yt6dv7jhtyyxutpgreus0l25dzramj860n656aa9g78tvwrmquyp0ck", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "657b6571dee02e013ce405cf", - "address": "untrn", - "amount": "899", - "symbol": "NTRN" + "id": "6598cf4584dc55803c268be3", + "address": "neutron1wz2yt6dv7jhtyyxutpgreus0l25dzramj860n656aa9g78tvwrmquyp0ck", + "amount": "6822", + "symbol": "SEILUNTRN" }, { - "id": "657b6571dee02e013ce405d0", - "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "amount": "1122", - "symbol": "USDT.axl" + "id": "6598cf4584dc55803c268be4", + "address": "untrn", + "amount": "100001", + "symbol": "NTRN" } ], - "name": "NTRN - USDT.axl", + "name": "SEILUNTRN - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10476,12 +11782,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1d3pud489gfgvxarxy0dqe09jfdktxvuxmgemjqqdwn0lnxr2tsps6w32ce", - "lpAddress": "neutron1fscjqhfluugqykm7pfgavfawp75300yr947qjy3jdnz7txpt948qhtqz3g", + "poolAddress": "neutron1ent0y5t49wamn7xzhh6v8pd46qy0d8f8uslna0dlm8e72urvr0yqxucvc0", + "lpAddress": "neutron1mz07gjy5zzc9xtp0sm3dm4a5h50ldx84dgjwmnlarmglxe3lzskqyj2y76", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.001928094836032738, + "poolLiquidityUsd": 6.83019E-7, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.928094836032738e-06, + "poolStakedLiquidityUsd": 6.83019E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -10494,27 +11800,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08218369832394283, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "neutron1f8r7d5s3k4yh7cgp08mqv2v03y87apuvaj996erqjxzwhus5ty9qzyl4y0", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65b7bb61c56514afb66c626f", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "9825", - "symbol": "NEWT" + "id": "659931ef84dc55803c27ba33", + "address": "neutron1f8r7d5s3k4yh7cgp08mqv2v03y87apuvaj996erqjxzwhus5ty9qzyl4y0", + "amount": "5788638", + "symbol": "miniCIRCUS" }, { - "id": "65b7bb61c56514afb66c6270", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "103", - "symbol": "ATOM" + "id": "659931ef84dc55803c27ba34", + "address": "untrn", + "amount": "1", + "symbol": "NTRN" } ], - "name": "NEWT - ATOM", + "name": "miniCIRCUS - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10537,45 +11843,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1w4z8p2ca6ldm3pfngptpq2uvghp45npy876tz8al77y07unucuzqwmuqtf", - "lpAddress": "neutron1vqwsyqdhplqr0qqe5u625q7252f42emvfst4f4nymkfdype09gfq33k3tw", + "poolAddress": "neutron173y6wdx4pzvgns98gtww23kfrvw0gsdyzfw77p803mx557fwz82sqlq33q", + "lpAddress": "neutron16h728azwldueasnv8mpa7fa54vpjz5yxg6gdxwjank44ujkrpakq4mk96v", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.00184678032, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.84678032e-06, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1yh2lv497ex0e7j62ewyx6x08uxcnvjlcvlusyr73v4azctyysursee7lh7", + "token1Address": "ujunonauts", "token1PriceUsd": 0, "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "659d1fc2fdb9cb40c8676c96", - "address": "neutron1yh2lv497ex0e7j62ewyx6x08uxcnvjlcvlusyr73v4azctyysursee7lh7", - "amount": "1801", - "symbol": "LAIKA" + "id": "659987ab84dc55803c28878b", + "address": "ujunonauts", + "amount": "0", + "symbol": "ujunonauts" }, { - "id": "659d1fc2fdb9cb40c8676c97", + "id": "659987ab84dc55803c28878c", "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "1848", + "amount": "0", "symbol": "USDC.axl" } ], - "name": "LAIKA - USDC.axl", + "name": "ujunonauts - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10598,12 +11903,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron19qn3aw5j9fd94ja0a9p0dtnyp2tw5flqcgrklszsclcl6mg2vlzqtz7kr5", - "lpAddress": "neutron1r086u4s5fyafqfvrc8unrm97tm4xza52c4pr0774tjut8z6g64sq759vmh", + "poolAddress": "neutron1hs2uf5sjqq9pk0tmgj5c27ga9jf9gjn7syr56c7z06aga69qx44suavyr4", + "lpAddress": "neutron1g8q8jnve3zcs7x038rqq5m2tx83lzausf3nqrcntc47rj9343xhswwks9n", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.00066368, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 6.6368e-07, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -10616,27 +11921,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", + "token1Address": "neutron122xmvrx27htz6h3pqdy82aacr62kt7j63tdfq38ps5qmy0j6w32qnxm4w6", "token1PriceUsd": 0, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65978fa684dc55803c233523", - "address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", - "amount": "16552", - "symbol": "COSMONAUTS" + "id": "659988e684dc55803c2888d2", + "address": "neutron122xmvrx27htz6h3pqdy82aacr62kt7j63tdfq38ps5qmy0j6w32qnxm4w6", + "amount": "0", + "symbol": "JUNONAUTS" }, { - "id": "65978fa684dc55803c233524", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "61", - "symbol": "ATOM" + "id": "659988e684dc55803c2888d3", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "COSMONAUTS - ATOM", + "name": "JUNONAUTS - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10659,47 +11964,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1f2ufsltxt9w0puxqsesacsl83t54qgmlehag762h3whjg9y66epstear2d", - "lpAddress": "neutron1jwynrf360hft5sza3z2agcnmx3j4gq2mxm3sds2ugex8lj07fnqspp763v", + "poolAddress": "neutron1k6jdj7m6vg9w8zq79265s2aq7hq00cr5kc9da4y5y9nf9udm9v0s2mfyjy", + "lpAddress": "neutron1wj4s8zud8wk28zu8q5w9lvspuw8nv3y2whvklvx9u24tpj6rlmxsjzu0y5", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.0006097879830611803, + "poolLiquidityUsd": 0.002918540187, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 6.097879830611803e-07, + "poolStakedLiquidityUsd": 0.000002918540187, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron14798daa6d6ysq28fjzpg7jkykaseq7tlz6euleeegj02e0a8gkksltdm9l", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08218369832394283, + "token1Address": "neutron1gl688304p4h2kl542s6f8kaz2gy9nvd6u0wfdxd9wlve7tvt066qxqa24l", + "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65793dc5e21c1a9d87a26f7d", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "3424", - "symbol": "NEWT" + "id": "659a6ce584dc55803c2a6f68", + "address": "neutron1gl688304p4h2kl542s6f8kaz2gy9nvd6u0wfdxd9wlve7tvt066qxqa24l", + "amount": "1035170", + "symbol": "NEWTON" }, { - "id": "65793dc5e21c1a9d87a26f7e", + "id": "659a6ce584dc55803c2a6f69", "address": "untrn", - "amount": "301", + "amount": "4273", "symbol": "NTRN" } ], - "name": "NEWT - NTRN", + "name": "NEWTON - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -10719,12 +12025,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron15a7wjqnfjk7jr8atyheul3f9lv6827nhn4m9fue0n0sruv0ptj4szcsj5j", - "lpAddress": "neutron10c760xczcd7jwfw32vwymxz0w4d9kqa5xt34fhk72rc62f07kvzq52fxz0", + "poolAddress": "neutron1m6dm38fv7hvthzlqyl9ukslfakukaq57udva0knuz62lg30rxnxq63dwx0", + "lpAddress": "neutron1vcqhph2mkga5lsm9nj2rx8yl2vl96w3v4zhhr8z3ljpgddwz6z2s38cdgs", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.000579347820569589, + "poolLiquidityUsd": 0.068302583019, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 5.79347820569589e-07, + "poolStakedLiquidityUsd": 0.000068302583019, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -10737,27 +12043,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08218369832394283, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "neutron1t60674c98dpvvtsygpf4jtvl2d8q5txcrpnvlafh9aen4zf2ldlsfyt6e8", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ - { - "id": "65b7111cc56514afb66be471", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "3061", - "symbol": "NEWT" + { + "id": "659ac411a36538cc17e8281e", + "address": "neutron1t60674c98dpvvtsygpf4jtvl2d8q5txcrpnvlafh9aen4zf2ldlsfyt6e8", + "amount": "7154", + "symbol": "ECLIPSE" }, { - "id": "65b7111cc56514afb66be472", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "328", - "symbol": "USDC.axl" + "id": "659ac411a36538cc17e8281f", + "address": "untrn", + "amount": "100001", + "symbol": "NTRN" } ], - "name": "NEWT - USDC.axl", + "name": "ECLIPSE - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10780,12 +12086,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1jw89a9he48qr3sy2t502cdu8j8aqacx6k0dtmhl9gg8wsr0gqfzsvh9pwm", - "lpAddress": "neutron1v547mx4elzcdmsmew7zv6jwg0xatykg72sel4lxmqw5rmq9kvkvqkpgg2m", + "poolAddress": "neutron1eav08dgf7x307twt7q4wmerhem495js48rx77klhpuzwqwcewjjsshcnez", + "lpAddress": "neutron1w4vczcz6thcfvppaz49xw39esncw7sazepu9v8jl394ag7mzp3jsxjs9y3", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.0005787970560444482, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 5.787970560444482e-07, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -10798,27 +12104,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token1PriceUsd": 0.08218369832394283, - "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token2PriceUsd": 1 + "token1Address": "neutron1s4z8carrrj00vvtg3k7twn9pq7ldyy33ttyzsejtmphzxhj3vhns6y0368", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65bc21d2cfb48263b3ce9d22", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "3076", - "symbol": "NEWT" + "id": "659aeb9fa36538cc17e881e1", + "address": "neutron1s4z8carrrj00vvtg3k7twn9pq7ldyy33ttyzsejtmphzxhj3vhns6y0368", + "amount": "0", + "symbol": "Boy" }, { - "id": "65bc21d2cfb48263b3ce9d23", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "326", - "symbol": "USDC" + "id": "659aeb9fa36538cc17e881e2", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "NEWT - USDC", + "name": "Boy - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -10841,47 +12147,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1uecnt9mmvxfy35f9slnqaje36yx6qgm5gz2cre0wf63wpgr9da9qjup07a", - "lpAddress": "neutron15fyg87k6nsf229cvw95ka0pcel0ajm2fqyfhrjfd55hp9y54tsls0xvqmw", + "poolAddress": "neutron1h5dcc65gm3cgtufe6f4h8wg74wzj7ztt4rkap7304683t93680ustlveh4", + "lpAddress": "neutron1dandklzmve2y80vg9lwm7pk09uwjhndjvjxty6h8633fpejx5v3q4c66zr", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.00048168188, - "poolLiquidity": 47200, - "poolStakedLiquidityUsd": 1.020512457627119e-08, + "poolLiquidityUsd": 9.98656E-7, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 9.98656E-10, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1tx7vhpvd5yjscf3nurxxpn695la9ka6f8zezgrnl7y4lsvemccsqwc3lz3", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "token2PriceUsd": 0 + "token1Address": "neutron1s4z8carrrj00vvtg3k7twn9pq7ldyy33ttyzsejtmphzxhj3vhns6y0368", + "token1PriceUsd": 0, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "657ba85d750df6a352a4989d", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "482", - "symbol": "USDC.axl" + "id": "659af216a36538cc17e890a9", + "address": "neutron1s4z8carrrj00vvtg3k7twn9pq7ldyy33ttyzsejtmphzxhj3vhns6y0368", + "amount": "1948116", + "symbol": "Boy" }, { - "id": "657ba85d750df6a352a4989e", - "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "amount": "4773438", - "symbol": "ASTROPEPE" + "id": "659af216a36538cc17e890aa", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "1", + "symbol": "USDC.axl" } ], - "name": "USDC.axl - ASTROPEPE", + "name": "Boy - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -10901,48 +12208,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron13l406u0625nvas4glyu9t5zx2erpxdqy3earmp3344y88quh7duqx4sg7a", - "lpAddress": "neutron1sklgw5c57s42hpqlwu563zz27jsvzn07fy4t2vu3u6stqrhzcqascsydw5", + "poolAddress": "neutron16p723wktje066vckpgluf7v2gr4td20vuxfxn5t6973mxe5a4mxsuqnv5k", + "lpAddress": "neutron1u7epcqt09plpae6x20wuav9zzrvg0fh2pqkc9uxg7c5rs2l5z42s93cumw", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.000445128, + "poolLiquidityUsd": 0.001718910042, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 4.45128e-07, + "poolStakedLiquidityUsd": 0.000001718910042, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1q3rfmflhp79rz0sdjxdgf7t3x5twce9az6n0fegspkjstrax42kq0g96rn", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1wkshmjne0nclhfh6xw67w20885jgr9k52u7lnekme8jdvw897hmqraymux", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999896 }, "stakeable": false, "assets": [ { - "id": "6597289484dc55803c224a2b", - "address": "neutron1wkshmjne0nclhfh6xw67w20885jgr9k52u7lnekme8jdvw897hmqraymux", - "amount": "9188", - "symbol": "ATONE" - }, - { - "id": "6597289484dc55803c224a2c", + "id": "659b2484a36538cc17e8c453", "address": "untrn", - "amount": "408", + "amount": "1142", "symbol": "NTRN" + }, + { + "id": "659b2484a36538cc17e8c454", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "939", + "symbol": "USDC" } ], - "name": "ATONE - NTRN", + "name": "NTRN - USDC", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -10962,15 +12268,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1k5yz47aqqyr5t5u36l35c37urn3dmfszjfdv3qtqllrujlcgyqkst5smgk", - "lpAddress": "neutron1ve985eh92srkx0q9q6x3j4pkja5x45rp90md3ajuyyv8yhwttsgss6my98", + "poolAddress": "neutron1hvxcpe3fxc4sfuadmkl8uxkf93g73hahgq8s2272j40v6jp2dtyqyzqsjf", + "lpAddress": "neutron1s8z0v35sc5qm6d395gvh7c5ymcufggsg3p93pwk85tznjvjgceps6sx5xk", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.000215143208, + "poolLiquidityUsd": 1.25124E-7, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.15143208e-07, + "poolStakedLiquidityUsd": 1.25124E-10, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1vgg9ykv2n9sjwgvmj2pjju7uhty8hc6d8zn8nrpcwef0fs4fgc8syspn8s", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -10980,29 +12286,29 @@ "isBlocked": false, "prices": { "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "token2PriceUsd": 0.071059 + "token1PriceUsd": 0.125124, + "token2Address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "6583762e8c4c7910aa881156", + "id": "659b35a9a36538cc17e8e6bb", "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "764", - "symbol": "ASTRO" + "amount": "1", + "symbol": "ASTRO.cw20" }, { - "id": "6583762e8c4c7910aa881157", - "address": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "amount": "1316", - "symbol": "MARS" + "id": "659b35a9a36538cc17e8e6bc", + "address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", + "amount": "15316515", + "symbol": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS" } ], - "name": "ASTRO - MARS", + "name": "ASTRO.cw20 - factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -11022,12 +12328,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ykjassm7q8zh6hngdrnxqndgz2wh6c4klvt29prx96qsugw28ymswsjnmu", - "lpAddress": "neutron1qfvwlh4q5xmu97qe6vqpnpwhztgremr3ee9ezfc9vclds36k8ylq3fyaxj", + "poolAddress": "neutron19see3dz0vnu3df7nt2muqmrunpaxqvvqs42q8faxdrjfy9qal9jq6txzru", + "lpAddress": "neutron1qa3mztkp3yyh29yycpylhcfan0evgrvdkwlh6lwmme9lc5sxesqs8m97u3", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0.00010093334, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.0093334e-07, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -11040,27 +12346,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + "token1Address": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659bc43da36538cc17ea012b", - "address": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", - "amount": "12685", - "symbol": "WTF" + "id": "659b7beda36538cc17e9858a", + "address": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", + "amount": "0", + "symbol": "BOY" }, { - "id": "659bc43da36538cc17ea012c", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "101", - "symbol": "USDC.axl" + "id": "659b7beda36538cc17e9858b", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "WTF - USDC.axl", + "name": "BOY - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11083,44 +12389,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1t6tnqqmp65uzmz9yr0udujhygegw85r2gfc5vvw2xlsmxgerm48s9euhss", - "lpAddress": "neutron1f3fquz79zxdcc4cnhgt5fd8dyug5dgmuuncp4jvfw9073jrkev9qalpk8t", + "poolAddress": "neutron1g40cdpd0l83s0mjdv75wec5h0cq7ppnd9ndlf3psgjn6u708yj5q9ehnmf", + "lpAddress": "neutron1hgcpeypc37wyhxuj7e0glz9w7r8sy4adfcx2sg2mutcckttvv5hqysf4w6", "dayVolumeUsd": 0, - "poolLiquidityUsd": 6.31495e-05, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 6.31495e-08, + "poolLiquidityUsd": 0.224556163956, + "poolLiquidity": 22147900849, + "poolStakedLiquidityUsd": 1.013893666344867E-11, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", - "token1PriceUsd": 8.75, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "657b64dd9996ae8c433cab3b", - "address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", - "amount": "36012", - "symbol": "DOT" + "id": "659b7fcda36538cc17e98f7d", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "1794669", + "symbol": "ASTRO.cw20" }, { - "id": "657b64dd9996ae8c433cab3c", - "address": "untrn", - "amount": "29", - "symbol": "NTRN" + "id": "659b7fcda36538cc17e98f7e", + "address": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", + "amount": "274731947634254", + "symbol": "BOY" } ], - "name": "DOT - NTRN", + "name": "ASTRO.cw20 - BOY", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11143,44 +12450,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ll582qjzyywujkwvyct7nyw8al9z3rm97apdpqre2pau6x3kc7sqa5xluv", - "lpAddress": "neutron142mlhwqud4pqs4490ua5sea7dq6n7zppe2qh0xuqxavlmlevmdmqe4680z", + "poolAddress": "neutron1z3dlp6y7mfa08ef9a52zd20vv4ymh9emvuy0z8f0tedtsy6p6lusswehzp", + "lpAddress": "neutron1q9zcf5fjf0h68p84u9ujw87rnape8w99lgzm2fyas5swpm0sl03q330vl0", "dayVolumeUsd": 0, - "poolLiquidityUsd": 4.9095e-05, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 4.9095e-08, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/ONUJ", + "token1Address": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "66093cf605a65f3ca6fe71a0", - "address": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/ONUJ", - "amount": "22361", - "symbol": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/ONUJ" + "id": "659bc263a36538cc17e9ffab", + "address": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + "amount": "0", + "symbol": "WTF" }, { - "id": "66093cf605a65f3ca6fe71a1", + "id": "659bc263a36538cc17e9ffac", "address": "untrn", - "amount": "45", + "amount": "0", "symbol": "NTRN" } ], - "name": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/ONUJ - NTRN", + "name": "WTF - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11203,12 +12511,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1c63zdeyhfmn0t3kf6lw9puq2vv5uwat2rrqwxu25aqfxyzjvtpzsh8g68p", - "lpAddress": "neutron1xf6nlu92nesf6wwf0l2zh76gragknkgxnpjcvzfdp8z3apy7q4vsew5a5j", + "poolAddress": "neutron1ykjassm7q8zh6hngdrnxqndgz2wh6c4klvt29prx96qsugw28ymswsjnmu", + "lpAddress": "neutron1qfvwlh4q5xmu97qe6vqpnpwhztgremr3ee9ezfc9vclds36k8ylq3fyaxj", "dayVolumeUsd": 0, - "poolLiquidityUsd": 3.4912e-05, + "poolLiquidityUsd": 0.000100864256, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.4912e-08, + "poolStakedLiquidityUsd": 1.00864256E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -11221,27 +12529,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron1juu7p9psal46c9teyrn29w9hxv6ryy809339dhy8lxcvqv5fwawshqrtyr", + "token1Address": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "6597e62684dc55803c2445e3", - "address": "neutron1juu7p9psal46c9teyrn29w9hxv6ryy809339dhy8lxcvqv5fwawshqrtyr", - "amount": "31655", - "symbol": "RUSHBOT" - }, - { - "id": "6597e62684dc55803c2445e4", - "address": "untrn", - "amount": "32", - "symbol": "NTRN" + "id": "659bc43da36538cc17ea012b", + "address": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", + "amount": "12685", + "symbol": "WTF" + }, + { + "id": "659bc43da36538cc17ea012c", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "101", + "symbol": "USDC.axl" } ], - "name": "RUSHBOT - NTRN", + "name": "WTF - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11264,44 +12572,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1edhtqhseprgquaw52f3qkkwj779jy04kydzpdfwssv5mfu7mnv4s4eht87", - "lpAddress": "neutron10cg42k5pmw7m0z9cvgzmwyz0mxq5k9ust0mnqksyfff5jdvucvgsg2h935", + "poolAddress": "neutron1rnn22q5vmv46jv5wgdt2ltntrmzzc85mkwn3h8p7zq3afye5rq9qanrkha", + "lpAddress": "neutron1vjccac0d5fslsp9mxlg8ecr3yz7lz7x948ne5u2djeutdn2vdn9qfzuqwd", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.6184e-05, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.6184e-08, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron1chut3yhlgwp98kcthp58dcrnusn5vdh6v0c8rw/StudyThis", - "token2PriceUsd": 0 + "token1Address": "neutron1yh2lv497ex0e7j62ewyx6x08uxcnvjlcvlusyr73v4azctyysursee7lh7", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6609da6e05a65f3ca6ff17b8", - "address": "untrn", - "amount": "24", - "symbol": "NTRN" + "id": "659cd56bfdb9cb40c8669e91", + "address": "neutron1yh2lv497ex0e7j62ewyx6x08uxcnvjlcvlusyr73v4azctyysursee7lh7", + "amount": "0", + "symbol": "LAIKA" }, { - "id": "6609da6e05a65f3ca6ff17b9", - "address": "factory/neutron1chut3yhlgwp98kcthp58dcrnusn5vdh6v0c8rw/StudyThis", - "amount": "45033", - "symbol": "factory/neutron1chut3yhlgwp98kcthp58dcrnusn5vdh6v0c8rw/StudyThis" + "id": "659cd56bfdb9cb40c8669e92", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "NTRN - factory/neutron1chut3yhlgwp98kcthp58dcrnusn5vdh6v0c8rw/StudyThis", + "name": "LAIKA - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11324,44 +12633,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1art4z0k6jm3can3qydgdcjyf2zqttxzp0wtcn3we3sg7gwxqlg7qfdl5cd", - "lpAddress": "neutron1x3rr0xnptwggjnpl5v7huzupsnzhrwv7zarlc6sd6mp0saf9ua6qj9ugh3", + "poolAddress": "neutron1w4z8p2ca6ldm3pfngptpq2uvghp45npy876tz8al77y07unucuzqwmuqtf", + "lpAddress": "neutron1vqwsyqdhplqr0qqe5u625q7252f42emvfst4f4nymkfdype09gfq33k3tw", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.5093e-05, + "poolLiquidityUsd": 0.001845516288, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.5093e-08, + "poolStakedLiquidityUsd": 0.000001845516288, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON", - "token2PriceUsd": 0 + "token1Address": "neutron1yh2lv497ex0e7j62ewyx6x08uxcnvjlcvlusyr73v4azctyysursee7lh7", + "token1PriceUsd": 0, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "6602345305a65f3ca6f6da9d", - "address": "untrn", - "amount": "23", - "symbol": "NTRN" + "id": "659d1fc2fdb9cb40c8676c96", + "address": "neutron1yh2lv497ex0e7j62ewyx6x08uxcnvjlcvlusyr73v4azctyysursee7lh7", + "amount": "1801", + "symbol": "LAIKA" }, { - "id": "6602345305a65f3ca6f6da9e", - "address": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON", - "amount": "44722", - "symbol": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON" + "id": "659d1fc2fdb9cb40c8676c97", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "1848", + "symbol": "USDC.axl" } ], - "name": "NTRN - factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON", + "name": "LAIKA - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11384,12 +12694,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron14s3n75mfkz398d2jafvj56rv9eu5nv4ymt5f0fa0ks7chetsh63sy0crdf", - "lpAddress": "neutron182uzkfastmtt2vk8u534gq6ypyplla54vjwxlc563gxagkvuhurqdmvpav", + "poolAddress": "neutron1hv0l0xrsm5lp546ylmp0sy2rh5u6tdp67svzxpmasdqy8xdgedgslps7n5", + "lpAddress": "neutron1f92zwels94fv29lm07j08rynjc6dc2f8ceruj9c4esaq8wuru02sz249l7", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.481728453077404e-05, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.481728453077404e-08, + "poolLiquidityUsd": 208.3626500876478, + "poolLiquidity": 13228756555322, + "poolStakedLiquidityUsd": 1.575073488818405E-11, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -11401,27 +12711,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "token1PriceUsd": 4.939094843591347, - "token2Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token2PriceUsd": 0 + "token1Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "token1PriceUsd": 0, + "token2Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "token2PriceUsd": 0.00000941 }, "stakeable": false, "assets": [ { - "id": "6597038b84dc55803c21b488", - "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "amount": "3", - "symbol": "CIRCUS" + "id": "659dea5dfdb9cb40c869d693", + "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "amount": "8447544146859", + "symbol": "BAD" }, { - "id": "6597038b84dc55803c21b489", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "409201", - "symbol": "HUAHUA" + "id": "659dea5dfdb9cb40c869d694", + "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "amount": "22142683324936", + "symbol": "CRBRUS" } ], - "name": "CIRCUS - HUAHUA", + "name": "BAD - CRBRUS", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11444,44 +12754,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ct9xg2x6wh9llg72qayd8n309r03gkvlyltx8gszdzd9jjktmv4sjcf54m", - "lpAddress": "neutron1plp6366xgqf4wd433yhrn328jlrlc7eqvmzyche4g0j6kr0rpfaqx6y9j0", + "poolAddress": "neutron10vps74593dna08yt4r4fg5hk0y3xel8ce67md4ug86ws74wm20rqvjsgnp", + "lpAddress": "neutron1262f8lkx3x38jxgpk5afphlmzh634xrvn7wtt0pa3gewem7xlpwqvan2v6", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.4e-05, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.4e-08, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token1PriceUsd": 1, - "token2Address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/BLAST", - "token2PriceUsd": 0 + "token1Address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "658602abe74086cc3b8ef365", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "14", - "symbol": "USDC" + "id": "659fa908fdb9cb40c86c3b17", + "address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "amount": "0", + "symbol": "BDG" }, { - "id": "658602abe74086cc3b8ef366", - "address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/BLAST", - "amount": "76695", - "symbol": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/BLAST" + "id": "659fa908fdb9cb40c86c3b18", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "USDC - factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/BLAST", + "name": "BDG - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11504,15 +12815,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron164hn2cwp7ecwmqjlnynhj3xsvu79u5s364nhmvr6rp077v7ar0tshf5zqf", - "lpAddress": "neutron1jqqzz5rlra0yjz3ts50q8nxv47zkg6287aljvjdkaskm9u786zescgpwk8", + "poolAddress": "neutron1435xdnfc275zdkz7d5dz9kns6upspl02h5q6n55glaqm9wu4cewqz3f3wg", + "lpAddress": "neutron16xn5dk770dqmvla7909gjkp9as8s8aweyt9f9a0yxml39hw9acrqvh7t0x", "dayVolumeUsd": 0, - "poolLiquidityUsd": 9.819e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 9.819e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1cp5pea4zpq7sz9xkveupxxtfu37uekeg0q0wnvhm5rrgt5ud07aqtq7xvr", "whitelisted": null }, "feeRate": [ @@ -11521,30 +12832,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON2", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "6605bd2405a65f3ca6fb02ab", - "address": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON2", - "amount": "122544", - "symbol": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON2" + "id": "659fcb9cfdb9cb40c86ca0a4", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "0", + "symbol": "APOLLO" }, { - "id": "6605bd2405a65f3ca6fb02ac", - "address": "untrn", - "amount": "9", - "symbol": "NTRN" + "id": "659fcb9cfdb9cb40c86ca0a5", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "0", + "symbol": "USDC.axl" } ], - "name": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON2 - NTRN", + "name": "APOLLO - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -11564,15 +12875,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1cpdnuccm2p4j3eqynxk27e3gpmaaxyeef3580unqegh34w5v7dgqh967e4", - "lpAddress": "neutron19ylz9assj9t6l44djaxrxq65mpfm2x5xh69e9s33wjethspjr4zqzh0sm2", + "poolAddress": "neutron1s8jlz99kvu5d3zjpqxsuv9yu5rjey748w2vu98ndzmw3aahzd7xq55rzr4", + "lpAddress": "neutron1vmknup02d8eel52ew26kma7xjh772a3pa0r3mc2ezwlcr7dujm7swpsdr2", "dayVolumeUsd": 0, - "poolLiquidityUsd": 8.728e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 8.728e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron15wal8wsy7mq37hagmrzchwmugpjzwlzrlw7pylkhlfuwukmc2kps722ems", "whitelisted": null }, "feeRate": [ @@ -11581,30 +12892,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/BASED", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999896 }, "stakeable": false, "assets": [ { - "id": "660a842205a65f3ca6ffb6e5", - "address": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/BASED", - "amount": "140881", - "symbol": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/BASED" + "id": "659fcbdefdb9cb40c86ca0ee", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "0", + "symbol": "APOLLO" }, { - "id": "660a842205a65f3ca6ffb6e6", - "address": "untrn", - "amount": "8", - "symbol": "NTRN" + "id": "659fcbdefdb9cb40c86ca0ef", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "0", + "symbol": "USDC" } ], - "name": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/BASED - NTRN", + "name": "APOLLO - USDC", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -11624,48 +12935,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1v2l6rk3j9x84w7kulgfkfm9acmflcqjzlsat8k2teux3vj5ec5yq7et2g4", - "lpAddress": "neutron1saac9n3vquyuv5nykx6yu5h89a5zjuajfq4vmck5j4eqjd6xkl6q2wk2fc", + "poolAddress": "neutron1w38v8z70tfus49cc77jzq4y5kt805nuyh6n0vmktjal07taad9hslagsse", + "lpAddress": "neutron1wq0f56agywr6zcj76e0nxezc06llfjnnwacr70cadr6l0j345whs95h2v8", "dayVolumeUsd": 0, - "poolLiquidityUsd": 8.46617804e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 8.46617804e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1fktxsflze70p7565yslwtth290zqad4agt4gpvjffy58h6raxvasz5etfw", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "token1PriceUsd": 1.378e-05, + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a66ec2e8848f944ef5a5e6", - "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "amount": "218518", - "symbol": "CRBRUS" + "id": "659fcc15fdb9cb40c86ca190", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "0", + "symbol": "APOLLO" }, { - "id": "65a66ec2e8848f944ef5a5e7", + "id": "659fcc15fdb9cb40c86ca191", "address": "untrn", - "amount": "5", + "amount": "0", "symbol": "NTRN" } ], - "name": "CRBRUS - NTRN", + "name": "APOLLO - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -11685,15 +12995,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1a4uqzd27gwgam99hugllyhqj24la05pev3m7huecnzvgvruagh3qgdcd07", - "lpAddress": "neutron1xnn25tscs7pj4yyjv2kckwujskrc4xf2k9h0nqjme5leqxf69uqspruvxd", + "poolAddress": "neutron18h8cql8q6t8vcx39xh6qgfpu5nwhkvxmez66azmkkjnce9nupfys0gqa87", + "lpAddress": "neutron1wuvlq9usr5hx9wv2h0qrhg0eqcrxxzy8eqcmjhvpq77su6urt8asd99lhv", "dayVolumeUsd": 0, - "poolLiquidityUsd": 6.546e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 6.546e-09, + "poolLiquidityUsd": 2959.170609490223, + "poolLiquidity": 11871445248, + "poolStakedLiquidityUsd": 2.492679322021431E-7, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1zhjrgpvu2th5t8w5ndfw9lwsqp95sgr46kf4j3jrcfe2lep0hlnqfczpjm", "whitelisted": null }, "feeRate": [ @@ -11702,30 +13012,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1ydjtjhhsmh909e9ahu746qdhd0hppx03pawq28xcqec4vez4j24qz9g0jv", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token2PriceUsd": 0.125124 }, "stakeable": false, "assets": [ { - "id": "6596d5575d245ceccb9469f1", - "address": "neutron1ydjtjhhsmh909e9ahu746qdhd0hppx03pawq28xcqec4vez4j24qz9g0jv", - "amount": "187607", - "symbol": "BONK" + "id": "659fcc46fdb9cb40c86ca24e", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "12498132842", + "symbol": "APOLLO" }, { - "id": "6596d5575d245ceccb9469f2", - "address": "untrn", - "amount": "6", - "symbol": "NTRN" + "id": "659fcc46fdb9cb40c86ca24f", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "11346905723", + "symbol": "ASTRO.cw20" } ], - "name": "BONK - NTRN", + "name": "APOLLO - ASTRO.cw20", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -11745,48 +13055,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1x0j5twjla8uvpyxvwq4nyk8ve4sxh8rrlmkpz0fgdx2g8dmd9szsv0xyxt", - "lpAddress": "neutron1n3cfkvccm6x70g8qfqgtuxekeqwkkuvszaxfajy689htt35afyxqlamlk3", + "poolAddress": "neutron1mg0gd089xkuhk02wx2n3dcz7tqy03j0a3apw4fkq6a0rsq65dphsde6ngx", + "lpAddress": "neutron15cm4jzpfv2n3au20fgr6cmlqa2jupw2d9ycfa4a3etfxqx6u5stskxzj6z", "dayVolumeUsd": 0, - "poolLiquidityUsd": 5.99604e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 5.99604e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1h7uu0q6sgmnv29rl8we45kz5cystkmaqmy9wcpt0whm3nrukugqsefu2e6", "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", - "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "659791cd84dc55803c233fae", - "address": "neutron1jp2dpm4lp58qjtfcgr5c7d2usw2rcp6hf0vwy2wqjm5wl0e2sjmq7ryttp", - "amount": "316935", - "symbol": "COSMONAUTS" + "id": "659fcc85fdb9cb40c86ca2dd", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "0", + "symbol": "APOLLO" }, { - "id": "659791cd84dc55803c233faf", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "6", - "symbol": "USDC.axl" + "id": "659fcc85fdb9cb40c86ca2de", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "0", + "symbol": "ATOM" } ], - "name": "COSMONAUTS - USDC.axl", + "name": "APOLLO - ATOM", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -11806,44 +13115,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1rmjc06vz36zhaemx5lk9tndvtjl9aslq7qcvtedk0nmfl2sjsxts9yzwx3", - "lpAddress": "neutron14xp4k8j8uhwn6g6f00zd5qs4unj5s49zt28smslyap929dz2zjgqh9knla", + "poolAddress": "neutron1e3xggcuvpk3p4r9qmyk2vdv7z9chfmkekc7vemfqzn22dk29nawqjjmwpn", + "lpAddress": "neutron1xtxkgh7xrkf65pvaz8u867uwzv6gf5s6y338253pk9qwt9qf5zmqcd5tyn", "dayVolumeUsd": 0, - "poolLiquidityUsd": 5.455e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 5.455e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/EC279EDDCD229637600C1027C1F1074A1EA09B5B30013D00C10DAB8572DB0B4B", + "token1Address": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65bfdb93b49e7c63d0a285e9", - "address": "ibc/EC279EDDCD229637600C1027C1F1074A1EA09B5B30013D00C10DAB8572DB0B4B", - "amount": "200889", - "symbol": "BADDOG (Osmosis)" + "id": "659fe913fdb9cb40c86ccf67", + "address": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", + "amount": "0", + "symbol": "BTC" }, { - "id": "65bfdb93b49e7c63d0a285ea", + "id": "659fe913fdb9cb40c86ccf68", "address": "untrn", - "amount": "5", + "amount": "0", "symbol": "NTRN" } ], - "name": "BADDOG (Osmosis) - NTRN", + "name": "BTC - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11866,44 +13176,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1md57sq20tjl249nas8edw32vyw2hztqm0ulc42uecsa6lc63lsmsky2c84", - "lpAddress": "neutron19j52590ny5ggaj5w4kepqczrs0xmlpkhe4mnhuwyr0fd86lfvytq89vv8r", + "poolAddress": "neutron1fz2d0w3xd98gysl4lt6ds4ex2p2vjlgryfkasu5tjprf5l6jpm4qsau0p0", + "lpAddress": "neutron1cqy2ta0gqdrngz5ssnqtpzdf2eqa7qqykrm6rd3fgp75vd2wplxss69agm", "dayVolumeUsd": 0, - "poolLiquidityUsd": 4.364e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 4.364e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/SunnyProp16JunoWhaleInu", + "token1Address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "65ec8d7468fc77acd92eb107", - "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/SunnyProp16JunoWhaleInu", - "amount": "312760", - "symbol": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/SunnyProp16JunoWhaleInu" + "id": "65a24a9e4a547903093ffb2f", + "address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "amount": "0", + "symbol": "BDG" }, { - "id": "65ec8d7468fc77acd92eb108", - "address": "untrn", - "amount": "4", - "symbol": "NTRN" + "id": "65a24a9e4a547903093ffb30", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "0", + "symbol": "USDC.axl" } ], - "name": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/SunnyProp16JunoWhaleInu - NTRN", + "name": "BDG - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11926,44 +13237,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1kv8am24radl4nyaw5t64cdkmlnqrt8hljp4yxy9eeypnk3ly7d6s5uxhhm", - "lpAddress": "neutron16r9lgaqsf4y02w7rpeyq3pzvszpr4dj5zulc99sjh7kzwpqeklcqc47eef", + "poolAddress": "neutron1jtpskhvejskatzympeunhk3fd0vyjfkd5p4xj0s7v889xkmje93q6s5eq2", + "lpAddress": "neutron1zf9xv4t4me8pxmyksn5mx30hpyh9zll0hvqfj0tpfsy5yckelq5qsdrkx9", "dayVolumeUsd": 0, - "poolLiquidityUsd": 3.99736e-06, + "poolLiquidityUsd": 0.411746424, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.99736e-09, + "poolStakedLiquidityUsd": 0.000411746424, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron18ps4ypzkq0dwzp84jctnd8ljrdcjgr6v27gymt/Quirky", + "token1Address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "token2PriceUsd": 1.004 }, "stakeable": false, "assets": [ { - "id": "6598657d84dc55803c25680c", - "address": "factory/neutron18ps4ypzkq0dwzp84jctnd8ljrdcjgr6v27gymt/Quirky", - "amount": "417621", - "symbol": "QRKY" + "id": "65a24c944a547903093ffe3d", + "address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "amount": "5534089720", + "symbol": "BDG" }, { - "id": "6598657d84dc55803c25680d", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "4", - "symbol": "USDC.axl" + "id": "65a24c944a547903093ffe3e", + "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "amount": "410106", + "symbol": "USDT.axl" } ], - "name": "QRKY - USDC.axl", + "name": "BDG - USDT.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -11986,12 +13298,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1w2vryy3yevnnx9qfh56gg6kauk66rw5cpkc85syvxv9fypngenyq9vrmfr", - "lpAddress": "neutron1rx8cafrhjaghhdy83alasnyzlghty79v6k7zc676gypfk3nvtw7sgna704", + "poolAddress": "neutron1qg3eh22sy4jeushxpu9zu73ntmn3e8468rwqdpc4s0g5j80lnkfqzfp3qe", + "lpAddress": "neutron1yhvqhr3yvadl4v6qquk9cxt9jpuqz0yv52862ygdqw5vhjzm7pcs88z5xn", "dayVolumeUsd": 0, - "poolLiquidityUsd": 3.698266424577427e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.698266424577427e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -12003,27 +13315,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1Address": "neutron12ve9fafr8lj4k3nf6vmz82u3ulmmr80ut697ygq8j0ksudvv0csqfkkh2p", "token1PriceUsd": 0, - "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "token2PriceUsd": 0.08218369832394283 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6583763c8c4c7910aa881162", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "22535", - "symbol": "HUAHUA" + "id": "65a367d859423b792c437c54", + "address": "neutron12ve9fafr8lj4k3nf6vmz82u3ulmmr80ut697ygq8j0ksudvv0csqfkkh2p", + "amount": "0", + "symbol": "BENGAL" }, { - "id": "6583763c8c4c7910aa881163", - "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "amount": "45", - "symbol": "NEWT" + "id": "65a367d859423b792c437c55", + "address": "untrn", + "amount": "0", + "symbol": "NTRN" } ], - "name": "HUAHUA - NEWT", + "name": "BENGAL - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12046,44 +13358,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1gm2mcn59v45w77234e3gf5jxlmt3wgyat7jrvhd9jxme5dx67drstdfsmr", - "lpAddress": "neutron135yn3jgs7huh7dneu7me68xrjd89mn7kaklw47076y7rgs994jasaxtnpx", + "poolAddress": "neutron1m36ksxs6kt8kf797fknyxm2nc9k56dgdu9g6rajeu6g6s3lqpqdqwcrc32", + "lpAddress": "neutron1m9ev8rhy4x0tlws5l86dkj9pxm0389yq4azskt95t2uelc0l5fxqw5h439", "dayVolumeUsd": 0, - "poolLiquidityUsd": 3.273e-06, + "poolLiquidityUsd": 0.002250970624, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 3.273e-09, + "poolStakedLiquidityUsd": 0.000002250970624, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1szljj7e9nsyvqjg8fq49wt3nesdg20p6nf5w2a/Muffy", + "token1Address": "neutron12ve9fafr8lj4k3nf6vmz82u3ulmmr80ut697ygq8j0ksudvv0csqfkkh2p", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "658ff3d0fa5a2b66abc9c924", - "address": "factory/neutron1szljj7e9nsyvqjg8fq49wt3nesdg20p6nf5w2a/Muffy", - "amount": "492161", - "symbol": "factory/neutron1szljj7e9nsyvqjg8fq49wt3nesdg20p6nf5w2a/Muffy" + "id": "65a4a83559423b792c45567e", + "address": "neutron12ve9fafr8lj4k3nf6vmz82u3ulmmr80ut697ygq8j0ksudvv0csqfkkh2p", + "amount": "1005502", + "symbol": "BENGAL" }, { - "id": "658ff3d0fa5a2b66abc9c925", - "address": "untrn", - "amount": "3", - "symbol": "NTRN" + "id": "65a4a83559423b792c45567f", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "2254", + "symbol": "USDC.axl" } ], - "name": "factory/neutron1szljj7e9nsyvqjg8fq49wt3nesdg20p6nf5w2a/Muffy - NTRN", + "name": "BENGAL - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12106,45 +13419,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1pep8klxeqk3mtg7uwkhkpqan2lvpep3s4zj08vmz8ywdeurxpzjqnu763h", - "lpAddress": "neutron1qvcmlzwrj3ky4d229qx72l5tkdy7tzgt5f6gu3fhydvg63q977fsxdzevy", + "poolAddress": "neutron19tycfzc7hhfytfl7et6c3k4nuw4zvpn9xd70xxxjsa6x5chaj6gqp0hjx0", + "lpAddress": "neutron1730urt2qjrus8z6kgg54qskx3pet6kf49k2q795q58sqr76twcsqtwvhw2", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.182e-06, + "poolLiquidityUsd": 20.074725493173, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.182e-09, + "poolStakedLiquidityUsd": 0.020074725493173, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron12dv6a7ge5qd35mt842rjyqqgn0zu9tx8z0e9qa2678jlf0lvmwcquhjgfp", + "token1Address": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6598001a84dc55803c248893", - "address": "neutron12dv6a7ge5qd35mt842rjyqqgn0zu9tx8z0e9qa2678jlf0lvmwcquhjgfp", - "amount": "942202", - "symbol": "BARYON" + "id": "65a51916e8848f944ef422c4", + "address": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "amount": "87471478046179", + "symbol": "NTRL" }, { - "id": "6598001a84dc55803c248894", + "id": "65a51916e8848f944ef422c5", "address": "untrn", - "amount": "2", + "amount": "29391167", "symbol": "NTRN" } ], - "name": "BARYON - NTRN", + "name": "NTRL - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12167,12 +13479,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1tjcm8nfsndyr6nma30xd3pgn749d9d3ltxg4a9468nyz75376dnqefgcyl", - "lpAddress": "neutron1mhlelkqexuwfyucr4yu0axa8vakqcepqg5a6z5ddc5y3yyxxw2zqh8fdes", + "poolAddress": "neutron165kzr6jwmpy509hdz97mkh4yh8yufhhlgjg8musjgu54lm34vcgsnc3xch", + "lpAddress": "neutron1m8znhghznleajz2zyfe2knr5u5prhdpmqg65gyjk0gvpzujkftzstvlqag", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.182e-06, + "poolLiquidityUsd": 0.002840244857680935, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.182e-09, + "poolStakedLiquidityUsd": 0.000002840244857680935, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -12185,27 +13497,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron1p4cffwfxzqrtc64ulm5ygwyuxqk7dnm09p3d050hes4xsnevxnqs93yud8", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "token2PriceUsd": 2.891976172473291 }, "stakeable": false, "assets": [ { - "id": "6598322e84dc55803c251989", - "address": "neutron1p4cffwfxzqrtc64ulm5ygwyuxqk7dnm09p3d050hes4xsnevxnqs93yud8", - "amount": "948442", - "symbol": "bridgeWAIFU" - }, - { - "id": "6598322e84dc55803c25198a", + "id": "65a66ec3e8848f944ef5a5f6", "address": "untrn", - "amount": "2", + "amount": "2325", "symbol": "NTRN" + }, + { + "id": "65a66ec3e8848f944ef5a5f7", + "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "amount": "433", + "symbol": "CIRCUS" } ], - "name": "bridgeWAIFU - NTRN", + "name": "NTRN - CIRCUS", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12228,12 +13540,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1j5sr2kja4hjlwqudnnyz9l2j3xj9xmaz5mj4tn54tavhe9dtuwtq0r8sny", - "lpAddress": "neutron1pv0vymlga9ah9j6qz2yvhlezcxzlzel6xpplwzk4quf7rdhlvnpqtuqfdh", + "poolAddress": "neutron18k4rdpqq5vzacwp0pujur8d9lxamemh7w3mcmzujydzt3uq2xqgs25m4yh", + "lpAddress": "neutron1wyd9ftayhts3cwlaxsxacqxv6h6u3t9r05ev6t7uczzda26sdmmsr4msxt", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.182e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.182e-09, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -12246,27 +13558,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron12m44vzyhx93uzth0ee875z9rajxdym24fvxzlhfdp0e0kch9ay3q9uphra", - "token1PriceUsd": 0, + "token1Address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "token1PriceUsd": 0.0000183176135627049, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65983f3b84dc55803c253d5c", - "address": "neutron12m44vzyhx93uzth0ee875z9rajxdym24fvxzlhfdp0e0kch9ay3q9uphra", - "amount": "945762", - "symbol": "SNOWY" + "id": "65a66ec4e8848f944ef5a616", + "address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "amount": "0", + "symbol": "CORGI" }, { - "id": "65983f3b84dc55803c253d5d", + "id": "65a66ec4e8848f944ef5a617", "address": "untrn", - "amount": "2", + "amount": "0", "symbol": "NTRN" } ], - "name": "SNOWY - NTRN", + "name": "CORGI - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12289,45 +13601,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1lz53yaac74ksu9xsmm25xm76swmpdpj30fhhmvkfymsqrtrqgpzsgr8624", - "lpAddress": "neutron18myaasn8any654awkzavecgd5tawaa77r0nv5nddf8j3kupdlc3qhvelfc", + "poolAddress": "neutron170j84hn9g2hjc9sgepj6g6zqafsaza38myq6zgtgpd3dy5ttmjtqe793lg", + "lpAddress": "neutron15m2y6vj5myj90sskd2s4efwk05cpurp6cjymv3898hadxs2gtczqf78lx5", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.091e-06, + "poolLiquidityUsd": 0.26404148502, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.091e-09, + "poolStakedLiquidityUsd": 0.00026404148502, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1tf7fxwrdqmgwu8rw0a9wnyvynmh2pt89mrne0ngf93jy22vmw4ls4238ea", + "token1Address": "factory/neutron1gjzvc9jjwkp5zrkn0q6h8y33wlqq3ef80rd8ap/uhangman", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6597dc8c84dc55803c242a42", - "address": "neutron1tf7fxwrdqmgwu8rw0a9wnyvynmh2pt89mrne0ngf93jy22vmw4ls4238ea", - "amount": "2490908", - "symbol": "bridgeSEIYAN" + "id": "65a9ff260a570e4941640565", + "address": "factory/neutron1gjzvc9jjwkp5zrkn0q6h8y33wlqq3ef80rd8ap/uhangman", + "amount": "15228417649508", + "symbol": "HGM" }, { - "id": "6597dc8c84dc55803c242a43", + "id": "65a9ff260a570e4941640566", "address": "untrn", - "amount": "1", + "amount": "386580", "symbol": "NTRN" } ], - "name": "bridgeSEIYAN - NTRN", + "name": "HGM - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12350,45 +13661,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1jg422h2yu3v9rffhxf5c8hkme4c3xncpghdc0jzy4wv34atanh8syntrdq", - "lpAddress": "neutron1nclfvwqhw74mc44tu5u0qyupqcqv6t8hquaq6w2ehhvykxesyx0s4yfacl", + "poolAddress": "neutron1m6cstaaheluc4aqkguqh4vgnndf8hu36jem287famuarwgpyd6zscr0e70", + "lpAddress": "neutron18n8qnctlc45u9rnztj0fy4pjz4600u3fpqczt9hpcj0ha2jsy92sfmd9q7", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.091e-06, + "poolLiquidityUsd": 4.238561830932, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.091e-09, + "poolStakedLiquidityUsd": 0.004238561830932, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1d60mwrmktw35df0ypg2m2nmchvkj8awf0qljm6dm94f963g3tutsmcn7u2", + "token1Address": "factory/neutron1x6dz920jhwuw9e4vf0rwwdrlkc2ztyss0eyl2n/newtkiller", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6597fb6384dc55803c247993", - "address": "neutron1d60mwrmktw35df0ypg2m2nmchvkj8awf0qljm6dm94f963g3tutsmcn7u2", - "amount": "1049475", - "symbol": "ASBOT" + "id": "65aa42f90a570e4941643258", + "address": "factory/neutron1x6dz920jhwuw9e4vf0rwwdrlkc2ztyss0eyl2n/newtkiller", + "amount": "7523824852", + "symbol": "NEWTK" }, { - "id": "6597fb6384dc55803c247994", + "id": "65aa42f90a570e4941643259", "address": "untrn", - "amount": "1", + "amount": "6205628", "symbol": "NTRN" } ], - "name": "ASBOT - NTRN", + "name": "NEWTK - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12411,12 +13721,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1y9y9wn09v0s7ext2ax5e9akw8yy86gl492lr6mneesp3wdqec5yqea0837", - "lpAddress": "neutron17k0sxtgalzzum7elfn6jqgkgyz9dk9gpmp09qc89cx3dwkhw7pmqpw2cs0", + "poolAddress": "neutron169vshmj6x7dlugd32zvwpv6ujwgz80d0l6xt8f5eufkn2dtvhk6s3ulgqv", + "lpAddress": "neutron13vptqlpfpwpvy4hyqzaa2td3t35scctna2q45f56dsmpmugs40jq7w9rqc", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.091e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.091e-09, + "poolLiquidityUsd": 157695.7899547703, + "poolLiquidity": 38830113277682, + "poolStakedLiquidityUsd": 4.061171217863189E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -12425,32 +13735,32 @@ "feeRate": [ "0.30" ], - "poolType": "xyk", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "neutron1ppajkmsnkhygztka6zgzf3d25df623l6emftypr6gel5tjunmntqnxte6d", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token2PriceUsd": 3466.56 }, "stakeable": false, "assets": [ { - "id": "65983a5684dc55803c253561", - "address": "neutron1ppajkmsnkhygztka6zgzf3d25df623l6emftypr6gel5tjunmntqnxte6d", - "amount": "7506182", - "symbol": "NEUTRAL" + "id": "65ad65940a570e494166926f", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "637669463737", + "symbol": "APOLLO" }, { - "id": "65983a5684dc55803c253562", - "address": "untrn", - "amount": "1", - "symbol": "NTRN" + "id": "65ad65940a570e4941669270", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "22833520508625981378", + "symbol": "wstETH" } ], - "name": "NEUTRAL - NTRN", + "name": "APOLLO - wstETH", "isNew": false, - "isIlliquid": true, + "isIlliquid": false, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -12471,45 +13781,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ent0y5t49wamn7xzhh6v8pd46qy0d8f8uslna0dlm8e72urvr0yqxucvc0", - "lpAddress": "neutron1mz07gjy5zzc9xtp0sm3dm4a5h50ldx84dgjwmnlarmglxe3lzskqyj2y76", + "poolAddress": "neutron1cp5pea4zpq7sz9xkveupxxtfu37uekeg0q0wnvhm5rrgt5ud07aqtq7xvr", + "lpAddress": "neutron1mtszsa42k6fk8elldvc33ylandll7h8ncmc2vqk289wxp3qhhu7shcwzqc", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.091e-06, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.091e-09, + "poolLiquidityUsd": 2.529415481577654, + "poolLiquidity": 316227, + "poolStakedLiquidityUsd": 0.000007998733446472473, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "neutron1f8r7d5s3k4yh7cgp08mqv2v03y87apuvaj996erqjxzwhus5ty9qzyl4y0", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "659931ef84dc55803c27ba33", - "address": "neutron1f8r7d5s3k4yh7cgp08mqv2v03y87apuvaj996erqjxzwhus5ty9qzyl4y0", - "amount": "5788638", - "symbol": "miniCIRCUS" + "id": "65ad65940a570e494166927b", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "10294104", + "symbol": "APOLLO" }, { - "id": "659931ef84dc55803c27ba34", - "address": "untrn", - "amount": "1", - "symbol": "NTRN" + "id": "65ad65940a570e494166927c", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "1263184", + "symbol": "USDC.axl" } ], - "name": "miniCIRCUS - NTRN", + "name": "APOLLO - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12532,12 +13841,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1tp0axdw2efsv2wdvwkxkk4fkrwxy4a8s9dv5x62ja70mcrztau6spw43c0", - "lpAddress": "neutron1qk6wwuyfqcy7gqujr04d7qdqxd3hazsmdjcus0cnuxar0y9pdnsszpjtcv", + "poolAddress": "neutron1h7uu0q6sgmnv29rl8we45kz5cystkmaqmy9wcpt0whm3nrukugqsefu2e6", + "lpAddress": "neutron1j8nzg03lxjrx6vajzwepum8fp2hstec85gdaw083c9wqyfa3dlfqthzz2g", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.091e-06, + "poolLiquidityUsd": 0.002098979889385072, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.091e-09, + "poolStakedLiquidityUsd": 0.000002098979889385073, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -12546,30 +13855,30 @@ "feeRate": [ "0.30" ], - "poolType": "xyk", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "neutron1m2yxg7q9zcjdkga6hwu7xg4d35p3q9c8ugrue0qu0pqajdpz3g7q8lavst", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "65bc59f2cfb48263b3cec1ad", - "address": "neutron1m2yxg7q9zcjdkga6hwu7xg4d35p3q9c8ugrue0qu0pqajdpz3g7q8lavst", - "amount": "5268776", - "symbol": "NTRMOON" + "id": "65ad65960a570e494166929f", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "5996", + "symbol": "APOLLO" }, { - "id": "65bc59f2cfb48263b3cec1ae", - "address": "untrn", - "amount": "1", - "symbol": "NTRN" + "id": "65ad65960a570e49416692a0", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "169", + "symbol": "ATOM" } ], - "name": "NTRMOON - NTRN", + "name": "APOLLO - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12592,44 +13901,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1f89d5nkf7x4d0gye4k2adz55vk3r87w60zrxdqeuwyssjrns9amquw3g03", - "lpAddress": "neutron10d74dkyvzm9f6780s4pnqad59hnev2n0hk7up33qgw09rpl5ayns59u4d0", + "poolAddress": "neutron15a7wjqnfjk7jr8atyheul3f9lv6827nhn4m9fue0n0sruv0ptj4szcsj5j", + "lpAddress": "neutron10c760xczcd7jwfw32vwymxz0w4d9kqa5xt34fhk72rc62f07kvzq52fxz0", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.091e-06, + "poolLiquidityUsd": 0.0004986365737310639, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.091e-09, + "poolStakedLiquidityUsd": 4.98636573731064E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/FUN", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "660b7a9805a65f3ca600a433", - "address": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/FUN", - "amount": "139618253", - "symbol": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/FUN" + "id": "65b7111cc56514afb66be471", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "3061", + "symbol": "NEWT" }, { - "id": "660b7a9805a65f3ca600a434", - "address": "untrn", - "amount": "1", - "symbol": "NTRN" + "id": "65b7111cc56514afb66be472", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "328", + "symbol": "USDC.axl" } ], - "name": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/FUN - NTRN", + "name": "NEWT - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12652,47 +13962,48 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1s9fvdffwf3uvara287rfpzpq09mahk9qg4mjfrhu9jvc2unnps9qj5cfzu", - "lpAddress": "neutron1wvrced962a7080v3j65w9spnhmx2vcxul4fj06ujhqa0thg624wqgafdh6", + "poolAddress": "neutron1d3pud489gfgvxarxy0dqe09jfdktxvuxmgemjqqdwn0lnxr2tsps6w32ce", + "lpAddress": "neutron1fscjqhfluugqykm7pfgavfawp75300yr947qjy3jdnz7txpt948qhtqz3g", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.07644861539124e-06, + "poolLiquidityUsd": 0.001378263201995329, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.07644861539124e-09, + "poolStakedLiquidityUsd": 0.000001378263201995329, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1jpzzw0wzrerac8dm5kcxhwgl4r3jsux2c8qrkp09a5ch6myfgj4qzptxm8", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "token1PriceUsd": 3532.14, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "6576aa05af7005a9ef3f44d4", - "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "amount": "21830566", - "symbol": "WETH.axl" + "id": "65b7bb61c56514afb66c626f", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "9825", + "symbol": "NEWT" }, { - "id": "6576aa05af7005a9ef3f44d5", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "1", - "symbol": "USDC.axl" + "id": "65b7bb61c56514afb66c6270", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "103", + "symbol": "ATOM" } ], - "name": "WETH.axl - USDC.axl", + "name": "NEWT - ATOM", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -12712,12 +14023,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1h5dcc65gm3cgtufe6f4h8wg74wzj7ztt4rkap7304683t93680ustlveh4", - "lpAddress": "neutron1dandklzmve2y80vg9lwm7pk09uwjhndjvjxty6h8633fpejx5v3q4c66zr", + "poolAddress": "neutron1yq9gtuegd0c8c2lhfcwg7s5e362u8ylhx7kd4p093ypsaugjufvsrqmp26", + "lpAddress": "neutron1sw7flhaxg4fqve4xrnpjsv2ndkes358pp7k67j4jhqnmyjnrpxjqhp5y47", "dayVolumeUsd": 0, - "poolLiquidityUsd": 9.9934e-07, + "poolLiquidityUsd": 0.0001683045160077928, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 9.9934e-10, + "poolStakedLiquidityUsd": 1.683045160077928E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -12730,27 +14041,27 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron1s4z8carrrj00vvtg3k7twn9pq7ldyy33ttyzsejtmphzxhj3vhns6y0368", - "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, - "assets": [ - { - "id": "659af216a36538cc17e890a9", - "address": "neutron1s4z8carrrj00vvtg3k7twn9pq7ldyy33ttyzsejtmphzxhj3vhns6y0368", - "amount": "1948116", - "symbol": "Boy" + "assets": [ + { + "id": "65b7bbb4c56514afb66c631c", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "amount": "634", + "symbol": "ASTRO.cw20" }, { - "id": "659af216a36538cc17e890aa", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "1", - "symbol": "USDC.axl" + "id": "65b7bbb4c56514afb66c631d", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "1592", + "symbol": "NEWT" } ], - "name": "Boy - USDC.axl", + "name": "ASTRO.cw20 - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12773,12 +14084,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1a98mc3vayj9ugssnt247ulqfns9xp6nnvw8r6nujkqh5f9yzmqjq4czkyc", - "lpAddress": "neutron150ygp4pgn9lh9fw4t9vv29d3nu0asr4nunvuysmkc9qggqq2056qsetanz", + "poolAddress": "neutron10m6z7haskav9y60vyctmspjjlamgg72p5ek7t9unh8gktmmn4w0sdufcqd", + "lpAddress": "neutron178y7vmhjz2q65ptp9dtxm5muryyn5anpllm45nfwdvvc0r8jkkjqeclzl8", "dayVolumeUsd": 0, - "poolLiquidityUsd": 2.632261468140626e-07, - "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 2.632261468140626e-10, + "poolLiquidityUsd": 0, + "poolLiquidity": 0, + "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -12790,27 +14101,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token1PriceUsd": 0.2622099128699426, - "token2Address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", - "token2PriceUsd": 3.02 + "token1Address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "token1PriceUsd": 0.000148994564869642, + "token2Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "6600e47405a65f3ca6f58ec7", - "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "1", - "symbol": "PROP16" + "id": "65bbc11fcfb48263b3ce5cfd", + "address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "amount": "0", + "symbol": "GODRD" }, { - "id": "6600e47405a65f3ca6f58ec8", - "address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", - "amount": "336501306", - "symbol": "stDYDX" + "id": "65bbc11fcfb48263b3ce5cfe", + "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "amount": "0", + "symbol": "HUAHUA" } ], - "name": "PROP16 - stDYDX", + "name": "GODRD - HUAHUA", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12833,44 +14144,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1hvxcpe3fxc4sfuadmkl8uxkf93g73hahgq8s2272j40v6jp2dtyqyzqsjf", - "lpAddress": "neutron1s8z0v35sc5qm6d395gvh7c5ymcufggsg3p93pwk85tznjvjgceps6sx5xk", + "poolAddress": "neutron1jw89a9he48qr3sy2t502cdu8j8aqacx6k0dtmhl9gg8wsr0gqfzsvh9pwm", + "lpAddress": "neutron1v547mx4elzcdmsmew7zv6jwg0xatykg72sel4lxmqw5rmq9kvkvqkpgg2m", "dayVolumeUsd": 0, - "poolLiquidityUsd": 1.59201e-07, + "poolLiquidityUsd": 0.000497881842497469, "poolLiquidity": 1000, - "poolStakedLiquidityUsd": 1.59201e-10, + "poolStakedLiquidityUsd": 4.97881842497469E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "token2PriceUsd": 0.999896 }, "stakeable": false, "assets": [ { - "id": "659b35a9a36538cc17e8e6bb", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "1", - "symbol": "ASTRO" + "id": "65bc21d2cfb48263b3ce9d22", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "3076", + "symbol": "NEWT" }, { - "id": "659b35a9a36538cc17e8e6bc", - "address": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", - "amount": "15316515", - "symbol": "factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS" + "id": "65bc21d2cfb48263b3ce9d23", + "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "amount": "326", + "symbol": "USDC" } ], - "name": "ASTRO - factory/neutron1xmnrqqtaqvyevehll654aymlr7reycvv7m4uyy/ONOTIS", + "name": "NEWT - USDC", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12893,44 +14205,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron10fztjv4atdgs4dyfkh2yu9rhn9n6vkctvdqa34g7g4nc0qckygqqksvz0r", - "lpAddress": "neutron1prv32w2kempkvjy3expk3tuvpcg3j97f2024470zwe2n4hkvv58qy0f03x", + "poolAddress": "neutron1tp0axdw2efsv2wdvwkxkk4fkrwxy4a8s9dv5x62ja70mcrztau6spw43c0", + "lpAddress": "neutron1qk6wwuyfqcy7gqujr04d7qdqxd3hazsmdjcus0cnuxar0y9pdnsszpjtcv", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 6.83019E-7, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 6.83019E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, - "whitelisted": true + "whitelisted": null }, "feeRate": [ - "0.05" + "0.30" ], - "poolType": "stable", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token1PriceUsd": 0.99934, - "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "token2PriceUsd": 14.34 + "token1Address": "neutron1m2yxg7q9zcjdkga6hwu7xg4d35p3q9c8ugrue0qu0pqajdpz3g7q8lavst", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "655790a100acb1b382e6b63b", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "0", - "symbol": "USDC.axl" + "id": "65bc59f2cfb48263b3cec1ad", + "address": "neutron1m2yxg7q9zcjdkga6hwu7xg4d35p3q9c8ugrue0qu0pqajdpz3g7q8lavst", + "amount": "5268776", + "symbol": "NTRMOON" }, { - "id": "655790a100acb1b382e6b63c", - "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "amount": "0", - "symbol": "stATOM" + "id": "65bc59f2cfb48263b3cec1ae", + "address": "untrn", + "amount": "1", + "symbol": "NTRN" } ], - "name": "USDC.axl - stATOM", + "name": "NTRMOON - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -12953,41 +14265,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron18j8kpe4pd4ngdla9xtmvvw0sfym5ne7y2u62zt2w7fhuyz8csxuqcz3kfj", - "lpAddress": "neutron1n3lc3cumhfql94aejtf9ugsvgld07cu0cvt5nvy9s55qln38j4es3atah8", + "poolAddress": "neutron1rmjc06vz36zhaemx5lk9tndvtjl9aslq7qcvtedk0nmfl2sjsxts9yzwx3", + "lpAddress": "neutron14xp4k8j8uhwn6g6f00zd5qs4unj5s49zt28smslyap929dz2zjgqh9knla", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000003415095, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 3.415095E-9, "poolStakedLiquidity": 1, - "config": null, + "config": { + "migrateToAddress": null, + "whitelisted": null + }, "feeRate": [ "0.30" ], "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "token1PriceUsd": 1.5, - "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "token2PriceUsd": 14.34 + "token1Address": "ibc/EC279EDDCD229637600C1027C1F1074A1EA09B5B30013D00C10DAB8572DB0B4B", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6512ca6ba1435ff662da8746", - "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "amount": "0", - "symbol": "AXL" + "id": "65bfdb93b49e7c63d0a285e9", + "address": "ibc/EC279EDDCD229637600C1027C1F1074A1EA09B5B30013D00C10DAB8572DB0B4B", + "amount": "200889", + "symbol": "BADDOG (Osmosis)" }, { - "id": "64872675d1c3bbd03b9adc04", - "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "amount": "0", - "symbol": "stATOM" + "id": "65bfdb93b49e7c63d0a285ea", + "address": "untrn", + "amount": "5", + "symbol": "NTRN" } ], - "name": "AXL - stATOM", + "name": "BADDOG (Osmosis) - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13010,48 +14325,47 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ym2r2cj69hh02jnggdk0edj0fx34e6qa5ael29zqwsytgdny9nxq8rutm6", - "lpAddress": "neutron19h9z733xhenxm9wpuznrdnp6ahlv9gfjedlxl0gttqndxk7tmdlqqmw96a", + "poolAddress": "neutron13u97u4psdxxjpmkg34y2rlvd45mtdp7j06fw3x72xpkadl98y9hsz5g6fu", + "lpAddress": "neutron10ts9zcsfz234fhf0av7nd9d74zmx0vj4rrjkl29hhqsnpf622sks88u8z8", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.3083418456625582, + "poolLiquidity": 248837939, + "poolStakedLiquidityUsd": 1.239127147978543E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1d73vc84e36d4mmm9dwqql4sty3fx4usjmupxewx36e4qudm5auqs0yryma", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.03", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", - "token1PriceUsd": 13.58, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/EC279EDDCD229637600C1027C1F1074A1EA09B5B30013D00C10DAB8572DB0B4B", + "token1PriceUsd": 0, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "6577110edbc0eb65bacf5f7f", - "address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", - "amount": "0", - "symbol": "stkATOM" + "id": "65c11564b49e7c63d0a38178", + "address": "ibc/EC279EDDCD229637600C1027C1F1074A1EA09B5B30013D00C10DAB8572DB0B4B", + "amount": "11265169822", + "symbol": "BADDOG (Osmosis)" }, { - "id": "6577110edbc0eb65bacf5f80", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "0", - "symbol": "ATOM" + "id": "65c11564b49e7c63d0a38179", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "5517002", + "symbol": "NEWT" } ], - "name": "stkATOM - ATOM", + "name": "BADDOG (Osmosis) - NEWT", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -13071,12 +14385,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1dw224e9jhlp83jfutgp8zmz699x9s0wgu7l5g25wu28apw7gwluqdghwhm", - "lpAddress": "neutron1lmrc7tfpuqjd6el66mq8lws4855ff9gsdl4thjtckynlgu5qg8zsdrluk9", + "poolAddress": "neutron1nhhvdmasyq0ly4mydmyakcqw5h0p3wyvc7cq3ap3am2au0gd9edstmzmnq", + "lpAddress": "neutron1xkvnmm9f28qpp8xapsysjmpsg9u05zn7pct0rn4pgycs570q4tcsj03d6n", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.0001682919752752775, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 1.682919752752775E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -13088,27 +14402,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "token1PriceUsd": 1.378e-05, - "token2Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token2PriceUsd": 0 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "658368f98c4c7910aa8805c1", - "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "amount": "0", - "symbol": "CRBRUS" + "id": "65c1159ab49e7c63d0a381d6", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "722", + "symbol": "APOLLO" }, { - "id": "658368f98c4c7910aa8805c2", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65c1159ab49e7c63d0a381d7", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "1420", + "symbol": "NEWT" } ], - "name": "CRBRUS - HUAHUA", + "name": "APOLLO - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13131,8 +14445,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1zwdvfyp3ppjv480vsm3el5q4vqt8cg2p9nmmcanu0ldv4aagjp8sgkcmeg", - "lpAddress": "neutron1a56m4utjh3a0hrazazlq5ahjquh62m0x85xjp5f4zdgrxtadgansfy8a34", + "poolAddress": "neutron1xyqhmqecl286trerp3qvwc3ydl26hsff4zclyjrgehhkemaduqfq0ht972", + "lpAddress": "neutron138hetyy5ph8vutye5lrvrw2t02h9jzt0adtk9a3pr95p6y6nhfvsa0qy03", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -13148,27 +14462,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", - "token1PriceUsd": 1.378e-05, + "token1Address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", + "token1PriceUsd": 9.53, "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "6583693d8c4c7910aa88065b", - "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "id": "65c2978368fc77acd9f83da8", + "address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", "amount": "0", - "symbol": "CRBRUS" + "symbol": "stTIA" }, { - "id": "6583693d8c4c7910aa88065c", + "id": "65c2978368fc77acd9f83da9", "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", "amount": "0", "symbol": "USDC.axl" } ], - "name": "CRBRUS - USDC.axl", + "name": "stTIA - USDC.axl", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13191,44 +14505,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1vfxxvazwq8p8etm8kesz0h6czuea75tl303j5jrxttwxzckd0hjqe0m7jq", - "lpAddress": "neutron1fdt0aftw6z4r26cvr5hu8j3gvjpe0mwa3ehv66pycpjat8kkqtmqw9yegv", + "poolAddress": "neutron1qn453a4vlmqtfkzexa83x030h3mynyw0mcfcpn35fx0l4qpdegrq4r2vt4", + "lpAddress": "neutron1d6dsd49sxtvhfv5ec4ahunxv2ww3mex47qgyy9ldzy5u2dxkwjusdd7tra", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.0008926912349049701, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 8.926912349049701E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", + "token1PriceUsd": 3.54, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "658369b68c4c7910aa8806ed", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65c62c3b68fc77acd9fb30ac", + "address": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", + "amount": "127747739049644", + "symbol": "DYM" }, { - "id": "658369b68c4c7910aa8806ee", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "0", - "symbol": "ATOM" + "id": "65c62c3b68fc77acd9fb30ad", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "7881", + "symbol": "NEWT" } ], - "name": "HUAHUA - ATOM", + "name": "DYM - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13251,12 +14566,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron10aaulqcs5ecnxh2c4jqqcdqn8479rdqqm8qwmzs5dnyf7hycardspyk5nw", - "lpAddress": "neutron1nsm8ljxngkdmwmx0r0v6ma72f9ruv57q95p2xqxjf7g2s03e3cyq7z4ywr", + "poolAddress": "neutron1tytqtunc9qhtethu439tcvwarfgd8rwaa24m55nj3092ur72pjjsawkgu6", + "lpAddress": "neutron1w6qnyq72h90yl93gl8td653sm005d4dtmnd30urtmeq6xndvcd3qquaahk", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 783.9226424843206, + "poolLiquidity": 17760090017, + "poolStakedLiquidityUsd": 4.413956469954461E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -13268,27 +14583,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token2PriceUsd": 0.159201 + "token1Address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "token1PriceUsd": 2.891976172473291, + "token2Address": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65836b758c4c7910aa8809d7", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65cb27cf68fc77acd900490d", + "address": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "amount": "271068154", + "symbol": "CIRCUS" }, { - "id": "65836b758c4c7910aa8809d8", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "0", - "symbol": "ASTRO" + "id": "65cb27cf68fc77acd900490e", + "address": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", + "amount": "1234710691189", + "symbol": "AUTISM" } ], - "name": "HUAHUA - ASTRO", + "name": "CIRCUS - AUTISM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13311,12 +14626,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron15y2nx8r42kgw9t6602m57sz3pemnadv0zyppqspymxu32nuc796sekehd6", - "lpAddress": "neutron1hdlk7zpcv2lh82fukkt7ulvle294qh28agyscht3hf0l0ljsdt4qguyhj0", + "poolAddress": "neutron1ug2kdpsvdya0ze0rffzyqru9tjtkrm8yr9zse6f85usyf48caq5sh2z3ay", + "lpAddress": "neutron1kvamzg7rtpwl27jxnjln067ngdg6vsf6g2yc4qyn52an9c56ayxqtdyjwg", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 1.031644874961, + "poolLiquidity": 2853328199, + "poolStakedLiquidityUsd": 3.615584338673174E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -13328,27 +14643,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1Address": "neutron13vg3sjfa4l7qv53jhjstd5vml2xxag8xp3m3pfjvtg7sx0k9v2vqg7a2y3", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65836bbc8c4c7910aa880a08", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65cb634d68fc77acd900a421", + "address": "neutron13vg3sjfa4l7qv53jhjstd5vml2xxag8xp3m3pfjvtg7sx0k9v2vqg7a2y3", + "amount": "5411337341112", + "symbol": "PEPETRON" }, { - "id": "65836bbc8c4c7910aa880a09", + "id": "65cb634d68fc77acd900a422", "address": "untrn", - "amount": "0", + "amount": "1510419", "symbol": "NTRN" } ], - "name": "HUAHUA - NTRN", + "name": "PEPETRON - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13371,12 +14686,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron17qr78j5z74x0337nf56ed92aqx86n36g778z6mns29xzqp360d5s5ml08v", - "lpAddress": "neutron1xqjcps3zqesmwwckua2t84dep7sk0paxpmqnzavgcftv0zmu049qj0c4jg", + "poolAddress": "neutron1nak996aj387z77qdpra3hs3jsuzjpv5nxxjypsjp0z28k66lvxas92ajf6", + "lpAddress": "neutron1s6cjyjdp5n6an07fmyz3y8plh5qyfgpdjxqq83a5e85xsfruf2msm8tf7s", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.00240422688, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.00000240422688, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -13388,27 +14703,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1Address": "neutron1feg65h4ljx3qy4m7zvflp8ujgqvp0fz53cz6d485t54gscrmhwdqxdv3yg", "token1PriceUsd": 0, - "token2Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "token2PriceUsd": 0 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65836bd68c4c7910aa880a15", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65ce7fa368fc77acd90746df", + "address": "neutron1feg65h4ljx3qy4m7zvflp8ujgqvp0fz53cz6d485t54gscrmhwdqxdv3yg", + "amount": "285", + "symbol": "vlt" }, { - "id": "65836bd68c4c7910aa880a16", - "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "amount": "0", - "symbol": "ASTROPEPE" + "id": "65ce7fa368fc77acd90746e0", + "address": "untrn", + "amount": "3520", + "symbol": "NTRN" } ], - "name": "HUAHUA - ASTROPEPE", + "name": "vlt - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13431,15 +14746,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1suav7dgnuvtqzg0tehlqqjyrdwh4nfqenrmtcu20xrt08d9426hq20vyen", - "lpAddress": "neutron1hpn56vtxpelhexlqvzengqaxg5fzf02lml2pfy87zasawhsqxwjqmvu2am", + "poolAddress": "neutron16ftndrtjpdk4mxz26q6w2va4nzvhw7263936m7743tyl6mka2nys6kw65w", + "lpAddress": "neutron1g8g8e4ls72q5c4ha35ruxsc4fukv2zalvc2ju5ka47t9jmtjqcwsr0v5s5", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1mwqu0y5lgdyxgev603py4u6xahcsaq4ekvf20gr9rwy2c5l4v9qqqj6rwe", "whitelisted": null }, "feeRate": [ @@ -13448,30 +14763,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "token2PriceUsd": 1.5 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", + "token2PriceUsd": 19.30181383325182 }, "stakeable": false, "assets": [ { - "id": "65836bfc8c4c7910aa880a41", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65d0d19468fc77acd90b732f", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "amount": "0", - "symbol": "HUAHUA" + "symbol": "APOLLO" }, { - "id": "65836bfc8c4c7910aa880a42", - "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "id": "65d0d19468fc77acd90b7330", + "address": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", "amount": "0", - "symbol": "AXL" + "symbol": "(stTIA/TIA)VT" } ], - "name": "HUAHUA - AXL", + "name": "APOLLO - (stTIA/TIA)VT", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -13491,15 +14806,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron103rsyvenqk72lp7epzswyvluux9kdryls0ckycvtgaun6gq2me0slvhdah", - "lpAddress": "neutron1qwhth90h898fpj47d039e7gr9z0u859jz7krr9agqu79e9t4kggqejhgg2", + "poolAddress": "neutron18pq5fy059260ufgrjh4g3l0k28etuefhva8dzg0wlnfzyg9e5dsst9e8f8", + "lpAddress": "neutron1rwfgnau4z6erymhhw9nzs0c79tsk926r85fmnfahk2a5qzsyr6zq0mdj8n", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron123qz5mn66ats7xpxg22zy6rm83hqne8ckzj20c9d0jh8gclyngcsr582l0", "whitelisted": null }, "feeRate": [ @@ -13508,30 +14823,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "token2PriceUsd": 3.294877335893006e-05 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "658374488c4c7910aa88100c", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65d0d1b468fc77acd90b73f9", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "amount": "0", - "symbol": "HUAHUA" + "symbol": "APOLLO" }, { - "id": "658374488c4c7910aa88100d", - "address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "id": "65d0d1b468fc77acd90b73fa", + "address": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", "amount": "0", - "symbol": "CORGI" + "symbol": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH" } ], - "name": "HUAHUA - CORGI", + "name": "APOLLO - factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -13551,15 +14866,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1cjsypm7echsufdrzdyxwrjs6k60azj9a6w4vz870k3gt3t8p3j5suytrhs", - "lpAddress": "neutron1qvtvws4gvwcz5pedxdqx9w6mnghrs3emlmtwsq84xu8kdu24hc3qm83ty9", + "poolAddress": "neutron1vc9surjzfw63hrmhyyjy4az2l7xfhd4ej7rcx84ev5xm228m8a9se79c32", + "lpAddress": "neutron179xhx703ftv98933v2emcsqlytvl95rmhwcvc0n2r9d7wygr70rq922fjq", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1z47up9cd94yqsfn05h5ajnc49dv8kmvhh3psww42k42cuuw46xrsyn6gy6", "whitelisted": null }, "feeRate": [ @@ -13568,30 +14883,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "token2PriceUsd": 1.29 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "6583748a8c4c7910aa881028", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65d0d1d868fc77acd90b74dd", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "amount": "0", - "symbol": "HUAHUA" + "symbol": "APOLLO" }, { - "id": "6583748a8c4c7910aa881029", - "address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "id": "65d0d1d868fc77acd90b74de", + "address": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", "amount": "0", - "symbol": "OSMO" + "symbol": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH" } ], - "name": "HUAHUA - OSMO", + "name": "APOLLO - factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -13611,15 +14926,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1vyr9ahl4ld84p4ek30f0q20fqped5jnwn5yv89hajps7e9ek0uzq2zyadd", - "lpAddress": "neutron1w2p9kyud9vjfgh0fu7eylg935llkkuyecrn04k2v0y2m4q4q00qs7m07rx", + "poolAddress": "neutron1853ax7cc20a6v9ckn3u7hnvjytp63q5wmy03wg2h9d6c4m69usns45we9e", + "lpAddress": "neutron1luad9numvwypm86lp83et6lpa32u7g0zwjj2a8tz4u8fatzmnktqftjdr7", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron1aukafce24wkuyfdfsshtnpqtqpxpaa0fzvgk4umwcmp37pqj2e8su2kp38", "whitelisted": null }, "feeRate": [ @@ -13628,30 +14943,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", - "token2PriceUsd": 11.62 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "token2PriceUsd": 2.15 }, "stakeable": false, "assets": [ { - "id": "658374aa8c4c7910aa881037", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65d0d1f368fc77acd90b75cd", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "amount": "0", - "symbol": "HUAHUA" + "symbol": "APOLLO" }, { - "id": "658374aa8c4c7910aa881038", - "address": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "id": "65d0d1f368fc77acd90b75ce", + "address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", "amount": "0", - "symbol": "TIA" + "symbol": "STRD" } ], - "name": "HUAHUA - TIA", + "name": "APOLLO - STRD", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -13671,44 +14986,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1udj468a3vdrjcz5u7wefr4xmp0rrll0c3g5waulh4ec3mhrksfqq9j7ps7", - "lpAddress": "neutron187ph9r425t49dv2lcu3v76y7ujglavqsvr9wpk8y847z9wea4hwqn3kyu7", + "poolAddress": "neutron12s83yxf4475zu30tr66jdux3qezfmlpwq3gg98vrvvmerqdcca4qsalepd", + "lpAddress": "neutron1tsg0q6excrt0gm8a6sp8n6h7tze5e3d30c2tsmvhdyzadvyrzscsuvfn87", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 2.718403266140661, + "poolLiquidity": 9273543122, + "poolStakedLiquidityUsd": 2.931353453812436E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", "token1PriceUsd": 0, - "token2Address": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", - "token2PriceUsd": 4241.51 + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "6583750f8c4c7910aa881091", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65d3388768fc77acd90e3b2a", + "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "amount": "1811569685591", + "symbol": "ASTROPEPE" }, { - "id": "6583750f8c4c7910aa881092", - "address": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", - "amount": "0", - "symbol": "wstETH.axl" + "id": "65d3388768fc77acd90e3b2b", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "48638991", + "symbol": "NEWT" } ], - "name": "HUAHUA - wstETH.axl", + "name": "ASTROPEPE - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13731,8 +15047,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ul5lyle69gn9glwvr6ct340ce9u23wx73z00lyp59nnaeh2serhqv8wlnz", - "lpAddress": "neutron179npka75zspsfag4m5gemgy6lea5ln46fp7cxdfy6e9nq52st92s2eklpk", + "poolAddress": "neutron1uaya743nx3aferajphxzhsnwkcal3kc4tucpl0dauyh4rsdt5r6qglgvrs", + "lpAddress": "neutron1fjp00gq07ad7cl397m9gv2gnt6ck5smc2fpx5a62hh9ketfmlvvq0gushc", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -13748,27 +15064,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", "token1PriceUsd": 0, - "token2Address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "token2PriceUsd": 3532.14 + "token2Address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", + "token2PriceUsd": 61420 }, "stakeable": false, "assets": [ { - "id": "6583755d8c4c7910aa8810e2", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65d50a5d68fc77acd9109150", + "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", "amount": "0", - "symbol": "HUAHUA" + "symbol": "ASTROPEPE" }, { - "id": "6583755d8c4c7910aa8810e3", - "address": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "id": "65d50a5d68fc77acd9109151", + "address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", "amount": "0", - "symbol": "WETH.axl" + "symbol": "WBTC (Osmosis)" } ], - "name": "HUAHUA - WETH.axl", + "name": "ASTROPEPE - WBTC (Osmosis)", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13791,44 +15107,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1n3v7vs8r5kjdkhj8xemlgu6qvjy6ggp53p32r6wd4ptzxrrv309sljmht2", - "lpAddress": "neutron1jqjyuk3h0tvrheatfu5yhwje830xnx00p74fsznmqdkvh9njuz0qtm3k5e", + "poolAddress": "neutron1qmg55nvtjyt2h5n7uueeqd62sytkmtws6w8cekfaqak5shdzq4hqaxjpvt", + "lpAddress": "neutron132kxjr2qsx2456dp32cxl5yn4mzz9vtluhzl5f8t88u27dmgf46qq0gq6q", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.410095238444, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000410095238444, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", - "token2PriceUsd": 8.75 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", + "token2PriceUsd": 61420 }, "stakeable": false, "assets": [ { - "id": "658375878c4c7910aa8810f4", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65d5ec1268fc77acd9115d76", + "address": "untrn", + "amount": "291076", + "symbol": "NTRN" }, { - "id": "658375878c4c7910aa8810f5", - "address": "ibc/27F48DA7E6C8C1203C9EB2BB225C876F3A600C6C3C1DD94CE283D5D027BD91E4", - "amount": "0", - "symbol": "DOT" + "id": "65d5ec1268fc77acd9115d77", + "address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", + "amount": "344", + "symbol": "WBTC (Osmosis)" } ], - "name": "HUAHUA - DOT", + "name": "NTRN - WBTC (Osmosis)", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13851,44 +15168,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1un2f7h2r00fc9qu67uphzgurnl0gr3xl8pce2ycxxjk4w7jsqg7syq39mp", - "lpAddress": "neutron1srt3wpanawfgdl3zym0yvmpy439eqdwp49v2vggjvnf6gzu6ltuslw8s5p", + "poolAddress": "neutron1t5wjz40hx69dte8c55ksep2hfn0upyshgjzd4fkcna9ud0u2xjuqrz0k22", + "lpAddress": "neutron1yzslh8xv6cjqdy0y7gmckenmeuuk7ur02u86xaf3q9cqk0t5sl4snfr0tn", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.1259257716601561, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.0001259257716601561, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "token2PriceUsd": 3.12974913311477 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", + "token2PriceUsd": 61420 }, "stakeable": false, "assets": [ { - "id": "658375a58c4c7910aa881102", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65d5f0a768fc77acd9116182", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "714586", + "symbol": "NEWT" }, { - "id": "658375a58c4c7910aa881103", - "address": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "amount": "0", - "symbol": "DYDX" + "id": "65d5f0a768fc77acd9116183", + "address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", + "amount": "140", + "symbol": "WBTC (Osmosis)" } ], - "name": "HUAHUA - DYDX", + "name": "NEWT - WBTC (Osmosis)", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13911,12 +15229,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron14r8m0urxqwpzmevtq78lmfefl8n5jj8va8e8cl03rjj7aatgy7hswctrdp", - "lpAddress": "neutron1s8f6v2x7dxsl9399yce3rn4z4elt0938a9w4yptmz829tftmp25s2pm8nl", + "poolAddress": "neutron1q9d9athn9rauyauypcexpmacgp3ctcvpxagr9ue22k3jng64ykds762vuk", + "lpAddress": "neutron1dkqfmhwcq824ummjathmcg3jzrnv8swwtpg2klduavnnk0rg3ytq8ysu5w", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.07476035, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.00007476035, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -13928,27 +15246,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1Address": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", "token1PriceUsd": 0, - "token2Address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "token2PriceUsd": 0.2993609633423102 + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "658375c28c4c7910aa881114", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65d6bb5568fc77acd9123303", + "address": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", + "amount": "10983171304", + "symbol": "CARTEL" }, { - "id": "658375c28c4c7910aa881115", - "address": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "amount": "0", - "symbol": "ECLIP" + "id": "65d6bb5568fc77acd9123304", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "9287", + "symbol": "ATOM" } ], - "name": "HUAHUA - ECLIP", + "name": "CARTEL - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -13971,13 +15289,13 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1j9ed09dy5jht8mlk3upjgzj9ml4a2fcc67au03aw29ku8zgf2xuswswx4v", - "lpAddress": "neutron1t3p4vhfay48w6pgq33ll85jdsjhv4gtvxz8f9qm72v7jjc2g264qw7d374", + "poolAddress": "neutron1u6qv5hav82l4saj0nu6dhnz5aewwmw73lncylg7qa0cl3d7vrhusy4z4l0", + "lpAddress": "neutron1cvwyv49dm6e76ptqqcsrgkvjz3w5xue3faldy6yqjkythk3r7rqqj3pgle", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, - "poolStakedLiquidity": 1, + "poolLiquidityUsd": 13.1377771, + "poolLiquidity": 1037503397, + "poolStakedLiquidityUsd": 13.13776443712377, + "poolStakedLiquidity": 1037502397, "config": { "migrateToAddress": null, "whitelisted": null @@ -13988,27 +15306,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", - "token2PriceUsd": 42.23 + "token1Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token1PriceUsd": 8.05, + "token2Address": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", + "token2PriceUsd": 0 }, - "stakeable": false, + "stakeable": true, "assets": [ { - "id": "658376098c4c7910aa881135", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65d7515568fc77acd9132a2c", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "1632022", + "symbol": "ATOM" }, { - "id": "658376098c4c7910aa881136", - "address": "ibc/5A027DC380009335DC96374937E7AA5D7D45FA710E9A0AE76854541441026E11", - "amount": "0", - "symbol": "KSM" + "id": "65d7515568fc77acd9132a2d", + "address": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", + "amount": "671367882265", + "symbol": "BADKID" } ], - "name": "HUAHUA - KSM", + "name": "ATOM - BADKID", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14027,16 +15345,29 @@ "apy": 0, "day": 0 }, - "rewards": [] + "rewards": [ + { + "symbol": "BADKID", + "denom": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", + "amountPerDay": "188885.46554136848760192", + "amountPerSecond": "2.1861743696917649028", + "priceUsd": 0, + "precision": 6, + "amountPerDayUsd": "0", + "yield": 0, + "isExternal": true, + "gaugeInfo": [] + } + ] }, { "chainId": "neutron-1", - "poolAddress": "neutron13j95gdlrqprvhfwypm5dchum20kkjc42mm4sh0cr75cljhwzqmmqu80kpp", - "lpAddress": "neutron1pyjej8wm6cuueuv2y2f6m4ljz2ghmkvdv55gwns9y8umcaavma0qm53z3t", + "poolAddress": "neutron1mwqu0y5lgdyxgev603py4u6xahcsaq4ekvf20gr9rwy2c5l4v9qqqj6rwe", + "lpAddress": "neutron1y5gapx6wrmmy2llgtlpxhrd0ejf8x3pl925r0u66f62ae3k9qu0q26f8gr", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 157933.6970614472, + "poolLiquidity": 51185818324587, + "poolStakedLiquidityUsd": 3.085496942032493E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -14045,32 +15376,32 @@ "feeRate": [ "0.30" ], - "poolType": "xyk", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", - "token2PriceUsd": 0.05246 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", + "token2PriceUsd": 19.30181383325182 }, "stakeable": false, "assets": [ { - "id": "658376598c4c7910aa88117c", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65d8f34568fc77acd914f7c1", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "amount": "641118566216", + "symbol": "APOLLO" }, { - "id": "658376598c4c7910aa88117d", - "address": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", - "amount": "0", - "symbol": "NLS" + "id": "65d8f34568fc77acd914f7c2", + "address": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", + "amount": "4091162064504271", + "symbol": "(stTIA/TIA)VT" } ], - "name": "HUAHUA - NLS", + "name": "APOLLO - (stTIA/TIA)VT", "isNew": false, - "isIlliquid": true, + "isIlliquid": false, "isDeregistered": false, "astroRewards": { "apr": 0, @@ -14091,8 +15422,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1rnwwcxs4nju5l6763zeaqesrsgftgpv6k7x3ud09699smx6ht4asg6jzqu", - "lpAddress": "neutron1x9yz4ju5z2a5vt632vdn3jwnak7h8quc6a70zmvy5458mkltnr5qcfyu5x", + "poolAddress": "neutron123qz5mn66ats7xpxg22zy6rm83hqne8ckzj20c9d0jh8gclyngcsr582l0", + "lpAddress": "neutron1w3pap6nqlgthgh04nn4lxd974shq4turyc5eq36g0qjqkeakqd0sq3a9lq", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14105,30 +15436,30 @@ "feeRate": [ "0.30" ], - "poolType": "xyk", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "token2PriceUsd": 14.34 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "658376728c4c7910aa88118b", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65d8f34568fc77acd914f7cd", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "amount": "0", - "symbol": "HUAHUA" + "symbol": "APOLLO" }, { - "id": "658376728c4c7910aa88118c", - "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "id": "65d8f34568fc77acd914f7ce", + "address": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", "amount": "0", - "symbol": "stATOM" + "symbol": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH" } ], - "name": "HUAHUA - stATOM", + "name": "APOLLO - factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14151,8 +15482,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1mjz0d5zzccaq506l4lfcjwjtgnn04atesemeynaeecrv2jj0dqcsghvrrx", - "lpAddress": "neutron14u4d02rqgg5q2n4dmded4rp3egf3cqv057c52raejucf4e73xlzqn34fu9", + "poolAddress": "neutron1z47up9cd94yqsfn05h5ajnc49dv8kmvhh3psww42k42cuuw46xrsyn6gy6", + "lpAddress": "neutron199grrwe5a2pf6v7897r9fk230txqkp2xp9pd2sh0w3dhmm75p8zss9ax8d", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14165,30 +15496,30 @@ "feeRate": [ "0.30" ], - "poolType": "xyk", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", - "token2PriceUsd": 13.58 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "658376918c4c7910aa8811a7", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65d8f34568fc77acd914f7d9", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "amount": "0", - "symbol": "HUAHUA" + "symbol": "APOLLO" }, { - "id": "658376918c4c7910aa8811a8", - "address": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "id": "65d8f34568fc77acd914f7da", + "address": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", "amount": "0", - "symbol": "stkATOM" + "symbol": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH" } ], - "name": "HUAHUA - stkATOM", + "name": "APOLLO - factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14211,8 +15542,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1w9v23ss9797z295a73753kxvzrv6l08duegjww5lpmm4e6h7lwls5xzs0s", - "lpAddress": "neutron12tsx3ytgw73lks0uxt7vkaua4ecekwasqmtx43cw9fwffvc3jq3s4xxnef", + "poolAddress": "neutron1aukafce24wkuyfdfsshtnpqtqpxpaa0fzvgk4umwcmp37pqj2e8su2kp38", + "lpAddress": "neutron1rqfglkza5du6ph3g4vdvnynrrm58l7m8lxguj5me8vxgu70er9vsqst0gw", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14225,30 +15556,30 @@ "feeRate": [ "0.30" ], - "poolType": "xyk", + "poolType": "astroport-pair-xyk-sale-tax", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token2PriceUsd": 1 + "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "token1PriceUsd": 0.1231704285165231, + "token2Address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "token2PriceUsd": 2.15 }, "stakeable": false, "assets": [ { - "id": "658376d68c4c7910aa881217", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65d8f34668fc77acd914f7e5", + "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", "amount": "0", - "symbol": "HUAHUA" + "symbol": "APOLLO" }, { - "id": "658376d68c4c7910aa881218", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "id": "65d8f34668fc77acd914f7e6", + "address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", "amount": "0", - "symbol": "USDC" + "symbol": "STRD" } ], - "name": "HUAHUA - USDC", + "name": "APOLLO - STRD", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14271,12 +15602,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1fnkrhhn7v77dg3nxrhf5q4uv6ykjcnjhn55fenfq06ywewjygnfsn8dmqh", - "lpAddress": "neutron1k6mczd0t7phguus5t533fmc4j45430n3hpr99ykx0hjt32e8yxmsqm04ap", + "poolAddress": "neutron1860zssqw5lcfaz8u4xjxwr8204s0ef90slaf507upurmj8jcne4qge0nuw", + "lpAddress": "neutron18fn95urks6gcu3z7snyx6y44hc9dxgsv4prsepdau437wmhjhvws5w9744", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000005847929797430077, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 5.847929797430077E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -14288,27 +15619,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "token1PriceUsd": 0, - "token2Address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "token2PriceUsd": 1.002 + "token1Address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "token1PriceUsd": 0.000148994564869642, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "6583770c8c4c7910aa881242", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "amount": "0", - "symbol": "HUAHUA" + "id": "65de0f1c68fc77acd91b2295", + "address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "amount": "17868", + "symbol": "GODRD" }, { - "id": "6583770c8c4c7910aa881243", - "address": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", - "amount": "0", - "symbol": "USDT.axl" + "id": "65de0f1c68fc77acd91b2296", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "57", + "symbol": "NEWT" } ], - "name": "HUAHUA - USDT.axl", + "name": "GODRD - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14331,8 +15662,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1zwjpn9rvwwr89dzasrwd4fnntddxtmws4ywmu7c3mcg9d0fske9qefzsmg", - "lpAddress": "neutron17w5xsqg59fx4l7aqtjvacvjx0x0hru7tg2ekelpqruzzdas8j60q0qfajl", + "poolAddress": "neutron1nk0rltxj93du89nsxrqgfwlm5xxhh5qze8gu5wuqj5d68hl5xzjqy34umd", + "lpAddress": "neutron1t40yylvxt9rvpprfvaqz5xry2e0n40svt8fdw6cdwg97gnh3zutqtjs42j", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14343,32 +15674,33 @@ "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1Address": "neutron12q75uz8g3s8klcs7nxul72xj8pjy2kcx3ku3cp8nff4ewvusjcwqvpyn9d", "token1PriceUsd": 0, - "token2Address": "ibc/7ACF670DA8DA24B5999A0D17247C7F4349AB1038FC4FA76A3AF50AFDE407B258", - "token2PriceUsd": 11.43 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "658377888c4c7910aa881291", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "65de11bb68fc77acd91b2490", + "address": "neutron12q75uz8g3s8klcs7nxul72xj8pjy2kcx3ku3cp8nff4ewvusjcwqvpyn9d", "amount": "0", - "symbol": "HUAHUA" + "symbol": "FIRENEUTRON" }, { - "id": "658377888c4c7910aa881292", - "address": "ibc/7ACF670DA8DA24B5999A0D17247C7F4349AB1038FC4FA76A3AF50AFDE407B258", + "id": "65de11bb68fc77acd91b2491", + "address": "untrn", "amount": "0", - "symbol": "vDOT" + "symbol": "NTRN" } ], - "name": "HUAHUA - vDOT", + "name": "FIRENEUTRON - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14391,8 +15723,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1u558zt8rhw6frwaarsxk3zguhwuzsmqfecncjh3y5re7ngx4mskqk4asfq", - "lpAddress": "neutron1mn9rhkkf9wuvdrw6dkpt2c7vjrgmqvvz7e9tfc4fkgshuvu28tqqf6c9wx", + "poolAddress": "neutron1g7culrpzwdn5vqwzymud6mjdks3pk8lad8f7rmqqz7ekfamjuppskynmv2", + "lpAddress": "neutron17dwlx8z3vngz4gagd4yd923tgrlww2j2dm57jwhu7ahy6mqscrzs6uqm52", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14408,27 +15740,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1krz2jjuqcry28rz6u43hkenr43euqj8npj79eq/ELONTRON", + "token1Address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/JIMMY", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "658d0064acdb67e39351a517", - "address": "factory/neutron1krz2jjuqcry28rz6u43hkenr43euqj8npj79eq/ELONTRON", + "id": "65eace4368fc77acd92cd426", + "address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/JIMMY", "amount": "0", - "symbol": "factory/neutron1krz2jjuqcry28rz6u43hkenr43euqj8npj79eq/ELONTRON" + "symbol": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/JIMMY" }, { - "id": "658d0064acdb67e39351a518", + "id": "65eace4368fc77acd92cd427", "address": "untrn", "amount": "0", "symbol": "NTRN" } ], - "name": "factory/neutron1krz2jjuqcry28rz6u43hkenr43euqj8npj79eq/ELONTRON - NTRN", + "name": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/JIMMY - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14451,8 +15783,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1kklg7yvg9e9mvy97z9mp4fn4zrlru336hx3jvkxv5kqu0c9nce0qlqjsx7", - "lpAddress": "neutron10k2qkp39uk2y83gfxzkz4f3hrgppe9va87djxdhxrhdff5enldjqvnytft", + "poolAddress": "neutron1w53hnnhjmuf9nhfu0qp4vumtf5hxaxz8qsaagwsckyvaa505w43s5kl06z", + "lpAddress": "neutron1mf7r9hnjzw5992f6yrdmz9k870rlr2w4twvpjyqplj66gzhtm8wqc7y6at", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14468,27 +15800,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron16q4r0zp85zz39nexv2edlg9rlr69vvuqw463yd/GODDARD", + "token1Address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/QUARKLE", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "658d31d6dc581afdfcecd2ba", - "address": "factory/neutron16q4r0zp85zz39nexv2edlg9rlr69vvuqw463yd/GODDARD", + "id": "65ead11e68fc77acd92cd6f0", + "address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/QUARKLE", "amount": "0", - "symbol": "factory/neutron16q4r0zp85zz39nexv2edlg9rlr69vvuqw463yd/GODDARD" + "symbol": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/QUARKLE" }, { - "id": "658d31d6dc581afdfcecd2bb", + "id": "65ead11e68fc77acd92cd6f1", "address": "untrn", "amount": "0", "symbol": "NTRN" } ], - "name": "factory/neutron16q4r0zp85zz39nexv2edlg9rlr69vvuqw463yd/GODDARD - NTRN", + "name": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/QUARKLE - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14511,12 +15843,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1s6ufn508mxaglt5h78x9eg4ferm4rwmk3ajxyraztte3zyjnt8cqzxw446", - "lpAddress": "neutron10jcryrydryzfw9df0taqwrv43wfpvmpnk6egu7wpx5uge5l7s3nqyykg5l", + "poolAddress": "neutron1n3tyzn7fsfhhnwpdue7x44s0vzp77avuaaqk9apfpahnrjlerd0sepm8uv", + "lpAddress": "neutron1epnmqy46lfw4vpuv67wkhr0cgjsyusry84zgfz86prdajxu8k4vsv2vpq8", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 4.098113316981, + "poolLiquidity": 18973662797, + "poolStakedLiquidityUsd": 2.159895725023872E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -14528,27 +15860,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token1PriceUsd": 1, - "token2Address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/LOOT", + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron1qx78ufgp2v9wgwvqwea98qc4d46c60493lf7ax/gettingsats", "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "658f4f00dc581afdfcef505c", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "0", - "symbol": "USDC" + "id": "65eae23068fc77acd92ce3d1", + "address": "untrn", + "amount": "5999999", + "symbol": "NTRN" }, { - "id": "658f4f00dc581afdfcef505d", - "address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/LOOT", - "amount": "0", - "symbol": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/LOOT" + "id": "65eae23068fc77acd92ce3d2", + "address": "factory/neutron1qx78ufgp2v9wgwvqwea98qc4d46c60493lf7ax/gettingsats", + "amount": "59999999999999", + "symbol": "factory/neutron1qx78ufgp2v9wgwvqwea98qc4d46c60493lf7ax/gettingsats" } ], - "name": "USDC - factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/LOOT", + "name": "NTRN - factory/neutron1qx78ufgp2v9wgwvqwea98qc4d46c60493lf7ax/gettingsats", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14571,12 +15903,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron172rhr6gwydw24e5ysm5x793ecumffynnu6jqyys38z2h4nzerplsj7gasw", - "lpAddress": "neutron1u557py2fhnj4am58gntl32q6vxfw4d790zus6yfds4gp52fa2yqsen3nfl", + "poolAddress": "neutron1ghk7w43dgtmqjctyqwtd79q0apdj4wwuva6wjwex5vkrdlf0lqhqyjt4cu", + "lpAddress": "neutron1lvrhtkwhjyy77grw70wq0jcce60afpfch9r33eswdkuynljneazs4h86x2", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 4.781132316981, + "poolLiquidity": 13999998000, + "poolStakedLiquidityUsd": 3.415094999873084E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -14588,27 +15920,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token1PriceUsd": 1, - "token2Address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/TRASH", + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron1ny4u5eqrfhr547u3ephq7gr93zhcv90gmhuzzd/paampit", "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "658f5246dc581afdfcef5233", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "0", - "symbol": "USDC" + "id": "65eae42668fc77acd92ce6b3", + "address": "untrn", + "amount": "6999999", + "symbol": "NTRN" }, { - "id": "658f5246dc581afdfcef5234", - "address": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/TRASH", - "amount": "0", - "symbol": "factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/TRASH" + "id": "65eae42668fc77acd92ce6b4", + "address": "factory/neutron1ny4u5eqrfhr547u3ephq7gr93zhcv90gmhuzzd/paampit", + "amount": "27999999999999", + "symbol": "factory/neutron1ny4u5eqrfhr547u3ephq7gr93zhcv90gmhuzzd/paampit" } ], - "name": "USDC - factory/neutron1yd27m4hzl9vykkma9vlklh7zl4nem3msxfswhu/TRASH", + "name": "NTRN - factory/neutron1ny4u5eqrfhr547u3ephq7gr93zhcv90gmhuzzd/paampit", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14631,12 +15963,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1t7esx64dk9zdh2v5yxxs23favd43rdlvcda7huc60np7jcutxdlqm4vmdx", - "lpAddress": "neutron1v07t3he0dv4zxqc2texvzxs4ng8703jnfh8dxffzs8tjwqm8uwlqy09al9", + "poolAddress": "neutron1md57sq20tjl249nas8edw32vyw2hztqm0ulc42uecsa6lc63lsmsky2c84", + "lpAddress": "neutron19j52590ny5ggaj5w4kepqczrs0xmlpkhe4mnhuwyr0fd86lfvytq89vv8r", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000002732076, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 2.732076E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -14648,27 +15980,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory//<99500000000000>", + "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/SunnyProp16JunoWhaleInu", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "658f6cbadc581afdfcef633b", - "address": "factory//<99500000000000>", - "amount": "0", - "symbol": "factory//<99500000000000>" + "id": "65ec8d7468fc77acd92eb107", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/SunnyProp16JunoWhaleInu", + "amount": "312760", + "symbol": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/SunnyProp16JunoWhaleInu" }, { - "id": "658f6cbadc581afdfcef633c", + "id": "65ec8d7468fc77acd92eb108", "address": "untrn", - "amount": "0", + "amount": "4", "symbol": "NTRN" } ], - "name": "factory//<99500000000000> - NTRN", + "name": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/SunnyProp16JunoWhaleInu - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14691,8 +16023,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1wyw9yxvustcgzuh7682mt5ed7xjetlck4zgelf8r2gt8rnv56upqczpr9e", - "lpAddress": "neutron17rwsalser9fzggzum5l50muqer0q0j4hua3z4rmfpwju55supjjsxsnuqd", + "poolAddress": "neutron1c6pz2nvqlrenc73ckqmq23c7e45stgdz274599qnhpqx2922wwmq7fev9m", + "lpAddress": "neutron1fanr3jzzxuap9n9cklgvmj9hucglufvudfmuut02xkj8wmvrp3gqga8w0y", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14708,27 +16040,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1w754akfaeppu57j2rka76e49grctfpnym7mltz/ARTHAS", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "token1PriceUsd": 10.62, + "token2Address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", + "token2PriceUsd": 9.53 }, "stakeable": false, "assets": [ { - "id": "658f854ffa5a2b66abc979e0", - "address": "factory/neutron1w754akfaeppu57j2rka76e49grctfpnym7mltz/ARTHAS", + "id": "65eed4b268fc77acd93134de", + "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", "amount": "0", - "symbol": "factory/neutron1w754akfaeppu57j2rka76e49grctfpnym7mltz/ARTHAS" + "symbol": "stATOM" }, { - "id": "658f854ffa5a2b66abc979e1", - "address": "untrn", + "id": "65eed4b268fc77acd93134df", + "address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", "amount": "0", - "symbol": "NTRN" + "symbol": "stTIA" } ], - "name": "factory/neutron1w754akfaeppu57j2rka76e49grctfpnym7mltz/ARTHAS - NTRN", + "name": "stATOM - stTIA", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14751,8 +16083,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1a96knkkglau2cj2w6v50sglqpmzexte74dxtq26a3n3psh9zj8sqkrtjes", - "lpAddress": "neutron1jgklfd3x5328a6qjgmjszx9jjt78q5xv7r7kwj84w23f2sr9psuquh2x7p", + "poolAddress": "neutron1hpsu8794fm70phe7uuzjwfd98xgl9za53qm99wd8h3nyd3za90ts6haj35", + "lpAddress": "neutron16few609mlam2dxa298f990443gdeuz46ahvpw3s7xe7sfnt236aq795qwv", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14768,27 +16100,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1w7de3ejt83mgj3keqkvq9p96s0qjygpxyfnlhg/Evil", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", + "token1PriceUsd": 1.683962652605803, + "token2Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "658ff4b9fa5a2b66abc9c97a", - "address": "factory/neutron1w7de3ejt83mgj3keqkvq9p96s0qjygpxyfnlhg/Evil", + "id": "65ef334768fc77acd931d20b", + "address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", "amount": "0", - "symbol": "factory/neutron1w7de3ejt83mgj3keqkvq9p96s0qjygpxyfnlhg/Evil" + "symbol": "KUJI" }, { - "id": "658ff4b9fa5a2b66abc9c97b", - "address": "untrn", + "id": "65ef334768fc77acd931d20c", + "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", "amount": "0", - "symbol": "NTRN" + "symbol": "ASTROPEPE" } ], - "name": "factory/neutron1w7de3ejt83mgj3keqkvq9p96s0qjygpxyfnlhg/Evil - NTRN", + "name": "KUJI - ASTROPEPE", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14811,8 +16143,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1s4lagjyp97mjm0pqs3u7acwtatne2vcna85nkl48eaysjtl2adqq484fp4", - "lpAddress": "neutron1app3ht0twc3wt8227vk7kzr9yaraav8knj6z8p5l5lxk62ws5hnqhawkdg", + "poolAddress": "neutron1hyqzj0ackqp5mq8ns8ecvhcgzqnkwhrswyq2p47vxw5ylk8j9vvshsad7w", + "lpAddress": "neutron1ahagd45zvc287p4y6kzcmw5es99kukxrksylvh6u7l0mmr3jqnnsv2h0lz", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -14823,33 +16155,32 @@ "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1gl6yuc2n9d9l4z3n5dyd75zp8y34eqqlsqnykjtj8m4xlf7lalrsgzhk8k", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", + "token1PriceUsd": 0.3465691651538462, + "token2Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "6597ff8884dc55803c248593", - "address": "neutron1gl6yuc2n9d9l4z3n5dyd75zp8y34eqqlsqnykjtj8m4xlf7lalrsgzhk8k", + "id": "65ef336168fc77acd931d239", + "address": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", "amount": "0", - "symbol": "BARYON" + "symbol": "MNTA" }, { - "id": "6597ff8884dc55803c248594", - "address": "untrn", + "id": "65ef336168fc77acd931d23a", + "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", "amount": "0", - "symbol": "NTRN" + "symbol": "ASTROPEPE" } ], - "name": "BARYON - NTRN", + "name": "MNTA - ASTROPEPE", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14871,16 +16202,16 @@ "rewards": [] }, { - "chainId": "neutron-1", - "poolAddress": "neutron1myzqugyrmujd5yuzkyeyuu4l2z5eh2rrwzpj6npkjtcyx06w3anqxmfh5g", - "lpAddress": "neutron1fy8uwv0fn82a6k89vvvswa6f8km6g4uqlest6hrcfrqv9ayly0hqf8aykv", + "chainId": "neutron-1", + "poolAddress": "neutron1elxxjdxdhgdht8nxt6s0r0a0c3p7h24v9q4g0dy8sytrm2tx587sgkgjna", + "lpAddress": "neutron1qxte3va6pslendukh23a2tmyf6gjda55d845rthkhrxm2l4uvhgsqr7tyt", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.002207924986913324, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000002207924986913325, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": null, + "migrateToAddress": "neutron16aq0p35g346xe3h60yuhkns3rhj6k66wwtz6czwgep7fwvmyjxqq206gh7", "whitelisted": null }, "feeRate": [ @@ -14890,30 +16221,30 @@ "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "neutron1plhm5ddznjmfvn2xdva5hfqvl5ksjdrwjc43e6mks9uam0r5r5xsd8kzzz", - "token1PriceUsd": 0, + "token1Address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", + "token1PriceUsd": 1.683962652605803, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6598192c84dc55803c24df95", - "address": "neutron1plhm5ddznjmfvn2xdva5hfqvl5ksjdrwjc43e6mks9uam0r5r5xsd8kzzz", - "amount": "0", - "symbol": "LAMBO" + "id": "65efe60868fc77acd932b115", + "address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", + "amount": "504", + "symbol": "KUJI" }, { - "id": "6598192c84dc55803c24df96", + "id": "65efe60868fc77acd932b116", "address": "untrn", - "amount": "0", + "amount": "1990", "symbol": "NTRN" } ], - "name": "LAMBO - NTRN", + "name": "KUJI - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": false, + "isDeregistered": true, "astroRewards": { "apr": 0, "apy": 0, @@ -14933,12 +16264,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron173y6wdx4pzvgns98gtww23kfrvw0gsdyzfw77p803mx557fwz82sqlq33q", - "lpAddress": "neutron16h728azwldueasnv8mpa7fa54vpjz5yxg6gdxwjank44ujkrpakq4mk96v", + "poolAddress": "neutron1a98mc3vayj9ugssnt247ulqfns9xp6nnvw8r6nujkqh5f9yzmqjq4czkyc", + "lpAddress": "neutron150ygp4pgn9lh9fw4t9vv29d3nu0asr4nunvuysmkc9qggqq2056qsetanz", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 3.00355754372178E-8, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 3.00355754372178E-11, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -14950,27 +16281,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ujunonauts", - "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token1PriceUsd": 0.0292986375770778, + "token2Address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", + "token2PriceUsd": 2.19 }, "stakeable": false, "assets": [ { - "id": "659987ab84dc55803c28878b", - "address": "ujunonauts", - "amount": "0", - "symbol": "ujunonauts" + "id": "6600e47405a65f3ca6f58ec7", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amount": "1", + "symbol": "PROP16" }, { - "id": "659987ab84dc55803c28878c", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "amount": "0", - "symbol": "USDC.axl" + "id": "6600e47405a65f3ca6f58ec8", + "address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", + "amount": "336501306", + "symbol": "stDYDX" } ], - "name": "ujunonauts - USDC.axl", + "name": "PROP16 - stDYDX", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -14993,45 +16324,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1hs2uf5sjqq9pk0tmgj5c27ga9jf9gjn7syr56c7z06aga69qx44suavyr4", - "lpAddress": "neutron1g8q8jnve3zcs7x038rqq5m2tx83lzausf3nqrcntc47rj9343xhswwks9n", + "poolAddress": "neutron100ux47warps0w6rhq5u453h56e8neplac2yme5rr478krtq9ql7s2ytj4g", + "lpAddress": "neutron1nwfxhw6v7sg5asyymrazmt706y009d6ryklj4d9vvjgusdnq6ltqnd8l90", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 4.36025585095578E-8, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 4.36025585095578E-11, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron122xmvrx27htz6h3pqdy82aacr62kt7j63tdfq38ps5qmy0j6w32qnxm4w6", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token1PriceUsd": 0.0292986375770778, + "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token2PriceUsd": 3466.56 }, "stakeable": false, "assets": [ { - "id": "659988e684dc55803c2888d2", - "address": "neutron122xmvrx27htz6h3pqdy82aacr62kt7j63tdfq38ps5qmy0j6w32qnxm4w6", - "amount": "0", - "symbol": "JUNONAUTS" + "id": "6600e67205a65f3ca6f5908b", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amount": "1", + "symbol": "PROP16" }, { - "id": "659988e684dc55803c2888d3", - "address": "untrn", - "amount": "0", - "symbol": "NTRN" + "id": "6600e67205a65f3ca6f5908c", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "amount": "4126258", + "symbol": "wstETH" } ], - "name": "JUNONAUTS - NTRN", + "name": "PROP16 - wstETH", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15054,45 +16384,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1eav08dgf7x307twt7q4wmerhem495js48rx77klhpuzwqwcewjjsshcnez", - "lpAddress": "neutron1w4vczcz6thcfvppaz49xw39esncw7sazepu9v8jl394ag7mzp3jsxjs9y3", + "poolAddress": "neutron1art4z0k6jm3can3qydgdcjyf2zqttxzp0wtcn3we3sg7gwxqlg7qfdl5cd", + "lpAddress": "neutron1x3rr0xnptwggjnpl5v7huzupsnzhrwv7zarlc6sd6mp0saf9ua6qj9ugh3", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000015709437, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 1.5709437E-8, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1s4z8carrrj00vvtg3k7twn9pq7ldyy33ttyzsejtmphzxhj3vhns6y0368", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "659aeb9fa36538cc17e881e1", - "address": "neutron1s4z8carrrj00vvtg3k7twn9pq7ldyy33ttyzsejtmphzxhj3vhns6y0368", - "amount": "0", - "symbol": "Boy" - }, - { - "id": "659aeb9fa36538cc17e881e2", + "id": "6602345305a65f3ca6f6da9d", "address": "untrn", - "amount": "0", + "amount": "23", "symbol": "NTRN" + }, + { + "id": "6602345305a65f3ca6f6da9e", + "address": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON", + "amount": "44722", + "symbol": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON" } ], - "name": "Boy - NTRN", + "name": "NTRN - factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15115,8 +16444,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron19see3dz0vnu3df7nt2muqmrunpaxqvvqs42q8faxdrjfy9qal9jq6txzru", - "lpAddress": "neutron1qa3mztkp3yyh29yycpylhcfan0evgrvdkwlh6lwmme9lc5sxesqs8m97u3", + "poolAddress": "neutron1ek290csl254fp7agpdq450klmqxue6yq3xpesecenmffe5y2ruhqtwquj3", + "lpAddress": "neutron1stvlzna8e32czdlmeseaxp4xdk3szqf0arc8r6wgh8yf0g6ut7jsyc27gk", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -15127,33 +16456,32 @@ "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", + "token1Address": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "token2PriceUsd": 3466.56 }, "stakeable": false, "assets": [ { - "id": "659b7beda36538cc17e9858a", - "address": "neutron1uqvse8fdrd9tam47f2jhy9m6al6xxtqpc83f9pdnz5gdle4swc0spfnctv", + "id": "6602d35c05a65f3ca6f75b55", + "address": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", "amount": "0", - "symbol": "BOY" + "symbol": "AUTISM" }, { - "id": "659b7beda36538cc17e9858b", - "address": "untrn", + "id": "6602d35c05a65f3ca6f75b56", + "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", "amount": "0", - "symbol": "NTRN" + "symbol": "wstETH" } ], - "name": "BOY - NTRN", + "name": "AUTISM - wstETH", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15176,45 +16504,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1z3dlp6y7mfa08ef9a52zd20vv4ymh9emvuy0z8f0tedtsy6p6lusswehzp", - "lpAddress": "neutron1q9zcf5fjf0h68p84u9ujw87rnape8w99lgzm2fyas5swpm0sl03q330vl0", + "poolAddress": "neutron1wdp3u2f8ah9da8fpcnfax9dztz7l077z5cvnv8gu6n6ec477awjsqsq8fd", + "lpAddress": "neutron1kyr95h6d640wsdqqfejtwh04q6gejfllh9exkkvlv9e93jq35v8s3dr49t", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.01419957, + "poolLiquidity": 4423008026, + "poolStakedLiquidityUsd": 3.210387572528344E-12, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", + "token1PriceUsd": 2.19, + "token2Address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "token2PriceUsd": 1.17 }, "stakeable": false, "assets": [ { - "id": "659bc263a36538cc17e9ffab", - "address": "neutron12h09p8hq5y4xpsmcuxxzsn9juef4f6jvekp8yefc6xnlwm6uumnsdk29wf", - "amount": "0", - "symbol": "WTF" + "id": "66032e0e05a65f3ca6f7ec01", + "address": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", + "amount": "3000000000000000", + "symbol": "stDYDX" }, { - "id": "659bc263a36538cc17e9ffac", - "address": "untrn", - "amount": "0", - "symbol": "NTRN" + "id": "66032e0e05a65f3ca6f7ec02", + "address": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "amount": "6521", + "symbol": "AXL" } ], - "name": "WTF - NTRN", + "name": "stDYDX - AXL", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15237,45 +16564,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1rnn22q5vmv46jv5wgdt2ltntrmzzc85mkwn3h8p7zq3afye5rq9qanrkha", - "lpAddress": "neutron1vjccac0d5fslsp9mxlg8ecr3yz7lz7x948ne5u2djeutdn2vdn9qfzuqwd", + "poolAddress": "neutron1qnmlnp70mjtmykwx5pt7gha3utlfj5z4fjffynrg94hpvzfanl5ssmxcwg", + "lpAddress": "neutron15xdxg98gyym4jduwl2jsas2mjl6ym8t4agvg7vxcur42hqwxk8csrq3su0", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 3.744627761835, + "poolLiquidity": 2449465901, + "poolStakedLiquidityUsd": 1.528752762093193E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1yh2lv497ex0e7j62ewyx6x08uxcnvjlcvlusyr73v4azctyysursee7lh7", + "token1Address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659cd56bfdb9cb40c8669e91", - "address": "neutron1yh2lv497ex0e7j62ewyx6x08uxcnvjlcvlusyr73v4azctyysursee7lh7", - "amount": "0", - "symbol": "LAIKA" + "id": "6604887b05a65f3ca6f98a1e", + "address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + "amount": "1099429036262", + "symbol": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI" }, { - "id": "659cd56bfdb9cb40c8669e92", + "id": "6604887b05a65f3ca6f98a1f", "address": "untrn", - "amount": "0", + "amount": "5482465", "symbol": "NTRN" } ], - "name": "LAIKA - NTRN", + "name": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15298,8 +16624,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron10vps74593dna08yt4r4fg5hk0y3xel8ce67md4ug86ws74wm20rqvjsgnp", - "lpAddress": "neutron1262f8lkx3x38jxgpk5afphlmzh634xrvn7wtt0pa3gewem7xlpwqvan2v6", + "poolAddress": "neutron1lwgll06gfajzdrna9lhxfsdfr55rjnp5zmljts6aqw08yg5r075sq30g7z", + "lpAddress": "neutron1a8mrpv80edqmgxrxxp7fa4r9svy94zs20wdrcjt8uzp8un8ap3uqc4h0rk", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -15310,33 +16636,32 @@ "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "token1Address": "factory/neutron169mg9zwc6dn2qzncnz4r3d6v52wuue08wxksvc/SEPPUKU", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659fa908fdb9cb40c86c3b17", - "address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "id": "6604b61805a65f3ca6f9bbe3", + "address": "factory/neutron169mg9zwc6dn2qzncnz4r3d6v52wuue08wxksvc/SEPPUKU", "amount": "0", - "symbol": "BDG" + "symbol": "SEPPUKU" }, { - "id": "659fa908fdb9cb40c86c3b18", + "id": "6604b61805a65f3ca6f9bbe4", "address": "untrn", "amount": "0", "symbol": "NTRN" } ], - "name": "BDG - NTRN", + "name": "SEPPUKU - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15359,15 +16684,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1435xdnfc275zdkz7d5dz9kns6upspl02h5q6n55glaqm9wu4cewqz3f3wg", - "lpAddress": "neutron16xn5dk770dqmvla7909gjkp9as8s8aweyt9f9a0yxml39hw9acrqvh7t0x", + "poolAddress": "neutron1chkmeg2r7cylskrkdhklc4h45rv2nkj0f8d3wsd7ej2xqynj2zkqj4kqce", + "lpAddress": "neutron1vzfx5l700x0zaf3xykaemljhpe9fcmwvhzmxjk8jjgyu2str6spqp5v0qh", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, "poolStakedLiquidityUsd": 1, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1cp5pea4zpq7sz9xkveupxxtfu37uekeg0q0wnvhm5rrgt5ud07aqtq7xvr", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -15376,30 +16701,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "token1PriceUsd": 0.125124, + "token2Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "659fcb9cfdb9cb40c86ca0a4", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "id": "6604e96b05a65f3ca6fa05ac", + "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", "amount": "0", - "symbol": "APOLLO" + "symbol": "ASTRO.cw20" }, { - "id": "659fcb9cfdb9cb40c86ca0a5", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "id": "6604e96b05a65f3ca6fa05ad", + "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", "amount": "0", - "symbol": "USDC.axl" + "symbol": "BAD" } ], - "name": "APOLLO - USDC.axl", + "name": "ASTRO.cw20 - BAD", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -15419,15 +16744,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1s8jlz99kvu5d3zjpqxsuv9yu5rjey748w2vu98ndzmw3aahzd7xq55rzr4", - "lpAddress": "neutron1vmknup02d8eel52ew26kma7xjh772a3pa0r3mc2ezwlcr7dujm7swpsdr2", + "poolAddress": "neutron14p0qdqn9kwpwveyzfrujefy4ahmyfpzn98hp95rdwn8ntac39kasl99p6d", + "lpAddress": "neutron16r4sqwxl0garln9g76gndr7wntawnu66wtxjg04yh3ykadujc35spsw4ns", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 2247.565979812122, + "poolLiquidity": 74067874277, + "poolStakedLiquidityUsd": 3.034468047702083E-8, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron15wal8wsy7mq37hagmrzchwmugpjzwlzrlw7pylkhlfuwukmc2kps722ems", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -15436,30 +16761,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "token2PriceUsd": 1 + "token1Address": "factory/neutron1hf07vxv7f53xjwxq8ec2nuet9k0cq7qepxm7c6/mip229", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659fcbdefdb9cb40c86ca0ee", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "66057bf805a65f3ca6faa843", + "address": "factory/neutron1hf07vxv7f53xjwxq8ec2nuet9k0cq7qepxm7c6/mip229", + "amount": "1679085225135", + "symbol": "MIP229" }, { - "id": "659fcbdefdb9cb40c86ca0ef", - "address": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "amount": "0", - "symbol": "USDC" + "id": "66057bf805a65f3ca6faa844", + "address": "untrn", + "amount": "3290634638", + "symbol": "NTRN" } ], - "name": "APOLLO - USDC", + "name": "MIP229 - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -15479,15 +16804,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1w38v8z70tfus49cc77jzq4y5kt805nuyh6n0vmktjal07taad9hslagsse", - "lpAddress": "neutron1wq0f56agywr6zcj76e0nxezc06llfjnnwacr70cadr6l0j345whs95h2v8", + "poolAddress": "neutron1htud6dnxmkgwyc8n2yf7733yc845hvsjyz8qrl7cr0d82v90dplqrrxezl", + "lpAddress": "neutron15ypz8hzm09wcv6utkumn6779kxtd6rkdk574wplde3xyqvzsu6ts43qp5k", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.00102193999544478, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.00000102193999544478, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1fktxsflze70p7565yslwtth290zqad4agt4gpvjffy58h6raxvasz5etfw", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -15496,30 +16821,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token1PriceUsd": 0.0292986375770778, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "659fcc15fdb9cb40c86ca190", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "660595fa05a65f3ca6faccbc", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amount": "16474", + "symbol": "PROP16" }, { - "id": "659fcc15fdb9cb40c86ca191", - "address": "untrn", - "amount": "0", - "symbol": "NTRN" + "id": "660595fa05a65f3ca6faccbd", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "540", + "symbol": "USDC.axl" } ], - "name": "APOLLO - NTRN", + "name": "PROP16 - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -15539,15 +16864,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1mg0gd089xkuhk02wx2n3dcz7tqy03j0a3apw4fkq6a0rsq65dphsde6ngx", - "lpAddress": "neutron15cm4jzpfv2n3au20fgr6cmlqa2jupw2d9ycfa4a3etfxqx6u5stskxzj6z", + "poolAddress": "neutron13a2ftxml6d3rddpzyf2xzjeuv8w6w8ym782s07q0na2m7m3cptrqmdy6kd", + "lpAddress": "neutron1yf25qx7mzxkacwgzprn0ytljrlr9uddtv2hgpc4yry07ta3dfrxqypms5v", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.00849944708, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.00000849944708, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1h7uu0q6sgmnv29rl8we45kz5cystkmaqmy9wcpt0whm3nrukugqsefu2e6", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -15556,30 +16881,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "token2PriceUsd": 10.88 + "token1Address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "token1PriceUsd": 0.901526, + "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "token2PriceUsd": 0.998656 }, "stakeable": false, "assets": [ { - "id": "659fcc85fdb9cb40c86ca2dd", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "66059aec05a65f3ca6fadc43", + "address": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "amount": "4412", + "symbol": "OSMO" }, { - "id": "659fcc85fdb9cb40c86ca2de", - "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "amount": "0", - "symbol": "ATOM" + "id": "66059aec05a65f3ca6fadc44", + "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "amount": "4528", + "symbol": "USDC.axl" } ], - "name": "APOLLO - ATOM", + "name": "OSMO - USDC.axl", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -15599,45 +16924,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1e3xggcuvpk3p4r9qmyk2vdv7z9chfmkekc7vemfqzn22dk29nawqjjmwpn", - "lpAddress": "neutron1xtxkgh7xrkf65pvaz8u867uwzv6gf5s6y338253pk9qwt9qf5zmqcd5tyn", + "poolAddress": "neutron164hn2cwp7ecwmqjlnynhj3xsvu79u5s364nhmvr6rp077v7ar0tshf5zqf", + "lpAddress": "neutron1jqqzz5rlra0yjz3ts50q8nxv47zkg6287aljvjdkaskm9u786zescgpwk8", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000006147171, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 6.147171E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", + "token1Address": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON2", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "659fe913fdb9cb40c86ccf67", - "address": "neutron1fjzg7fmv770hsvahqm0nwnu6grs3rjnd2wa6fvm9unv6vedkzekqpw44qj", - "amount": "0", - "symbol": "BTC" + "id": "6605bd2405a65f3ca6fb02ab", + "address": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON2", + "amount": "122544", + "symbol": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON2" }, { - "id": "659fe913fdb9cb40c86ccf68", + "id": "6605bd2405a65f3ca6fb02ac", "address": "untrn", - "amount": "0", + "amount": "9", "symbol": "NTRN" } ], - "name": "BTC - NTRN", + "name": "factory/neutron167ucsyj55sxh3vfsa000qs27vddepl0yyrwuww/DON2 - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15660,8 +16984,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1fz2d0w3xd98gysl4lt6ds4ex2p2vjlgryfkasu5tjprf5l6jpm4qsau0p0", - "lpAddress": "neutron1cqy2ta0gqdrngz5ssnqtpzdf2eqa7qqykrm6rd3fgp75vd2wplxss69agm", + "poolAddress": "neutron15u4gc7p3epcq5m97hrcpeqrd5a25zle6nvaqmqlwlefzsk6mv4qsvu2wll", + "lpAddress": "neutron1xenqqn0cm2eqaxtgexs08rhr7qhfsqey4ne623pvn5mu7wgq855qcv760c", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -15672,33 +16996,32 @@ "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "token1Address": "factory/neutron172xq4cgcjcwfqyrpy2p6vwst54g9dxh78t44u5/PartialSetSecurityProp897Inu", "token1PriceUsd": 0, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a24a9e4a547903093ffb2f", - "address": "neutron1fe4fd33d0976gqr833xhdxmw5hv8c5s4nv7pvdrdflpr8u4uadjq76tmdq", + "id": "6605edee05a65f3ca6fb2ecc", + "address": "factory/neutron172xq4cgcjcwfqyrpy2p6vwst54g9dxh78t44u5/PartialSetSecurityProp897Inu", "amount": "0", - "symbol": "BDG" + "symbol": "factory/neutron172xq4cgcjcwfqyrpy2p6vwst54g9dxh78t44u5/PartialSetSecurityProp897Inu" }, { - "id": "65a24a9e4a547903093ffb30", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "id": "6605edee05a65f3ca6fb2ecd", + "address": "untrn", "amount": "0", - "symbol": "USDC.axl" + "symbol": "NTRN" } ], - "name": "BDG - USDC.axl", + "name": "factory/neutron172xq4cgcjcwfqyrpy2p6vwst54g9dxh78t44u5/PartialSetSecurityProp897Inu - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15721,12 +17044,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1qg3eh22sy4jeushxpu9zu73ntmn3e8468rwqdpc4s0g5j80lnkfqzfp3qe", - "lpAddress": "neutron1yhvqhr3yvadl4v6qquk9cxt9jpuqz0yv52862ygdqw5vhjzm7pcs88z5xn", + "poolAddress": "neutron1nq94ner4nqrqnq4afhk6zz725cuxx7tfy822n8trvyejw57he4rsywfv9d", + "lpAddress": "neutron1nqtww2sy0kkptz27pz9ga0eu708xwcq6k7k9nsvqutvc6msvxp3qymy2w7", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.068306681133, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 0.000068306681133, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -15738,27 +17061,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron12ve9fafr8lj4k3nf6vmz82u3ulmmr80ut697ygq8j0ksudvv0csqfkkh2p", + "token1Address": "factory/neutron1vpwxg37cj5p4txep5jx8nsscyywu4wuf3rx5yv/PartialSetSecurityProp897Inu", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a367d859423b792c437c54", - "address": "neutron12ve9fafr8lj4k3nf6vmz82u3ulmmr80ut697ygq8j0ksudvv0csqfkkh2p", - "amount": "0", - "symbol": "BENGAL" + "id": "6605f34205a65f3ca6fb34ba", + "address": "factory/neutron1vpwxg37cj5p4txep5jx8nsscyywu4wuf3rx5yv/PartialSetSecurityProp897Inu", + "amount": "300", + "symbol": "factory/neutron1vpwxg37cj5p4txep5jx8nsscyywu4wuf3rx5yv/PartialSetSecurityProp897Inu" }, { - "id": "65a367d859423b792c437c55", + "id": "6605f34205a65f3ca6fb34bb", "address": "untrn", - "amount": "0", + "amount": "100007", "symbol": "NTRN" } ], - "name": "BENGAL - NTRN", + "name": "factory/neutron1vpwxg37cj5p4txep5jx8nsscyywu4wuf3rx5yv/PartialSetSecurityProp897Inu - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15781,8 +17104,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron18k4rdpqq5vzacwp0pujur8d9lxamemh7w3mcmzujydzt3uq2xqgs25m4yh", - "lpAddress": "neutron1wyd9ftayhts3cwlaxsxacqxv6h6u3t9r05ev6t7uczzda26sdmmsr4msxt", + "poolAddress": "neutron16q5rg76zmdxr44f8m5n9lq620t6epja4hcmuzcf9wt5dv00qmseqpxjeqw", + "lpAddress": "neutron1gdslg8zdvn4xl0dck39vxyq0hx7ra9stelsw0pq4sftj9x2qck6qux0j00", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -15793,33 +17116,32 @@ "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "token1PriceUsd": 3.294877335893006e-05, + "token1Address": "factory/neutron1cxdsmzcqfwscnmuun3knlhshfvrhgge6qfk958/SkinnyDoKwon", + "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65a66ec4e8848f944ef5a616", - "address": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "id": "6607749005a65f3ca6fcbe3d", + "address": "factory/neutron1cxdsmzcqfwscnmuun3knlhshfvrhgge6qfk958/SkinnyDoKwon", "amount": "0", - "symbol": "CORGI" + "symbol": "factory/neutron1cxdsmzcqfwscnmuun3knlhshfvrhgge6qfk958/SkinnyDoKwon" }, { - "id": "65a66ec4e8848f944ef5a617", + "id": "6607749005a65f3ca6fcbe3e", "address": "untrn", "amount": "0", "symbol": "NTRN" } ], - "name": "CORGI - NTRN", + "name": "factory/neutron1cxdsmzcqfwscnmuun3knlhshfvrhgge6qfk958/SkinnyDoKwon - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15842,8 +17164,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron10m6z7haskav9y60vyctmspjjlamgg72p5ek7t9unh8gktmmn4w0sdufcqd", - "lpAddress": "neutron178y7vmhjz2q65ptp9dtxm5muryyn5anpllm45nfwdvvc0r8jkkjqeclzl8", + "poolAddress": "neutron1ma7fxmengnf0q5xtehf3vujm5swkf32sf7nl3j9dse85j5m26f5qwa955d", + "lpAddress": "neutron16zkd55efehv4wyywndyx099pj6vff2pge57ep96hy4vzs04rkk4sfv903j", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -15859,27 +17181,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", - "token1PriceUsd": 0.0002586977590521827, - "token2Address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "token1Address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", + "token1PriceUsd": 0, + "token2Address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65bbc11fcfb48263b3ce5cfd", - "address": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "id": "660774da05a65f3ca6fcbe80", + "address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", "amount": "0", - "symbol": "GODRD" + "symbol": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI" }, { - "id": "65bbc11fcfb48263b3ce5cfe", - "address": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", + "id": "660774da05a65f3ca6fcbe81", + "address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", "amount": "0", - "symbol": "HUAHUA" + "symbol": "BADDOG" } ], - "name": "GODRD - HUAHUA", + "name": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI - BADDOG", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15902,8 +17224,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1xyqhmqecl286trerp3qvwc3ydl26hsff4zclyjrgehhkemaduqfq0ht972", - "lpAddress": "neutron138hetyy5ph8vutye5lrvrw2t02h9jzt0adtk9a3pr95p6y6nhfvsa0qy03", + "poolAddress": "neutron1whh47q5wmr742spesk8nnxntwc7ar0kcnmmlf72jgn2ywu40z3fqkyg2ug", + "lpAddress": "neutron1y434kyzgtqhzsdun894vnz9wtfasskf225wt7kheh0guhf5s2ulsv8vw3r", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -15919,27 +17241,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", - "token1PriceUsd": 11.54, - "token2Address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", - "token2PriceUsd": 0.99934 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65c2978368fc77acd9f83da8", - "address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", + "id": "66085bb705a65f3ca6fdbce9", + "address": "untrn", "amount": "0", - "symbol": "stTIA" + "symbol": "NTRN" }, { - "id": "65c2978368fc77acd9f83da9", - "address": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "id": "66085bb705a65f3ca6fdbcea", + "address": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP", "amount": "0", - "symbol": "USDC.axl" + "symbol": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP" } ], - "name": "stTIA - USDC.axl", + "name": "NTRN - factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -15962,15 +17284,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron16ftndrtjpdk4mxz26q6w2va4nzvhw7263936m7743tyl6mka2nys6kw65w", - "lpAddress": "neutron1g8g8e4ls72q5c4ha35ruxsc4fukv2zalvc2ju5ka47t9jmtjqcwsr0v5s5", + "poolAddress": "neutron1ll582qjzyywujkwvyct7nyw8al9z3rm97apdpqre2pau6x3kc7sqa5xluv", + "lpAddress": "neutron142mlhwqud4pqs4490ua5sea7dq6n7zppe2qh0xuqxavlmlevmdmqe4680z", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000030735855, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 3.0735855E-8, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1mwqu0y5lgdyxgev603py4u6xahcsaq4ekvf20gr9rwy2c5l4v9qqqj6rwe", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -15979,30 +17301,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", - "token2PriceUsd": 27.99813275812923 + "token1Address": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/ONUJ", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65d0d19468fc77acd90b732f", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "66093cf605a65f3ca6fe71a0", + "address": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/ONUJ", + "amount": "22361", + "symbol": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/ONUJ" }, { - "id": "65d0d19468fc77acd90b7330", - "address": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", - "amount": "0", - "symbol": "(stTIA/TIA)VT" + "id": "66093cf605a65f3ca6fe71a1", + "address": "untrn", + "amount": "45", + "symbol": "NTRN" } ], - "name": "APOLLO - (stTIA/TIA)VT", + "name": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/ONUJ - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -16022,15 +17344,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron18pq5fy059260ufgrjh4g3l0k28etuefhva8dzg0wlnfzyg9e5dsst9e8f8", - "lpAddress": "neutron1rwfgnau4z6erymhhw9nzs0c79tsk926r85fmnfahk2a5qzsyr6zq0mdj8n", + "poolAddress": "neutron1edhtqhseprgquaw52f3qkkwj779jy04kydzpdfwssv5mfu7mnv4s4eht87", + "lpAddress": "neutron10cg42k5pmw7m0z9cvgzmwyz0mxq5k9ust0mnqksyfff5jdvucvgsg2h935", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 6.83019E-7, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 6.83019E-10, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron123qz5mn66ats7xpxg22zy6rm83hqne8ckzj20c9d0jh8gclyngcsr582l0", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -16039,30 +17361,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "factory/neutron1chut3yhlgwp98kcthp58dcrnusn5vdh6v0c8rw/StudyThis", "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65d0d1b468fc77acd90b73f9", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "6609da6e05a65f3ca6ff17b8", + "address": "untrn", + "amount": "1", + "symbol": "NTRN" }, { - "id": "65d0d1b468fc77acd90b73fa", - "address": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", - "amount": "0", - "symbol": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH" + "id": "6609da6e05a65f3ca6ff17b9", + "address": "factory/neutron1chut3yhlgwp98kcthp58dcrnusn5vdh6v0c8rw/StudyThis", + "amount": "363329634199", + "symbol": "factory/neutron1chut3yhlgwp98kcthp58dcrnusn5vdh6v0c8rw/StudyThis" } ], - "name": "APOLLO - factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", + "name": "NTRN - factory/neutron1chut3yhlgwp98kcthp58dcrnusn5vdh6v0c8rw/StudyThis", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -16082,15 +17404,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1vc9surjzfw63hrmhyyjy4az2l7xfhd4ej7rcx84ev5xm228m8a9se79c32", - "lpAddress": "neutron179xhx703ftv98933v2emcsqlytvl95rmhwcvc0n2r9d7wygr70rq922fjq", + "poolAddress": "neutron1cpdnuccm2p4j3eqynxk27e3gpmaaxyeef3580unqegh34w5v7dgqh967e4", + "lpAddress": "neutron19ylz9assj9t6l44djaxrxq65mpfm2x5xh69e9s33wjethspjr4zqzh0sm2", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000005464152, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 5.464152E-9, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1z47up9cd94yqsfn05h5ajnc49dv8kmvhh3psww42k42cuuw46xrsyn6gy6", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -16099,30 +17421,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/BASED", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65d0d1d868fc77acd90b74dd", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "660a842205a65f3ca6ffb6e5", + "address": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/BASED", + "amount": "140881", + "symbol": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/BASED" }, { - "id": "65d0d1d868fc77acd90b74de", - "address": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", - "amount": "0", - "symbol": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH" + "id": "660a842205a65f3ca6ffb6e6", + "address": "untrn", + "amount": "8", + "symbol": "NTRN" } ], - "name": "APOLLO - factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", + "name": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/BASED - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -16142,15 +17464,15 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1853ax7cc20a6v9ckn3u7hnvjytp63q5wmy03wg2h9d6c4m69usns45we9e", - "lpAddress": "neutron1luad9numvwypm86lp83et6lpa32u7g0zwjj2a8tz4u8fatzmnktqftjdr7", + "poolAddress": "neutron1f89d5nkf7x4d0gye4k2adz55vk3r87w60zrxdqeuwyssjrns9amquw3g03", + "lpAddress": "neutron10d74dkyvzm9f6780s4pnqad59hnev2n0hk7up33qgw09rpl5ayns59u4d0", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 6.83019E-7, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 6.83019E-10, "poolStakedLiquidity": 1, "config": { - "migrateToAddress": "neutron1aukafce24wkuyfdfsshtnpqtqpxpaa0fzvgk4umwcmp37pqj2e8su2kp38", + "migrateToAddress": null, "whitelisted": null }, "feeRate": [ @@ -16159,30 +17481,30 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "token2PriceUsd": 3.12 + "token1Address": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/FUN", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65d0d1f368fc77acd90b75cd", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "660b7a9805a65f3ca600a433", + "address": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/FUN", + "amount": "139618253", + "symbol": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/FUN" }, { - "id": "65d0d1f368fc77acd90b75ce", - "address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "amount": "0", - "symbol": "STRD" + "id": "660b7a9805a65f3ca600a434", + "address": "untrn", + "amount": "1", + "symbol": "NTRN" } ], - "name": "APOLLO - STRD", + "name": "factory/neutron1f0mlrfutaw0zmcx3avrkma8mfd86ddl8rc8vap/FUN - NTRN", "isNew": false, "isIlliquid": true, - "isDeregistered": true, + "isDeregistered": false, "astroRewards": { "apr": 0, "apy": 0, @@ -16202,8 +17524,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1uaya743nx3aferajphxzhsnwkcal3kc4tucpl0dauyh4rsdt5r6qglgvrs", - "lpAddress": "neutron1fjp00gq07ad7cl397m9gv2gnt6ck5smc2fpx5a62hh9ketfmlvvq0gushc", + "poolAddress": "neutron1r49ewt27n3lr6zsxv3cwghwxe947f5n4fsmtwlc608gqh047c7vshm8gyd", + "lpAddress": "neutron1thymjagy4lefrs4gmh22l8x85lmmdjalxjwmy2guheyfwj7gk4rqd6e73e", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -16219,27 +17541,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "token1Address": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", "token1PriceUsd": 0, - "token2Address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", - "token2PriceUsd": 69092 + "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token2PriceUsd": 0.0292986375770778 }, "stakeable": false, "assets": [ { - "id": "65d50a5d68fc77acd9109150", - "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "id": "660c8fdf05a65f3ca601a959", + "address": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", "amount": "0", - "symbol": "ASTROPEPE" + "symbol": "YAWP" }, { - "id": "65d50a5d68fc77acd9109151", - "address": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", + "id": "660c8fdf05a65f3ca601a95a", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", "amount": "0", - "symbol": "WBTC (Osmosis)" + "symbol": "PROP16" } ], - "name": "ASTROPEPE - WBTC (Osmosis)", + "name": "YAWP - PROP16", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16262,12 +17584,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron123qz5mn66ats7xpxg22zy6rm83hqne8ckzj20c9d0jh8gclyngcsr582l0", - "lpAddress": "neutron1w3pap6nqlgthgh04nn4lxd974shq4turyc5eq36g0qjqkeakqd0sq3a9lq", + "poolAddress": "neutron1ty6drfxqhzaclak34jkmv8xa8064txsmfs0qh87y3r396v88qxas9e23fg", + "lpAddress": "neutron1jea8tax7sn09k3hfdth3u9qfzunamchr5nrg9l00hlev8k5xyzmqhrsryz", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.1126461721003181, + "poolLiquidity": 1669951843, + "poolStakedLiquidityUsd": 6.74547428243642E-11, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -16276,30 +17598,30 @@ "feeRate": [ "0.30" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65d8f34568fc77acd914f7cd", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "66116eb205a65f3ca6067ef8", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "2015520", + "symbol": "NEWT" }, { - "id": "65d8f34568fc77acd914f7ce", - "address": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", - "amount": "0", - "symbol": "factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH" + "id": "66116eb205a65f3ca6067ef9", + "address": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", + "amount": "1383654065759", + "symbol": "GAY" } ], - "name": "APOLLO - factory/neutron1yvhe4f0q3swtf37pkf9kku59l52nevr3trxs62vah004a08pkl8qlaccc7/VaultToken/pcl/7d/wstETH/axlWETH", + "name": "NEWT - GAY", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16322,12 +17644,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1z47up9cd94yqsfn05h5ajnc49dv8kmvhh3psww42k42cuuw46xrsyn6gy6", - "lpAddress": "neutron199grrwe5a2pf6v7897r9fk230txqkp2xp9pd2sh0w3dhmm75p8zss9ax8d", + "poolAddress": "neutron1ew8szwvhn6f8rk5h8y3mxcecz837uu5f76wa26fp8tyvshntkm0sermu25", + "lpAddress": "neutron1glzy4hshdj0q726ejta4aaspyw39thrnukspvzlez7zgzvfga09qwlh2uf", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 5.58893844270055E-8, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 5.58893844270055E-11, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -16336,30 +17658,30 @@ "feeRate": [ "0.30" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1hn07a70wr6ladw7jdq5afesxm0eme958hht2rl/TEWT", + "token1PriceUsd": 0, + "token2Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token2PriceUsd": 0.0558893844270055 }, "stakeable": false, "assets": [ { - "id": "65d8f34568fc77acd914f7d9", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "6612b6bf7deb69f605862f80", + "address": "factory/neutron1hn07a70wr6ladw7jdq5afesxm0eme958hht2rl/TEWT", + "amount": "1269967", + "symbol": "TEWT" }, { - "id": "65d8f34568fc77acd914f7da", - "address": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", - "amount": "0", - "symbol": "factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH" + "id": "6612b6bf7deb69f605862f81", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "1", + "symbol": "NEWT" } ], - "name": "APOLLO - factory/neutron17vedy2clhctw0654k93m375ud7h5jsy8nj9gnlkjnyd4mcfnfrdql226al/VaultToken/pcl/7d/NTRN/wstETH", + "name": "TEWT - NEWT", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16382,44 +17704,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1aukafce24wkuyfdfsshtnpqtqpxpaa0fzvgk4umwcmp37pqj2e8su2kp38", - "lpAddress": "neutron1rqfglkza5du6ph3g4vdvnynrrm58l7m8lxguj5me8vxgu70er9vsqst0gw", + "poolAddress": "neutron15gxcjgy9l3g5n5fek0zdef3d4cegdpejpdhe70hyw5grjq2g49jq50tnql", + "lpAddress": "neutron1u3a7rzqsc7yv2npm0svs2dxfygyrwj26dynnm2alwav6f93rjqwsaz4ew3", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 8.160504197058, + "poolLiquidity": 2367239, + "poolStakedLiquidityUsd": 0.000003447266709047073, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.26", + "0.45" ], - "poolType": "astroport-pair-xyk-sale-tax", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "token1PriceUsd": 0.1610564278339829, - "token2Address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "token2PriceUsd": 3.12 + "token1Address": "untrn", + "token1PriceUsd": 0.683019, + "token2Address": "ibc/B6643B477C69060B125279D9FF69EC20189E4D15DC24CF0457E0BAA9DD1A26AE", + "token2PriceUsd": 4.24 }, "stakeable": false, "assets": [ { - "id": "65d8f34668fc77acd914f7e5", - "address": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "amount": "0", - "symbol": "APOLLO" + "id": "66140b057deb69f605877ab9", + "address": "untrn", + "amount": "5153382", + "symbol": "NTRN" }, { - "id": "65d8f34668fc77acd914f7e6", - "address": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "amount": "0", - "symbol": "STRD" + "id": "66140b057deb69f605877aba", + "address": "ibc/B6643B477C69060B125279D9FF69EC20189E4D15DC24CF0457E0BAA9DD1A26AE", + "amount": "109449207", + "symbol": "SHD" } ], - "name": "APOLLO - STRD", + "name": "NTRN - SHD", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16442,45 +17765,44 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1nk0rltxj93du89nsxrqgfwlm5xxhh5qze8gu5wuqj5d68hl5xzjqy34umd", - "lpAddress": "neutron1t40yylvxt9rvpprfvaqz5xry2e0n40svt8fdw6cdwg97gnh3zutqtjs42j", + "poolAddress": "neutron1m45xu887l2he2hegzgwee3g4xtkvdhgqhd0zdjvdp3mhx4ja5nes62yk92", + "lpAddress": "neutron1kmj0gz46375p924ffk6zv3m7syr533nwzyr6e4mu5e4re7q0wm3s9m6v03", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000001099836928810323, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 1.099836928810323E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.26", - "0.45" + "0.30" ], - "poolType": "concentrated", + "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "neutron12q75uz8g3s8klcs7nxul72xj8pjy2kcx3ku3cp8nff4ewvusjcwqvpyn9d", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "token1PriceUsd": 0.00000941, + "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "token2PriceUsd": 0.0292986375770778 }, "stakeable": false, "assets": [ { - "id": "65de11bb68fc77acd91b2490", - "address": "neutron12q75uz8g3s8klcs7nxul72xj8pjy2kcx3ku3cp8nff4ewvusjcwqvpyn9d", - "amount": "0", - "symbol": "FIRENEUTRON" + "id": "66155d217deb69f605888e76", + "address": "ibc/58923AAE6E879D7CB5FB0F2F05550FD4F696099AB0F5CDF0A05CC0309DD8BC78", + "amount": "63949", + "symbol": "CRBRUS" }, { - "id": "65de11bb68fc77acd91b2491", - "address": "untrn", - "amount": "0", - "symbol": "NTRN" + "id": "66155d217deb69f605888e77", + "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "amount": "17", + "symbol": "PROP16" } ], - "name": "FIRENEUTRON - NTRN", + "name": "CRBRUS - PROP16", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16503,44 +17825,45 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1g7culrpzwdn5vqwzymud6mjdks3pk8lad8f7rmqqz7ekfamjuppskynmv2", - "lpAddress": "neutron17dwlx8z3vngz4gagd4yd923tgrlww2j2dm57jwhu7ahy6mqscrzs6uqm52", + "poolAddress": "neutron1kwg78jut4a7xtl8eezks5tfvk9cu4c93kgfctvwhz2zadlhncensw5rfls", + "lpAddress": "neutron1vy7qeqcj5tk9zsypkeuf7uy5tdqcx4qrzanty0xgw2ujr5swr7ds03w9cl", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 11.27, + "poolLiquidity": 3500000, + "poolStakedLiquidityUsd": 0.000003219999999999936, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, "whitelisted": null }, "feeRate": [ - "0.30" + "0.03", + "0.45" ], - "poolType": "xyk", + "poolType": "concentrated", "isBlocked": false, "prices": { - "token1Address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/JIMMY", - "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token1Address": "ibc/74B554DD3FF10F5D60E30175ADFB47E59F77F7C57024A8104A4F78CDC2EAD125", + "token1PriceUsd": 3.22, + "token2Address": "ibc/4EAAAE537853E9C0DDF458F0710C37BB3DE7C6A675AB75DB5731ACE93D6CC57B", + "token2PriceUsd": 0 }, "stakeable": false, "assets": [ { - "id": "65eace4368fc77acd92cd426", - "address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/JIMMY", - "amount": "0", - "symbol": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/JIMMY" + "id": "66159ec17deb69f60588c8a5", + "address": "ibc/74B554DD3FF10F5D60E30175ADFB47E59F77F7C57024A8104A4F78CDC2EAD125", + "amount": "3500000", + "symbol": "SAGA" }, { - "id": "65eace4368fc77acd92cd427", - "address": "untrn", - "amount": "0", - "symbol": "NTRN" + "id": "66159ec17deb69f60588c8a6", + "address": "ibc/4EAAAE537853E9C0DDF458F0710C37BB3DE7C6A675AB75DB5731ACE93D6CC57B", + "amount": "3500000", + "symbol": "stSAGA" } ], - "name": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/JIMMY - NTRN", + "name": "SAGA - stSAGA", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16563,12 +17886,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1w53hnnhjmuf9nhfu0qp4vumtf5hxaxz8qsaagwsckyvaa505w43s5kl06z", - "lpAddress": "neutron1mf7r9hnjzw5992f6yrdmz9k870rlr2w4twvpjyqplj66gzhtm8wqc7y6at", + "poolAddress": "neutron17yn0lykcaa3negnmjm7rvhf52r86jvxu7865wsc0rhyqnkd9rh2q367sgp", + "lpAddress": "neutron1pr8d3meeurwedzha64rwqgyq7pf69ts7zv3da3tlkplnclwa2ersletrkg", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.524337976863, + "poolLiquidity": 58767720, + "poolStakedLiquidityUsd": 8.922210643237577E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -16580,27 +17903,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/QUARKLE", + "token1Address": "factory/neutron1rd5mw7k8g3wuncluq9psdv0tryck75p7wtmvwqf5s8wt43498afs9snexm/test", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65ead11e68fc77acd92cd6f0", - "address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/QUARKLE", - "amount": "0", - "symbol": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/QUARKLE" + "id": "6616858486e23761bbb1e076", + "address": "factory/neutron1rd5mw7k8g3wuncluq9psdv0tryck75p7wtmvwqf5s8wt43498afs9snexm/test", + "amount": "4675580737", + "symbol": "factory/neutron1rd5mw7k8g3wuncluq9psdv0tryck75p7wtmvwqf5s8wt43498afs9snexm/test" }, { - "id": "65ead11e68fc77acd92cd6f1", + "id": "6616858486e23761bbb1e077", "address": "untrn", - "amount": "0", + "amount": "767677", "symbol": "NTRN" } ], - "name": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/QUARKLE - NTRN", + "name": "factory/neutron1rd5mw7k8g3wuncluq9psdv0tryck75p7wtmvwqf5s8wt43498afs9snexm/test - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16623,12 +17946,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1c6pz2nvqlrenc73ckqmq23c7e45stgdz274599qnhpqx2922wwmq7fev9m", - "lpAddress": "neutron1fanr3jzzxuap9n9cklgvmj9hucglufvudfmuut02xkj8wmvrp3gqga8w0y", + "poolAddress": "neutron1ysracucd89t6tt6kwmshv274sgtz0s8xasj8d2uug4ham932ywyspn0g94", + "lpAddress": "neutron1d9hphh9t608esrauz99w53q2ajttd7qzpwm78uqs5r7wwftcg7uqdt8uvs", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 33.3006282, + "poolLiquidity": 57214424372, + "poolStakedLiquidityUsd": 5.820320410836706E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -16640,27 +17963,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "token1PriceUsd": 14.34, - "token2Address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", - "token2PriceUsd": 11.54 + "token1Address": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/soild", + "token1PriceUsd": 0, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "65eed4b268fc77acd93134de", - "address": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "amount": "0", - "symbol": "stATOM" + "id": "6616909086e23761bbb1f04a", + "address": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/soild", + "amount": "792130195224855", + "symbol": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/soild" }, { - "id": "65eed4b268fc77acd93134df", - "address": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", - "amount": "0", - "symbol": "stTIA" + "id": "6616909086e23761bbb1f04b", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "amount": "4136724", + "symbol": "ATOM" } ], - "name": "stATOM - stTIA", + "name": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/soild - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16683,8 +18006,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1hpsu8794fm70phe7uuzjwfd98xgl9za53qm99wd8h3nyd3za90ts6haj35", - "lpAddress": "neutron16few609mlam2dxa298f990443gdeuz46ahvpw3s7xe7sfnt236aq795qwv", + "poolAddress": "neutron13k7nxx7c9jht5hax8hzdlps29hx54q20827jnsk5enxm93vqycrqu9gnkd", + "lpAddress": "neutron1a8yta6u662puew4p3unveeys2n8lt86u3vxtjt26kwef5rdu236qrdvrpa", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -16700,27 +18023,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", - "token1PriceUsd": 2.308060130394441, - "token2Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1scty2txkqyjmpdyfhgq7t7yn904alhklhy3v9y/test", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "65ef334768fc77acd931d20b", - "address": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", + "id": "6616c39b86e23761bbb223b9", + "address": "factory/neutron1scty2txkqyjmpdyfhgq7t7yn904alhklhy3v9y/test", "amount": "0", - "symbol": "KUJI" + "symbol": "factory/neutron1scty2txkqyjmpdyfhgq7t7yn904alhklhy3v9y/test" }, { - "id": "65ef334768fc77acd931d20c", - "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "id": "6616c39b86e23761bbb223ba", + "address": "untrn", "amount": "0", - "symbol": "ASTROPEPE" + "symbol": "NTRN" } ], - "name": "KUJI - ASTROPEPE", + "name": "factory/neutron1scty2txkqyjmpdyfhgq7t7yn904alhklhy3v9y/test - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16743,8 +18066,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1hyqzj0ackqp5mq8ns8ecvhcgzqnkwhrswyq2p47vxw5ylk8j9vvshsad7w", - "lpAddress": "neutron1ahagd45zvc287p4y6kzcmw5es99kukxrksylvh6u7l0mmr3jqnnsv2h0lz", + "poolAddress": "neutron1ssjr542taljadwgqaqh3qyrkaydl948pc0wfqszvwq2tw2hg92jqypa7nd", + "lpAddress": "neutron156z3f307egc7h366r50ahlslaf2y4ltmukzuwtye3dlfmtnz67gqgpc0wc", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -16760,27 +18083,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", - "token1PriceUsd": 0.487988236941567, - "token2Address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "token2PriceUsd": 0 + "token1Address": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/waste", + "token1PriceUsd": 0, + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "65ef336168fc77acd931d239", - "address": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", + "id": "661805e386e23761bbb368cc", + "address": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/waste", "amount": "0", - "symbol": "MNTA" + "symbol": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/waste" }, { - "id": "65ef336168fc77acd931d23a", - "address": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "id": "661805e386e23761bbb368cd", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "amount": "0", - "symbol": "ASTROPEPE" + "symbol": "ATOM" } ], - "name": "MNTA - ASTROPEPE", + "name": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/waste - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16803,8 +18126,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ek290csl254fp7agpdq450klmqxue6yq3xpesecenmffe5y2ruhqtwquj3", - "lpAddress": "neutron1stvlzna8e32czdlmeseaxp4xdk3szqf0arc8r6wgh8yf0g6ut7jsyc27gk", + "poolAddress": "neutron14gmluktxkucxahwa053x2wr6yvpy7d9s62salqvlwvnhqt6f4eysnvz4g0", + "lpAddress": "neutron1l55av06v92l72djscv0z7l2ewc3eu56e6h90yeaytzsgzq2yvyxsmqzyjl", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -16820,27 +18143,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", + "token1Address": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/toxic", "token1PriceUsd": 0, - "token2Address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "token2PriceUsd": 4082.92 + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "6602d35c05a65f3ca6f75b55", - "address": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", + "id": "66180af186e23761bbb37475", + "address": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/toxic", "amount": "0", - "symbol": "AUTISM" + "symbol": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/toxic" }, { - "id": "6602d35c05a65f3ca6f75b56", - "address": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "id": "66180af186e23761bbb37476", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "amount": "0", - "symbol": "wstETH" + "symbol": "ATOM" } ], - "name": "AUTISM - wstETH", + "name": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/toxic - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16863,8 +18186,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1lwgll06gfajzdrna9lhxfsdfr55rjnp5zmljts6aqw08yg5r075sq30g7z", - "lpAddress": "neutron1a8mrpv80edqmgxrxxp7fa4r9svy94zs20wdrcjt8uzp8un8ap3uqc4h0rk", + "poolAddress": "neutron1drxsk3mgg0wrld80encjpe86d33m2lzw3xljrhm3934h8p7a2y4s44sv96", + "lpAddress": "neutron15ta7nl0d22ahake48at7yd8w3vjrngmtjglpwjg6qtpgep632kdq2cs3gs", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -16880,27 +18203,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron169mg9zwc6dn2qzncnz4r3d6v52wuue08wxksvc/SEPPUKU", + "token1Address": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/abslt", "token1PriceUsd": 0, - "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2Address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "token2PriceUsd": 8.05 }, "stakeable": false, "assets": [ { - "id": "6604b61805a65f3ca6f9bbe3", - "address": "factory/neutron169mg9zwc6dn2qzncnz4r3d6v52wuue08wxksvc/SEPPUKU", + "id": "6618111d86e23761bbb37b99", + "address": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/abslt", "amount": "0", - "symbol": "SEPPUKU" + "symbol": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/abslt" }, { - "id": "6604b61805a65f3ca6f9bbe4", - "address": "untrn", + "id": "6618111d86e23761bbb37b9a", + "address": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "amount": "0", - "symbol": "NTRN" + "symbol": "ATOM" } ], - "name": "SEPPUKU - NTRN", + "name": "factory/neutron14yg2vvwt39fan0a5gc380e65ftydlxrpaax2l72ecxfy0l7xttts0szf73/abslt - ATOM", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16923,8 +18246,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1chkmeg2r7cylskrkdhklc4h45rv2nkj0f8d3wsd7ej2xqynj2zkqj4kqce", - "lpAddress": "neutron1vzfx5l700x0zaf3xykaemljhpe9fcmwvhzmxjk8jjgyu2str6spqp5v0qh", + "poolAddress": "neutron1tkalfh86n6hyluwcttqftetqlu0wanskqdlqxe4685qafl2ss4zq9ncz8n", + "lpAddress": "neutron1zpazdmv58gvrag2p07kg75qlf98yhxzerfavgzm427sulc5vc49s05xcgp", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -16940,27 +18263,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1lsjznk8uzm8g90majatgdultt7wtjccmlj9yle/testcoin", + "token1PriceUsd": 0, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6604e96b05a65f3ca6fa05ac", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", + "id": "661951e186e23761bbb4a498", + "address": "factory/neutron1lsjznk8uzm8g90majatgdultt7wtjccmlj9yle/testcoin", "amount": "0", - "symbol": "ASTRO" + "symbol": "factory/neutron1lsjznk8uzm8g90majatgdultt7wtjccmlj9yle/testcoin" }, { - "id": "6604e96b05a65f3ca6fa05ad", - "address": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "id": "661951e186e23761bbb4a499", + "address": "untrn", "amount": "0", - "symbol": "BAD" + "symbol": "NTRN" } ], - "name": "ASTRO - BAD", + "name": "factory/neutron1lsjznk8uzm8g90majatgdultt7wtjccmlj9yle/testcoin - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -16983,8 +18306,8 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron15u4gc7p3epcq5m97hrcpeqrd5a25zle6nvaqmqlwlefzsk6mv4qsvu2wll", - "lpAddress": "neutron1xenqqn0cm2eqaxtgexs08rhr7qhfsqey4ne623pvn5mu7wgq855qcv760c", + "poolAddress": "neutron1sxdz9tt20njwk46z6j9r27m2zh8c8ng4xzscvstazmmra8p9v9sqw3esr2", + "lpAddress": "neutron1hcxfhkckltqa7p2n0lfdlupnfaj7tmm2yj2qmxtsgx2760g24cmqky2lxx", "dayVolumeUsd": 0, "poolLiquidityUsd": 0, "poolLiquidity": 0, @@ -17000,27 +18323,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron172xq4cgcjcwfqyrpy2p6vwst54g9dxh78t44u5/PartialSetSecurityProp897Inu", + "token1Address": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6605edee05a65f3ca6fb2ecc", - "address": "factory/neutron172xq4cgcjcwfqyrpy2p6vwst54g9dxh78t44u5/PartialSetSecurityProp897Inu", + "id": "661952fd86e23761bbb4a61b", + "address": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", "amount": "0", - "symbol": "factory/neutron172xq4cgcjcwfqyrpy2p6vwst54g9dxh78t44u5/PartialSetSecurityProp897Inu" + "symbol": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava" }, { - "id": "6605edee05a65f3ca6fb2ecd", + "id": "661952fd86e23761bbb4a61c", "address": "untrn", "amount": "0", "symbol": "NTRN" } ], - "name": "factory/neutron172xq4cgcjcwfqyrpy2p6vwst54g9dxh78t44u5/PartialSetSecurityProp897Inu - NTRN", + "name": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -17043,12 +18366,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron16q5rg76zmdxr44f8m5n9lq620t6epja4hcmuzcf9wt5dv00qmseqpxjeqw", - "lpAddress": "neutron1gdslg8zdvn4xl0dck39vxyq0hx7ra9stelsw0pq4sftj9x2qck6qux0j00", + "poolAddress": "neutron1s65xp3qcn508ffavcqpzvphnqkp0z7dvl6pmp7xnn4qdlejftg4qdzw8uf", + "lpAddress": "neutron1pw9v7g0lrurlqe46lfrahf64fgegrvulv5rpnqj7uuslp9tkg8ys33s3fh", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.109900489176, + "poolLiquidity": 48917977, + "poolStakedLiquidityUsd": 2.246627843502118E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -17060,27 +18383,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1cxdsmzcqfwscnmuun3knlhshfvrhgge6qfk958/SkinnyDoKwon", + "token1Address": "ibc/CCD676A501897583884E68318499E079C47CD336B48E168BB6DAD84831B10E36", "token1PriceUsd": 0, "token2Address": "untrn", - "token2PriceUsd": 1.091 + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "6607749005a65f3ca6fcbe3d", - "address": "factory/neutron1cxdsmzcqfwscnmuun3knlhshfvrhgge6qfk958/SkinnyDoKwon", - "amount": "0", - "symbol": "factory/neutron1cxdsmzcqfwscnmuun3knlhshfvrhgge6qfk958/SkinnyDoKwon" + "id": "661953c986e23761bbb4a76a", + "address": "ibc/CCD676A501897583884E68318499E079C47CD336B48E168BB6DAD84831B10E36", + "amount": "14885905108", + "symbol": "ibc/CCD676A501897583884E68318499E079C47CD336B48E168BB6DAD84831B10E36" }, { - "id": "6607749005a65f3ca6fcbe3e", + "id": "661953c986e23761bbb4a76b", "address": "untrn", - "amount": "0", + "amount": "160904", "symbol": "NTRN" } ], - "name": "factory/neutron1cxdsmzcqfwscnmuun3knlhshfvrhgge6qfk958/SkinnyDoKwon - NTRN", + "name": "ibc/CCD676A501897583884E68318499E079C47CD336B48E168BB6DAD84831B10E36 - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -17103,12 +18426,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1ma7fxmengnf0q5xtehf3vujm5swkf32sf7nl3j9dse85j5m26f5qwa955d", - "lpAddress": "neutron16zkd55efehv4wyywndyx099pj6vff2pge57ep96hy4vzs04rkk4sfv903j", + "poolAddress": "neutron1kmkukaad9v0vc60xacgygtz9saukyhjutr60zj7weyjlnuf8eymq3tdqny", + "lpAddress": "neutron16csyhc6tt5cyju4gqnttf55jkxzye4qwyrmq4x59d2axu8t5wk9s3s3yej", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 6964.951223698535, + "poolLiquidity": 27854616996, + "poolStakedLiquidityUsd": 2.500465622692691E-7, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -17120,27 +18443,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", - "token1PriceUsd": 0, - "token2Address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "token1PriceUsd": 0.125124, + "token2Address": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "token2PriceUsd": 0.1248783456301292 }, "stakeable": false, "assets": [ { - "id": "660774da05a65f3ca6fcbe80", - "address": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI", - "amount": "0", - "symbol": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI" + "id": "66199f796f8ac38ae02db867", + "address": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "amount": "27832195357", + "symbol": "ASTRO" }, { - "id": "660774da05a65f3ca6fcbe81", - "address": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", - "amount": "0", - "symbol": "BADDOG" + "id": "66199f796f8ac38ae02db868", + "address": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "amount": "27886945445", + "symbol": "xASTRO" } ], - "name": "factory/neutron19tynwawkm2rgefqxy7weupu4hdamyhg890zep2/TAKUMI - BADDOG", + "name": "ASTRO - xASTRO", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -17163,12 +18486,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1whh47q5wmr742spesk8nnxntwc7ar0kcnmmlf72jgn2ywu40z3fqkyg2ug", - "lpAddress": "neutron1y434kyzgtqhzsdun894vnz9wtfasskf225wt7kheh0guhf5s2ulsv8vw3r", + "poolAddress": "neutron19fun6vlshh7cq36qf9h89wz6gvaaam875y7r2lmc03vkt4fejz4s9qkyp5", + "lpAddress": "neutron1c2ge442ngc3f3mvj2aes5sd38tzu7dn0sq2fdkzrf7hvt5uwmzns7um3qr", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 10600.20372240903, + "poolLiquidity": 2524662233661, + "poolStakedLiquidityUsd": 4.198662040934594E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -17180,27 +18503,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "untrn", - "token1PriceUsd": 1.091, - "token2Address": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON", + "token1PriceUsd": 0.000006416759320725111, + "token2Address": "untrn", + "token2PriceUsd": 0.683019 }, "stakeable": false, "assets": [ { - "id": "66085bb705a65f3ca6fdbce9", - "address": "untrn", - "amount": "0", - "symbol": "NTRN" + "id": "661b27706f8ac38ae030c313", + "address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON", + "amount": "825496389905175", + "symbol": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON" }, { - "id": "66085bb705a65f3ca6fdbcea", - "address": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP", - "amount": "0", - "symbol": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP" + "id": "661b27706f8ac38ae030c314", + "address": "untrn", + "amount": "7764340477", + "symbol": "NTRN" } ], - "name": "NTRN - factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/SCRAP", + "name": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON - NTRN", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -17223,12 +18546,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron1r49ewt27n3lr6zsxv3cwghwxe947f5n4fsmtwlc608gqh047c7vshm8gyd", - "lpAddress": "neutron1thymjagy4lefrs4gmh22l8x85lmmdjalxjwmy2guheyfwj7gk4rqd6e73e", + "poolAddress": "neutron148uy7vm2cpg5mmf3cn3s24pmzpx2ua9q49gp5nwlh5c9nwq92yyslkdyhp", + "lpAddress": "neutron1ksnrg9asej67ewz5rtwlkjtzndxhpcqspv8q0wagzvpcqdyukqcqq9fswm", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 9.040392485139645E-7, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 9.040392485139645E-10, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -17240,27 +18563,27 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", - "token1PriceUsd": 4.282350235826524e-05, + "token1Address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON", + "token1PriceUsd": 0.000006416759320725111, "token2Address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "token2PriceUsd": 0.2622099128699426 + "token2PriceUsd": 0.0292986375770778 }, "stakeable": false, "assets": [ { - "id": "660c8fdf05a65f3ca601a959", - "address": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", - "amount": "0", - "symbol": "YAWP" + "id": "661b28316f8ac38ae030c4ab", + "address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON", + "amount": "58700", + "symbol": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON" }, { - "id": "660c8fdf05a65f3ca601a95a", + "id": "661b28316f8ac38ae030c4ac", "address": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", - "amount": "0", + "amount": "18", "symbol": "PROP16" } ], - "name": "YAWP - PROP16", + "name": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON - PROP16", "isNew": false, "isIlliquid": true, "isDeregistered": false, @@ -17283,12 +18606,12 @@ }, { "chainId": "neutron-1", - "poolAddress": "neutron12gzdev6htsfvfu9hp220w6zjmf4gruwas4hpadtekpmm666xvpcs4fqucl", - "lpAddress": "neutron1ldks9pf2kgg4tnv3ptdmsqgzwe3uc4c8vgy49s9x3e9c7qmj5nqsumf0u6", + "poolAddress": "neutron18d3p0t26zceynzql69y6ggcnw8ezy0ngw6fpc3tpshqd5gcxannst5f6t4", + "lpAddress": "neutron16t56amyk68uh4zcyg7vl2xc3pfyu9cc6z9v9t6v5ehpl3syz3ghqgmcyey", "dayVolumeUsd": 0, - "poolLiquidityUsd": 0, - "poolLiquidity": 0, - "poolStakedLiquidityUsd": 1, + "poolLiquidityUsd": 0.000001295926290325311, + "poolLiquidity": 1000, + "poolStakedLiquidityUsd": 1.295926290325311E-9, "poolStakedLiquidity": 1, "config": { "migrateToAddress": null, @@ -17300,28 +18623,28 @@ "poolType": "xyk", "isBlocked": false, "prices": { - "token1Address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "token1PriceUsd": 0.159201, - "token2Address": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", - "token2PriceUsd": 0 + "token1Address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "token1PriceUsd": 0.0558893844270055, + "token2Address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON", + "token2PriceUsd": 0.000006416759320725111 }, "stakeable": false, "assets": [ { - "id": "66100c8505a65f3ca6057150", - "address": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "amount": "0", - "symbol": "ASTRO" + "id": "661b287d6f8ac38ae030c58e", + "address": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "amount": "15", + "symbol": "NEWT" }, { - "id": "66100c8505a65f3ca6057151", - "address": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", - "amount": "0", - "symbol": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro" + "id": "661b287d6f8ac38ae030c58f", + "address": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON", + "amount": "71311", + "symbol": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON" } ], - "name": "ASTRO - factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", - "isNew": true, + "name": "NEWT - factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/NELSON", + "isNew": false, "isIlliquid": true, "isDeregistered": false, "astroRewards": { diff --git a/schema/osmosis_pools.json b/schema/osmosis_pools.json index 7c0beaeb..150689f2 100644 --- a/schema/osmosis_pools.json +++ b/schema/osmosis_pools.json @@ -9,27 +9,27 @@ }, "total_shares": { "denom": "gamm/pool/833", - "amount": "16054760413110806916176" + "amount": "16055813192790122181011" }, - "liquidityUsd": 31125146.718228064, - "liquidity24hUsdChange": -4.958206996849115, - "volume24hUsd": 95001.6155302242, - "volume24hUsdChange": -12.035297790884801, - "volume7dUsd": 806078.9953861951, + "liquidityUsd": 21927116.739357464, + "liquidity24hUsdChange": -3.3725014835708977, + "volume24hUsd": 57543.79007907104, + "volume24hUsdChange": 44.104447804119374, + "volume7dUsd": 2460728.3354548425, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", - "amount": "11145892409442" + "amount": "11207650343235" }, { "denom": "uosmo", - "amount": "10585200939936" + "amount": "10515113171092" } ], "scaling_factors": [ "100000", - "122683" + "123008" ], "scaling_factor_controller": "" }, @@ -43,26 +43,26 @@ }, "total_shares": { "denom": "gamm/pool/1", - "amount": "54872747061894546563398937" + "amount": "54511816917595455813792127" }, - "liquidityUsd": 16074609.880226884, - "liquidity24hUsdChange": -4.607227729768628, - "volume24hUsd": 285474.2137736363, - "volume24hUsdChange": -52.08904005976538, - "volume7dUsd": 3435255.4197503133, + "liquidityUsd": 11565519.026174696, + "liquidity24hUsdChange": -2.3294280385466326, + "volume24hUsd": 371341.25285635656, + "volume24hUsdChange": 24.706636280921458, + "volume7dUsd": 9816052.589435576, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "742449389963" + "amount": "717543372465" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "6264023007406" + "amount": "6409921213272" }, "weight": "536870912000000" } @@ -73,210 +73,210 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1z0j6zm4ndmwl27kekla8un73nfu8rh5dhfg2957yr0kg3uumd9rs9sv5kq", "id": "1283", - "current_tick_liquidity": "74026962388940.403395020778771406", + "current_tick_liquidity": "75577646387851.237426490734216386", "token0": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "token0Amount": "71872345934", + "token0Amount": "104500269137", "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "1050715982074", - "current_sqrt_price": "1.151475625435160742057410971826469583", - "current_tick": "325896", + "token1Amount": "995832134177", + "current_sqrt_price": "1.150734916409522801077373591735301903", + "current_tick": "324190", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 12406688.133294916, - "liquidity24hUsdChange": -3.2373260893701814, - "volume24hUsd": 478767.7758682728, - "volume24hUsdChange": -82.84529600300769, - "volume7dUsd": 6047001.645519347, + "liquidityUsd": 9139287.06924835, + "liquidity24hUsdChange": -1.1696304415945766, + "volume24hUsd": 226371.71342379763, + "volume24hUsdChange": -14.347101772089838, + "volume7dUsd": 7809672.693540142, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1cr0fq7pfhpw08as5dsthzvjnlfdtvsq7kw98lwuqxjzv5jm3j5mqf9k6as", "id": "1135", - "current_tick_liquidity": "5736069022640.793076718631354960", + "current_tick_liquidity": "14156482638378.248675327790329910", "token0": "uosmo", - "token0Amount": "3400779691254", + "token0Amount": "3498258618972", "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "404873239047", - "current_sqrt_price": "0.344266949844328686965242576028743159", - "current_tick": "-8814803", + "token1Amount": "390500633558", + "current_sqrt_price": "0.334783733012176756338572341320808172", + "current_tick": "-8879199", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 8750925.521489859, - "liquidity24hUsdChange": -4.669190315883339, - "volume24hUsd": 372468.6224275234, - "volume24hUsdChange": 8.900946280206497, - "volume7dUsd": 2831867.9770935397, + "liquidityUsd": 6303069.194908824, + "liquidity24hUsdChange": -2.3326594693909297, + "volume24hUsd": 147132.57770124383, + "volume24hUsdChange": -15.248280391111368, + "volume7dUsd": 6879875.079248512, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1n7cmdy4j3n7x24g547c6qd5crtdawephph3mq9a0dw8eh9fadszqu0uwvn", "id": "1136", - "current_tick_liquidity": "85619040876492.116031934086884563", + "current_tick_liquidity": "5510154659758.578167272109232674", "token0": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "token0Amount": "222914297969", + "token0Amount": "219248953038", "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "152021542695", - "current_sqrt_price": "1.152886439715046219209387203456870600", - "current_tick": "329147", + "token1Amount": "148349002443", + "current_sqrt_price": "1.151328476757272480120693394282136932", + "current_tick": "325557", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.003000000000000000", - "liquidityUsd": 4847690.825251786, - "liquidity24hUsdChange": -4.263754250392174, - "volume24hUsd": 5743.378774620391, - "volume24hUsdChange": -94.88868527488769, - "volume7dUsd": 161418.10557590425, + "liquidityUsd": 3535177.1638103593, + "liquidity24hUsdChange": -1.2221717677603987, + "volume24hUsd": 2693.7091514117365, + "volume24hUsdChange": -26.727473159799693, + "volume7dUsd": 527168.867035857, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1m263qln83ultreafq7get8690ymukh0sju8jt7w3ae8akvt6ve6sq9ua5w", "id": "1335", - "current_tick_liquidity": "40161132929104.449717536101912299", + "current_tick_liquidity": "8313424713286.054094688315571928", "token0": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "token0Amount": "141532794042", + "token0Amount": "152948282651", "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token1Amount": "213374024569", - "current_sqrt_price": "1.006003582353211693842282735753271641", - "current_tick": "12043", + "token1Amount": "194097485976", + "current_sqrt_price": "1.008929450405821087716156194028385543", + "current_tick": "17938", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 4137170.899888058, - "liquidity24hUsdChange": -6.860482477372056, - "volume24hUsd": 282616.28011703095, - "volume24hUsdChange": 630.2610065386733, - "volume7dUsd": 1462395.2914679097, + "liquidityUsd": 3338830.2360481564, + "liquidity24hUsdChange": -11.879911226919479, + "volume24hUsd": 119823.10819525486, + "volume24hUsdChange": 5.779720786766812, + "volume7dUsd": 2174372.8067104467, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1r0ut8fz8w6nue4nr0c4e8jykgtukcpccydn23sfq0fnas05007nsflmxrw", - "id": "1093", - "current_tick_liquidity": "2341569839835.795351730861577836", - "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "token0Amount": "491237159683", - "token1": "uosmo", - "token1Amount": "1369394110266", - "current_sqrt_price": "1.798336898586335474568951221735582725", - "current_tick": "2234015", + "address": "osmo1ulh7ed43qspamwhrs0stcj0fgx55ukczz58eqrc9xqa4zzwgk9csmssewn", + "id": "1428", + "current_tick_liquidity": "50643771890428.223503959356131078", + "token0": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", + "token0Amount": "58780293339", + "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "token1Amount": "255082599451", + "current_sqrt_price": "0.998380573216134026668668039041299188", + "current_tick": "-32363", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 3795995.3128606225, - "liquidity24hUsdChange": -11.918573799297526, - "volume24hUsd": 1083031.4835288867, - "volume24hUsdChange": -5.81702154666662, - "volume7dUsd": 7023368.44113194, + "liquidityUsd": 2994557.69873981, + "liquidity24hUsdChange": -12.109872982220512, + "volume24hUsd": 231682.45120953763, + "volume24hUsdChange": 110.83056468239346, + "volume7dUsd": 3167450.5324470853, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ulh7ed43qspamwhrs0stcj0fgx55ukczz58eqrc9xqa4zzwgk9csmssewn", - "id": "1428", - "current_tick_liquidity": "179244210772528.088352108979897911", - "token0": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", - "token0Amount": "71169210656", - "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token1Amount": "248860271675", - "current_sqrt_price": "0.995236991194138427713912101179016406", - "current_tick": "-95034", + "address": "osmo1r0ut8fz8w6nue4nr0c4e8jykgtukcpccydn23sfq0fnas05007nsflmxrw", + "id": "1093", + "current_tick_liquidity": "2177355405249.808185094388026141", + "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "token0Amount": "352810146598", + "token1": "uosmo", + "token1Amount": "1844530648170", + "current_sqrt_price": "2.039192641474365050452223650882672152", + "current_tick": "3158306", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 3711331.5986496247, - "liquidity24hUsdChange": -5.664578868666852, - "volume24hUsd": 897146.8108228847, - "volume24hUsdChange": 29.614316765116232, - "volume7dUsd": 2605006.297142312, + "liquidityUsd": 2988249.044294988, + "liquidity24hUsdChange": -3.2280038282683137, + "volume24hUsd": 892352.1002658047, + "volume24hUsdChange": -11.607201882590067, + "volume7dUsd": 14239320.405436197, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo197h70g2928254ur22ft3q8ezal4xw329kjs587fxreqnvuqpec2qwqeefz", "id": "1134", - "current_tick_liquidity": "4013656662118905251.794117711241581094", + "current_tick_liquidity": "10620353789443074668.010808083909281305", "token0": "uosmo", - "token0Amount": "1300254986735", + "token0Amount": "1409576080165", "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "458820185166828370000", - "current_sqrt_price": "19093.380655750145755987575011755527598790", - "current_tick": "74645571", + "token1Amount": "415904085546385200000", + "current_sqrt_price": "17366.722999414674046217959657293709091448", + "current_tick": "74016030", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 3281853.2864011303, - "liquidity24hUsdChange": -4.044264166373149, - "volume24hUsd": 291728.83011158946, - "volume24hUsdChange": -44.46174789107661, - "volume7dUsd": 3946797.161031958, + "liquidityUsd": 2517047.8381758416, + "liquidity24hUsdChange": -3.0162494263916977, + "volume24hUsd": 300920.58325274417, + "volume24hUsdChange": -3.800390036396158, + "volume7dUsd": 7025016.550083881, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1n5dark26a7zpt2l4hzh22mjea5fgjyqjuzv7jwz06tke3x7jekws7kxylg", + "id": "1422", + "current_tick_liquidity": "4438411909601.484648806068980160", + "token0": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "token0Amount": "3472143626", + "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token1Amount": "551879299", + "current_sqrt_price": "0.997509848643319396681338867119980065", + "current_tick": "-49742", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 2474159.7336457903, + "liquidity24hUsdChange": -3.6790562678075003, + "volume24hUsd": 430048.1026566537, + "volume24hUsdChange": 23.34614026153124, + "volume7dUsd": 7744570.989097701, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1gj26haupvyh6qun4fmc5xnr0tsrg9fwfvycs567u6d5qmezue22sza64gx", "id": "1251", - "current_tick_liquidity": "2825864640625.617186256341566019", + "current_tick_liquidity": "1747908134175.821719047304016340", "token0": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token0Amount": "264299094207", + "token0Amount": "260555243819", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "226572789628", - "current_sqrt_price": "3.295314137842972821365364926230312456", - "current_tick": "9085909", + "token1Amount": "174387787131", + "current_sqrt_price": "2.839134036907384364602252801797662026", + "current_tick": "7060682", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 3087998.612123028, - "liquidity24hUsdChange": -4.565482614466684, - "volume24hUsd": 1374358.764784233, - "volume24hUsdChange": -8.077716496098875, - "volume7dUsd": 11325205.421765035, + "liquidityUsd": 2274023.262683748, + "liquidity24hUsdChange": -0.6316634219329178, + "volume24hUsd": 1247810.7800467212, + "volume24hUsdChange": 19.237772380948016, + "volume7dUsd": 22216143.030374594, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo17xa9lemlz7fapt77fp7d86kg52z77hz7qhs4sf7j4s2l6u3jsm6q90qa3z", "id": "1314", - "current_tick_liquidity": "8321666328847.363772485169422809", + "current_tick_liquidity": "8864142093588.493650483299782474", "token0": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "token0Amount": "8624809912073", + "token0Amount": "8719907386772", "token1": "uosmo", - "token1Amount": "553117531345", - "current_sqrt_price": "0.446445865609625699345361960286609115", - "current_tick": "-8006861", + "token1Amount": "639583972774", + "current_sqrt_price": "0.448667952344939923827681407663163805", + "current_tick": "-7986971", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 2915404.484580539, - "liquidity24hUsdChange": -4.01155879962463, - "volume24hUsd": 54852.190411982374, - "volume24hUsdChange": -74.4977945842179, - "volume7dUsd": 771216.1186648204, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1n5dark26a7zpt2l4hzh22mjea5fgjyqjuzv7jwz06tke3x7jekws7kxylg", - "id": "1422", - "current_tick_liquidity": "3161019971577.000433215655672058", - "token0": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "token0Amount": "2853214322", - "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token1Amount": "1161961453", - "current_sqrt_price": "0.998295533793116221739420465020869091", - "current_tick": "-34061", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 2778676.05837296, - "liquidity24hUsdChange": -3.518410066896349, - "volume24hUsd": 925427.3096358923, - "volume24hUsdChange": 6.770367921568477, - "volume7dUsd": 4071860.487081894, + "liquidityUsd": 2160996.0707368236, + "liquidity24hUsdChange": -3.446256776753203, + "volume24hUsd": 7359.306738030352, + "volume24hUsdChange": -45.644864661415106, + "volume7dUsd": 291824.84233220655, "taker_fee": "0.001000000000000000" }, { @@ -289,26 +289,26 @@ }, "total_shares": { "denom": "gamm/pool/812", - "amount": "62296504724359467718283" + "amount": "62264100081808934856296" }, - "liquidityUsd": 2664196.015525351, - "liquidity24hUsdChange": -6.008118978763599, - "volume24hUsd": 190471.10165464014, - "volume24hUsdChange": -60.44432285739711, - "volume7dUsd": 2331499.290585847, + "liquidityUsd": 1984659.9692871915, + "liquidity24hUsdChange": -1.904201492926112, + "volume24hUsd": 264882.7506385139, + "volume24hUsdChange": 5.920433143431934, + "volume7dUsd": 4112556.5977439596, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "amount": "893148617380" + "amount": "846825196571" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "1038675309778" + "amount": "1099761670376" }, "weight": "5368709120" } @@ -325,26 +325,26 @@ }, "total_shares": { "denom": "gamm/pool/712", - "amount": "93435341520840953822135" + "amount": "92701412227918384863595" }, - "liquidityUsd": 2498077.8696639207, - "liquidity24hUsdChange": -5.5161771636711805, - "volume24hUsd": 40289.80688993677, - "volume24hUsdChange": -57.24018225780196, - "volume7dUsd": 652247.6787613506, + "liquidityUsd": 1964587.5425554968, + "liquidity24hUsdChange": -3.5029244131263635, + "volume24hUsd": 106596.84814156033, + "volume24hUsdChange": -42.82131178406242, + "volume7dUsd": 3986984.283762712, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "1808198857" + "amount": "1597237736" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "973270035813" + "amount": "1089284251344" }, "weight": "536870912000000" } @@ -355,21 +355,21 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo13l9nyqrn2q5fce89hp4jymhsrmn6yh6m4xsjxp4p6pakp82z76nqv6vk7f", "id": "1090", - "current_tick_liquidity": "82124496119.279963809914557572", + "current_tick_liquidity": "45169651576.611025944266742775", "token0": "uosmo", - "token0Amount": "956686182220", + "token0Amount": "1051736956172", "token1": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "token1Amount": "1663253844", - "current_sqrt_price": "0.043085949703305782864112797197208748", - "current_tick": "-26143601", + "token1Amount": "1454431594", + "current_sqrt_price": "0.038340234983060660636700325684328046", + "current_tick": "-26530027", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 2376657.1636683103, - "liquidity24hUsdChange": -2.599341887312279, - "volume24hUsd": 119841.001456978, - "volume24hUsdChange": -40.77362222850458, - "volume7dUsd": 964833.0202515114, + "liquidityUsd": 1842935.5608375543, + "liquidity24hUsdChange": -3.5383623992375575, + "volume24hUsd": 255563.328584785, + "volume24hUsdChange": -27.792395906050952, + "volume7dUsd": 3840937.1235502004, "taker_fee": "0.001000000000000000" }, { @@ -382,26 +382,26 @@ }, "total_shares": { "denom": "gamm/pool/704", - "amount": "54474652553005504069593" + "amount": "54521455962793593278555" }, - "liquidityUsd": 2332815.1061704573, - "liquidity24hUsdChange": -7.871637902338685, - "volume24hUsd": 74549.2942115843, - "volume24hUsdChange": -18.094489601222723, - "volume7dUsd": 754658.7686279343, + "liquidityUsd": 1809041.8439862528, + "liquidity24hUsdChange": -3.1185337494555094, + "volume24hUsd": 96320.41308013546, + "volume24hUsdChange": -13.817306201875223, + "volume7dUsd": 3218795.8294079606, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "331538952769943600000" + "amount": "301983867767850260000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "908857771550" + "amount": "1002908137274" }, "weight": "536870912000000" } @@ -412,21 +412,42 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1emr5hycqzrlrd9cdm9j3jxs66detx2j69mde2xxxsj8xhnl3dvmsgpudk6", "id": "1248", - "current_tick_liquidity": "52141326756183.539595884977892830", + "current_tick_liquidity": "4212997644709.743084557176951355", "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token0Amount": "141547064206", + "token0Amount": "82967725971", "token1": "uosmo", - "token1Amount": "293369458426", - "current_sqrt_price": "3.009719109064897419081785910352603682", - "current_tick": "8058409", + "token1Amount": "1045307380530", + "current_sqrt_price": "3.252112178367741597854938072284126967", + "current_tick": "9057623", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 2021981.1172014198, - "liquidity24hUsdChange": -6.463962508417851, - "volume24hUsd": 1494391.0773894035, - "volume24hUsdChange": 10.286952759661322, - "volume7dUsd": 10290640.792025646, + "liquidityUsd": 1735256.6702465983, + "liquidity24hUsdChange": -5.5227680904048375, + "volume24hUsd": 2042634.3287906884, + "volume24hUsdChange": -35.49343902300221, + "volume7dUsd": 39329428.80363094, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo12f8hx2y5qghfyy6dkqwe70kyptd966x9lf7cw272cap3gcggst9q654m5p", + "id": "1220", + "current_tick_liquidity": "3140723473861474.737838950920492471", + "token0": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token0Amount": "213982246854", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "1275042411718", + "current_sqrt_price": "1.000326874568668980524308619444932081", + "current_tick": "653", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 1490640.0202556239, + "liquidity24hUsdChange": 1.044981170093599, + "volume24hUsd": 723988.9635018797, + "volume24hUsdChange": -10.410046192060332, + "volume7dUsd": 13892947.557048725, "taker_fee": "0.001000000000000000" }, { @@ -439,26 +460,26 @@ }, "total_shares": { "denom": "gamm/pool/803", - "amount": "79479449827643267934300" + "amount": "78171097485125179016966" }, - "liquidityUsd": 2019393.3520596442, - "liquidity24hUsdChange": -4.430598317633856, - "volume24hUsd": 2006.788105031823, - "volume24hUsdChange": -82.23683837899802, - "volume7dUsd": 36699.81992197765, + "liquidityUsd": 1478440.22353706, + "liquidity24hUsdChange": -1.173586384801258, + "volume24hUsd": 10865.659427669161, + "volume24hUsdChange": 2729.937568528955, + "volume7dUsd": 344158.87310974393, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "93260007784" + "amount": "91766950904" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "70300874210" + "amount": "69247772777" }, "weight": "536870912000000" } @@ -467,138 +488,159 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1057", + "id": "678", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1057", - "amount": "31852238372004165410587" + "denom": "gamm/pool/678", + "amount": "118637040732324758450824" }, - "liquidityUsd": 1999308.2217859123, - "liquidity24hUsdChange": -12.221062184307534, - "volume24hUsd": 559243.7530518697, - "volume24hUsdChange": -42.814920123697725, - "volume7dUsd": 6497989.837961718, + "liquidityUsd": 1320906.9644089611, + "liquidity24hUsdChange": -1.6667027891521013, + "volume24hUsd": 408396.19996178476, + "volume24hUsdChange": -38.91088993592354, + "volume7dUsd": 19034712.332791153, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "amount": "87570768864304690000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "660384351170" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "778999142471" + "amount": "732025285829" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hueh0egxjt6upzn6d80d3653k5vwjjluqz7lm8ffu4t84488p49s6vquyd", - "id": "1263", - "current_tick_liquidity": "287310664595769.605354176407883301", - "token0": "uosmo", - "token0Amount": "1294289707921", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "201911656370", - "current_sqrt_price": "1.133523582266935458167864872109121465", - "current_tick": "284875", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 1862392.7786533963, - "liquidity24hUsdChange": -3.3269493965710564, - "volume24hUsd": 5684227.165130415, - "volume24hUsdChange": 8.059819028467196, - "volume7dUsd": 38448811.95729954, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo15vn4ear9yfsxdj67hltk8wkgefdal8fztqht8eqeaglzqp68e2jszgcv2d", "id": "1133", - "current_tick_liquidity": "2617044994818.569456401764532008", + "current_tick_liquidity": "2363031025310.879427667122150106", "token0": "uosmo", - "token0Amount": "831324131058", + "token0Amount": "935855202703", "token1": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "token1Amount": "640897625463", - "current_sqrt_price": "1.132864974324940932022518393979369452", - "current_tick": "283383", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1707566.6717634876, - "liquidity24hUsdChange": -2.8482584335222407, - "volume24hUsd": 563573.0435895405, - "volume24hUsdChange": -23.64618763391095, - "volume7dUsd": 5367259.692975632, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1cf99g299n5td4fncjentcjrhyzalvrr6fa4ts3amtvddmpydd9fqgypct8", - "id": "1319", - "current_tick_liquidity": "764048333198435335.965417119843307127", - "token0": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "token0Amount": "43307097401360494000000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "199883619267", - "current_sqrt_price": "0.000005773660485510302416789901542245", - "current_tick": "-96666485", + "token1Amount": "471141641717", + "current_sqrt_price": "0.949981213945327839092453790427467272", + "current_tick": "-975357", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1641150.6069241625, - "liquidity24hUsdChange": -3.4338922187056466, - "volume24hUsd": 1581057.8283930027, - "volume24hUsdChange": -17.806259919316208, - "volume7dUsd": 13183900.189226301, + "liquidityUsd": 1315584.4991828047, + "liquidity24hUsdChange": -2.654634587124573, + "volume24hUsd": 621680.0843422642, + "volume24hUsdChange": -15.14479076489977, + "volume7dUsd": 21045815.023908544, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "678", + "id": "1057", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/678", - "amount": "120145510657202233340350" + "denom": "gamm/pool/1057", + "amount": "32401940525693461192223" }, - "liquidityUsd": 1571745.1379750422, - "liquidity24hUsdChange": -2.544805842068109, - "volume24hUsd": 588386.429941886, - "volume24hUsdChange": -0.9458640631344835, - "volume7dUsd": 4616097.976408247, + "liquidityUsd": 1276691.5106599126, + "liquidity24hUsdChange": -6.0986057413941515, + "volume24hUsd": 147061.88036085726, + "volume24hUsdChange": -54.37541970141654, + "volume7dUsd": 8818506.830591606, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "786825810542" + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "amount": "101107849415570210000" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "611739888268" + "amount": "707447746129" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1qrnsjncq2kul2j43y6m2raz2yyvujz7373nl9lp08875kgell74sx4fz0p", + "id": "1301", + "current_tick_liquidity": "184234592024.732445742148737330", + "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "token0Amount": "329475860781", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "24693899281", + "current_sqrt_price": "1.939182610408930916398129974080630495", + "current_tick": "2760429", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1261047.1678852371, + "liquidity24hUsdChange": -6.167477953346276, + "volume24hUsd": 213593.31021103146, + "volume24hUsdChange": -15.21692373728086, + "volume7dUsd": 2391050.593414618, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1hueh0egxjt6upzn6d80d3653k5vwjjluqz7lm8ffu4t84488p49s6vquyd", + "id": "1263", + "current_tick_liquidity": "13817109689889.594360608903600697", + "token0": "uosmo", + "token0Amount": "1281730610751", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "82032993601", + "current_sqrt_price": "0.948979757532895692069178478431404452", + "current_tick": "-994375", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1238649.416481135, + "liquidity24hUsdChange": -3.15665142947852, + "volume24hUsd": 4530227.257091978, + "volume24hUsdChange": 2.556829226726741, + "volume7dUsd": 72049942.10894051, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1cf99g299n5td4fncjentcjrhyzalvrr6fa4ts3amtvddmpydd9fqgypct8", + "id": "1319", + "current_tick_liquidity": "189258527868807538.080547833883195938", + "token0": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "token0Amount": "45468931204020140000000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "65651659487", + "current_sqrt_price": "0.000005059721388753845110259333418429", + "current_tick": "-97439922", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1228253.3605769614, + "liquidity24hUsdChange": 1.0690904366600675, + "volume24hUsd": 1568086.9653213406, + "volume24hUsdChange": 48.746584352171155, + "volume7dUsd": 12990869.338739896, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -610,26 +652,26 @@ }, "total_shares": { "denom": "gamm/pool/681", - "amount": "8046338463741153208945123" + "amount": "8005827206930840849872806" }, - "liquidityUsd": 1552699.5852015018, - "liquidity24hUsdChange": -5.7800918910394214, - "volume24hUsd": 339187.4127068054, - "volume24hUsdChange": 94.70112826129434, - "volume7dUsd": 1847410.741099475, + "liquidityUsd": 1132485.1658963303, + "liquidity24hUsdChange": -3.7571157592984377, + "volume24hUsd": 147606.84071102855, + "volume24hUsdChange": -40.51327983394265, + "volume7dUsd": 4941226.21614486, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "301870585746363330000000" + "amount": "291710595719562960000000" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "605059557151" + "amount": "627539285292" }, "weight": "5368709120" } @@ -646,53 +688,32 @@ }, "total_shares": { "denom": "gamm/pool/796", - "amount": "100051300066831899776" + "amount": "100051516142357645933" }, - "liquidityUsd": 1512632.6555766119, - "liquidity24hUsdChange": -4.897687031654419, - "volume24hUsd": 98900.05060328754, - "volume24hUsdChange": 82.17487777477865, - "volume7dUsd": 570989.8239683824, + "liquidityUsd": 1124219.8119247742, + "liquidity24hUsdChange": -3.2473139711087464, + "volume24hUsd": 12845.774102229778, + "volume24hUsdChange": -74.32993400019711, + "volume7dUsd": 1213183.0434764808, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", - "amount": "34684029985390050000000000" + "amount": "32892720134442400000000000" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "589453941925" + "amount": "622959239142" }, "weight": "5368709120" } ], "total_weight": "10737418240" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12f8hx2y5qghfyy6dkqwe70kyptd966x9lf7cw272cap3gcggst9q654m5p", - "id": "1220", - "current_tick_liquidity": "15823820382046210.668942352223998766", - "token0": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token0Amount": "950928324551", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "545982503826", - "current_sqrt_price": "0.999920105399884277424705434119368009", - "current_tick": "-1598", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 1494914.892724658, - "liquidity24hUsdChange": -3.047373528043881, - "volume24hUsd": 1638446.4771518689, - "volume24hUsdChange": 88.66447311549749, - "volume7dUsd": 6904415.294898469, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", "pool_id": "1616", @@ -700,60 +721,75 @@ "tokens": [ { "denom": "uosmo", - "amount": "574936867296" + "amount": "610939711574" }, { "denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "amount": "500527103330" + "amount": "472053044218" } ], - "liquidityUsd": 1483869.0334973894, - "liquidity24hUsdChange": -6.02017970316022, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 1104422.2613034714, + "liquidity24hUsdChange": -1.9387316821610834, + "volume24hUsd": 50306.944923852345, + "volume24hUsdChange": 11.030647727828757, + "volume7dUsd": 714773.7986952732, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1qrnsjncq2kul2j43y6m2raz2yyvujz7373nl9lp08875kgell74sx4fz0p", - "id": "1301", - "current_tick_liquidity": "582213684852.421175654073204698", - "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "token0Amount": "345714161107", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "41392563807", - "current_sqrt_price": "2.036939749351792694481815239354819431", - "current_tick": "3149123", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1476270.5980844742, - "liquidity24hUsdChange": -6.931600395861194, - "volume24hUsd": 397777.62141204457, - "volume24hUsdChange": -26.358646803723833, - "volume7dUsd": 2235343.9219670477, - "taker_fee": "0.001000000000000000" + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1691", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1691", + "amount": "2687207460674045900000" + }, + "liquidityUsd": 1093587.529863125, + "liquidity24hUsdChange": -6.49718803262809, + "volume24hUsd": 53228.31754688117, + "volume24hUsdChange": 41.12387686080957, + "volume7dUsd": 95024.60444445013, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "11113495254350927000000000" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "57225674583" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo10mwmk39qvdelddjhwgwuwzhx3587l6yktajc4he77yldv509h2vqnhpd4j", "id": "1094", - "current_tick_liquidity": "1875725685436.151032721504677362", + "current_tick_liquidity": "1971322408697.250327864479878999", "token0": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "token0Amount": "553247749627", + "token0Amount": "425276520116", "token1": "uosmo", - "token1Amount": "463880181290", - "current_sqrt_price": "1.078063285769912956754487626676925619", - "current_tick": "162220", + "token1Amount": "617878273548", + "current_sqrt_price": "1.139603402397899127785004175684008686", + "current_tick": "298695", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1419966.7569854255, - "liquidity24hUsdChange": -6.209544550847527, - "volume24hUsd": 346094.011077497, - "volume24hUsdChange": -45.67441242707341, - "volume7dUsd": 2814217.0575433588, + "liquidityUsd": 1055869.745507295, + "liquidity24hUsdChange": -2.199656870235035, + "volume24hUsd": 291659.1103467355, + "volume24hUsdChange": 1.12448738189186, + "volume7dUsd": 5674981.491279755, "taker_fee": "0.001000000000000000" }, { @@ -766,22 +802,22 @@ }, "total_shares": { "denom": "gamm/pool/944", - "amount": "6101675588129567227196" + "amount": "6086817212780776412620" }, - "liquidityUsd": 1398179.9605035915, - "liquidity24hUsdChange": -4.456157761179617, - "volume24hUsd": 182.23780036369337, - "volume24hUsdChange": -99.72129407259717, - "volume7dUsd": 478311.2609364208, + "liquidityUsd": 1038935.7341113066, + "liquidity24hUsdChange": -1.1693777984377771, + "volume24hUsd": 1210.2384471133782, + "volume24hUsdChange": -89.47823614344826, + "volume7dUsd": 433079.0790141457, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "48286977520" + "amount": "47083598302" }, { "denom": "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", - "amount": "65572920273" + "amount": "66370174999" } ], "scaling_factors": [ @@ -800,26 +836,26 @@ }, "total_shares": { "denom": "gamm/pool/4", - "amount": "3486298329505325985998950" + "amount": "3473393669700718678800610" }, - "liquidityUsd": 1225142.1453902926, - "liquidity24hUsdChange": -6.258442418429114, - "volume24hUsd": 108755.33708283475, - "volume24hUsdChange": 0.3440912994650499, - "volume7dUsd": 724697.7385226367, + "liquidityUsd": 1035440.0576705717, + "liquidity24hUsdChange": -2.594161199815957, + "volume24hUsd": 66224.67923311073, + "volume24hUsdChange": -32.395152843963274, + "volume7dUsd": 1279797.8976188714, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "194863399930" + "amount": "181957333988" }, "weight": "708669603840000" }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "38459913944" + "amount": "43767361491" }, "weight": "365072220160000" } @@ -830,135 +866,44 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1yt4t38u442m2rsh3j58ee08yswajf4t264s63r2dcxdndp2kuq7svv74nt", "id": "1223", - "current_tick_liquidity": "5723251059814613.402519392553966215", + "current_tick_liquidity": "7773720722322278.057578670049417296", "token0": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "token0Amount": "379532772693", + "token0Amount": "561851791857", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "660526904281", - "current_sqrt_price": "1.000067269439222644884967257315848396", - "current_tick": "134", + "token1Amount": "264450080670", + "current_sqrt_price": "0.999881066274050371569202767881694389", + "current_tick": "-2379", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000100000000000000", - "liquidityUsd": 1039352.8957182993, - "liquidity24hUsdChange": -2.2218319228568713, - "volume24hUsd": 3223095.549372763, - "volume24hUsdChange": 80.170625602387, - "volume7dUsd": 15702241.874484587, + "liquidityUsd": 826567.9293225443, + "liquidity24hUsdChange": 0.09342695891428672, + "volume24hUsd": 1225458.3720074485, + "volume24hUsdChange": -28.587454866740053, + "volume7dUsd": 44369100.56398998, "taker_fee": "0.001000000000000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "725", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/725", - "amount": "2834551206373248153547389" - }, - "liquidityUsd": 1036476.6000292278, - "liquidity24hUsdChange": -5.418548351020467, - "volume24hUsd": 436989.0862235466, - "volume24hUsdChange": 3.718091203478531, - "volume7dUsd": 3296139.901213737, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "amount": "15570550868075612000000" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "403874358418" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1kkr85qwpgd5d2ulvms0zv6r7tgg2h5gyq0tde7ytkcudd5ufx9xsgq9mvq", "id": "1431", - "current_tick_liquidity": "5368068410322041418764501.112845355411547314", + "current_tick_liquidity": "5020574852877475562501495.697399757877209077", "token0": "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", - "token0Amount": "118925085389331300000", + "token0Amount": "157108109832040600000", "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "139049641664356000000", - "current_sqrt_price": "1.078910753933152071285006099445591449", - "current_tick": "164048", + "token1Amount": "59525304935509325000", + "current_sqrt_price": "1.078898779550812018116938594842713420", + "current_tick": "164022", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 980889.2787454078, - "liquidity24hUsdChange": -2.8578416939908595, - "volume24hUsd": 59590.19085644435, - "volume24hUsdChange": 3.490354025194648, - "volume7dUsd": 658094.1422827116, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ddhz95ereu4z2hl7nxrj432ucdqxm3nvgrxuy3ag7nxuwzzasctsue47jn", - "id": "1450", - "current_tick_liquidity": "1565063283902654659.186566390142305160", - "token0": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "token0Amount": "158852048259907700000000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "104875065826", - "current_sqrt_price": "0.000002274451261224693329586166138744", - "current_tick": "-103826872", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 924862.3848386692, - "liquidity24hUsdChange": -6.085316236566161, - "volume24hUsd": 917097.0850723364, - "volume24hUsdChange": 7.578160585123717, - "volume7dUsd": 6351942.818450493, + "liquidityUsd": 725718.2919343977, + "liquidity24hUsdChange": -2.135976209495984, + "volume24hUsd": 47939.6315727932, + "volume24hUsdChange": 524.9543524955486, + "volume7dUsd": 568728.7421527121, "taker_fee": "0.001000000000000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "817", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/817", - "amount": "5098269455594214156761" - }, - "liquidityUsd": 917633.3197958093, - "liquidity24hUsdChange": -6.256872838579293, - "volume24hUsd": 678.4108567802059, - "volume24hUsdChange": -15.118603064949552, - "volume7dUsd": 13931.861811208537, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "1438156391210" - }, - { - "denom": "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", - "amount": "1304124332577" - } - ], - "scaling_factors": [ - "144820", - "100000" - ], - "scaling_factor_controller": "" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "9", @@ -969,26 +914,26 @@ }, "total_shares": { "denom": "gamm/pool/9", - "amount": "284575492219441896643055601" + "amount": "284112959389465381813520745" }, - "liquidityUsd": 894713.8153684698, - "liquidity24hUsdChange": -2.190291553514498, - "volume24hUsd": 91545.6666174028, - "volume24hUsdChange": 368.9799587186081, - "volume7dUsd": 470396.023254717, + "liquidityUsd": 675120.8088735258, + "liquidity24hUsdChange": -4.2936183109843995, + "volume24hUsd": 21049.2120800204, + "volume24hUsdChange": -2.1499859900803697, + "volume7dUsd": 880661.3865571739, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "299848199571907" + "amount": "279261505283015" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "348774712042" + "amount": "374191322070" }, "weight": "536870912000000" } @@ -996,40 +941,38 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1499", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "817", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1499", - "amount": "483984900437179521010610" + "denom": "gamm/pool/817", + "amount": "5100861690697961716030" }, - "liquidityUsd": 877070.6882997423, - "liquidity24hUsdChange": -4.590585575423142, - "volume24hUsd": 1983.6665072841452, - "volume24hUsdChange": -69.47092383984607, - "volume7dUsd": 40763.75970356596, + "liquidityUsd": 674205.160813691, + "liquidity24hUsdChange": -1.4987801928789743, + "volume24hUsd": 3006.844729764127, + "volume24hUsdChange": 822.5529119187487, + "volume7dUsd": 30450.73993561257, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "30496957198" - }, - "weight": "536870912000000" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "1392104349555" }, { - "token": { - "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", - "amount": "278914511040" - }, - "weight": "536870912000000" + "denom": "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", + "amount": "1337465007265" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "145849", + "100000" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -1041,32 +984,182 @@ }, "total_shares": { "denom": "gamm/pool/3", - "amount": "8779351627368530679821274" + "amount": "8767089093274568922868041" }, - "liquidityUsd": 837524.6709229625, - "liquidity24hUsdChange": -5.899553566463244, - "volume24hUsd": 109861.34557219016, - "volume24hUsdChange": -19.06168417537905, - "volume7dUsd": 732615.6499527401, + "liquidityUsd": 668872.0038099745, + "liquidity24hUsdChange": -3.4046451822040162, + "volume24hUsd": 89383.39208250158, + "volume24hUsdChange": -16.141128342818543, + "volume7dUsd": 1683812.3124102612, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "100906689090" + "amount": "89098478160" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "326320775610" + "amount": "370752304049" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1212", + "code_id": "148", + "tokens": [ + { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "650659725432" + }, + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "89174568" + } + ], + "liquidityUsd": 650748.9897163644, + "liquidity24hUsdChange": 0.0004824365367975186, + "volume24hUsd": 1203783.1692969336, + "volume24hUsdChange": -34.42131853459951, + "volume7dUsd": 28694550.408713955, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1632", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1632", + "amount": "379980937790480561472" + }, + "liquidityUsd": 642808.0261327117, + "liquidity24hUsdChange": -2.659346541867302, + "volume24hUsd": 41712.90841699756, + "volume24hUsdChange": 18.583834117405722, + "volume7dUsd": 253896.60158546272, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "6525087304182461000000000" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "356282380350" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "725", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/725", + "amount": "2331628295956669118018217" + }, + "liquidityUsd": 636094.880142573, + "liquidity24hUsdChange": -1.9687782977665238, + "volume24hUsd": 448471.6723203184, + "volume24hUsdChange": 23.695262844687562, + "volume7dUsd": 9003718.371592306, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "amount": "12431816307243666000000" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "352692252713" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1499", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1499", + "amount": "483882535304384862149763" + }, + "liquidityUsd": 634838.533887767, + "liquidity24hUsdChange": -2.295630921049707, + "volume24hUsd": 1522.5434025169416, + "volume24hUsdChange": -23.514240326370324, + "volume7dUsd": 133551.67850410912, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "amount": "29786499475" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "amount": "285577683830" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1635", + "code_id": "580", + "tokens": [ + { + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "amount": "14886795170222" + }, + { + "denom": "uosmo", + "amount": "327085116649" + } + ], + "liquidityUsd": 599625.5631952097, + "liquidity24hUsdChange": -4.307451017213734, + "volume24hUsd": 84522.45179083511, + "volume24hUsdChange": -73.63953751091869, + "volume7dUsd": 1598984.8277010282, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "832", @@ -1077,93 +1170,72 @@ }, "total_shares": { "denom": "gamm/pool/832", - "amount": "142276683226531737153" + "amount": "143293199378667529150" }, - "liquidityUsd": 813370.6708838651, - "liquidity24hUsdChange": -5.427192299395568, - "volume24hUsd": 71352.418672756, - "volume24hUsdChange": -52.602140121103744, - "volume7dUsd": 1339081.8295765833, + "liquidityUsd": 567748.5231175798, + "liquidity24hUsdChange": -1.711796247790403, + "volume24hUsd": 47635.55970055384, + "volume24hUsdChange": -13.682096174088038, + "volume7dUsd": 1535436.8426167488, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", - "amount": "797518515327" + "amount": "821074708267" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "316951381319" + "amount": "314604122996" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1zfgy84ausvrt5a84ul3q8wfgl4hfm04nzc3tpzgzjqv396pkn2qqpt5hwr", - "id": "1095", - "current_tick_liquidity": "620469154086.573343046627439832", - "token0": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "token0Amount": "926907825300", - "token1": "uosmo", - "token1Amount": "196812998034", - "current_sqrt_price": "0.683092475577148575530395272728243665", - "current_tick": "-5333847", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 807654.231516761, - "liquidity24hUsdChange": -5.111863117136488, - "volume24hUsd": 78310.66010523858, - "volume24hUsdChange": -71.31001677625436, - "volume7dUsd": 902766.1094849114, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", "pool_id": "1461", - "code_id": "503", + "code_id": "641", "tokens": [ { "denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", - "amount": "583313088648" + "amount": "582956497921" }, { "denom": "uosmo", - "amount": "627698567395" + "amount": "628083537917" } ], - "liquidityUsd": 805397.8271287461, - "liquidity24hUsdChange": -4.625215344977826, + "liquidityUsd": 566733.6741346123, + "liquidity24hUsdChange": -3.3935075171464595, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 215.3589893532466, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", "pool_id": "1514", - "code_id": "572", + "code_id": "641", "tokens": [ { "denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", - "amount": "583313088648" + "amount": "582956497921" }, { "denom": "uosmo", - "amount": "627698567395" + "amount": "628083537917" } ], - "liquidityUsd": 805397.8271287461, - "liquidity24hUsdChange": -4.625215344977826, + "liquidityUsd": 566733.6741346123, + "liquidity24hUsdChange": -3.3935075171464595, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 378.9233856045343, "taker_fee": "0.001000000000000000" }, { @@ -1173,18 +1245,39 @@ "tokens": [ { "denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", - "amount": "624996824284" + "amount": "624587256420" }, { "denom": "uosmo", - "amount": "621291752440" + "amount": "621701708292" } ], - "liquidityUsd": 797177.2653629489, - "liquidity24hUsdChange": -4.605339096230115, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 560975.2080505111, + "liquidity24hUsdChange": -3.3792943250593948, + "volume24hUsd": 370.4786070541794, + "volume24hUsdChange": null, + "volume7dUsd": 381.79417403097824, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1zfgy84ausvrt5a84ul3q8wfgl4hfm04nzc3tpzgzjqv396pkn2qqpt5hwr", + "id": "1095", + "current_tick_liquidity": "615296083433.810898846328130496", + "token0": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "token0Amount": "934756561997", + "token1": "uosmo", + "token1Amount": "188754845296", + "current_sqrt_price": "0.673895993888654495956601682244206828", + "current_tick": "-5458642", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 553903.8270147564, + "liquidity24hUsdChange": -0.8689670412016104, + "volume24hUsd": 57181.04835215529, + "volume24hUsdChange": -21.5224793111123, + "volume7dUsd": 1365365.3541575426, "taker_fee": "0.001000000000000000" }, { @@ -1197,26 +1290,26 @@ }, "total_shares": { "denom": "gamm/pool/806", - "amount": "119713780118366788471" + "amount": "119558642744179478827" }, - "liquidityUsd": 787119.8117245479, - "liquidity24hUsdChange": -0.991317694356533, - "volume24hUsd": 41505.22162194979, - "volume24hUsdChange": -3.101249034818935, - "volume7dUsd": 436244.1747114581, + "liquidityUsd": 549818.679328006, + "liquidity24hUsdChange": -3.6654048761341014, + "volume24hUsd": 8337.800376205554, + "volume24hUsdChange": -73.87869349983097, + "volume7dUsd": 463779.19456880435, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", - "amount": "126803204407" + "amount": "127630825451" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "306745241632" + "amount": "304720026388" }, "weight": "536870912000000" } @@ -1227,127 +1320,214 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1ucec097umzw2ehtlj3rt2jghehrspu5dk3e5ewv4sjy6tg6kttuqgxkd4f", "id": "1247", - "current_tick_liquidity": "389465305333.601169842654457035", + "current_tick_liquidity": "259543196325.060611713920882312", "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token0Amount": "59783144047", + "token0Amount": "48871887184", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "58070110237", - "current_sqrt_price": "3.417231041220055065670281482602143354", - "current_tick": "9167746", + "token1Amount": "64178343384", + "current_sqrt_price": "3.090200848822794754565606799188977134", + "current_tick": "8549341", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 752858.4437449862, - "liquidity24hUsdChange": -6.0315073484782715, - "volume24hUsd": 2096963.310091479, - "volume24hUsdChange": -7.74546839249626, - "volume7dUsd": 13681642.929469962, + "liquidityUsd": 530799.1453843869, + "liquidity24hUsdChange": -21.494889529766652, + "volume24hUsd": 2116852.700095149, + "volume24hUsdChange": -33.66166895256445, + "volume7dUsd": 33652748.12029538, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1h4ffzselefzgrf63k9n8c098ql849v3jhwjdvf7rzd42xd7m8tmsah4vv0", - "id": "1265", - "current_tick_liquidity": "7205133188080.345592684881975835", - "token0": "uosmo", - "token0Amount": "313402221142", - "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "28554868256", - "current_sqrt_price": "0.344018078534452098216882940608935433", - "current_tick": "-8816516", + "address": "osmo14dmu2dq3vmw36p7fcz95vkm82dunw9m478xl5v44427pz4ar79xshq9j6w", + "id": "1096", + "current_tick_liquidity": "4997062912850.139761647551394154", + "token0": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "token0Amount": "12574074443996", + "token1": "uosmo", + "token1Amount": "273152395471", + "current_sqrt_price": "0.149953476053628332021769824855316622", + "current_tick": "-16751396", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.003000000000000000", + "liquidityUsd": 503657.2754942017, + "liquidity24hUsdChange": -4.283075949662159, + "volume24hUsd": 176771.76509656225, + "volume24hUsdChange": 42.897993193606574, + "volume7dUsd": 3832567.8230003687, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1wcp5kt44raqssk9ptrzrn37man7j7nzzvh4s3jrs0nvkw2sp5g8sc96mfu", + "id": "1423", + "current_tick_liquidity": "2724579769356967248784355073.815052159166663413", + "token0": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", + "token0Amount": "17583500304765625000000", + "token1": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "token1Amount": "211285999977986400000000", + "current_sqrt_price": "1.014593289235367200834082101539010885", + "current_tick": "29399", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 717420.6601575761, - "liquidity24hUsdChange": -6.938611337625505, - "volume24hUsd": 1102705.1211231397, - "volume24hUsdChange": -2.395676760669055, - "volume7dUsd": 9790271.095168523, + "liquidityUsd": 483675.8186097822, + "liquidity24hUsdChange": 12.8826630269632, + "volume24hUsd": 42447.614163641505, + "volume24hUsdChange": -70.50171335524824, + "volume7dUsd": 1483325.9883117713, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1635", - "code_id": "580", - "tokens": [ + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "722", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/722", + "amount": "5901668805516165136814798" + }, + "liquidityUsd": 471161.6033323105, + "liquidity24hUsdChange": -4.815225555774892, + "volume24hUsd": 75921.130333119, + "volume24hUsdChange": 29.2020303689383, + "volume7dUsd": 1244188.2855561126, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "12365149474660" + "token": { + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "4251561523600901500000000" + }, + "weight": "1073741824" }, { - "denom": "uosmo", - "amount": "276098473729" + "token": { + "denom": "uosmo", + "amount": "261082815666" + }, + "weight": "1073741824" } ], - "liquidityUsd": 701716.8919258071, - "liquidity24hUsdChange": -5.300634726225815, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo14dmu2dq3vmw36p7fcz95vkm82dunw9m478xl5v44427pz4ar79xshq9j6w", - "id": "1096", - "current_tick_liquidity": "4919505203553.078718199749659520", - "token0": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "token0Amount": "12503548844235", + "address": "osmo1rwx9kfr2zx977lh5m27frfvlcptue8vhmy7zx8hrhtjj9ec6g7eqlc8vxr", + "id": "1449", + "current_tick_liquidity": "1912126055728596746.363283855371780709", + "token0": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "token0Amount": "91330514903655620000000", "token1": "uosmo", - "token1Amount": "257733500574", - "current_sqrt_price": "0.147966062712655467468312311484686946", - "current_tick": "-16810605", + "token1Amount": "157819326239", + "current_sqrt_price": "0.000001981942646403681286619522000579", + "current_tick": "-105071904", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.003000000000000000", - "liquidityUsd": 682041.8297265272, - "liquidity24hUsdChange": -5.206414701314261, - "volume24hUsd": 804956.067647704, - "volume24hUsdChange": 3.087259679580567, - "volume7dUsd": 3416597.271574921, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 466116.5262055399, + "liquidity24hUsdChange": -4.0499636576867735, + "volume24hUsd": 441588.1419198195, + "volume24hUsdChange": 1.4362959434776825, + "volume7dUsd": 8951660.905856822, "taker_fee": "0.001000000000000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1041", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1041", + "amount": "23493311285307981948409815" + }, + "liquidityUsd": 464950.449858, + "liquidity24hUsdChange": -0.8342484857843462, + "volume24hUsd": 5444.553971940971, + "volume24hUsdChange": -32.77577270390536, + "volume7dUsd": 264959.4120748642, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "232475224929" + }, + "weight": "53687091200" + }, + { + "token": { + "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "amount": "5478308350254" + }, + "weight": "53687091200" + } + ], + "total_weight": "107374182400" + }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1p83q2g9t20lfk07w53vvy5flrvr6c6gh65xufy47546z555af88qwlwqvg", "id": "1252", - "current_tick_liquidity": "1744571257102.055418987921753076", + "current_tick_liquidity": "955781167423.258965328793391215", "token0": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", - "token0Amount": "1698081177", + "token0Amount": "529731203", "token1": "uosmo", - "token1Amount": "513294677101", - "current_sqrt_price": "1.104744999760162925736460043851586212", - "current_tick": "220461", + "token1Amount": "514406153030", + "current_sqrt_price": "1.107817496340955671787583498371479907", + "current_tick": "227259", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 661279.32827834, - "liquidity24hUsdChange": -5.951942871242758, - "volume24hUsd": 35672.82289642563, - "volume24hUsdChange": 324.57203074201846, - "volume7dUsd": 180010.1994790612, + "liquidityUsd": 464747.99009060895, + "liquidity24hUsdChange": -3.3508903314192455, + "volume24hUsd": 12233.036335016572, + "volume24hUsdChange": -25.190475496888435, + "volume7dUsd": 680159.2151886625, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1212", - "code_id": "148", - "tokens": [ + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1233", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1233", + "amount": "144949890239121020772802" + }, + "liquidityUsd": 460717.67426883883, + "liquidity24hUsdChange": -1.9011153519213353, + "volume24hUsd": 1755.4109443018556, + "volume24hUsdChange": -74.78104730569765, + "volume7dUsd": 51205.44479276946, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "176434114223" + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "28650588170" + }, + "weight": "536870912000000" }, { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "474314785777" + "token": { + "denom": "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", + "amount": "1482539383223" + }, + "weight": "536870912000000" } ], - "liquidityUsd": 650241.0627112022, - "liquidity24hUsdChange": -0.2014159952768665, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -1361,24 +1541,24 @@ "denom": "gamm/pool/1241", "amount": "5481639792425928899384176" }, - "liquidityUsd": 647393.8843321509, - "liquidity24hUsdChange": -1.2975506863334592, - "volume24hUsd": 43491.37779760496, - "volume24hUsdChange": 425.4663152205187, - "volume7dUsd": 258087.96352235012, + "liquidityUsd": 455771.23023192526, + "liquidity24hUsdChange": -3.2003138384840506, + "volume24hUsd": 9677.479495738444, + "volume24hUsdChange": 174.91812998475953, + "volume7dUsd": 174315.87784311333, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/2B30802A0B03F91E4E16D6175C9B70F2911377C1CAE9E50FF011C821465463F9", - "amount": "1577745387404051400000000" + "amount": "1577051165832875000000000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "252277942681" + "amount": "252554612360" }, "weight": "536870912000000" } @@ -1387,118 +1567,118 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "722", + "id": "1628", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/722", - "amount": "5931633368187975415983649" + "denom": "gamm/pool/1628", + "amount": "1099482554608919823800" }, - "liquidityUsd": 644702.5913288386, - "liquidity24hUsdChange": -4.2103972599857915, - "volume24hUsd": 46954.57639187178, - "volume24hUsdChange": -68.73871708408893, - "volume7dUsd": 628310.767191881, + "liquidityUsd": 440830.98901694454, + "liquidity24hUsdChange": -3.2528605498443044, + "volume24hUsd": 24096.906941251043, + "volume24hUsdChange": 77.99113978446616, + "volume7dUsd": 111484.5073625163, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "4439779673321065500000000" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "4478143654544593000000000" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "251193398370" + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "62155856358833640000000" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fv6xq7j49rrfq2p2yxuwqjl4a4suy4hz74njnl2tsyghvqpzm3xqvn8vvn", - "id": "1671", - "current_tick_liquidity": "197907023577.982803643203347197", - "token0": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", - "token0Amount": "62152658985", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "202730733082", - "current_sqrt_price": "2.564449807092043834521800925214509205", - "current_tick": "5576402", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 613211.8199635317, - "liquidity24hUsdChange": null, - "volume24hUsd": 3344767.5936361384, - "volume24hUsdChange": null, - "volume7dUsd": 3344767.5936361384, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hj55ea6dnmv320tmnrejw79f2sse4835uul7yldwvchkgqpqpr8s9slkde", - "id": "1227", - "current_tick_liquidity": "142586714878087.910107629743967452", - "token0": "ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7", - "token0Amount": "15051754002", - "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "26865816034", - "current_sqrt_price": "1.262487805908483963811091586037291267", - "current_tick": "593875", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 550538.0180800805, - "liquidity24hUsdChange": -4.455779495370149, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.12284246474743947, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1233", + "id": "840", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1233", - "amount": "144072789409182698471766" + "denom": "gamm/pool/840", + "amount": "127056205598926600641433" }, - "liquidityUsd": 543366.6945180852, - "liquidity24hUsdChange": -5.138286480421214, - "volume24hUsd": 2259.0478782038495, - "volume24hUsdChange": -69.35245313623713, - "volume7dUsd": 28907.808719156546, + "liquidityUsd": 439158.6251973185, + "liquidity24hUsdChange": -1.4461411168025091, + "volume24hUsd": 24128.738544727858, + "volume24hUsdChange": 3.1604792408081472, + "volume7dUsd": 740929.3906454158, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "25116981264" + "denom": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", + "amount": "400781237077676100000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", - "amount": "1669783934359" + "denom": "uosmo", + "amount": "243349138766" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1fv6xq7j49rrfq2p2yxuwqjl4a4suy4hz74njnl2tsyghvqpzm3xqvn8vvn", + "id": "1671", + "current_tick_liquidity": "331077963885.071940801536346757", + "token0": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "token0Amount": "100086718597", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "113834739346", + "current_sqrt_price": "1.796868846065091343989565610545408704", + "current_tick": "2228737", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 437987.85493240075, + "liquidity24hUsdChange": -13.565363852702713, + "volume24hUsd": 898298.6962657307, + "volume24hUsdChange": -11.051606090391504, + "volume7dUsd": 22140080.602653515, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1h4ffzselefzgrf63k9n8c098ql849v3jhwjdvf7rzd42xd7m8tmsah4vv0", + "id": "1265", + "current_tick_liquidity": "3440693186269.729949077718023919", + "token0": "uosmo", + "token0Amount": "369909728892", + "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "token1Amount": "11558873062", + "current_sqrt_price": "0.334515572014145279933829819162754123", + "current_tick": "-8880994", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 426914.9569815245, + "liquidity24hUsdChange": -4.187329734422124, + "volume24hUsd": 742642.5458879557, + "volume24hUsdChange": -13.081944720420733, + "volume7dUsd": 20092625.977803323, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "584", @@ -1509,32 +1689,74 @@ }, "total_shares": { "denom": "gamm/pool/584", - "amount": "28073701388138302415381" + "amount": "31303914745606009482101" }, - "liquidityUsd": 541306.9148380558, - "liquidity24hUsdChange": -2.5811345114451805, - "volume24hUsd": 28510.545214057125, - "volume24hUsdChange": -81.04257376125277, - "volume7dUsd": 420382.6374220598, + "liquidityUsd": 420049.53977333545, + "liquidity24hUsdChange": -1.5099301067628081, + "volume24hUsd": 36035.08864773174, + "volume24hUsdChange": -23.63345286994701, + "volume7dUsd": 906918.1994769638, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "amount": "451813407516" + "amount": "511326397219" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "210986719831" + "amount": "232978814900" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1hxx9lxqd78m9svlfd430uxfnqcljykwlmtgaquemay2radkckdgsgprf62", + "id": "1150", + "current_tick_liquidity": "156332537536624.173044837329967422", + "token0": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "token0Amount": "209435927859", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "203721293894", + "current_sqrt_price": "1.000005844404704158365583635841308738", + "current_tick": "11", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 413839.023932814, + "liquidity24hUsdChange": -9.493231086351994, + "volume24hUsd": 162539.79460994634, + "volume24hUsdChange": 76.14884775936987, + "volume7dUsd": 1834036.320819834, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1hj55ea6dnmv320tmnrejw79f2sse4835uul7yldwvchkgqpqpr8s9slkde", + "id": "1227", + "current_tick_liquidity": "142586714878087.910107629743967452", + "token0": "ibc/B66CE615C600ED0A8B5AF425ECFE0D57BE2377587F66C45934A76886F34DC9B7", + "token0Amount": "14945330300", + "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "token1Amount": "27035442324", + "current_sqrt_price": "1.262488995544479378586386501662900289", + "current_tick": "593878", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 409783.16330320796, + "liquidity24hUsdChange": -1.1734790346351882, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 1361.6842874309893, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", "id": "810", @@ -1545,60 +1767,60 @@ }, "total_shares": { "denom": "gamm/pool/810", - "amount": "1159640678939999465015" + "amount": "1158939252811891081795" }, - "liquidityUsd": 539731.2274953815, - "liquidity24hUsdChange": -6.039790837922932, - "volume24hUsd": 2216.4426757567057, - "volume24hUsdChange": -79.2526525079547, - "volume7dUsd": 19387.09806799974, + "liquidityUsd": 394270.1696875097, + "liquidity24hUsdChange": -4.8110368582117085, + "volume24hUsd": 2231.3256404832446, + "volume24hUsdChange": 3.5489237034346752, + "volume7dUsd": 14488.227951569712, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { "denom": "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", - "amount": "6982134217862" + "amount": "7514325665897" }, { "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "8992334365027" + "amount": "8205078596948" } ], "scaling_factors": [ "100000", - "146399" + "147830" ], "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "840", + "id": "1498", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/840", - "amount": "127500604441650528224099" + "denom": "gamm/pool/1498", + "amount": "138426111597977182693" }, - "liquidityUsd": 537679.1565302846, - "liquidity24hUsdChange": -3.7589297569935796, - "volume24hUsd": 43098.01707221775, - "volume24hUsdChange": 92.02834151063955, - "volume7dUsd": 199109.28717631672, + "liquidityUsd": 387522.0096992422, + "liquidity24hUsdChange": -3.8982856774962693, + "volume24hUsd": 22215.600163632604, + "volume24hUsdChange": -54.96383623422288, + "volume7dUsd": 543215.6738012397, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", - "amount": "467177618715741200000" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "51683386162" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "209524054389" + "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", + "amount": "5405266895447" }, "weight": "536870912000000" } @@ -1609,179 +1831,185 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo19n4q7va8gdm2l7544k94pufhdp5tpu7pmfw4vqyvvzlzjvvc8v3qtyz27t", "id": "1400", - "current_tick_liquidity": "16418285269485.962161731659156782", + "current_tick_liquidity": "1398389136970.382920070915425397", "token0": "uosmo", - "token0Amount": "184302638549", + "token0Amount": "296866698889", "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "27649309824", - "current_sqrt_price": "0.343936195503604307895720786126314740", - "current_tick": "-8817079", + "token1Amount": "13459011042", + "current_sqrt_price": "0.334432644604151737508387465567329062", + "current_tick": "-8881549", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000000000000000000", - "liquidityUsd": 535968.3004463523, - "liquidity24hUsdChange": -4.7681701647327905, - "volume24hUsd": 3452994.197977504, - "volume24hUsdChange": 15.94122509227714, - "volume7dUsd": 23485910.96167596, + "liquidityUsd": 376317.24016720825, + "liquidity24hUsdChange": -3.4273224417516293, + "volume24hUsd": 1788433.358942761, + "volume24hUsdChange": -25.655487594042665, + "volume7dUsd": 47167873.72482893, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo164pg0key096kxe7940h45csw5w9cmf4nc2a83m73e8tc0u2eymeqj7t0rm", "id": "1323", - "current_tick_liquidity": "1483570466579470.689554070552127458", + "current_tick_liquidity": "1004345004336247.358097684659205206", "token0": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", - "token0Amount": "178127364025", + "token0Amount": "148778664820", "token1": "uosmo", - "token1Amount": "235697711077", - "current_sqrt_price": "1.007612948476825805103814657272877690", - "current_tick": "15283", + "token1Amount": "256328784603", + "current_sqrt_price": "1.007643560520868373319654086886792791", + "current_tick": "15345", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 534470.6954146628, - "liquidity24hUsdChange": -4.193651329637358, - "volume24hUsd": 10320.460360875575, - "volume24hUsdChange": 186.24330743922437, - "volume7dUsd": 34765.99109827701, + "liquidityUsd": 367597.49795911903, + "liquidity24hUsdChange": -16.073905831052446, + "volume24hUsd": 10548.853428803284, + "volume24hUsdChange": 65.1106583695975, + "volume7dUsd": 295135.4726973994, "taker_fee": "0.001000000000000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1041", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1041", - "amount": "23469433927767092456985705" - }, - "liquidityUsd": 515466.436542, - "liquidity24hUsdChange": -0.7552264213925138, - "volume24hUsd": 10896.002432945217, - "volume24hUsdChange": -7.849120940349915, - "volume7dUsd": 106080.53679797218, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "257733218271" - }, - "weight": "53687091200" - }, - { - "token": { - "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", - "amount": "4925358756613" - }, - "weight": "53687091200" - } - ], - "total_weight": "107374182400" - }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1wmau9hnrgkpujdd3768fdcp7x3phxv0g3q5leugru0snwlt8kynq8klpqh", "id": "1092", - "current_tick_liquidity": "10366601345403.828242463835802411", + "current_tick_liquidity": "12643819017904.460099496265089154", "token0": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "token0Amount": "168766979407748", + "token0Amount": "148295798876012", "token1": "uosmo", - "token1Amount": "192007158493", - "current_sqrt_price": "0.034072307176596654334823271501151584", - "current_tick": "-26839078", + "token1Amount": "201047282156", + "current_sqrt_price": "0.036579938033166184080178059283574473", + "current_tick": "-26661909", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 498067.62561174645, - "liquidity24hUsdChange": -2.2665353763326417, - "volume24hUsd": 52164.52105367781, - "volume24hUsdChange": 672.0053835330474, - "volume7dUsd": 375505.3571956602, + "liquidityUsd": 360620.7263077691, + "liquidity24hUsdChange": -4.285049006096075, + "volume24hUsd": 13342.38100050078, + "volume24hUsdChange": -44.5090583004257, + "volume7dUsd": 920628.5560576599, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo16mu0tqmapcu3m3r7ag2prwh6rdzf6jt47ydymjdwqkmlhq5wu3wqc2d5mc", "id": "1097", - "current_tick_liquidity": "346223332092.913798915285399341", + "current_tick_liquidity": "322508529302.742911268913132809", "token0": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "token0Amount": "1145985386170", + "token0Amount": "1125943128405", "token1": "uosmo", - "token1Amount": "137960235253", - "current_sqrt_price": "0.463692597110703787423542055593795828", - "current_tick": "-7849892", + "token1Amount": "139871921987", + "current_sqrt_price": "0.473104298866490744333317520649479948", + "current_tick": "-7761724", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.003000000000000000", - "liquidityUsd": 493115.17902245076, - "liquidity24hUsdChange": -5.676097694502431, - "volume24hUsd": 58729.89485301672, - "volume24hUsdChange": 249.9828422620551, - "volume7dUsd": 244789.62109303568, + "liquidityUsd": 353300.7029631971, + "liquidity24hUsdChange": -2.4380492312398903, + "volume24hUsd": 15080.745449663047, + "volume24hUsdChange": -37.55897389786776, + "volume7dUsd": 531402.6065004255, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hxx9lxqd78m9svlfd430uxfnqcljykwlmtgaquemay2radkckdgsgprf62", - "id": "1150", - "current_tick_liquidity": "1176213266445983.959800195397151892", - "token0": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "token0Amount": "202917983827", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "263874951136", - "current_sqrt_price": "1.000529683622348388733073310909758709", - "current_tick": "1059", + "address": "osmo1vq070t8h8wywt20gv6dada0dgwpwdakywxtwfc4cq8rx3zjvs6cswekeup", + "id": "1637", + "current_tick_liquidity": "38703007848631760583759.546737342014796660", + "token0": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "token0Amount": "4300124783169979000000000", + "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token1Amount": "47109359004918890000", + "current_sqrt_price": "0.004056169370414285632195012462894102", + "current_tick": "-44354750", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 466696.5849959828, - "liquidity24hUsdChange": -0.13421693224561249, - "volume24hUsd": 25767.512737996458, - "volume24hUsdChange": -52.863542078077245, - "volume7dUsd": 965872.319685314, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 352797.2872450264, + "liquidity24hUsdChange": -2.312277665258951, + "volume24hUsd": 15479.411791685592, + "volume24hUsdChange": 12.927271725380528, + "volume7dUsd": 116719.20129441602, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1q28nyjxzgj9sxmup2sv3wyr6qpmlskacz2fjdgt0ruux75suf3rqn5lstq", + "id": "1098", + "current_tick_liquidity": "517258373433.664404997159570244", + "token0": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "token0Amount": "81410262736", + "token1": "uosmo", + "token1Amount": "179465445721", + "current_sqrt_price": "1.544473076562619089967946132537974672", + "current_tick": "1385397", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 337259.0695123527, + "liquidity24hUsdChange": -3.6709587183676367, + "volume24hUsd": 13903.8903487098, + "volume24hUsdChange": -86.21376133659673, + "volume7dUsd": 1456731.3913450683, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1498", + "id": "5", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1498", - "amount": "138138579867978851668" + "denom": "gamm/pool/5", + "amount": "3863852505702390788410476939" }, - "liquidityUsd": 465017.0786714448, - "liquidity24hUsdChange": -3.756530862383766, - "volume24hUsd": 47634.507011479065, - "volume24hUsdChange": 32.21811604592277, - "volume7dUsd": 301119.31943203986, + "liquidityUsd": 327987.51257768413, + "liquidity24hUsdChange": -1.7968549675530905, + "volume24hUsd": 26519.819285212707, + "volume24hUsdChange": 3.0804417897696186, + "volume7dUsd": 621981.7739727383, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "55912979519" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "122211204700960" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", - "amount": "4959652391320" + "denom": "uosmo", + "amount": "181741408372" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1yg7ap2xgfgk99t2kuhgym2vnhhj0m5pcduk5rlg8v3t4hs7fz3kqpl7lqe", + "id": "1652", + "current_tick_liquidity": "1294655849185.048159456678960828", + "token0": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", + "token0Amount": "2846427356573", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "128014950823", + "current_sqrt_price": "0.261493183523723613401050598921788794", + "current_tick": "-12162132", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.003000000000000000", + "liquidityUsd": 323805.3801800553, + "liquidity24hUsdChange": -2.246995482458467, + "volume24hUsd": 19494.983552646157, + "volume24hUsdChange": -31.805613367041442, + "volume7dUsd": 323858.71539501776, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "611", @@ -1792,83 +2020,62 @@ }, "total_shares": { "denom": "gamm/pool/611", - "amount": "266515114021435777078590" + "amount": "256322995644240037718288" }, - "liquidityUsd": 446741.1677967853, - "liquidity24hUsdChange": -5.532932269496742, - "volume24hUsd": 57313.89275030949, - "volume24hUsdChange": -26.056235554056943, - "volume7dUsd": 318257.62460899004, + "liquidityUsd": 317172.2533224049, + "liquidity24hUsdChange": -3.1982779371689056, + "volume24hUsd": 14626.987986280918, + "volume24hUsdChange": -10.870513673808155, + "volume7dUsd": 412289.6401962063, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "20624993290" + "amount": "19623866606" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "7952740849704" + "amount": "7776125979202" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1q28nyjxzgj9sxmup2sv3wyr6qpmlskacz2fjdgt0ruux75suf3rqn5lstq", - "id": "1098", - "current_tick_liquidity": "296013369309.954032124480594984", - "token0": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", - "token0Amount": "71217127840", - "token1": "uosmo", - "token1Amount": "165735744776", - "current_sqrt_price": "1.555047122592521871120984456569524747", - "current_tick": "1418171", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 433678.6171464734, - "liquidity24hUsdChange": -1.1911622632955425, - "volume24hUsd": 84443.7020995716, - "volume24hUsdChange": -30.788879353137006, - "volume7dUsd": 700173.0568390947, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "560", + "id": "587", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/560", - "amount": "84476911611874205302268" + "denom": "gamm/pool/587", + "amount": "146564045494262749479" }, - "liquidityUsd": 407610.31620857544, - "liquidity24hUsdChange": -4.163470161165328, - "volume24hUsd": 8998.870366069506, - "volume24hUsdChange": 259.00165621239444, - "volume7dUsd": 80953.19923785748, + "liquidityUsd": 309694.573530574, + "liquidity24hUsdChange": -2.097135280663882, + "volume24hUsd": 1114.5761275331931, + "volume24hUsdChange": -79.9938289035541, + "volume7dUsd": 70989.46618605584, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "8048462363167" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "19258475193" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "158838528564" + "denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", + "amount": "12839119024852" }, "weight": "536870912000000" } @@ -1877,70 +2084,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "604", + "id": "586", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/604", - "amount": "28791979567624255238" + "denom": "gamm/pool/586", + "amount": "657459869826945770477" }, - "liquidityUsd": 405986.0426075329, - "liquidity24hUsdChange": -5.363389168981867, - "volume24hUsd": 106311.77856121308, - "volume24hUsdChange": 7.7629448874952125, - "volume7dUsd": 453868.00742579106, + "liquidityUsd": 303978.0742100755, + "liquidity24hUsdChange": -3.2026839389546065, + "volume24hUsd": 2373.5532825850537, + "volume24hUsdChange": -78.35882882184883, + "volume7dUsd": 117001.18638765348, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "7218952436665" + "denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", + "amount": "12629121859853" }, - "weight": "21474836480" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "158317518728" + "amount": "168441639816" }, - "weight": "21474836480" + "weight": "536870912000000" } ], - "total_weight": "42949672960" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "5", + "id": "1687", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/5", - "amount": "3466568403461438042802038926" + "denom": "gamm/pool/1687", + "amount": "145161085906400358988" }, - "liquidityUsd": 405155.480247254, - "liquidity24hUsdChange": -6.328443183527951, - "volume24hUsd": 61152.09098700006, - "volume24hUsdChange": 122.79005853773593, - "volume7dUsd": 358223.79308517306, + "liquidityUsd": 302793.27970308944, + "liquidity24hUsdChange": 2.1993255751885674, + "volume24hUsd": 26525.005003941667, + "volume24hUsdChange": -33.422391208414695, + "volume7dUsd": 1834707.871574212, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "112677006977914" + "denom": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", + "amount": "380941801039666140" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "157901261147" + "amount": "167784483357" }, "weight": "536870912000000" } @@ -1949,152 +2156,152 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "586", + "id": "6", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/586", - "amount": "657204254967768045322" + "denom": "gamm/pool/6", + "amount": "4353090951993021171876038359" }, - "liquidityUsd": 404546.7324430221, - "liquidity24hUsdChange": -4.803113496107303, - "volume24hUsd": 765.5326203705816, - "volume24hUsdChange": -43.482473524573514, - "volume7dUsd": 123399.3873191564, + "liquidityUsd": 296987.3330181956, + "liquidity24hUsdChange": -2.686353751480824, + "volume24hUsd": 5647.189469679269, + "volume24hUsdChange": 26.521307798048404, + "volume7dUsd": 158275.34480111164, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", - "amount": "13467897142997" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "11021023939" }, - "weight": "536870912000000" + "weight": "322122547200000" }, { "token": { - "denom": "uosmo", - "amount": "157644663900" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "155138305186933" }, - "weight": "536870912000000" + "weight": "751619276800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "587", + "id": "604", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/587", - "amount": "146564045494262749479" + "denom": "gamm/pool/604", + "amount": "28499847127181721671" }, - "liquidityUsd": 400730.3054183405, - "liquidity24hUsdChange": -4.718659839393773, - "volume24hUsd": 442.7258902290125, - "volume24hUsdChange": 24.05161179385345, - "volume7dUsd": 50011.09759638917, + "liquidityUsd": 288731.9263443394, + "liquidity24hUsdChange": -4.320588774736273, + "volume24hUsd": 27694.682987003736, + "volume24hUsdChange": -25.746655060455126, + "volume7dUsd": 612505.0874409673, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "18544872815" + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "amount": "7081589567264" }, - "weight": "536870912000000" + "weight": "21474836480" }, { "token": { - "denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", - "amount": "13314917530412" + "denom": "uosmo", + "amount": "159463574230" }, - "weight": "536870912000000" + "weight": "21474836480" } ], - "total_weight": "1073741824000000" + "total_weight": "42949672960" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "6", + "id": "560", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/6", - "amount": "4354994723072744609608641327" + "denom": "gamm/pool/560", + "amount": "83976608539958503958553" }, - "liquidityUsd": 397910.0691529161, - "liquidity24hUsdChange": -7.558088133674374, - "volume24hUsd": 17304.916370757444, - "volume24hUsdChange": 27.376422150663682, - "volume7dUsd": 106946.07495680971, + "liquidityUsd": 275410.43707645964, + "liquidity24hUsdChange": -3.328026532188002, + "volume24hUsd": 7297.31842731972, + "volume24hUsdChange": 2.806318137154513, + "volume7dUsd": 249515.3392602115, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "10998744158" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "8290803200317" }, - "weight": "322122547200000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "155117070045195" + "denom": "uosmo", + "amount": "152612037711" }, - "weight": "751619276800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1krhufuxnlvxrm6zlykeuw2d00pz6c73cc4285k5uwhjp0rhazqgqd0sg9q", - "id": "1324", - "current_tick_liquidity": "89888291275.990083291343420200", - "token0": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", - "token0Amount": "353169047564", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "11012986394", - "current_sqrt_price": "1.044134376869812616751920335700760709", - "current_tick": "90216", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 394823.6983173475, - "liquidity24hUsdChange": -7.035121665490886, - "volume24hUsd": 25190.122614016134, - "volume24hUsdChange": -28.90971074219394, - "volume7dUsd": 175053.22670030568, + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1642", + "code_id": "641", + "tokens": [ + { + "denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "amount": "2246320140" + }, + { + "denom": "uosmo", + "amount": "145633731167" + } + ], + "liquidityUsd": 262907.9631163052, + "liquidity24hUsdChange": -12.975889037440275, + "volume24hUsd": 302094.3997442844, + "volume24hUsdChange": -41.37442141204819, + "volume7dUsd": 3159394.475982544, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1yg7ap2xgfgk99t2kuhgym2vnhhj0m5pcduk5rlg8v3t4hs7fz3kqpl7lqe", - "id": "1652", - "current_tick_liquidity": "1294781885551.468474589025759920", - "token0": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", - "token0Amount": "2213927204875", + "address": "osmo1f38rjpkad8r23p2xudxwcc7ktlwqrlk3738rc73y7kk3gm4m4njqvmwpup", + "id": "1224", + "current_tick_liquidity": "24924343949863.039095684975036702", + "token0": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "token0Amount": "78061170688", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "177610933716", - "current_sqrt_price": "0.299797054977100814137954110514377038", - "current_tick": "-10012173", - "tick_spacing": "100", + "token1Amount": "181640644506", + "current_sqrt_price": "0.999891512122039873142754983385907622", + "current_tick": "-2170", + "tick_spacing": "1000", "exponent_at_price_one": "-6", - "spread_factor": "0.003000000000000000", - "liquidityUsd": 375342.8387832751, - "liquidity24hUsdChange": -0.3520598159367467, - "volume24hUsd": 8429.171452004615, - "volume24hUsdChange": -82.84077548126142, - "volume7dUsd": 101959.20483969855, + "spread_factor": "0.000100000000000000", + "liquidityUsd": 259874.8733360977, + "liquidity24hUsdChange": -1.1014000322049329, + "volume24hUsd": 46271.38409220547, + "volume24hUsdChange": -10.554623289267335, + "volume7dUsd": 1096557.6120135356, "taker_fee": "0.001000000000000000" }, { @@ -2107,215 +2314,272 @@ }, "total_shares": { "denom": "gamm/pool/497", - "amount": "158783352753329539148902" + "amount": "157644002546252058490731" }, - "liquidityUsd": 362846.21517479944, - "liquidity24hUsdChange": -5.430764892579081, - "volume24hUsd": 37275.56915305198, - "volume24hUsdChange": 156.71369972964, - "volume7dUsd": 133663.15053589217, + "liquidityUsd": 258856.11853703286, + "liquidity24hUsdChange": -2.9198042276299545, + "volume24hUsd": 12881.39641653405, + "volume24hUsdChange": -11.783355189873083, + "volume7dUsd": 261612.22304683249, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "657813526153" + "amount": "642316126848" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "141377141330" + "amount": "143305305621" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1wcp5kt44raqssk9ptrzrn37man7j7nzzvh4s3jrs0nvkw2sp5g8sc96mfu", - "id": "1423", - "current_tick_liquidity": "227477181358214555896206333.235087226059133030", - "token0": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", - "token0Amount": "108713451935651710000000", - "token1": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "token1Amount": "6324946405902306000000", - "current_sqrt_price": "0.989571344984459480174185822157444429", - "current_tick": "-207486", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 341895.5365148801, - "liquidity24hUsdChange": -4.526151397752325, - "volume24hUsd": 130613.71259153444, - "volume24hUsdChange": -40.81102325788494, - "volume7dUsd": 529838.040189526, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1rwx9kfr2zx977lh5m27frfvlcptue8vhmy7zx8hrhtjj9ec6g7eqlc8vxr", - "id": "1449", - "current_tick_liquidity": "780316553253639982.928787260159200721", - "token0": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "token0Amount": "34364956826967380000000", - "token1": "uosmo", - "token1Amount": "123033382653", - "current_sqrt_price": "0.000002006959843608403855334109812397", - "current_tick": "-104972113", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 335278.44849584514, - "liquidity24hUsdChange": -5.984982533505746, - "volume24hUsd": 339434.573611603, - "volume24hUsdChange": -13.706413898604069, - "volume7dUsd": 2988409.678272892, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1463", - "code_id": "503", - "tokens": [ - { - "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", - "amount": "5577247379109" - }, - { - "denom": "uosmo", - "amount": "123626577575" - } - ], - "liquidityUsd": 317291.6689818642, - "liquidity24hUsdChange": -3.9383473932623305, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "816", + "id": "1677", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/816", - "amount": "173397738412174083589107377" + "denom": "gamm/pool/1677", + "amount": "1423568521216161623251096" }, - "liquidityUsd": 307343.82123517327, - "liquidity24hUsdChange": -6.098466878603868, - "volume24hUsd": 5058.887487643944, - "volume24hUsdChange": -71.53051171492525, - "volume7dUsd": 76412.96541557072, + "liquidityUsd": 257308.54623447778, + "liquidity24hUsdChange": -4.887648580578529, + "volume24hUsd": 9488.013398633026, + "volume24hUsdChange": -64.68939610539005, + "volume7dUsd": 236468.56524491275, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", - "amount": "10692676609507" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "128524967273" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "119766449442" + "denom": "ibc/BBE825F7D1673E1EBF05AB02000E23E6077967B79547A3733B60AE4ED62C4D32", + "amount": "87867237489999710000000000" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12z7nz5uhz27zcen5ezftxp6gg4u8xufmclrdscdhhc4nhzkz3mpsas6tg0", - "id": "1281", - "current_tick_liquidity": "6988845790127994913.084001521858802275", - "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token0Amount": "22735095431957532000", - "token1": "uosmo", - "token1Amount": "174964310177", - "current_sqrt_price": "0.000052345323457802599087995756241375", - "current_tick": "-79259968", + "address": "osmo1uyrxsc5d39g2j63zga697pfd2x4x250lwj9p5fqe456vkkp3urxqp4x4jf", + "id": "1476", + "current_tick_liquidity": "36083787600702.193364808906131865", + "token0": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", + "token0Amount": "6674741333", + "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "token1Amount": "20136370809", + "current_sqrt_price": "0.999068623025997046873656546747811876", + "current_tick": "-18619", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 255755.1952682189, + "liquidity24hUsdChange": -16.18798136048993, + "volume24hUsd": 249249.02603133413, + "volume24hUsdChange": -23.08435720814495, + "volume7dUsd": 3583013.163167817, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1vrklnsryefdhdxjr5azvmdxz8qz46anrm8pv7quw3ue5h80qv99qfsmpnp", + "id": "1436", + "current_tick_liquidity": "7556215981420.476272511951172934", + "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token0Amount": "349847393", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "29838206045", + "current_sqrt_price": "24.821298974665483974851541740804354619", + "current_tick": "23160968", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 245460.2898156934, + "liquidity24hUsdChange": 2.350643172064732, + "volume24hUsd": 294344.4631649772, + "volume24hUsdChange": -11.37309746049062, + "volume7dUsd": 10283750.39999841, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1krhufuxnlvxrm6zlykeuw2d00pz6c73cc4285k5uwhjp0rhazqgqd0sg9q", + "id": "1324", + "current_tick_liquidity": "10695757825.298608588299721042", + "token0": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "token0Amount": "351333618532", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "4564812882", + "current_sqrt_price": "0.827187919754608563752219234079274537", + "current_tick": "-3157602", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 244881.92472635713, + "liquidity24hUsdChange": -2.8991142795533, + "volume24hUsd": 1388.5608066396164, + "volume24hUsdChange": -35.51216631928703, + "volume7dUsd": 93712.3937684219, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1624pvsqcwf5pqcftmukaurlxg865plc9gzp6cvmx5xu3ulc66z5s470lqx", + "id": "1674", + "current_tick_liquidity": "8008851215781217.503954538518333898", + "token0": "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", + "token0Amount": "58390791574", + "token1": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "token1Amount": "17226892835", + "current_sqrt_price": "0.998925724936355686429545917612705559", + "current_tick": "-21474", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 303321.66277724406, - "liquidity24hUsdChange": 4.885650394892331, - "volume24hUsd": 759352.6246641546, - "volume24hUsdChange": -2.3956001990499782, - "volume7dUsd": 5815556.762190529, + "liquidityUsd": 244412.2209022866, + "liquidity24hUsdChange": -16.024299303958482, + "volume24hUsd": 38374.048833533554, + "volume24hUsdChange": -18.51874591447992, + "volume7dUsd": 1069535.2944078548, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1642", + "pool_id": "1463", "code_id": "641", "tokens": [ { - "denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", - "amount": "1912200684" + "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "amount": "5197285055534" }, { "denom": "uosmo", - "amount": "117678738690" + "amount": "133078454401" } ], - "liquidityUsd": 301932.678388019, - "liquidity24hUsdChange": -1.0450848784015851, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 240874.67423127868, + "liquidity24hUsdChange": -2.8530352605787868, + "volume24hUsd": 21515.82042277803, + "volume24hUsdChange": 25.361563533676517, + "volume7dUsd": 208438.61746658094, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1vrklnsryefdhdxjr5azvmdxz8qz46anrm8pv7quw3ue5h80qv99qfsmpnp", - "id": "1436", - "current_tick_liquidity": "47328578113272.667695840398852880", - "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token0Amount": "214099353", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "151089800576", - "current_sqrt_price": "26.323518782562805052461397029325588467", - "current_tick": "23929276", + "address": "osmo1fr0uls6k7vvu4njm6rtsat9cuys0c4q963z33zj6gyphjj8leuesx0jthc", + "id": "1205", + "current_tick_liquidity": "5026284778385.679309712445080792", + "token0": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "token0Amount": "33707424889628", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "117311274461", + "current_sqrt_price": "0.057980573213648004957952754340802180", + "current_tick": "-24638254", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 231283.75411155046, + "liquidity24hUsdChange": -0.5340934449171646, + "volume24hUsd": 13874.973969264925, + "volume24hUsdChange": -19.686112307692934, + "volume7dUsd": 454123.3872198985, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo124ndw3nk40lcvrkvtq97y9g2r6ke0xwawp5hhp0gw6wva4kwg8rsfg0f2u", + "id": "1213", + "current_tick_liquidity": "1542095724332259331726.779463216183922426", + "token0": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", + "token0Amount": "34879770661501120000", + "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token1Amount": "37859560916660110000", + "current_sqrt_price": "1.024550673914942586673192007735423827", + "current_tick": "49704", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 299431.78439256275, - "liquidity24hUsdChange": -2.0684070095995275, - "volume24hUsd": 1002385.673040235, - "volume24hUsdChange": 1.8123515577324236, - "volume7dUsd": 5726802.172097176, + "liquidityUsd": 222961.29205094214, + "liquidity24hUsdChange": -2.8593593409557374, + "volume24hUsd": 376.7005530820829, + "volume24hUsdChange": -82.70707841159076, + "volume7dUsd": 20486.238509872022, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1uyrxsc5d39g2j63zga697pfd2x4x250lwj9p5fqe456vkkp3urxqp4x4jf", - "id": "1476", - "current_tick_liquidity": "3137967053914.132796367416703021", - "token0": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", - "token0Amount": "11273454685", + "address": "osmo10jfc84rq0ppv9yyw4lqgcjuurrg9j5n043r8cwprpt4l0ta97qhq5qag50", + "id": "1475", + "current_tick_liquidity": "4398522990892.728347620400032516", + "token0": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "token0Amount": "3619195849", "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token1Amount": "14073776204", - "current_sqrt_price": "0.995695362342567995753142153713474495", - "current_tick": "-85908", + "token1Amount": "19338524636", + "current_sqrt_price": "1.009677107435720825285033542433997052", + "current_tick": "19447", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 293336.19876819564, - "liquidity24hUsdChange": -6.995715336957797, - "volume24hUsd": 427939.5571398686, - "volume24hUsdChange": 8.03424704767882, - "volume7dUsd": 2301672.693703947, + "liquidityUsd": 219775.6124390441, + "liquidity24hUsdChange": -18.68387428719651, + "volume24hUsd": 181781.53656025944, + "volume24hUsdChange": 8.438721848304834, + "volume7dUsd": 2983152.190152803, "taker_fee": "0.001000000000000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "10", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/10", + "amount": "100466156952807006013834643" + }, + "liquidityUsd": 218530.88186066956, + "liquidity24hUsdChange": -3.2118676880849177, + "volume24hUsd": 3416.7292265071765, + "volume24hUsdChange": -12.010692491619576, + "volume7dUsd": 155644.2048728033, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "13564107451" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "90392005419985" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "498", @@ -2326,26 +2590,26 @@ }, "total_shares": { "denom": "gamm/pool/498", - "amount": "104148089985427889209204" + "amount": "103982404880991427558379" }, - "liquidityUsd": 290872.89472134796, - "liquidity24hUsdChange": -5.362455906154598, - "volume24hUsd": 22029.3692569953, - "volume24hUsdChange": 101.87952177388404, - "volume7dUsd": 82958.2023330806, + "liquidityUsd": 214561.4667083664, + "liquidity24hUsdChange": -1.5459051642363486, + "volume24hUsd": 5660.165790611132, + "volume24hUsdChange": -38.58006817053824, + "volume7dUsd": 146594.96710034658, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "13428725520" + "amount": "13333401892" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "527504733711" + "amount": "531141211846" }, "weight": "536870912000000" } @@ -2356,74 +2620,74 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1fm3wa58ljhzu8e5u568r5rwzpmueefhy959xawg8v8f7jjjswc0q7x5d63", "id": "1294", - "current_tick_liquidity": "2400264292015.998900093434390020", + "current_tick_liquidity": "229532425662.690931374564071063", "token0": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", - "token0Amount": "147585841117", + "token0Amount": "136466701553", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "34512150011", - "current_sqrt_price": "1.311900318992555506694574277790816836", - "current_tick": "721082", + "token1Amount": "34746923649", + "current_sqrt_price": "1.144458425539131939418665043985816531", + "current_tick": "309785", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 288971.5485002673, - "liquidity24hUsdChange": -3.7406174488175017, - "volume24hUsd": 228344.83849238663, - "volume24hUsdChange": -58.77341395174507, - "volume7dUsd": 2461244.8189952844, + "liquidityUsd": 213915.62946535822, + "liquidity24hUsdChange": 26.960006502013723, + "volume24hUsd": 91115.31932853922, + "volume24hUsdChange": -32.011260162509345, + "volume7dUsd": 2276374.9209056604, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1yzg3ufzupj2mr54l5lmlz9mut9frenp9ft3f2d7e4q682hpsnsrqcvgyk5", "id": "1325", - "current_tick_liquidity": "521654257453.632336456267888773", + "current_tick_liquidity": "546323976448.432228257290885149", "token0": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "token0Amount": "1271888410379", + "token0Amount": "1199270874781", "token1": "uosmo", - "token1Amount": "104098809045", - "current_sqrt_price": "0.306556715502445479405633048319990485", - "current_tick": "-9602299", + "token1Amount": "109989147344", + "current_sqrt_price": "0.318477074353722961290429169764107750", + "current_tick": "-8985724", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 286935.1355134952, - "liquidity24hUsdChange": -3.374432295340442, - "volume24hUsd": 10949.46308522589, - "volume24hUsdChange": -54.86227687955475, - "volume7dUsd": 259630.94688027038, + "liquidityUsd": 209003.4037309069, + "liquidity24hUsdChange": -1.358696645834394, + "volume24hUsd": 32905.744740196555, + "volume24hUsdChange": 118.0675649683727, + "volume7dUsd": 528135.8230616865, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "10", + "id": "799", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/10", - "amount": "100696722989875331141393284" + "denom": "gamm/pool/799", + "amount": "3654158302786125990328" }, - "liquidityUsd": 281720.3164301759, - "liquidity24hUsdChange": -2.1044803455919205, - "volume24hUsd": 14403.702175745713, - "volume24hUsdChange": 432.0149656399642, - "volume7dUsd": 77048.56087991627, + "liquidityUsd": 199443.20878154694, + "liquidity24hUsdChange": -3.049438932530793, + "volume24hUsd": 83771.68448103081, + "volume24hUsdChange": 6.127390742020541, + "volume7dUsd": 1203253.4945755827, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "12998040847" + "denom": "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", + "amount": "9326392481" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "94548374304886" + "denom": "uosmo", + "amount": "110516634093" }, "weight": "536870912000000" } @@ -2432,137 +2696,137 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "799", + "id": "816", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/799", - "amount": "3650286687980386941201" + "denom": "gamm/pool/816", + "amount": "171870566054007722027965615" }, - "liquidityUsd": 274362.484186987, - "liquidity24hUsdChange": -1.9649608208088876, - "volume24hUsd": 306740.65726006, - "volume24hUsdChange": 188.19741169808265, - "volume7dUsd": 700511.4766230356, + "liquidityUsd": 196220.7508476616, + "liquidity24hUsdChange": -2.929601827727733, + "volume24hUsd": 10272.232236200607, + "volume24hUsdChange": -20.914582412318726, + "volume7dUsd": 179446.64024507513, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", - "amount": "9494531384" + "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", + "amount": "11594230605881" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "106994591416" + "amount": "108730985081" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "608", + "id": "1513", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/608", - "amount": "88756035071304960396" + "denom": "gamm/pool/1513", + "amount": "318188283514017181232" }, - "liquidityUsd": 264413.6813781399, - "liquidity24hUsdChange": -4.677346538444823, - "volume24hUsd": 108.56100405675278, - "volume24hUsdChange": -81.97089654829286, - "volume7dUsd": 6815.088196913298, + "liquidityUsd": 195731.95785570436, + "liquidity24hUsdChange": 28.60616787624746, + "volume24hUsd": 2165.4874405175697, + "volume24hUsdChange": 352.55340333096194, + "volume7dUsd": 32388.903565681176, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", - "amount": "357535165211871" + "denom": "ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B", + "amount": "9189827995243530" }, - "weight": "53687091200" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "103037333483" + "denom": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", + "amount": "2318590415941" }, - "weight": "53687091200" + "weight": "536870912000000" } ], - "total_weight": "107374182400" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo124ndw3nk40lcvrkvtq97y9g2r6ke0xwawp5hhp0gw6wva4kwg8rsfg0f2u", - "id": "1213", - "current_tick_liquidity": "1542114841938222595286.508869450612050245", - "token0": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", - "token0Amount": "33064656003444576000", - "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "39800851261395970000", - "current_sqrt_price": "1.025798641399870631527372657103907191", - "current_tick": "52262", + "address": "osmo1hfvn84ea9ch4sth90qusqnyhgexvn3uqr95c7w4y3l39jvrfh3tqpd4fcn", + "id": "1282", + "current_tick_liquidity": "217122429315.120231851264255504", + "token0": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "token0Amount": "20369324738", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "30586112983", + "current_sqrt_price": "2.837646660438705165264518849652844952", + "current_tick": "7052238", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 262489.7452318597, - "liquidity24hUsdChange": -3.2158603104274692, - "volume24hUsd": 5431.06602700193, - "volume24hUsdChange": 64.35703388831074, - "volume7dUsd": 18538.140385904702, + "liquidityUsd": 194745.54517966358, + "liquidity24hUsdChange": -2.324433128160011, + "volume24hUsd": 676996.6360192491, + "volume24hUsdChange": 5.6557263380019265, + "volume7dUsd": 13205988.918229036, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1f38rjpkad8r23p2xudxwcc7ktlwqrlk3738rc73y7kk3gm4m4njqvmwpup", - "id": "1224", - "current_tick_liquidity": "31892962704533.640622822469845844", - "token0": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "token0Amount": "120873296066", + "address": "osmo1ddhz95ereu4z2hl7nxrj432ucdqxm3nvgrxuy3ag7nxuwzzasctsue47jn", + "id": "1450", + "current_tick_liquidity": "131192449501909446.196714488667641835", + "token0": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "token0Amount": "45382969258332140000000", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "142004939370", - "current_sqrt_price": "0.998465863538866616082187125241466488", - "current_tick": "-30660", - "tick_spacing": "1000", + "token1Amount": "30326180953", + "current_sqrt_price": "0.000001882565842423276521405235906820", + "current_tick": "-105455946", + "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 261970.41428626498, - "liquidity24hUsdChange": -0.2000899298648153, - "volume24hUsd": 68172.21192137426, - "volume24hUsdChange": 83.36916145507354, - "volume7dUsd": 247810.14188051317, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 191212.47470778794, + "liquidity24hUsdChange": -3.2215278633554236, + "volume24hUsd": 155420.46347790523, + "volume24hUsdChange": -11.674138832455755, + "volume7dUsd": 5135614.48222965, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fr0uls6k7vvu4njm6rtsat9cuys0c4q963z33zj6gyphjj8leuesx0jthc", - "id": "1205", - "current_tick_liquidity": "5026284778385.679309712445080792", - "token0": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "token0Amount": "22714304202023", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "159634392866", - "current_sqrt_price": "0.066400931723122736760425714904600572", - "current_tick": "-23590917", + "address": "osmo1ypkq6x2rvl8a06exzm4ngfddyhlhr2zut27j5706cgmzy2un95qqg4z46t", + "id": "1264", + "current_tick_liquidity": "1632881297637617942.168537391031991231", + "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token0Amount": "46812415841590290000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "50063636839", + "current_sqrt_price": "0.000054695437279616437702524569224311", + "current_tick": "-79008410", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 259202.2689462693, - "liquidity24hUsdChange": -0.2814432481013106, - "volume24hUsd": 15405.587901241484, - "volume24hUsdChange": 2.6822723049864665, - "volume7dUsd": 111363.24507051357, + "liquidityUsd": 190263.54763598644, + "liquidity24hUsdChange": -10.261507828363847, + "volume24hUsd": 425290.5998388613, + "volume24hUsdChange": 26.632740030861857, + "volume7dUsd": 5067803.499865733, "taker_fee": "0.001000000000000000" }, { @@ -2575,53 +2839,32 @@ }, "total_shares": { "denom": "gamm/pool/585", - "amount": "37077639761380718442631" + "amount": "37058923200871457798012" }, - "liquidityUsd": 256850.57434009574, - "liquidity24hUsdChange": -4.863281599504784, - "volume24hUsd": 7586.956598576645, - "volume24hUsdChange": -81.54463857886647, - "volume7dUsd": 155969.41443044093, + "liquidityUsd": 183720.39746777748, + "liquidity24hUsdChange": -0.3908170220852035, + "volume24hUsd": 7811.120515236582, + "volume24hUsdChange": 39.96346793984682, + "volume7dUsd": 229451.12699261, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "amount": "214447860610" + "amount": "223774224191" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "11862723441" + "amount": "11404400374" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1yh3my0jzrgnh88ymad5f8mckhne6dma944mgexedr9gcmr5lmdeqq27pn7", - "id": "1397", - "current_tick_liquidity": "41554048065455.621215880276338666", - "token0": "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", - "token0Amount": "1765759778020", - "token1": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "token1Amount": "6330103375006", - "current_sqrt_price": "1.208772555355170498844506606931408453", - "current_tick": "461131", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 250467.52372209023, - "liquidity24hUsdChange": -6.035188831113196, - "volume24hUsd": 2470.850663419883, - "volume24hUsdChange": -90.9772452056789, - "volume7dUsd": 64561.987224493765, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1075", @@ -2632,32 +2875,74 @@ }, "total_shares": { "denom": "gamm/pool/1075", - "amount": "112638576175664288880" + "amount": "112638738243422436333" }, - "liquidityUsd": 249185.19257477345, - "liquidity24hUsdChange": -2.5581582205032425, - "volume24hUsd": 9800.444179622584, - "volume24hUsdChange": -46.953744592883226, - "volume7dUsd": 64876.495177567704, + "liquidityUsd": 183547.46362557495, + "liquidity24hUsdChange": -3.6136169228352286, + "volume24hUsd": 10774.931658147903, + "volume24hUsdChange": -56.015500472985366, + "volume7dUsd": 314572.47382980667, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", - "amount": "1393675475564" + "amount": "1335096983490" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "97103060827" + "amount": "101708391076" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1yh3my0jzrgnh88ymad5f8mckhne6dma944mgexedr9gcmr5lmdeqq27pn7", + "id": "1397", + "current_tick_liquidity": "94310410934569.341367630151816500", + "token0": "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", + "token0Amount": "1727867090418", + "token1": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "token1Amount": "6337348697244", + "current_sqrt_price": "1.209375863897267475234232325399170628", + "current_tick": "462589", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 181691.7215315864, + "liquidity24hUsdChange": -4.992598346460488, + "volume24hUsd": 4482.575654159069, + "volume24hUsdChange": 204.02608981512878, + "volume7dUsd": 29734.146375413347, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo12z7nz5uhz27zcen5ezftxp6gg4u8xufmclrdscdhhc4nhzkz3mpsas6tg0", + "id": "1281", + "current_tick_liquidity": "905548853417011929.932924014737007833", + "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token0Amount": "8882885733169214000", + "token1": "uosmo", + "token1Amount": "163127755382", + "current_sqrt_price": "0.000057647588110835035119505729929905", + "current_tick": "-78676756", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 173787.8471299566, + "liquidity24hUsdChange": -8.584557684075552, + "volume24hUsd": 408435.93230189645, + "volume24hUsdChange": -27.992726720476448, + "volume7dUsd": 9226777.2799457, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "744", @@ -2668,26 +2953,26 @@ }, "total_shares": { "denom": "gamm/pool/744", - "amount": "73708778625279710971786" + "amount": "71012210190871979095763" }, - "liquidityUsd": 247137.02729314798, - "liquidity24hUsdChange": -4.00578080951228, - "volume24hUsd": 80888.48977119292, - "volume24hUsdChange": -18.950402386984397, - "volume7dUsd": 1132704.0954098818, + "liquidityUsd": 171874.86356941587, + "liquidity24hUsdChange": -5.742894292920116, + "volume24hUsd": 125061.30972246682, + "volume24hUsdChange": -24.13831686920304, + "volume7dUsd": 2482805.738222413, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", - "amount": "53033656944" + "amount": "51098108919" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "96304927054" + "amount": "95240301853" }, "weight": "536870912000000" } @@ -2696,34 +2981,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1225", + "id": "608", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000070368744177664", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1225", - "amount": "100126337109740913757" + "denom": "gamm/pool/608", + "amount": "88734014367383753506" }, - "liquidityUsd": 242286.8384782456, - "liquidity24hUsdChange": -2.5964610716165493, - "volume24hUsd": 2930.4194850291337, - "volume24hUsdChange": 881.4381196957637, - "volume7dUsd": 7264.765911332421, + "liquidityUsd": 171495.35780613212, + "liquidity24hUsdChange": -3.3574964314792455, + "volume24hUsd": 32.83272708930107, + "volume24hUsdChange": -34.80886270621818, + "volume7dUsd": 25137.928891666375, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", - "amount": "2353398825486" + "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", + "amount": "387643063643892" }, "weight": "53687091200" }, { "token": { "denom": "uosmo", - "amount": "94414894285" + "amount": "95030007906" }, "weight": "53687091200" } @@ -2732,45 +3017,60 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo10jfc84rq0ppv9yyw4lqgcjuurrg9j5n043r8cwprpt4l0ta97qhq5qag50", - "id": "1475", - "current_tick_liquidity": "10186213959819.711283699880396872", - "token0": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "token0Amount": "4681388673", - "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token1Amount": "15355290446", - "current_sqrt_price": "1.005297039941172844505202860186685436", - "current_tick": "10622", + "address": "osmo1trl50qymun2pk0cuquqk8m0pg5q8pl5dfudmjth7tn3crhvvkv9snhre37", + "id": "1246", + "current_tick_liquidity": "174840084472320860.422232850153017248", + "token0": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "token0Amount": "51907491558956370000000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "60310931442", + "current_sqrt_price": "0.000001459594293034169176731635672401", + "current_tick": "-106869585", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 233285.37001397277, - "liquidity24hUsdChange": -9.468314229465246, - "volume24hUsd": 361580.2651721812, - "volume24hUsdChange": 107.05845383050954, - "volume7dUsd": 1793694.44836022, + "liquidityUsd": 170906.7106827303, + "liquidity24hUsdChange": 21.657927457246938, + "volume24hUsd": 153991.7926850432, + "volume24hUsdChange": -1.4935794846034802, + "volume7dUsd": 5538090.943871794, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1eau34nfuewyzpz3umwwnlengpwn9dyczqsa9qs42cz82frscfxys2qxsz0", - "id": "1388", - "current_tick_liquidity": "513166111097.440880563774608383", - "token0": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", - "token0Amount": "57469480808", - "token1": "uosmo", - "token1Amount": "130340066289", - "current_sqrt_price": "0.920474808694208081850284368364813299", - "current_tick": "-1527262", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 229696.44887948412, - "liquidity24hUsdChange": -5.318610513922736, - "volume24hUsd": 211151.0249959563, - "volume24hUsdChange": -37.773577771253464, - "volume7dUsd": 2071649.2016685475, - "taker_fee": "0.001000000000000000" + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1225", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000070368744177664", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1225", + "amount": "100131806328981107397" + }, + "liquidityUsd": 164920.059730104, + "liquidity24hUsdChange": -4.5322252913016685, + "volume24hUsd": 1368.9622836947572, + "volume24hUsdChange": 275.00732652263326, + "volume7dUsd": 12730.718559969553, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "amount": "2431666166727" + }, + "weight": "53687091200" + }, + { + "token": { + "denom": "uosmo", + "amount": "91386465386" + }, + "weight": "53687091200" + } + ], + "total_weight": "107374182400" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -2782,83 +3082,62 @@ }, "total_shares": { "denom": "gamm/pool/992", - "amount": "280518638880561732617817" + "amount": "280458758056609950574209" }, - "liquidityUsd": 225477.0609963682, - "liquidity24hUsdChange": -8.089008930158876, - "volume24hUsd": 41124.7056887576, - "volume24hUsdChange": 77.30705087774305, - "volume7dUsd": 203991.8940083696, + "liquidityUsd": 164903.16243629158, + "liquidity24hUsdChange": -1.3995298760970896, + "volume24hUsd": 12107.382566210637, + "volume24hUsdChange": -41.41586849170719, + "volume7dUsd": 517187.2244063979, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", - "amount": "777683761000" + "amount": "756450987184" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "87864421408" + "amount": "91377102159" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo15h4xpcd5qa3wmt7zw6uwrvg5dtue3t3zxn3ylzk02mqtqhxrn3ds2laq98", - "id": "1114", - "current_tick_liquidity": "1376269168815.306370036369509709", - "token0": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", - "token0Amount": "207118471125", - "token1": "uosmo", - "token1Amount": "63982651081", - "current_sqrt_price": "0.733513738149436561312192148452756897", - "current_tick": "-4619576", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 225137.49259417807, - "liquidity24hUsdChange": -6.225115044676201, - "volume24hUsd": 178368.74012460402, - "volume24hUsdChange": 24.927839825577045, - "volume7dUsd": 1234217.2933836144, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1244", + "id": "1694", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1244", - "amount": "2165574948991718417573" + "denom": "gamm/pool/1694", + "amount": "100000000000000000000" }, - "liquidityUsd": 213629.4124538615, - "liquidity24hUsdChange": -1.8586432788854745, - "volume24hUsd": 61252.358958109646, - "volume24hUsdChange": 59.094727844570436, - "volume7dUsd": 499175.32823266037, + "liquidityUsd": 163739.79899521876, + "liquidity24hUsdChange": -6.584112372860091, + "volume24hUsd": 5654.850917696269, + "volume24hUsdChange": 91.08525988341088, + "volume7dUsd": 8614.184840755814, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65", - "amount": "740901444097" + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "amount": "8409083158" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "83247602386" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "1666094872362710000000000" }, "weight": "536870912000000" } @@ -2867,139 +3146,202 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1632", + "id": "1244", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1632", - "amount": "100191366241609411850" + "denom": "gamm/pool/1244", + "amount": "2162514488807949529559" }, - "liquidityUsd": 213158.78910892125, - "liquidity24hUsdChange": -1.0242616735076564, - "volume24hUsd": 12829.258434321504, - "volume24hUsdChange": 86.40701336036163, - "volume7dUsd": 58932.91379133478, + "liquidityUsd": 162877.92627642181, + "liquidity24hUsdChange": -1.4689564545043654, + "volume24hUsd": 41096.51198111706, + "volume24hUsdChange": -47.21146006330705, + "volume7dUsd": 575408.6926105416, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "1940879322092451400000000" + "denom": "ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65", + "amount": "686841355055" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "83049372943" + "amount": "90254866486" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo12y03jkvnre0r0j8r4glv62r0yhgqh4tkn36u0gts7xlqpgex9xjqy3xrg7", + "id": "1321", + "current_tick_liquidity": "97219654797.783852655234746495", + "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "token0Amount": "13548646889", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "32534031276", + "current_sqrt_price": "3.087330931222073647184030731913783127", + "current_tick": "8531612", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 161909.13194890952, + "liquidity24hUsdChange": -7.753426457047614, + "volume24hUsd": 228010.36838398437, + "volume24hUsdChange": -29.693556274169588, + "volume7dUsd": 4891342.861293132, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1eau34nfuewyzpz3umwwnlengpwn9dyczqsa9qs42cz82frscfxys2qxsz0", + "id": "1388", + "current_tick_liquidity": "559128231942.890039763245883990", + "token0": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "token0Amount": "94063266071", + "token1": "uosmo", + "token1Amount": "106968406912", + "current_sqrt_price": "0.870303757063479620286679723074808139", + "current_tick": "-2425714", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 160859.3212891975, + "liquidity24hUsdChange": -3.1020482051801896, + "volume24hUsd": 164574.35519558936, + "volume24hUsdChange": -19.707850565413366, + "volume7dUsd": 3929348.9721131357, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo16g4pqj866fm6w2k8zq52hs74ynsru95eft9rm88kvaztndfvgwvqvwc7ds", "id": "1230", "current_tick_liquidity": "36335875118.794024028956955943", "token0": "ibc/01D2F0C4739C871BFBEE7E786709E6904A55559DC1483DD92ED392EF12247862", - "token0Amount": "138145544897", + "token0Amount": "136981070517", "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "9557245947", - "current_sqrt_price": "0.263026038006393453197616212721082634", - "current_tick": "-12081731", + "token1Amount": "9638492300", + "current_sqrt_price": "0.265262019134267650348332718241336230", + "current_tick": "-11963607", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 206921.17866354488, - "liquidity24hUsdChange": -6.084409956916146, - "volume24hUsd": 1849.01688747649, - "volume24hUsdChange": -76.03900951159963, - "volume7dUsd": 36737.822184777106, + "liquidityUsd": 155327.2629655542, + "liquidity24hUsdChange": 0.365247989179866, + "volume24hUsd": 1210.2174027997044, + "volume24hUsdChange": 50.16118384922659, + "volume7dUsd": 51460.053362633924, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo138mk99zfmnn4stz70jcw6jshunfwcvp68kjjy78klks0kd843cxsud2wjp", - "id": "1434", - "current_tick_liquidity": "1980696760029.982781862008090885", - "token0": "uosmo", - "token0Amount": "114469573114", - "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token1Amount": "55115817", - "current_sqrt_price": "0.043024421291025732974275400925992585", - "current_tick": "-26148900", + "address": "osmo1mrcrnwexhufaxdmfc7mfpef5y8m26uxpfewl66nmdq5kecw6q5jspjar5t", + "id": "1273", + "current_tick_liquidity": "22429663929160.532120673925967009", + "token0": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", + "token0Amount": "2040763603401537", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "24095258007", + "current_sqrt_price": "0.008022204723803087273322559898550197", + "current_tick": "-39564424", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 204879.18911830342, - "liquidity24hUsdChange": -12.163568104750862, - "volume24hUsd": 799234.9055166125, - "volume24hUsdChange": -13.800654029942674, - "volume7dUsd": 4821479.6110216705, + "spread_factor": "0.005000000000000000", + "liquidityUsd": 155106.79982769024, + "liquidity24hUsdChange": -4.378134885074775, + "volume24hUsd": 58371.74598196721, + "volume24hUsdChange": -33.8400247042404, + "volume7dUsd": 496371.8339597954, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1570", + "code_id": "580", + "tokens": [ + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "73116835802" + }, + { + "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "amount": "34775038183345430000000" + } + ], + "liquidityUsd": 147242.56685809675, + "liquidity24hUsdChange": 0.0513705961515489, + "volume24hUsd": 15695.163927712047, + "volume24hUsdChange": 25.918246801735894, + "volume7dUsd": 471626.22916217224, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1uy8dvv58779kpws93u37j878apchdjcjdttnzrqnphdpefxxuw7qrgvwpe", + "id": "1215", + "current_tick_liquidity": "201579197826.842831110514017782", + "token0": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", + "token0Amount": "270232332022", + "token1": "uosmo", + "token1Amount": "51075741636", + "current_sqrt_price": "0.620224328069784119256890096951992509", + "current_tick": "-6153218", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 139885.40530854237, + "liquidity24hUsdChange": -3.1692266406077176, + "volume24hUsd": 6654.351296733733, + "volume24hUsdChange": -10.65644728469149, + "volume7dUsd": 162097.94548048088, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "463", + "id": "1690", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/463", - "amount": "54674604098007461139161" + "denom": "gamm/pool/1690", + "amount": "100000000000000000000" }, - "liquidityUsd": 198842.69073538744, - "liquidity24hUsdChange": -4.80755338164124, - "volume24hUsd": 1880.8617148845674, - "volume24hUsdChange": -51.14486121234268, - "volume7dUsd": 33202.82760958736, + "liquidityUsd": 139109.06865011132, + "liquidity24hUsdChange": -0.8504980766030256, + "volume24hUsd": 22370.03688547561, + "volume24hUsdChange": 30.426521639172567, + "volume7dUsd": 47270.89331096629, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "8900580619685" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "69420123040" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "77485478547" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "1413735431227702600000000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1uy8dvv58779kpws93u37j878apchdjcjdttnzrqnphdpefxxuw7qrgvwpe", - "id": "1215", - "current_tick_liquidity": "201578578950.285285832649142926", - "token0": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", - "token0Amount": "270724332928", - "token1": "uosmo", - "token1Amount": "50885998741", - "current_sqrt_price": "0.619284948720907750002516602472655876", - "current_tick": "-6164862", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 198511.10298107794, - "liquidity24hUsdChange": -4.244505103887823, - "volume24hUsd": 2729.644370721581, - "volume24hUsdChange": -62.21213867454338, - "volume7dUsd": 48604.583570861665, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "789", @@ -3010,26 +3352,26 @@ }, "total_shares": { "denom": "gamm/pool/789", - "amount": "1787704042685721121853030" + "amount": "1764374576961982727397885" }, - "liquidityUsd": 193004.04429839732, - "liquidity24hUsdChange": -3.4886052502497518, - "volume24hUsd": 21708.94893028425, - "volume24hUsdChange": 20.87932569602829, - "volume7dUsd": 201289.2646172447, + "liquidityUsd": 136563.44963584852, + "liquidity24hUsdChange": -4.016198936571412, + "volume24hUsd": 15894.357422515037, + "volume24hUsdChange": 41.512292176833725, + "volume7dUsd": 413164.6735398836, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", - "amount": "105862864448565980000000" + "amount": "103107262534463100000000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "75210261331" + "amount": "75673335212" }, "weight": "536870912000000" } @@ -3040,89 +3382,110 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1lmlshx6wpuh5zpnsrymd5xqjakmdtvd3n46gjr90xq7azkj53ezqgwwdnt", "id": "1104", - "current_tick_liquidity": "321639514445.529421895984630722", + "current_tick_liquidity": "303285275320.441481857423539793", "token0": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", - "token0Amount": "869313585497", + "token0Amount": "857538167767", "token1": "uosmo", - "token1Amount": "54503324169", - "current_sqrt_price": "0.330738344816894395642338907835842065", - "current_tick": "-8906122", + "token1Amount": "53571353896", + "current_sqrt_price": "0.334527612621945253213744788923203918", + "current_tick": "-8880913", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 191907.4095115387, - "liquidity24hUsdChange": -0.8023652434914461, - "volume24hUsd": 192638.1827678982, - "volume24hUsdChange": 140.37736133724871, - "volume7dUsd": 741680.5204368714, + "liquidityUsd": 134971.51228174346, + "liquidity24hUsdChange": -1.9220677322548043, + "volume24hUsd": 114407.7543903392, + "volume24hUsdChange": 50.997217263989214, + "volume7dUsd": 786960.9576223459, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo14nx06cfjs9xslz3ehd3tqs65pzad76479spnjfshdwcmxqnvp7rq2q7jcs", + "id": "1670", + "current_tick_liquidity": "213999412208.289445421566346943", + "token0": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "token0Amount": "33169801718", + "token1": "uosmo", + "token1Amount": "29985346798", + "current_sqrt_price": "1.894176886396197818190215190202712945", + "current_tick": "2587906", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.010000000000000000", + "liquidityUsd": 134446.27249514114, + "liquidity24hUsdChange": 4.8027948157730895, + "volume24hUsd": 86165.11089558982, + "volume24hUsdChange": -3.702682461768193, + "volume7dUsd": 3653709.405928381, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "2", + "id": "8", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/2", - "amount": "118681563046007078328659498" + "denom": "gamm/pool/8", + "amount": "29899755721694179160919275" }, - "liquidityUsd": 188526.61242110227, - "liquidity24hUsdChange": -4.017983477066018, - "volume24hUsd": 2236.982445908797, - "volume24hUsdChange": -21.225915007075457, - "volume7dUsd": 35735.27286404096, + "liquidityUsd": 134254.02158648544, + "liquidity24hUsdChange": -1.052635718448495, + "volume24hUsd": 4135.548775709996, + "volume24hUsdChange": 81.77136437699323, + "volume7dUsd": 112826.45601564663, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "uion", - "amount": "380453959" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "10000242355" }, - "weight": "858993459200000" + "weight": "644245094400000" }, { "token": { - "denom": "uosmo", - "amount": "29385396690" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "1969397193763" }, - "weight": "214748364800000" + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1513", + "id": "674", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1513", - "amount": "305761017517574196532" + "denom": "gamm/pool/674", + "amount": "21625540385274769972817" }, - "liquidityUsd": 184714.77930407645, - "liquidity24hUsdChange": 7.286015211538607, - "volume24hUsd": 2333.5551233029005, - "volume24hUsdChange": 1316.175363269669, - "volume7dUsd": 4466.64123082237, + "liquidityUsd": 131905.06823420562, + "liquidity24hUsdChange": -1.5103002607038767, + "volume24hUsd": 10047.612369220842, + "volume24hUsdChange": 10.673608469865805, + "volume7dUsd": 418308.8484976407, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C97473CD237EBA2F94FDFA6ABA5EC0E22FA140655D73D2A2754F03A347BBA40B", - "amount": "10151173640557930" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "65915621520704800000000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", - "amount": "1937116571350" + "denom": "uosmo", + "amount": "73088806726" }, "weight": "536870912000000" } @@ -3131,175 +3494,232 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "8", + "id": "2", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/8", - "amount": "29897550304096915364370885" + "denom": "gamm/pool/2", + "amount": "118547497491815913150548414" }, - "liquidityUsd": 184466.25946799637, - "liquidity24hUsdChange": -4.365757021390297, - "volume24hUsd": 12770.289620844886, - "volume24hUsdChange": -45.67076874599734, - "volume7dUsd": 80370.57345293659, + "liquidityUsd": 129948.61903062281, + "liquidity24hUsdChange": -7.597559820249083, + "volume24hUsd": 2652.4115124970967, + "volume24hUsdChange": 471.5427116515732, + "volume7dUsd": 46656.20172986324, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "10218974010" + "denom": "uion", + "amount": "382479271" }, - "weight": "644245094400000" + "weight": "858993459200000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "1900164282562" + "denom": "uosmo", + "amount": "28758408378" }, - "weight": "429496729600000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12y03jkvnre0r0j8r4glv62r0yhgqh4tkn36u0gts7xlqpgex9xjqy3xrg7", - "id": "1321", - "current_tick_liquidity": "94190779993.931849524402087010", - "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token0Amount": "10695919601", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "60088738172", - "current_sqrt_price": "3.408273235073982869901195492267225127", - "current_tick": "9161632", + "address": "osmo1n4hgg0senuq3g7jft9fhzmw9g36p0k0yhel5zpx7hx8yakawu2lsgtxmet", + "id": "1361", + "current_tick_liquidity": "1406001203569.422938030284581317", + "token0": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", + "token0Amount": "335084721341", + "token1": "uosmo", + "token1Amount": "77940814464", + "current_sqrt_price": "0.441557305605755664831528957780176760", + "current_tick": "-8050272", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 184342.05263812045, - "liquidity24hUsdChange": -4.441127493282383, - "volume24hUsd": 128365.2138150903, - "volume24hUsdChange": 44.59623074460162, - "volume7dUsd": 706586.73505686, + "liquidityUsd": 129278.6137820638, + "liquidity24hUsdChange": -2.5604311262419026, + "volume24hUsd": 6183.6013970935055, + "volume24hUsdChange": -22.76847876220953, + "volume7dUsd": 316257.79679470544, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1trl50qymun2pk0cuquqk8m0pg5q8pl5dfudmjth7tn3crhvvkv9snhre37", - "id": "1246", - "current_tick_liquidity": "108282340134645535.383894435717818671", - "token0": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "token0Amount": "26632925144912184000000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "99795157281", - "current_sqrt_price": "0.000001755597563535045353088980720616", - "current_tick": "-105917878", + "address": "osmo1wsq0u937xgfv6ffuyse8f4v5zhca2q2ff3sgfsmv242y6rlx5g8q3m7hnt", + "id": "1441", + "current_tick_liquidity": "31630712407782164.223797643547516657", + "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token0Amount": "36642450717331720000", + "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token1Amount": "25611463", + "current_sqrt_price": "0.000002204860389153510861494559552245", + "current_tick": "-104138591", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 181220.66273791122, - "liquidity24hUsdChange": -1.350598767918466, - "volume24hUsd": 446904.5291406584, - "volume24hUsdChange": 82.02633404351107, - "volume7dUsd": 2499283.9470125027, + "liquidityUsd": 125485.1134227236, + "liquidity24hUsdChange": -5.337273682231272, + "volume24hUsd": 122063.90587778942, + "volume24hUsdChange": 7.5037296486518965, + "volume7dUsd": 2101922.319529322, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1xwkz3xwfdn3rr924gma80rdkw6y4rm7hjhzexhlqazh600vduzwq74zvws", - "id": "1655", - "current_tick_liquidity": "49626938431.605812786647506060", - "token0": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", - "token0Amount": "1099897649", - "token1": "uosmo", - "token1Amount": "71686769449", - "current_sqrt_price": "7.843634755716836139798488177799394226", - "current_tick": "14152260", + "address": "osmo13vhcd3xllpvz8tql4dzp8yszxeas8zxpzptyvjttdy7m64kuyz5sv6caqq", + "id": "1464", + "current_tick_liquidity": "6305164806909.422920138834638631", + "token0": "uosmo", + "token0Amount": "105478917650", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "26080057388", + "current_sqrt_price": "0.948979313289628063959112303979966650", + "current_tick": "-994383", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.010000000000000000", - "liquidityUsd": 178801.42914258677, - "liquidity24hUsdChange": -5.752410816947192, - "volume24hUsd": 256375.98180828514, - "volume24hUsdChange": -34.09047804199526, - "volume7dUsd": 2252694.5233066487, + "spread_factor": "0.000100000000000000", + "liquidityUsd": 121282.25727210677, + "liquidity24hUsdChange": -12.182856635971781, + "volume24hUsd": 1852841.6392731632, + "volume24hUsdChange": -34.77062451839893, + "volume7dUsd": 29036956.264700983, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ypkq6x2rvl8a06exzm4ngfddyhlhr2zut27j5706cgmzy2un95qqg4z46t", - "id": "1264", - "current_tick_liquidity": "3884276622122631324.264639100289732045", - "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token0Amount": "28961102454309998000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "73946196105", - "current_sqrt_price": "0.000059252813204745175409215176180575", - "current_tick": "-78489105", + "address": "osmo15h4xpcd5qa3wmt7zw6uwrvg5dtue3t3zxn3ylzk02mqtqhxrn3ds2laq98", + "id": "1114", + "current_tick_liquidity": "1335648757805.332509453980888707", + "token0": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "token0Amount": "118350298178", + "token1": "uosmo", + "token1Amount": "68842877834", + "current_sqrt_price": "0.739128883705731331453380364568217009", + "current_tick": "-4536885", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 175780.4115341675, - "liquidity24hUsdChange": -6.132303880230261, - "volume24hUsd": 407161.7765755549, - "volume24hUsdChange": 9.60243588437762, - "volume7dUsd": 2298698.5101039, + "liquidityUsd": 120459.10850481053, + "liquidity24hUsdChange": -1.3750733295958681, + "volume24hUsd": 220207.5673291103, + "volume24hUsdChange": -21.775216517873282, + "volume7dUsd": 5482531.2559619965, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hfvn84ea9ch4sth90qusqnyhgexvn3uqr95c7w4y3l39jvrfh3tqpd4fcn", - "id": "1282", - "current_tick_liquidity": "375329053226.772564534451737298", - "token0": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token0Amount": "13633926307", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "27929849961", - "current_sqrt_price": "3.296768953072711460378427909182790868", - "current_tick": "9086868", + "address": "osmo12wz0mpxlgjzvyn2838h5s0770r3q0eaw453tshcd0v0mkhrkhnpq3qdf57", + "id": "1111", + "current_tick_liquidity": "7337922439385.404090569645076741", + "token0": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "token0Amount": "519449419023386", + "token1": "uosmo", + "token1Amount": "64178400598", + "current_sqrt_price": "0.011401685336741142730936646988303462", + "current_tick": "-35700016", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 175493.47216243832, - "liquidity24hUsdChange": 1.5484972882752612, - "volume24hUsd": 1338006.7760202892, - "volume24hUsdChange": 82.25610497296711, - "volume7dUsd": 5146966.501136821, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 118738.3178750356, + "liquidity24hUsdChange": -3.7330340204216954, + "volume24hUsd": 29060.090418092066, + "volume24hUsdChange": 2.841269699148138, + "volume7dUsd": 530271.1446623853, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1quk4xdv78eg069qnhlg6wsnzkpswhfavhnkquwppqwgnjk95pwnqhm0djs", + "id": "1110", + "current_tick_liquidity": "5991530873013.310525223959579363", + "token0": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "token0Amount": "8247018621686", + "token1": "uosmo", + "token1Amount": "99438345288", + "current_sqrt_price": "0.061167229585148194970611061920892863", + "current_tick": "-24258571", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 117565.85857801049, + "liquidity24hUsdChange": -2.8968917722106595, + "volume24hUsd": 14917.168227196049, + "volume24hUsdChange": -9.829912254442624, + "volume7dUsd": 558672.3617881095, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "605", + "id": "1226", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000070368744177664", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1226", + "amount": "6154018157471889898047597" + }, + "liquidityUsd": 116708.92638196229, + "liquidity24hUsdChange": -4.775001351579646, + "volume24hUsd": 4759.1923396368165, + "volume24hUsdChange": 423.49843345894857, + "volume7dUsd": 130410.67162519132, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "amount": "58636679544" + }, + "weight": "53687091200" + }, + { + "token": { + "denom": "uosmo", + "amount": "64671430986" + }, + "weight": "53687091200" + } + ], + "total_weight": "107374182400" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1020", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/605", - "amount": "127110178166917322820945097" + "denom": "gamm/pool/1020", + "amount": "100066409312402578905" }, - "liquidityUsd": 173772.1952873447, - "liquidity24hUsdChange": -2.279574361010835, - "volume24hUsd": 59594.39649115135, - "volume24hUsdChange": 139.43084297251335, - "volume7dUsd": 266717.7303677154, + "liquidityUsd": 115866.48482868873, + "liquidity24hUsdChange": -2.7812845378181428, + "volume24hUsd": 9244.289296389265, + "volume24hUsdChange": 28.74367117223637, + "volume7dUsd": 283228.23769707285, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "492911932297254" + "denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", + "amount": "85749170848" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "67679962508" + "amount": "64204612359" }, "weight": "536870912000000" } @@ -3308,97 +3728,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1mrcrnwexhufaxdmfc7mfpef5y8m26uxpfewl66nmdq5kecw6q5jspjar5t", - "id": "1273", - "current_tick_liquidity": "16579152630094.700017471992085561", - "token0": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", - "token0Amount": "1772543921706218", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "34604562889", - "current_sqrt_price": "0.008808862631025628564472263741082927", - "current_tick": "-38240394", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 173185.54815249465, - "liquidity24hUsdChange": -4.068123469986556, - "volume24hUsd": 28357.154693301854, - "volume24hUsdChange": 33.3147869483958, - "volume7dUsd": 257597.44215242894, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12wz0mpxlgjzvyn2838h5s0770r3q0eaw453tshcd0v0mkhrkhnpq3qdf57", - "id": "1111", - "current_tick_liquidity": "6970894815891.487005079615739702", - "token0": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "token0Amount": "497771754748295", - "token1": "uosmo", - "token1Amount": "66162555053", - "current_sqrt_price": "0.011730078607703996079298800400759012", - "current_tick": "-35624053", + "address": "osmo126pr9qp44aft4juw7x4ev4s2qdtnwe38jzwunec9pxt5cpzaaphqyagqpu", + "id": "1066", + "current_tick_liquidity": "61516707769342684.569066590071863566", + "token0": "uosmo", + "token0Amount": "61424512245", + "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "token1Amount": "59708584876964705000000", + "current_sqrt_price": "949572.140618811057052553275679334508362147", + "current_tick": "107016872", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 172682.3181691785, - "liquidity24hUsdChange": -1.4368636714459255, - "volume24hUsd": 102277.88413293773, - "volume24hUsdChange": 171.17242743687885, - "volume7dUsd": 416449.3568835891, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1570", - "code_id": "580", - "tokens": [ - { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "85489875409" - }, - { - "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "amount": "28270902581364335000000" - } - ], - "liquidityUsd": 171944.5873061105, - "liquidity24hUsdChange": -1.568012994854508, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 115169.3328380307, + "liquidity24hUsdChange": -1.5998379248625003, + "volume24hUsd": 7854.443067747652, + "volume24hUsdChange": 4.161681135257161, + "volume7dUsd": 170646.08600851826, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1036", + "id": "1137", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1036", - "amount": "191349698557717743476113" + "denom": "gamm/pool/1137", + "amount": "41233461213369035538582" }, - "liquidityUsd": 166399.45314921578, - "liquidity24hUsdChange": -3.5611542384333568, - "volume24hUsd": 2053.4679310999504, - "volume24hUsdChange": 87.38072822386857, - "volume7dUsd": 12170.912228656054, + "liquidityUsd": 115076.341396, + "liquidity24hUsdChange": -2.1989784899936584, + "volume24hUsd": 10787.455477268744, + "volume24hUsdChange": -49.934712147536025, + "volume7dUsd": 280803.9798226953, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", - "amount": "2913036100919" + "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", + "amount": "1606578716332" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "64842922863" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "57538170698" }, "weight": "536870912000000" } @@ -3407,169 +3785,106 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "674", + "id": "1583", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/674", - "amount": "22813431330140572001069" + "denom": "gamm/pool/1583", + "amount": "100312477297148313740" }, - "liquidityUsd": 165442.500155162, - "liquidity24hUsdChange": -2.2803589867425873, - "volume24hUsd": 6046.472023657468, - "volume24hUsdChange": 5.948961603768981, - "volume7dUsd": 48824.04851162819, + "liquidityUsd": 114759.00634630656, + "liquidity24hUsdChange": -7.718705223523411, + "volume24hUsd": 26817.238641118885, + "volume24hUsdChange": -38.03125100722679, + "volume7dUsd": 777496.8854126727, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "82712301185423220000000" + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "16180293247930385000000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "64461815038" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "6013653496" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1at3vk52ujxzuu2sqn2qs6nu7m06ld5gysqw5vftms8zkndcj8fkstqmxue", - "id": "1077", - "current_tick_liquidity": "79284289629545.131349110139703727", - "token0": "uosmo", - "token0Amount": "108159243451", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "26824891686", - "current_sqrt_price": "1.133773701459864655249202827443262166", - "current_tick": "285442", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 164595.93868844488, - "liquidity24hUsdChange": -5.87071270021426, - "volume24hUsd": 909154.7216886486, - "volume24hUsdChange": -2.0008599433210006, - "volume7dUsd": 6636016.988020107, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1quk4xdv78eg069qnhlg6wsnzkpswhfavhnkquwppqwgnjk95pwnqhm0djs", - "id": "1110", - "current_tick_liquidity": "5991993610562.396261254952508031", - "token0": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "token0Amount": "12670932608745", - "token1": "uosmo", - "token1Amount": "83636362708", - "current_sqrt_price": "0.058527007425271812959366750985609703", - "current_tick": "-24574590", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 162975.38951729832, - "liquidity24hUsdChange": -3.095257638247494, - "volume24hUsd": 41947.78958927662, - "volume24hUsdChange": 55.601573104571656, - "volume7dUsd": 227458.2120060929, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1020", + "id": "1036", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1020", - "amount": "100005992896968947532" + "denom": "gamm/pool/1036", + "amount": "191351795025518042159976" }, - "liquidityUsd": 160908.5157957705, - "liquidity24hUsdChange": -4.068330750460417, - "volume24hUsd": 4968.688415013266, - "volume24hUsdChange": -23.242602077600235, - "volume7dUsd": 70860.58722665126, + "liquidityUsd": 114254.32184930412, + "liquidity24hUsdChange": -1.926050129685558, + "volume24hUsd": 2342.270558322967, + "volume24hUsdChange": 13.040060135727105, + "volume7dUsd": 82117.51243588472, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", - "amount": "87357517707" + "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "amount": "2987813856613" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "62703201725" + "amount": "63311271206" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ydal8ppkzdg6hggw5uwl5ulw92tq22rhxht9emrfkv92q7y4haaqqnyrtj", - "id": "1221", - "current_tick_liquidity": "350596343099.983099467560179947", - "token0": "uosmo", - "token0Amount": "94695476431", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "30870424784", - "current_sqrt_price": "1.136002605578661271348768379240972371", - "current_tick": "290501", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 152643.70771621433, - "liquidity24hUsdChange": -4.248287798386487, - "volume24hUsd": 170722.92404384856, - "volume24hUsdChange": 63.38555215697862, - "volume7dUsd": 896989.1049013478, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1583", + "id": "605", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1583", - "amount": "100352899434524315336" + "denom": "gamm/pool/605", + "amount": "121031794304622845766274000" }, - "liquidityUsd": 151816.3425536062, - "liquidity24hUsdChange": -6.703265620436091, - "volume24hUsd": 15956.025379475164, - "volume24hUsdChange": -27.13850670755073, - "volume7dUsd": 136854.1314950199, + "liquidityUsd": 113426.04390700706, + "liquidity24hUsdChange": -3.8073607455465486, + "volume24hUsd": 10845.828035594219, + "volume24hUsdChange": -24.199526946929215, + "volume7dUsd": 288820.666799242, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "14673557289783354000000" + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "amount": "484728268389679" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "6544113879" + "denom": "uosmo", + "amount": "62797134436" }, "weight": "536870912000000" } @@ -3578,82 +3893,118 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1046", + "id": "972", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1046", - "amount": "38416087417290454851280" + "denom": "gamm/pool/972", + "amount": "100042159160063401596" }, - "liquidityUsd": 151605.2405165276, - "liquidity24hUsdChange": -5.980612903669553, - "volume24hUsd": 6274.068646199249, - "volume24hUsdChange": -60.1089088940318, - "volume7dUsd": 75118.91004363463, + "liquidityUsd": 113396.20959224366, + "liquidity24hUsdChange": -6.259524367728699, + "volume24hUsd": 65.06931441749128, + "volume24hUsdChange": -94.9033529582358, + "volume7dUsd": 20921.27699377576, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", - "amount": "69765222101" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "781085683300" }, - "weight": "5368709120" + "weight": "1073741824" }, { "token": { - "denom": "uosmo", - "amount": "59063927377" + "denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", + "amount": "54886207936" }, - "weight": "5368709120" + "weight": "1073741824" } ], - "total_weight": "10737418240" + "total_weight": "2147483648" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo13vhcd3xllpvz8tql4dzp8yszxeas8zxpzptyvjttdy7m64kuyz5sv6caqq", - "id": "1464", - "current_tick_liquidity": "2640062503504.148879733200026654", + "address": "osmo1at3vk52ujxzuu2sqn2qs6nu7m06ld5gysqw5vftms8zkndcj8fkstqmxue", + "id": "1077", + "current_tick_liquidity": "252964324781351.656477547212683544", "token0": "uosmo", - "token0Amount": "85890946825", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "40304187607", - "current_sqrt_price": "1.133841498619573853589066031186372278", - "current_tick": "285596", + "token0Amount": "116093554199", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "7623960108", + "current_sqrt_price": "0.948959676119666921280925601610888117", + "current_tick": "-994756", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 150096.61631237448, - "liquidity24hUsdChange": -14.068862234483518, - "volume24hUsd": 2636642.8641119716, - "volume24hUsdChange": 12.457921752427858, - "volume7dUsd": 14516404.999908373, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 112389.59211878845, + "liquidity24hUsdChange": -4.388081450945087, + "volume24hUsd": 564282.136341186, + "volume24hUsdChange": -24.323594922847978, + "volume7dUsd": 11046020.887909705, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo107qtnn78n75ueqtvmtehwhhelhazc6cxt8lvgvmf5yyrnpjxfpcqruer9x", - "id": "1103", - "current_tick_liquidity": "178470410038.336823857420648362", - "token0": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "token0Amount": "472379963209", - "token1": "uosmo", - "token1Amount": "58076357133", - "current_sqrt_price": "0.351350629839017851183550917004033798", - "current_tick": "-8765528", + "address": "osmo1ydal8ppkzdg6hggw5uwl5ulw92tq22rhxht9emrfkv92q7y4haaqqnyrtj", + "id": "1221", + "current_tick_liquidity": "73217100562189.803747472071584208", + "token0": "uosmo", + "token0Amount": "100457890260", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "21699748304", + "current_sqrt_price": "0.949770592268924457382249688522388728", + "current_tick": "-979359", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 149489.2161520118, - "liquidity24hUsdChange": -2.686007377991394, - "volume24hUsd": 17194.93167299382, - "volume24hUsdChange": 51.34535853943494, - "volume7dUsd": 144626.51844235015, + "liquidityUsd": 112366.9571492433, + "liquidity24hUsdChange": 3.08480711504216, + "volume24hUsd": 234372.0782287073, + "volume24hUsdChange": 132.57470893269465, + "volume7dUsd": 2712331.7368361256, "taker_fee": "0.001000000000000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "572", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/572", + "amount": "861644915405996290072" + }, + "liquidityUsd": 106448.94244809987, + "liquidity24hUsdChange": -1.6887140463313965, + "volume24hUsd": 45.118943910101535, + "volume24hUsdChange": -89.93594115665321, + "volume7dUsd": 24332.859633273874, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6618177532" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "amount": "7935564283421" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "899", @@ -3664,26 +4015,26 @@ }, "total_shares": { "denom": "gamm/pool/899", - "amount": "1628798923493992967900" + "amount": "1631948823304125591707" }, - "liquidityUsd": 145951.03518540435, - "liquidity24hUsdChange": -4.7155541433751305, - "volume24hUsd": 2400.038440817447, - "volume24hUsdChange": -89.70416899351714, - "volume7dUsd": 304951.1653434564, + "liquidityUsd": 104436.52685441251, + "liquidity24hUsdChange": -3.1471716593010663, + "volume24hUsd": 18443.646177134797, + "volume24hUsdChange": 5.48408377094229, + "volume7dUsd": 473543.1945501744, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", - "amount": "1544341472435259000000" + "amount": "1538300510493575500000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "56875209999" + "amount": "57871526656" }, "weight": "536870912000000" } @@ -3692,55 +4043,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo17d6da9nu5698l8nc5qw7u2mw3plpymr6vhkprwdk59j8g4c4tazq27ux5q", - "id": "1384", - "current_tick_liquidity": "1339461243951.139004248604585449", - "token0": "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", - "token0Amount": "6295168804696", - "token1": "uosmo", - "token1Amount": "51265821976", - "current_sqrt_price": "0.098518781656225087715410817149476937", - "current_tick": "-18294050", + "address": "osmo12vmj7ctds588dnjeexnlp9pp5sjgu96yzuu2w8hjzrh89lf6t8es5sl9eq", + "id": "1647", + "current_tick_liquidity": "265015625851.279440693932416190", + "token0": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", + "token0Amount": "1436405430366", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "49877550886", + "current_sqrt_price": "0.189215813264687909902562719321038429", + "current_tick": "-15419738", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.001000000000000000", - "liquidityUsd": 144176.955970949, - "liquidity24hUsdChange": -9.738104209062186, - "volume24hUsd": 15671.522835724107, - "volume24hUsdChange": 15.74214799472515, - "volume7dUsd": 130345.42124705476, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 101371.29910545173, + "liquidity24hUsdChange": -3.845907571658817, + "volume24hUsd": 7237.066289848038, + "volume24hUsdChange": -64.61730784360688, + "volume7dUsd": 331785.0965844418, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1180", + "id": "42", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1180", - "amount": "936355413987840412431125" + "denom": "gamm/pool/42", + "amount": "26667457744044845491630" }, - "liquidityUsd": 142585.7791896896, - "liquidity24hUsdChange": -2.998809040479983, - "volume24hUsd": 32010.11670954848, - "volume24hUsdChange": 110.98190681059954, - "volume7dUsd": 199855.54935173024, + "liquidityUsd": 100830.39121049133, + "liquidity24hUsdChange": -4.493658250367489, + "volume24hUsd": 736.0950990222577, + "volume24hUsdChange": -92.78262133815947, + "volume7dUsd": 83620.02878847055, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", - "amount": "28904473027836970000000" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "692736160925" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6594481858" + "denom": "uosmo", + "amount": "55871108319" }, "weight": "536870912000000" } @@ -3749,34 +4100,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "572", + "id": "1180", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/572", - "amount": "861757903765692001107" + "denom": "gamm/pool/1180", + "amount": "936832804817714612377311" }, - "liquidityUsd": 138422.2195407505, - "liquidity24hUsdChange": -5.023467406065542, - "volume24hUsd": 1692.154473819626, - "volume24hUsdChange": 50.56472547982441, - "volume7dUsd": 9587.1379168849, + "liquidityUsd": 99300.75633328647, + "liquidity24hUsdChange": -4.8826543642453135, + "volume24hUsd": 13854.22300005857, + "volume24hUsdChange": -23.566695024245586, + "volume7dUsd": 319689.47697710287, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6393501616" + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "amount": "31110086867620130000000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", - "amount": "8209055846558" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6182714340" }, "weight": "536870912000000" } @@ -3785,112 +4136,154 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo126pr9qp44aft4juw7x4ev4s2qdtnwe38jzwunec9pxt5cpzaaphqyagqpu", - "id": "1066", - "current_tick_liquidity": "58941524157755045.124728640246166219", - "token0": "uosmo", - "token0Amount": "51205491299", - "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token1Amount": "70673088435309120000000", - "current_sqrt_price": "1132430.507788558824836204502954705678779606", - "current_tick": "108282398", + "address": "osmo107qtnn78n75ueqtvmtehwhhelhazc6cxt8lvgvmf5yyrnpjxfpcqruer9x", + "id": "1103", + "current_tick_liquidity": "170668528636.388255876678052844", + "token0": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "token0Amount": "500103192586", + "token1": "uosmo", + "token1Amount": "54542587066", + "current_sqrt_price": "0.332120139783320920599004403172828756", + "current_tick": "-8896963", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 136391.31094114954, - "liquidity24hUsdChange": -2.383389413462219, - "volume24hUsd": 3601.348673004129, - "volume24hUsdChange": 17.082590816263647, - "volume7dUsd": 37356.921662998415, + "liquidityUsd": 99052.70218965961, + "liquidity24hUsdChange": -6.029364002450916, + "volume24hUsd": 18307.347238185073, + "volume24hUsdChange": -73.33068812502452, + "volume7dUsd": 393963.9328303775, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1654", + "code_id": "580", + "tokens": [ + { + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "amount": "2410682083943" + }, + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "48205451498" + } + ], + "liquidityUsd": 97561.21797938125, + "liquidity24hUsdChange": -2.5626432441337696, + "volume24hUsd": 9491.778467464423, + "volume24hUsdChange": 1.2792379431746466, + "volume7dUsd": 141040.3135286926, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1wsq0u937xgfv6ffuyse8f4v5zhca2q2ff3sgfsmv242y6rlx5g8q3m7hnt", - "id": "1441", - "current_tick_liquidity": "76266928057028240.980245871080661803", - "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token0Amount": "28706423627607300000", - "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token1Amount": "51656212", - "current_sqrt_price": "0.000002250525905762129530217400154458", - "current_tick": "-103935134", + "address": "osmo17d6da9nu5698l8nc5qw7u2mw3plpymr6vhkprwdk59j8g4c4tazq27ux5q", + "id": "1384", + "current_tick_liquidity": "3592325276274.856446384336639119", + "token0": "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", + "token0Amount": "5665489941625", + "token1": "uosmo", + "token1Amount": "48076758575", + "current_sqrt_price": "0.099526416509406809521992114465063268", + "current_tick": "-18094493", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 136353.38191889218, - "liquidity24hUsdChange": -8.42928253545312, - "volume24hUsd": 187947.3023013605, - "volume24hUsdChange": 1.2322476143981669, - "volume7dUsd": 1233939.7673246067, + "spread_factor": "0.001000000000000000", + "liquidityUsd": 93918.396412311, + "liquidity24hUsdChange": -2.8171575359686987, + "volume24hUsd": 22937.071369912086, + "volume24hUsdChange": 592.4959702881047, + "volume7dUsd": 277033.3335552765, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1226", + "id": "1046", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000070368744177664", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1226", - "amount": "6001479235373395303461933" + "denom": "gamm/pool/1046", + "amount": "35022389714749121926670" }, - "liquidityUsd": 135899.52321008398, - "liquidity24hUsdChange": -3.0054305717826884, - "volume24hUsd": 2372.822566834645, - "volume24hUsdChange": 1.8184758462111614, - "volume7dUsd": 16507.43003609151, + "liquidityUsd": 92388.81936340495, + "liquidity24hUsdChange": -10.452466519276953, + "volume24hUsd": 12057.662895092444, + "volume24hUsdChange": 1.2743357280696277, + "volume7dUsd": 298180.33505413006, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "amount": "68095870388" + "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "amount": "67485781953" }, - "weight": "53687091200" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "52957639787" + "amount": "51232792397" }, - "weight": "53687091200" + "weight": "5368709120" } ], - "total_weight": "107374182400" + "total_weight": "10737418240" + }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1567", + "code_id": "580", + "tokens": [ + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "45572827681" + }, + { + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "amount": "1824341527092983600000" + } + ], + "liquidityUsd": 92262.88054328674, + "liquidity24hUsdChange": 0.5441487932473762, + "volume24hUsd": 85559.99892113396, + "volume24hUsdChange": 23.508121118076073, + "volume7dUsd": 1165955.946402439, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1137", + "id": "571", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1137", - "amount": "41233486905013202466339" + "denom": "gamm/pool/571", + "amount": "830150772536600042782" }, - "liquidityUsd": 131361.873058, - "liquidity24hUsdChange": -27.82251209567967, - "volume24hUsd": 18416.889450909945, - "volume24hUsdChange": -23.957731005361953, - "volume7dUsd": 181201.52378458687, + "liquidityUsd": 90194.98861961925, + "liquidity24hUsdChange": -2.780865153179355, + "volume24hUsd": 472.8775022150627, + "volume24hUsdChange": 13.359507957384936, + "volume7dUsd": 21730.75446877463, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", - "amount": "1398421661286" + "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "amount": "6736556665554" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "65680936529" + "denom": "uosmo", + "amount": "49981371112" }, "weight": "536870912000000" } @@ -3899,91 +4292,76 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1n4hgg0senuq3g7jft9fhzmw9g36p0k0yhel5zpx7hx8yakawu2lsgtxmet", - "id": "1361", - "current_tick_liquidity": "542968845342.152626399076537564", - "token0": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", - "token0Amount": "239424368138", + "address": "osmo12krxudgr26lwdqrc32w9pldnx9ptgl0fv8mq8y02guhepxhdqp3slj8p4r", + "id": "1099", + "current_tick_liquidity": "246235552987.762145276120288838", + "token0": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "token0Amount": "874819841340", "token1": "uosmo", - "token1Amount": "58313559334", - "current_sqrt_price": "0.420097313538478604141654546896022829", - "current_tick": "-8235183", + "token1Amount": "39128372712", + "current_sqrt_price": "0.260805860161478193086139502330373915", + "current_tick": "-12198031", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 129037.92342032517, - "liquidity24hUsdChange": -5.142137549177197, - "volume24hUsd": 2162.122183394589, - "volume24hUsdChange": -57.4304182901327, - "volume7dUsd": 55493.579293263465, + "liquidityUsd": 88997.78163647083, + "liquidity24hUsdChange": -1.8904351837812103, + "volume24hUsd": 9376.698566866828, + "volume24hUsdChange": -10.41364685419375, + "volume7dUsd": 1116787.3633575959, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "481", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.001500000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/481", - "amount": "302608625292651985968" - }, - "liquidityUsd": 125996.89582956131, - "liquidity24hUsdChange": -3.136859876645686, - "volume24hUsd": 1621.6455126538142, - "volume24hUsdChange": -0.6924035495933645, - "volume7dUsd": 18415.314081544897, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "62548413760" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "49093559015" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo15ff4pjpzsxptru042unvfeq8sm8p8vxdkhmrnjkl8twrkrldt95swgnwk3", + "id": "1277", + "current_tick_liquidity": "5798422060.107856054140402290", + "token0": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "token0Amount": "104315847", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "24171150621", + "current_sqrt_price": "24.778819100981972612923666682436343411", + "current_tick": "23139898", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 88310.59713664392, + "liquidity24hUsdChange": -2.6429714169588374, + "volume24hUsd": 37198.66286520147, + "volume24hUsdChange": -61.6125079332431, + "volume7dUsd": 1026054.1692793799, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "42", + "id": "1608", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/42", - "amount": "26659304733758742592007" + "denom": "gamm/pool/1608", + "amount": "255806913899316716000" }, - "liquidityUsd": 123440.17559122253, - "liquidity24hUsdChange": -4.18074890334416, - "volume24hUsd": 835.624500509146, - "volume24hUsdChange": -96.22174285276077, - "volume7dUsd": 39573.720380797386, + "liquidityUsd": 87354.60731531179, + "liquidity24hUsdChange": -2.9145309141909865, + "volume24hUsd": 3310.543656111925, + "volume24hUsdChange": 38.55311658913425, + "volume7dUsd": 30483.829717628294, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "802369276864" + "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "amount": "70964317" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "48120282262" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "885842536857521300000000" }, "weight": "536870912000000" } @@ -3992,23 +4370,23 @@ }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1567", + "pool_id": "1579", "code_id": "580", "tokens": [ { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "60657829372" + "denom": "uosmo", + "amount": "48625010256" }, { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "amount": "1859208740679605400000" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "4545894095" } ], - "liquidityUsd": 122476.79241135114, - "liquidity24hUsdChange": -3.352505943107252, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 87272.87162452293, + "liquidity24hUsdChange": -7.117682555339664, + "volume24hUsd": 28829.35130830888, + "volume24hUsdChange": 77.89773486906661, + "volume7dUsd": 318009.6089002502, "taker_fee": "0.001000000000000000" }, { @@ -4021,26 +4399,26 @@ }, "total_shares": { "denom": "gamm/pool/606", - "amount": "53611112633729214191239382" + "amount": "53736817239649500183538318" }, - "liquidityUsd": 120705.59767055229, - "liquidity24hUsdChange": -1.427125030536879, - "volume24hUsd": 15750.610693470875, - "volume24hUsdChange": 179.15640644318813, - "volume7dUsd": 61342.11570288149, + "liquidityUsd": 85322.68076941751, + "liquidity24hUsdChange": -2.2420144961590744, + "volume24hUsd": 3184.1850652719195, + "volume24hUsdChange": -18.28356197602905, + "volume7dUsd": 92340.54342139316, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5583585702" + "amount": "5299893987" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "341686296384244" + "amount": "363938590236089" }, "weight": "536870912000000" } @@ -4049,34 +4427,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "571", + "id": "602", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/571", - "amount": "829085843807134472353" + "denom": "gamm/pool/602", + "amount": "1676443416754865048265" }, - "liquidityUsd": 120503.64087421299, - "liquidity24hUsdChange": -5.10841394506213, - "volume24hUsd": 1388.3832110621795, - "volume24hUsdChange": 2.399183305207251, - "volume7dUsd": 11229.336239184191, + "liquidityUsd": 84618.18337272717, + "liquidity24hUsdChange": -4.260760081951949, + "volume24hUsd": 38250.28234657204, + "volume24hUsdChange": -31.243272685419903, + "volume7dUsd": 552113.9696760809, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", - "amount": "7146481218656" + "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", + "amount": "659169662219750" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "46958100318" + "amount": "46889121302" }, "weight": "536870912000000" } @@ -4085,190 +4463,148 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "972", + "id": "907", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/972", - "amount": "100104545753263410729" + "denom": "gamm/pool/907", + "amount": "51621296740626561122474779" }, - "liquidityUsd": 120294.68792487362, - "liquidity24hUsdChange": -4.409252006684242, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 7468.069692334144, + "liquidityUsd": 84178.72324237475, + "liquidity24hUsdChange": -2.1412091690010486, + "volume24hUsd": 3790.543120052727, + "volume24hUsdChange": -41.189804068198406, + "volume7dUsd": 405855.3078729592, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "785762691120" + "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "amount": "685791042317" }, - "weight": "1073741824" + "weight": "5368709120" }, { "token": { - "denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", - "amount": "54596048027" + "denom": "uosmo", + "amount": "46645019415" }, - "weight": "1073741824" + "weight": "5368709120" } ], - "total_weight": "2147483648" + "total_weight": "10737418240" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12krxudgr26lwdqrc32w9pldnx9ptgl0fv8mq8y02guhepxhdqp3slj8p4r", - "id": "1099", - "current_tick_liquidity": "331604657909.564511307150553781", - "token0": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "token0Amount": "1025052454781", + "address": "osmo1xwkz3xwfdn3rr924gma80rdkw6y4rm7hjhzexhlqazh600vduzwq74zvws", + "id": "1655", + "current_tick_liquidity": "33003792381.772268255222525584", + "token0": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "token0Amount": "908842074", "token1": "uosmo", - "token1Amount": "33497394439", - "current_sqrt_price": "0.234021528385979779032059886885301726", - "current_tick": "-13523393", + "token1Amount": "33077882211", + "current_sqrt_price": "8.053882850786357468407499916205602208", + "current_tick": "14486502", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 115077.82706433594, - "liquidity24hUsdChange": -1.0840802926447717, - "volume24hUsd": 13895.31763857685, - "volume24hUsdChange": -57.00543866563217, - "volume7dUsd": 158951.15634438215, + "spread_factor": "0.010000000000000000", + "liquidityUsd": 83050.45693865015, + "liquidity24hUsdChange": -30.69524649727173, + "volume24hUsd": 270057.70036688953, + "volume24hUsdChange": -59.19209019556837, + "volume7dUsd": 4245858.105533446, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12vmj7ctds588dnjeexnlp9pp5sjgu96yzuu2w8hjzrh89lf6t8es5sl9eq", - "id": "1647", - "current_tick_liquidity": "263554385226.921170450427771252", - "token0": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", - "token0Amount": "1215298882421", + "address": "osmo1u8rh6stjulz2u0ny02xf5mrgfgyxrdp0mjfk3rn25hlzcuzn2sfskfcqja", + "id": "1605", + "current_tick_liquidity": "72201847850.940464433220958651", + "token0": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", + "token0Amount": "126441454292", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "57155153318", - "current_sqrt_price": "0.216863842376034325423551433688406428", - "current_tick": "-14297008", + "token1Amount": "41219595945", + "current_sqrt_price": "0.571348287765367375691191510200712393", + "current_tick": "-6735612", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 114174.03018036135, - "liquidity24hUsdChange": 79.09018954453268, - "volume24hUsd": 18109.275549517108, - "volume24hUsdChange": 301.1678440834082, - "volume7dUsd": 36717.88003286236, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ac9duuflacf5avmy5c7fpnfyt6z5nzea6scsxf5uuf9vyflp4tfq3k9jjj", - "id": "1477", - "current_tick_liquidity": "1279027872123199312.813375154500752839", - "token0": "uosmo", - "token0Amount": "78639906971", - "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "2999782995852385000", - "current_sqrt_price": "19111.098915172268422737441695766121311478", - "current_tick": "74652341", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 113141.64946309688, - "liquidity24hUsdChange": -13.573894439137899, - "volume24hUsd": 746497.028636925, - "volume24hUsdChange": -18.26207930562856, - "volume7dUsd": 4617747.124857569, + "liquidityUsd": 82644.38877832968, + "liquidity24hUsdChange": -2.508605914350437, + "volume24hUsd": 10360.058959601667, + "volume24hUsdChange": 1.5508756874913794, + "volume7dUsd": 224378.9533516112, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "602", + "id": "1320", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/602", - "amount": "1677060110125375381312" + "denom": "gamm/pool/1320", + "amount": "7054382780304702783271" }, - "liquidityUsd": 110450.53613986899, - "liquidity24hUsdChange": -4.825886604578879, - "volume24hUsd": 22998.296820379885, - "volume24hUsdChange": 109.86161976816375, - "volume7dUsd": 161931.99839151895, + "liquidityUsd": 82305.32662983079, + "liquidity24hUsdChange": -3.008204009555449, + "volume24hUsd": 638.1305008509207, + "volume24hUsdChange": -95.18394967848211, + "volume7dUsd": 27118.6861578856, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", - "amount": "706991724188641" + "denom": "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", + "amount": "265422532918" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "42991276080" + "amount": "45607507634" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1579", - "code_id": "580", - "tokens": [ - { - "denom": "uosmo", - "amount": "42607521834" - }, - { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "4788506304" - } - ], - "liquidityUsd": 110325.89882215273, - "liquidity24hUsdChange": -5.58339079184229, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "777", + "id": "481", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/777", - "amount": "1788475551829158636725158" + "denom": "gamm/pool/481", + "amount": "279423639845975133480" }, - "liquidityUsd": 109540.50715930547, - "liquidity24hUsdChange": -4.406026278579694, - "volume24hUsd": 10922.015305514695, - "volume24hUsdChange": -23.29911623921749, - "volume7dUsd": 73143.38756315756, + "liquidityUsd": 79168.55225811261, + "liquidity24hUsdChange": -3.003117497265621, + "volume24hUsd": 165.20650520312606, + "volume24hUsdChange": 6.706529905534087, + "volume7dUsd": 32447.96813659576, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", - "amount": "679607026689" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "59710227562" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "42685997590" + "amount": "43872842773" }, "weight": "536870912000000" } @@ -4277,125 +4613,127 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo100jqvejpw0fyzd87gmswvt8vjuckazdzakeu8lr9ccdz7283hueqyjwd3s", - "id": "1399", - "current_tick_liquidity": "10199030849801.630326556075420501", - "token0": "uosmo", - "token0Amount": "32242230364", - "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "6192759242", - "current_sqrt_price": "0.343962577444001913254880147261361598", - "current_tick": "-8816898", + "address": "osmo12vw7dlafwxefct6ntqr6hmn6x5h0u4yrll54u4x38fad838ya6gs0w57k0", + "id": "1278", + "current_tick_liquidity": "3976088270879444.754088468153664115", + "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token0Amount": "19790669590257284000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "17439112086", + "current_sqrt_price": "0.000054725639158615037249550098049231", + "current_tick": "-79005105", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 107758.47323976897, - "liquidity24hUsdChange": 7.602157865046453, - "volume24hUsd": 684307.5377336541, - "volume24hUsdChange": 4.2066433894546, - "volume7dUsd": 4407831.019222196, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 76707.03440110486, + "liquidity24hUsdChange": 66.4790034296606, + "volume24hUsd": 24755.849643465812, + "volume24hUsdChange": 826.5573605945456, + "volume7dUsd": 542620.91515409, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "907", + "id": "1339", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/907", - "amount": "51633634068629532069604482" + "denom": "gamm/pool/1339", + "amount": "145244540031153224426" }, - "liquidityUsd": 106923.37664703449, - "liquidity24hUsdChange": -1.9928129786259106, - "volume24hUsd": 2277.1339912908948, - "volume24hUsdChange": -65.54212014108394, - "volume7dUsd": 30571.744287032798, + "liquidityUsd": 75332.79826459978, + "liquidity24hUsdChange": -5.66420379817839, + "volume24hUsd": 24115.89178246919, + "volume24hUsdChange": -41.77157656916881, + "volume7dUsd": 728959.0785856891, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "amount": "759717841109" + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "amount": "3872649708" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "41686923768" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "37672535597" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1120", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "777", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1120", - "amount": "84564948450637692369808" + "denom": "gamm/pool/777", + "amount": "1772240476902697159066369" }, - "liquidityUsd": 106454.03180486611, - "liquidity24hUsdChange": -0.7200507699341824, - "volume24hUsd": 47.75731360035491, - "volume24hUsdChange": 231.70504940607, - "volume7dUsd": 575.6912026364108, + "liquidityUsd": 75005.86769334806, + "liquidity24hUsdChange": -4.993778713615891, + "volume24hUsd": 4035.8663893520315, + "volume24hUsdChange": 76.81350178539451, + "volume7dUsd": 77745.72478331909, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", - "amount": "244811257324" + "token": { + "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "amount": "686825155270" + }, + "weight": "536870912000000" }, { - "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "amount": "425932338553" + "token": { + "denom": "uosmo", + "amount": "41563795402" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "100000", - "100000" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1408", + "id": "463", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1408", - "amount": "1175643390916814683563" + "denom": "gamm/pool/463", + "amount": "28981180664526483736739" }, - "liquidityUsd": 106010.5920497212, - "liquidity24hUsdChange": -8.894059341298101, - "volume24hUsd": 5750.776055349322, - "volume24hUsdChange": -1.442619488201435, - "volume7dUsd": 38307.4426319985, + "liquidityUsd": 73355.35541110337, + "liquidity24hUsdChange": -25.72532154777751, + "volume24hUsd": 135.9807402873332, + "volume24hUsdChange": -74.11713514266242, + "volume7dUsd": 32095.28405888962, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "amount": "28945542009739" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "4777520423328" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "41263950133" + "amount": "40648097382" }, "weight": "536870912000000" } @@ -4404,97 +4742,97 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "626", + "id": "1007", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/626", - "amount": "1303696017450625723681" + "denom": "gamm/pool/1007", + "amount": "2113347620946308031999" }, - "liquidityUsd": 102470.23286081367, - "liquidity24hUsdChange": -2.9948930892406302, - "volume24hUsd": 9330.876088110816, - "volume24hUsdChange": 73.74276764511636, - "volume7dUsd": 52123.869418709255, + "liquidityUsd": 71599.838358, + "liquidity24hUsdChange": 17.57398276214703, + "volume24hUsd": 40837.34377758398, + "volume24hUsdChange": 14977.568428449249, + "volume7dUsd": 62663.20766382947, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", - "amount": "23461362636" + "denom": "ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8", + "amount": "140091866374" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "39930836787" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "35799919179" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo100jqvejpw0fyzd87gmswvt8vjuckazdzakeu8lr9ccdz7283hueqyjwd3s", + "id": "1399", + "current_tick_liquidity": "10086466917850.223575667563644845", + "token0": "uosmo", + "token0Amount": "47631902094", + "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "token1Amount": "3545081017", + "current_sqrt_price": "0.334444063857030930503977503107078993", + "current_tick": "-8881472", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 71544.30139343049, + "liquidity24hUsdChange": -9.462430629870669, + "volume24hUsd": 297374.83681250026, + "volume24hUsdChange": -18.79040302505214, + "volume7dUsd": 6374705.776919643, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1320", + "id": "1375", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1320", - "amount": "7054382780304702783271" + "denom": "gamm/pool/1375", + "amount": "390680407787880186897" }, - "liquidityUsd": 100440.69852768397, - "liquidity24hUsdChange": -5.222458630159007, - "volume24hUsd": 541.290137598606, - "volume24hUsdChange": -75.52460847926281, - "volume7dUsd": 23786.428867826075, + "liquidityUsd": 70840.19421053736, + "liquidity24hUsdChange": 0.25474116636694794, + "volume24hUsd": 26330.383937451348, + "volume24hUsdChange": -38.03510292300803, + "volume7dUsd": 420173.9348461545, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/A1830DECC0B742F0B2044FF74BE727B5CF92C9A28A9235C3BACE4D24A23504FA", - "amount": "308903669416" + "denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "amount": "243140414344514100000000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "39139963165" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "35370065479" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1u8rh6stjulz2u0ny02xf5mrgfgyxrdp0mjfk3rn25hlzcuzn2sfskfcqja", - "id": "1605", - "current_tick_liquidity": "73719627845.994908042107582575", - "token0": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", - "token0Amount": "110186459915", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "47433434283", - "current_sqrt_price": "0.656470143267664764359575722189166359", - "current_tick": "-5690470", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 94896.6500404159, - "liquidity24hUsdChange": -0.2525524854579041, - "volume24hUsd": 20302.796530820295, - "volume24hUsdChange": -41.00649982749081, - "volume7dUsd": 126445.68372272825, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1019", @@ -4505,176 +4843,309 @@ }, "total_shares": { "denom": "gamm/pool/1019", - "amount": "1208904520006624422550506" + "amount": "1208263213506374511284064" }, - "liquidityUsd": 94067.47576197339, - "liquidity24hUsdChange": -8.014645315624318, - "volume24hUsd": 12291.368777028696, - "volume24hUsdChange": 174.5170842280454, - "volume7dUsd": 49009.20270449902, + "liquidityUsd": 70582.44764648646, + "liquidity24hUsdChange": -0.28118761271215637, + "volume24hUsd": 2915.6267248548816, + "volume24hUsdChange": -17.758694326690325, + "volume7dUsd": 93224.75791091954, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4348854558" + "amount": "4382385171" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", - "amount": "324140379684" + "amount": "323591242466" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1120", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1120", + "amount": "89321778390017026363860" + }, + "liquidityUsd": 70534.7799357688, + "liquidity24hUsdChange": -8.423204180420857, + "volume24hUsd": 1.5784744464111577, + "volume24hUsdChange": -99.8907284441855, + "volume7dUsd": 16888.896337339127, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", + "amount": "298263185685" + }, + { + "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "amount": "409527406401" + } + ], + "scaling_factors": [ + "100000", + "100000" + ], + "scaling_factor_controller": "" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo12nwe7aamg992qcayjdaj4xfepgm9keq07lm490z37ktsywfct02qlp3jad", + "id": "1101", + "current_tick_liquidity": "83789810117.070823880539683345", + "token0": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "token0Amount": "118100107501", + "token1": "uosmo", + "token1Amount": "39185962434", + "current_sqrt_price": "0.571809610976993313235318846744963062", + "current_tick": "-6730338", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 70162.72920226476, + "liquidity24hUsdChange": -3.8011736155195797, + "volume24hUsd": 15936.455995598939, + "volume24hUsdChange": -47.06945845727895, + "volume7dUsd": 423482.7718778949, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo104h28y86n9pdwajdvvzlav6e537g0zxsj53qzt88jljsy66a6z7snp62h2", + "id": "1189", + "current_tick_liquidity": "82488215516.723328587698596144", + "token0": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", + "token0Amount": "52612342317", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "8298043045", + "current_sqrt_price": "1.080395990596215601950431020852925145", + "current_tick": "167255", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 69962.76070841671, + "liquidity24hUsdChange": -0.409036175325744, + "volume24hUsd": 28642.06400068818, + "volume24hUsdChange": 12.442951862566224, + "volume7dUsd": 452241.84965561406, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1344", + "id": "626", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1344", - "amount": "4395874947461702633518" + "denom": "gamm/pool/626", + "amount": "1305060325632743741475" }, - "liquidityUsd": 93028.177377212, - "liquidity24hUsdChange": -14.722503027412156, - "volume24hUsd": 2873.958268038789, - "volume24hUsdChange": -71.00168211625633, - "volume7dUsd": 19458.0211690751, + "liquidityUsd": 69882.48568675926, + "liquidity24hUsdChange": -1.9269560596576802, + "volume24hUsd": 3471.8704630026773, + "volume24hUsdChange": -5.155877138952816, + "volume7dUsd": 166122.70049715758, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", - "amount": "541539966609487" + "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", + "amount": "24340293678" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "36251434819" + "amount": "38723690555" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1121", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1121", + "amount": "4029277373947707343700620" + }, + "liquidityUsd": 69665.55924882716, + "liquidity24hUsdChange": 0.2686937691069224, + "volume24hUsd": 1449.2145260308923, + "volume24hUsdChange": 2049.140306477511, + "volume7dUsd": 6236.5074286487725, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", + "amount": "38707776676160320000000" + }, + "weight": "5368709120" + }, + { + "token": { + "denom": "uosmo", + "amount": "38603486012" + }, + "weight": "5368709120" + } + ], + "total_weight": "10737418240" + }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1mnlm7c97e5a0ty08tpexryrdw474ux9rmj5tweg9kr55j8f09l2s8lvq7u", - "id": "1105", - "current_tick_liquidity": "138313200075.279304549058766139", - "token0": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", - "token0Amount": "44756221926", + "address": "osmo138mk99zfmnn4stz70jcw6jshunfwcvp68kjjy78klks0kd843cxsud2wjp", + "id": "1434", + "current_tick_liquidity": "3925951011448.011244648567521073", + "token0": "uosmo", + "token0Amount": "66186835250", + "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token1Amount": "12499761", + "current_sqrt_price": "0.038258359829215582845624791519509247", + "current_tick": "-26536298", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 67424.7739837943, + "liquidity24hUsdChange": -3.251100479149098, + "volume24hUsd": 165895.6751793856, + "volume24hUsdChange": -8.008234282354959, + "volume7dUsd": 4689546.509127571, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1pfa69mlhagzlwltmcuxc5m66xu9acrlnrjlweja79y8e4y4ayjuqty3gnp", + "id": "1081", + "current_tick_liquidity": "19798713349538.372873156775011674", + "token0": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "token0Amount": "51706696805", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "15263316589", + "current_sqrt_price": "0.999603539570338599682491084732479762", + "current_tick": "-7928", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 66993.73573410392, + "liquidity24hUsdChange": 0.07247561284013321, + "volume24hUsd": 65356.82590449345, + "volume24hUsdChange": -61.44771155647849, + "volume7dUsd": 2391896.8329171548, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1n03tyj0ln273yhchaued5neqgrtljthl87l8uv90awkfgd0hux9q2sujws", + "id": "1245", + "current_tick_liquidity": "420100547004297314.809417653789812865", + "token0": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "token0Amount": "17306598914596020000000", "token1": "uosmo", - "token1Amount": "37475199680", - "current_sqrt_price": "0.869656421935126805282733148475447517", - "current_tick": "-2436978", + "token1Amount": "32881010572", + "current_sqrt_price": "0.000001536223071249267074811734475366", + "current_tick": "-106640019", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 91544.32307007923, - "liquidity24hUsdChange": -3.321848312905687, - "volume24hUsd": 30457.917105028075, - "volume24hUsdChange": 50.828029788896465, - "volume7dUsd": 192074.5364674522, + "liquidityUsd": 66523.03185109503, + "liquidity24hUsdChange": 5.116073309416598, + "volume24hUsd": 205869.10052408755, + "volume24hUsdChange": 35.95287568479503, + "volume7dUsd": 2718306.9590042406, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "627", + "id": "15", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/627", - "amount": "61375726128239371168651" + "denom": "gamm/pool/15", + "amount": "9708028923526107139124831" }, - "liquidityUsd": 91431.89721645642, - "liquidity24hUsdChange": -2.7109328437367406, - "volume24hUsd": 7156.15414820947, - "volume24hUsdChange": 75.6284303333425, - "volume7dUsd": 65944.30476488156, + "liquidityUsd": 65271.075097534726, + "liquidity24hUsdChange": -3.475978776523842, + "volume24hUsd": 12249.621591984142, + "volume24hUsdChange": -65.20448909905069, + "volume7dUsd": 364265.314655583, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "amount": "287846187706" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "110710287679" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "35654122872" + "amount": "36178325313" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo15ff4pjpzsxptru042unvfeq8sm8p8vxdkhmrnjkl8twrkrldt95swgnwk3", - "id": "1277", - "current_tick_liquidity": "10363548890.970327969597137371", - "token0": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "token0Amount": "88262104", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "30476507389", - "current_sqrt_price": "26.267485206995967741471363586858289246", - "current_tick": "23899807", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 91423.9973718965, - "liquidity24hUsdChange": 9.172469932408294, - "volume24hUsd": 141211.23575662303, - "volume24hUsdChange": 23.063594627851636, - "volume7dUsd": 535906.0219237284, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "482", + "id": "1389", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001500000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/482", - "amount": "20073484283083829100" + "denom": "gamm/pool/1389", + "amount": "560029201013776112490" }, - "liquidityUsd": 91400.92884315934, - "liquidity24hUsdChange": -3.03943366990462, - "volume24hUsd": 1757.834279462227, - "volume24hUsdChange": -10.525373575129159, - "volume7dUsd": 16279.49241257958, + "liquidityUsd": 65067.43478454931, + "liquidity24hUsdChange": 1.5854968595240344, + "volume24hUsd": 61.565927387782864, + "volume24hUsdChange": null, + "volume7dUsd": 8395.124931255285, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4226434525" + "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "amount": "352792172507" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "45317461464" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "4068158365" }, "weight": "536870912000000" } @@ -4685,53 +5156,110 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1md3qvgekargt5xhzfxlspfgd9fclay5gflz9wjn54acjw6j8fr8q5ntw3h", "id": "1620", - "current_tick_liquidity": "61857793717.195425543149006712", + "current_tick_liquidity": "63733884105.989822784210621054", "token0": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", - "token0Amount": "102994997251", + "token0Amount": "99174840999", "token1": "uosmo", - "token1Amount": "34597307257", - "current_sqrt_price": "0.579718184148042715177527106607562284", - "current_tick": "-6639269", + "token1Amount": "35927258017", + "current_sqrt_price": "0.602264319128299111612378451961806653", + "current_tick": "-6372777", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 88804.59988159308, - "liquidity24hUsdChange": -2.5538788638565246, - "volume24hUsd": 23719.982769336915, - "volume24hUsdChange": -29.65363634539644, - "volume7dUsd": 109855.13964070278, + "liquidityUsd": 64877.12829529508, + "liquidity24hUsdChange": -4.2537598476154646, + "volume24hUsd": 7265.643119735799, + "volume24hUsdChange": -15.66578909107839, + "volume7dUsd": 196140.47701767457, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1569", + "code_id": "580", + "tokens": [ + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "32012553922" + }, + { + "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "amount": "66424167703" + } + ], + "liquidityUsd": 64788.4854277578, + "liquidity24hUsdChange": -2.1817588565382366, + "volume24hUsd": 7911.54587490471, + "volume24hUsdChange": -23.465788055648463, + "volume7dUsd": 203083.42372587262, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "597", + "id": "1343", "pool_params": { - "exit_fee": "0.001000000000000000", + "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/597", - "amount": "94142864458556841076109" + "denom": "gamm/pool/1343", + "amount": "411998157179693658717054" }, - "liquidityUsd": 88792.59925919714, - "liquidity24hUsdChange": -4.668565881721447, - "volume24hUsd": 9310.30037888229, - "volume24hUsdChange": 33.01301258933542, - "volume7dUsd": 112370.54645399802, + "liquidityUsd": 64348.745913976876, + "liquidity24hUsdChange": -0.9522056556499993, + "volume24hUsd": 7389.200639461983, + "volume24hUsdChange": 55.72489723369345, + "volume7dUsd": 108186.33092962361, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "1190787355575" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "654922734094805700000000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "34598004935" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "32097213738" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "482", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001500000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/482", + "amount": "20010003706536690047" + }, + "liquidityUsd": 63778.76864702854, + "liquidity24hUsdChange": -1.8948426274512116, + "volume24hUsd": 189.25225339788363, + "volume24hUsdChange": -0.13020459522600283, + "volume7dUsd": 13801.261925261184, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "3962782645" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "48044557060" }, "weight": "536870912000000" } @@ -4740,23 +5268,23 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12nwe7aamg992qcayjdaj4xfepgm9keq07lm490z37ktsywfct02qlp3jad", - "id": "1101", - "current_tick_liquidity": "108664703223.416445031342303970", - "token0": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "token0Amount": "145670806129", + "address": "osmo1mnlm7c97e5a0ty08tpexryrdw474ux9rmj5tweg9kr55j8f09l2s8lvq7u", + "id": "1105", + "current_tick_liquidity": "138968757370.395804796853190482", + "token0": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "token0Amount": "49229658868", "token1": "uosmo", - "token1Amount": "32785604832", - "current_sqrt_price": "0.496883289212872632352216247210746638", - "current_tick": "-7531070", + "token1Amount": "34285105656", + "current_sqrt_price": "0.845319126904184373638034776630198711", + "current_tick": "-2854356", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 88261.62415350544, - "liquidity24hUsdChange": -4.664972141293728, - "volume24hUsd": 50432.649126060685, - "volume24hUsdChange": -12.116788959573773, - "volume7dUsd": 386742.56705778476, + "liquidityUsd": 62682.27556623869, + "liquidity24hUsdChange": -1.9693818082921282, + "volume24hUsd": 19682.430479884788, + "volume24hUsdChange": 108.57513372272318, + "volume7dUsd": 423853.4145028832, "taker_fee": "0.001000000000000000" }, { @@ -4771,24 +5299,24 @@ "denom": "gamm/pool/686", "amount": "11150594200466667625669895" }, - "liquidityUsd": 88082.1749672388, - "liquidity24hUsdChange": -3.4586561589666727, - "volume24hUsd": 2901.536933392742, - "volume24hUsdChange": 24.986682959614694, - "volume7dUsd": 29884.415721630252, + "liquidityUsd": 62148.70397217048, + "liquidity24hUsdChange": -2.2314757984416747, + "volume24hUsd": 5040.7557027538205, + "volume24hUsdChange": -1.0340269140707659, + "volume7dUsd": 69848.20878202771, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4085840506" + "amount": "3856744096" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "amount": "15986197160433" + "amount": "16988742416368" }, "weight": "536870912000000" } @@ -4796,390 +5324,351 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1121", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1035", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1121", - "amount": "4029277373947707343700620" + "denom": "gamm/pool/1035", + "amount": "862589778912264757676" }, - "liquidityUsd": 87952.672205063, - "liquidity24hUsdChange": -4.802768903854053, - "volume24hUsd": 134.7992528010438, - "volume24hUsdChange": 707.7961236971076, - "volume7dUsd": 725.6312745838617, + "liquidityUsd": 61861.36560904358, + "liquidity24hUsdChange": -1.4171737479359192, + "volume24hUsd": 156.267333300418, + "volume24hUsdChange": -78.84800574998167, + "volume7dUsd": 16612.410453714223, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", - "amount": "43585962634011135000000" - }, - "weight": "5368709120" + "denom": "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", + "amount": "5527583836789" }, { - "token": { - "denom": "uosmo", - "amount": "34273600252" - }, - "weight": "5368709120" + "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "amount": "12797264721091" } ], - "total_weight": "10737418240" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "15", + "id": "597", "pool_params": { - "exit_fee": "0.000000000000000000", + "exit_fee": "0.001000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/15", - "amount": "10406190193171267965946984" + "denom": "gamm/pool/597", + "amount": "95759216071106896385025" }, - "liquidityUsd": 85945.64907316885, - "liquidity24hUsdChange": -4.750329023728037, - "volume24hUsd": 31849.55164837709, - "volume24hUsdChange": -8.909627688709811, - "volume7dUsd": 207646.791204545, + "liquidityUsd": 61505.13627957211, + "liquidity24hUsdChange": -5.98047356535184, + "volume24hUsd": 19825.130871369165, + "volume24hUsdChange": -19.783803046493283, + "volume7dUsd": 199044.2449655595, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "135456766184" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "1260752537199" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "33505004710" + "amount": "34081584841" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo194jg8j8ywngtjzuv4z2u2yy25r57vmxqcq5d7mjx6u6smmaxk6fqh3m5zj", - "id": "1372", - "current_tick_liquidity": "400045509455.016502012922544612", - "token0": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "token0Amount": "478287467450", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "9294958692", - "current_sqrt_price": "0.397558718971783141801287672301658154", - "current_tick": "-8419471", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 85194.56764998048, - "liquidity24hUsdChange": -0.9332323043822026, - "volume24hUsd": 27947.780472655206, - "volume24hUsdChange": 168.0421124036236, - "volume7dUsd": 196209.0662297473, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo104h28y86n9pdwajdvvzlav6e537g0zxsj53qzt88jljsy66a6z7snp62h2", - "id": "1189", - "current_tick_liquidity": "82332576803.957465295025946774", - "token0": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "token0Amount": "43729651735", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "19893359407", - "current_sqrt_price": "1.222743257107759990722758737604997940", - "current_tick": "495101", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 85057.46222898894, - "liquidity24hUsdChange": -5.660211052506748, - "volume24hUsd": 21854.338793493116, - "volume24hUsdChange": -42.55537287513647, - "volume7dUsd": 184331.59923405503, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "924", + "id": "627", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/924", - "amount": "133582908504596104821" + "denom": "gamm/pool/627", + "amount": "61332457319708551383251" }, - "liquidityUsd": 84212.66260209781, - "liquidity24hUsdChange": -4.6252153449778115, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1510.2890303010447, + "liquidityUsd": 61039.10612043376, + "liquidity24hUsdChange": -5.90732342803382, + "volume24hUsd": 5904.34804262244, + "volume24hUsdChange": -84.21358023779116, + "volume7dUsd": 214448.40192624996, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", - "amount": "5509649468851" + "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "amount": "305940324100" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "32816184680" + "amount": "33857822780" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", "pool_id": "1584", - "code_id": "572", + "code_id": "641", "tokens": [ { "denom": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", - "amount": "5292131074565" + "amount": "5080899958197" }, { "denom": "uosmo", - "amount": "64868618858" + "amount": "67588836976" } ], - "liquidityUsd": 83232.69701553913, - "liquidity24hUsdChange": -5.1208545712121785, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 60986.90317044376, + "liquidity24hUsdChange": -2.9441254607912266, + "volume24hUsd": 212.70035001209385, + "volume24hUsdChange": 2088.728303103475, + "volume7dUsd": 10903.820632343624, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1339", + "id": "1493", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1339", - "amount": "145175035070855148600" + "denom": "gamm/pool/1493", + "amount": "447172713751963037096" }, - "liquidityUsd": 82141.2676835885, - "liquidity24hUsdChange": -4.0174653727230165, - "volume24hUsd": 14369.541242223158, - "volume24hUsdChange": 8.666003173315353, - "volume7dUsd": 108995.96465941085, + "liquidityUsd": 60427.33290185992, + "liquidity24hUsdChange": -1.2149226082712747, + "volume24hUsd": 15290.610490585863, + "volume24hUsdChange": -39.176278556668805, + "volume7dUsd": 1582407.489755125, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "amount": "3510160611" + "denom": "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", + "amount": "1147969547164176600000000" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "41086295141" + "amount": "30183299767" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1035", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1408", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1035", - "amount": "861863059640455312569" + "denom": "gamm/pool/1408", + "amount": "1099674761777550444133" }, - "liquidityUsd": 80363.83146022655, - "liquidity24hUsdChange": -0.46704678672021704, - "volume24hUsd": 926.6746162059164, - "volume24hUsdChange": 6124.560829683103, - "volume7dUsd": 16609.218656726254, + "liquidityUsd": 59698.18010173261, + "liquidity24hUsdChange": -9.979786367891776, + "volume24hUsd": 3295.527964100647, + "volume24hUsdChange": 20.944314515445086, + "volume7dUsd": 37716.34387167168, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", - "amount": "5606598319840" + "token": { + "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "amount": "31692998500426" + }, + "weight": "536870912000000" }, { - "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "amount": "12687518650092" + "token": { + "denom": "uosmo", + "amount": "33049215660" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fem6led3cwf3yjnug3d9x95ap78j7vr4057jpuk8gmjc04wg7g6sawuq3a", - "id": "1490", - "current_tick_liquidity": "59152276696339.595783092451150553", - "token0": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "token0Amount": "66124024091176", - "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token1Amount": "49158690", - "current_sqrt_price": "0.000999663459245917100474138715223052", - "current_tick": "-54006730", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 77456.62232647826, - "liquidity24hUsdChange": -4.020078023764566, - "volume24hUsd": 7212.96951270134, - "volume24hUsdChange": -79.15505952377625, - "volume7dUsd": 83953.80871375737, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1173", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "877", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1173", - "amount": "1018274773062410688153331" + "denom": "gamm/pool/877", + "amount": "19516714391333271049531" }, - "liquidityUsd": 77454.86662676676, - "liquidity24hUsdChange": -4.401836713719543, - "volume24hUsd": 3368.3181831906318, - "volume24hUsdChange": 91.28748744452098, - "volume7dUsd": 23671.921289221395, + "liquidityUsd": 58798.76427231197, + "liquidity24hUsdChange": 0.17726325766667544, + "volume24hUsd": 271.43854925223684, + "volume24hUsdChange": 24.424832728112897, + "volume7dUsd": 115401.20123844456, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", - "amount": "180904196149628800000000" - }, - "weight": "536870912000000" + "denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + "amount": "20529419907405994000000" }, { - "token": { - "denom": "uosmo", - "amount": "30182791151" - }, - "weight": "536870912000000" + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "19200758248" + }, + { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "19257971180" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1000000000000", + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1375", + "id": "924", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1375", - "amount": "390679609063268324091" + "denom": "gamm/pool/924", + "amount": "133582908504596104821" }, - "liquidityUsd": 76194.15217640281, - "liquidity24hUsdChange": -1.2558133564933782, - "volume24hUsd": 43836.59192333351, - "volume24hUsdChange": 18.150559536277896, - "volume7dUsd": 277169.9077977539, + "liquidityUsd": 58197.04843986949, + "liquidity24hUsdChange": -3.393444051277477, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 1289.0757025677449, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", - "amount": "220158963884829500000000" + "denom": "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", + "amount": "5606888097140" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "38344919507" + "denom": "uosmo", + "amount": "32248487913" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ugpvxcsff629dk5gz8q968lhrrmxjcqdqcun32xud3fyvrvxq0vsx0jgny", - "id": "1091", - "current_tick_liquidity": "10006579215088.569622162866426900", - "token0": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", - "token0Amount": "39400272694619", + "address": "osmo1x8k0fvt7z9eg6hhjfdjnlp36yj9q349mydh2009zfcf5yh9qgykqle90aw", + "id": "1088", + "current_tick_liquidity": "30108519467.445504369988308534", + "token0": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "token0Amount": "28586830823", "token1": "uosmo", - "token1Amount": "32326756988", - "current_sqrt_price": "0.026129569291368178457711591405577058", - "current_tick": "-30172457", + "token1Amount": "31711421395", + "current_sqrt_price": "1.053230952718496620079648162297683413", + "current_tick": "109295", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 76037.54163462906, - "liquidity24hUsdChange": 19.46255722128167, - "volume24hUsd": 602.6168266460895, - "volume24hUsdChange": 61.43037283303915, - "volume7dUsd": 3380.8915856876692, + "liquidityUsd": 57197.200889438885, + "liquidity24hUsdChange": -1.797677143325026, + "volume24hUsd": 7869.6910202191875, + "volume24hUsdChange": 40.51510394731726, + "volume7dUsd": 118735.59442142649, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo194jg8j8ywngtjzuv4z2u2yy25r57vmxqcq5d7mjx6u6smmaxk6fqh3m5zj", + "id": "1372", + "current_tick_liquidity": "404366884.918388472382231730", + "token0": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "token0Amount": "571436727242", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "82589905", + "current_sqrt_price": "0.314525534161847090105224859115162645", + "current_tick": "-9107369", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 57029.12616222829, + "liquidity24hUsdChange": -11.373694842907287, + "volume24hUsd": 19.60459408796543, + "volume24hUsdChange": -96.59286292408889, + "volume7dUsd": 280862.9230381019, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "800", + "id": "1255", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.080000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/800", - "amount": "64408774937162032399" + "denom": "gamm/pool/1255", + "amount": "145715504536031781138" }, - "liquidityUsd": 75377.53456655442, - "liquidity24hUsdChange": -5.95628024542095, - "volume24hUsd": 3371.5772100347017, - "volume24hUsdChange": null, - "volume7dUsd": 9641.6987327549, + "liquidityUsd": 56810.4075582521, + "liquidity24hUsdChange": -2.1860591766613147, + "volume24hUsd": 600.0955421475203, + "volume24hUsdChange": 328.9162179728376, + "volume7dUsd": 42960.96889156439, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "300074101510680" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "3525251587" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "29065193616" + "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "amount": "2328719922" }, "weight": "536870912000000" } @@ -5188,55 +5677,76 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12vml9kndqdmyagy7ds2wgfykfc87m3kuy6kxxk4zumqql20p33wsnw4rpy", - "id": "1161", - "current_tick_liquidity": "142542573461.883128608057319607", - "token0": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", - "token0Amount": "28470780086", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "8631606014", - "current_sqrt_price": "1.526950241663178277428523964898419907", - "current_tick": "1331577", + "address": "osmo1ac9duuflacf5avmy5c7fpnfyt6z5nzea6scsxf5uuf9vyflp4tfq3k9jjj", + "id": "1477", + "current_tick_liquidity": "197151370245017486.783963866613158440", + "token0": "uosmo", + "token0Amount": "60589378398", + "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token1Amount": "209347084152062190", + "current_sqrt_price": "17348.663071157567826091660823004777589460", + "current_tick": "74009761", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 55297.89144123629, + "liquidity24hUsdChange": -2.3432999990380328, + "volume24hUsd": 83058.43742164095, + "volume24hUsdChange": 92.0141213300552, + "volume7dUsd": 1061795.425002514, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1r5phjlxtxacsngx7dcl83d0dnmhe50lrde2y3666nngxmdlutltq7p3v66", + "id": "1483", + "current_tick_liquidity": "1833525558908.999020596882970482", + "token0": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "token0Amount": "132760588008", + "token1": "uosmo", + "token1Amount": "50479912745", + "current_sqrt_price": "0.284017575797023779224248004525988948", + "current_tick": "-10933402", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 74957.07278830242, - "liquidity24hUsdChange": -2.99541316558558, - "volume24hUsd": 118237.40020544082, - "volume24hUsdChange": 3.7689493857602727, - "volume7dUsd": 734264.6949037863, + "liquidityUsd": 55211.32678808679, + "liquidity24hUsdChange": -3.696015520965237, + "volume24hUsd": 5539.706177305151, + "volume24hUsdChange": -80.73713109368418, + "volume7dUsd": 104639.95422343693, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "648", + "id": "1662", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/648", - "amount": "63274507832234215804268239" + "denom": "gamm/pool/1662", + "amount": "290437235575299526400" }, - "liquidityUsd": 72897.07697605321, - "liquidity24hUsdChange": -3.5074229310787963, - "volume24hUsd": 12278.300284207078, - "volume24hUsdChange": 11.06354733421369, - "volume7dUsd": 109624.17041028486, + "liquidityUsd": 55147.6676020839, + "liquidity24hUsdChange": -2.944959362545436, + "volume24hUsd": 1245.0706717643536, + "volume24hUsdChange": -5.022904174338456, + "volume7dUsd": 14520.841434372322, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961", - "amount": "312126366041975560000000" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "561192526247433700000000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "28406701163" + "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "amount": "12774948419" }, "weight": "536870912000000" } @@ -5245,91 +5755,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1249", + "id": "800", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.080000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1249", - "amount": "650954950724804038644" + "denom": "gamm/pool/800", + "amount": "64273218430994063285" }, - "liquidityUsd": 72684.45610646924, - "liquidity24hUsdChange": -5.562793497126604, - "volume24hUsd": 4593.531224955737, - "volume24hUsdChange": 22.355081639884254, - "volume7dUsd": 39405.82824489723, + "liquidityUsd": 54810.18126769626, + "liquidity24hUsdChange": -3.3601040363377845, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 3450.7168168924127, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "3127647753" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "289374314973006" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "28315964253" + "amount": "30190626489" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1569", - "code_id": "580", - "tokens": [ - { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "35886494189" - }, - { - "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", - "amount": "52647797100" - } - ], - "liquidityUsd": 72208.08386898116, - "liquidity24hUsdChange": -3.5941022110555427, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "7", + "id": "1173", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/7", - "amount": "50070835763229741338107816" + "denom": "gamm/pool/1173", + "amount": "1011276717120304041133262" }, - "liquidityUsd": 71816.18653666272, - "liquidity24hUsdChange": -3.7383669073615318, - "volume24hUsd": 4917.290515872117, - "volume24hUsdChange": -52.99884586092328, - "volume7dUsd": 36570.94622328546, + "liquidityUsd": 54457.60574897313, + "liquidity24hUsdChange": -5.753347941790389, + "volume24hUsd": 5651.035510144161, + "volume24hUsdChange": 71.57615182349163, + "volume7dUsd": 150350.04975313623, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "923973404618" + "denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", + "amount": "179496186025963860000000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "27986591962" + "amount": "30176366119" }, "weight": "536870912000000" } @@ -5338,34 +5827,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1007", + "id": "13", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1007", - "amount": "2113347620946308031999" + "denom": "gamm/pool/13", + "amount": "178404055132658548554" }, - "liquidityUsd": 70849.1102, - "liquidity24hUsdChange": 2.8137819467554968, - "volume24hUsd": 1820.7870248894833, - "volume24hUsdChange": -89.62601423054883, - "volume7dUsd": 63730.97352066162, + "liquidityUsd": 53054.61614326057, + "liquidity24hUsdChange": -2.6059247155581393, + "volume24hUsd": 2080.50216424094, + "volume24hUsdChange": -74.77962973902592, + "volume7dUsd": 74343.60692650812, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/63CDD51098FD99E04E5F5610A3882CBE7614C441607BA6FCD7F3A3C1CD5325F8", - "amount": "141185418348" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "3284991871" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "35424555100" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "90210840752" }, "weight": "536870912000000" } @@ -5374,70 +5863,112 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "574", + "id": "1249", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/574", - "amount": "3444185867403935758165" + "denom": "gamm/pool/1249", + "amount": "616434017574112319964" }, - "liquidityUsd": 70402.05597091673, - "liquidity24hUsdChange": -4.774326142277364, - "volume24hUsd": 294.75563667639733, - "volume24hUsdChange": -32.697900761927414, - "volume7dUsd": 3875.548602292422, + "liquidityUsd": 52747.1722422022, + "liquidity24hUsdChange": -12.93240599580232, + "volume24hUsd": 13238.876329331491, + "volume24hUsdChange": -34.56872950906257, + "volume7dUsd": 406057.3985185366, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "3258098883" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "2762713294" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "2681666295123" + "denom": "uosmo", + "amount": "29227795554" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ce7xpte3sg5hd55njtd57leh2kswp7p589f85xj8tkqp5yvftcsss25at3", + "id": "1440", + "current_tick_liquidity": "556769684387936.245838589659967460", + "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token0Amount": "10121037883917905000", + "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token1Amount": "35382074", + "current_sqrt_price": "0.000002204292697187890580317031579946", + "current_tick": "-104141094", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 52104.97309751246, + "liquidity24hUsdChange": 29.182106718406224, + "volume24hUsd": 11521.304869150768, + "volume24hUsdChange": 0.6649938741084753, + "volume7dUsd": 274841.1499562929, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1p8ukmz0aggxzfvf63ke7sd4535gj9a6p3m26uf2patxme6d0skys9562zr", + "id": "1507", + "current_tick_liquidity": "811018927503.935731592281132852", + "token0": "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", + "token0Amount": "109792407047517", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "32170737909", + "current_sqrt_price": "0.013114398296426039781869481415375974", + "current_tick": "-35280126", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 51105.01706152616, + "liquidity24hUsdChange": -1.4243100441988399, + "volume24hUsd": 236.82392325319012, + "volume24hUsdChange": -76.18544754210488, + "volume7dUsd": 72847.78069991921, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "601", + "id": "648", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/601", - "amount": "3428328117257469743188" + "denom": "gamm/pool/648", + "amount": "63176542987514388731999221" }, - "liquidityUsd": 69036.57217712633, - "liquidity24hUsdChange": -2.5833078094800266, - "volume24hUsd": 7162.652212110965, - "volume24hUsdChange": -34.173508520223756, - "volume7dUsd": 63236.25065790243, + "liquidityUsd": 51052.10721148526, + "liquidity24hUsdChange": -2.73235395319412, + "volume24hUsd": 5929.145546419884, + "volume24hUsdChange": 34.177175157284495, + "volume7dUsd": 92704.86587913286, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", - "amount": "993146789127" + "denom": "ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961", + "amount": "313670299268923200000000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "26894425686" + "amount": "28289291407" }, "weight": "536870912000000" } @@ -5446,304 +5977,323 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1255", + "id": "7", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1255", - "amount": "145708065200324317638" + "denom": "gamm/pool/7", + "amount": "50430837816470813548379253" }, - "liquidityUsd": 68829.8855450728, - "liquidity24hUsdChange": -5.509489926743684, - "volume24hUsd": 919.7035481514985, - "volume24hUsdChange": -63.009426812040346, - "volume7dUsd": 15103.44695325013, + "liquidityUsd": 50870.800720600295, + "liquidity24hUsdChange": -1.9025184729869657, + "volume24hUsd": 1724.2976926611427, + "volume24hUsdChange": -48.71731636005327, + "volume7dUsd": 67672.09510758024, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "3179110841" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "933242174366" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", - "amount": "2563485983" + "denom": "uosmo", + "amount": "28188822858" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1n03tyj0ln273yhchaued5neqgrtljthl87l8uv90awkfgd0hux9q2sujws", - "id": "1245", - "current_tick_liquidity": "308567334181082598.744920338980681769", - "token0": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "token0Amount": "8392223627196545000000", - "token1": "uosmo", - "token1Amount": "33303162537", - "current_sqrt_price": "0.000001544623005585953692910519416753", - "current_tick": "-106614140", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 68424.71816857644, - "liquidity24hUsdChange": -4.767961053652005, - "volume24hUsd": 126853.92341039269, - "volume24hUsdChange": 5.514467638242959, - "volume7dUsd": 1011663.6921161783, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1389", + "id": "574", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1389", - "amount": "443664258949897115907" + "denom": "gamm/pool/574", + "amount": "3444185867403935758165" }, - "liquidityUsd": 68397.26937698785, - "liquidity24hUsdChange": -2.915971998326796, - "volume24hUsd": 342.0353707161682, - "volume24hUsdChange": -11.553263307508889, - "volume7dUsd": 3085.26902463474, + "liquidityUsd": 50651.93842423545, + "liquidity24hUsdChange": -2.252075319735448, + "volume24hUsd": 181.31194733928015, + "volume24hUsdChange": 0.1680514246413325, + "volume7dUsd": 17799.772278889544, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "amount": "286116873843" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "3149850919" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "3131250962" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "2776442362569" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1x8k0fvt7z9eg6hhjfdjnlp36yj9q349mydh2009zfcf5yh9qgykqle90aw", - "id": "1088", - "current_tick_liquidity": "30108519467.445504369988308534", - "token0": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "token0Amount": "34207990203", - "token1": "uosmo", - "token1Amount": "26500534346", - "current_sqrt_price": "0.880160792369542085151194878070238217", - "current_tick": "-2253170", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 67996.82179407479, - "liquidity24hUsdChange": -2.4369428801334885, - "volume24hUsd": 2812.295118083382, - "volume24hUsdChange": 13.564646307024075, - "volume7dUsd": 17514.357235675623, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1343", + "id": "912", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1343", - "amount": "411998157179693658717054" + "denom": "gamm/pool/912", + "amount": "1226346023803711630147" }, - "liquidityUsd": 67815.83558791204, - "liquidity24hUsdChange": 1.3454061322588455, - "volume24hUsd": 3404.9292449794784, - "volume24hUsdChange": 38.495483862015384, - "volume7dUsd": 19102.965796001045, + "liquidityUsd": 49069.05056799657, + "liquidity24hUsdChange": -5.6312069591320775, + "volume24hUsd": 1364.1608096574146, + "volume24hUsdChange": -31.9971102175045, + "volume7dUsd": 37909.893371428145, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "617213474105605700000000" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "8216218045617333000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "33916785472" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "1003224825733" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo12vml9kndqdmyagy7ds2wgfykfc87m3kuy6kxxk4zumqql20p33wsnw4rpy", + "id": "1161", + "current_tick_liquidity": "29526459768.576165353031895827", + "token0": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", + "token0Amount": "27481124433", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1590394551", + "current_sqrt_price": "1.293749771103336749929347667124963737", + "current_tick": "673788", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 47810.96143002132, + "liquidity24hUsdChange": -13.385468272377054, + "volume24hUsd": 19172.590013018347, + "volume24hUsdChange": -60.026508712231994, + "volume7dUsd": 480457.5409625668, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1493", + "id": "601", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1493", - "amount": "482360139495721878023" + "denom": "gamm/pool/601", + "amount": "3384583289347550194028" }, - "liquidityUsd": 67384.90400155648, - "liquidity24hUsdChange": -7.519831367622822, - "volume24hUsd": 16822.303527267723, - "volume24hUsdChange": -12.912477355908806, - "volume7dUsd": 230894.01135844013, + "liquidityUsd": 47506.39943549972, + "liquidity24hUsdChange": -3.4917252247659682, + "volume24hUsd": 1153.163383174724, + "volume24hUsdChange": 0.571362903961259, + "volume7dUsd": 49613.68531096434, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/35CECC330D11DD00FACB555D07687631E0BC7D226260CC5F015F6D7980819533", - "amount": "1126830108126414200000000" + "denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", + "amount": "992773143416" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "33728547606" + "denom": "uosmo", + "amount": "26324523134" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "912", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "886", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/912", - "amount": "1225910699321662063735" + "denom": "gamm/pool/886", + "amount": "4815572002579214877329" }, - "liquidityUsd": 65533.72780343477, - "liquidity24hUsdChange": -3.9429553337284844, - "volume24hUsd": 3390.971999762219, - "volume24hUsdChange": 189.59017799817943, - "volume7dUsd": 21453.659920588696, + "liquidityUsd": 46901.30267461205, + "liquidity24hUsdChange": -1.1952079893869716, + "volume24hUsd": 1679.6501697469182, + "volume24hUsdChange": -45.462506405448636, + "volume7dUsd": 35424.13599042568, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "9307909506176030000" - }, - "weight": "536870912000000" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2445468610" }, { - "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "879139053373" - }, - "weight": "536870912000000" + "denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", + "amount": "2674094461" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1000000", + "792264" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1nenhm2qd3nzccwk3ny7wmylfnvzzg7r2umcqft63we5r43lrraqsk5gfz7", - "id": "1243", - "current_tick_liquidity": "78079125265.647917370926515093", - "token0": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", - "token0Amount": "19307497240", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "4946745845", - "current_sqrt_price": "1.762271723822264922329235207162563894", - "current_tick": "2105601", + "address": "osmo1zmpf92sg6dl57fd8mm03mjwlmqzudzw32zank0lzxk6xsqprmyzsr38d28", + "id": "1279", + "current_tick_liquidity": "1022999660710076.764606367513299559", + "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token0Amount": "2751995971494980400", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "38463657281", + "current_sqrt_price": "0.000054665007793144370594706099865186", + "current_tick": "-79011737", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 64862.64548861588, - "liquidity24hUsdChange": 6.062102690284508, - "volume24hUsd": 16057.238735482593, - "volume24hUsdChange": -7.578826846813682, - "volume7dUsd": 114724.03962778958, + "liquidityUsd": 46762.512148711365, + "liquidity24hUsdChange": -0.12978772110522976, + "volume24hUsd": 10374.703358297225, + "volume24hUsdChange": 13.533006223487753, + "volume7dUsd": 141690.05394946437, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1gyvzyl55d7hm6p6cd8uqrcuryegq4zy2ud8m3j8edx9a7tlgjkcqn8h63z", - "id": "1108", - "current_tick_liquidity": "895885465646.506049768882380907", - "token0": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "token0Amount": "17343525063930", - "token1": "uosmo", - "token1Amount": "25508189178", - "current_sqrt_price": "0.037401101937632351743587435968845316", - "current_tick": "-26601158", + "address": "osmo1q85yezm7z9rmdr4dn63w0yde869v6kd7knl7yl2jasvdnsvywrgs0t85hh", + "id": "1297", + "current_tick_liquidity": "6563755266394088426438.016924261912398897", + "token0": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "token0Amount": "10384751260074824000", + "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token1Amount": "4905355994183233000", + "current_sqrt_price": "0.998311521845298826128592667009178485", + "current_tick": "-33742", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 63906.91802349692, - "liquidity24hUsdChange": -6.75137585228084, - "volume24hUsd": 4354.426010260212, - "volume24hUsdChange": 50.61891709182553, - "volume7dUsd": 25173.267516479802, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 45513.41648104376, + "liquidity24hUsdChange": -3.27871228616828, + "volume24hUsd": 1026.658091058687, + "volume24hUsdChange": -93.27003786921286, + "volume7dUsd": 156436.83439924716, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1311", + "id": "900", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1311", - "amount": "13442792142518979471186" + "denom": "gamm/pool/900", + "amount": "728301851570078573578" }, - "liquidityUsd": 63891.93006964614, - "liquidity24hUsdChange": -15.867099236927414, - "volume24hUsd": 3604.8162059388856, - "volume24hUsdChange": 3.8964889288326345, - "volume7dUsd": 29824.798743236104, + "liquidityUsd": 44238.682583197224, + "liquidity24hUsdChange": -2.5016156042526787, + "volume24hUsd": 6826.73724011094, + "volume24hUsdChange": 87.03878416526123, + "volume7dUsd": 165553.94160599215, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "31931151319" + "denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", + "amount": "33633991073437595000000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", - "amount": "670349761772" + "denom": "uosmo", + "amount": "24513796813" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1xk3ms4pa63dl8tldtfpr5yes2g5a05j07s5cpgn7ucgkg2m43jsq3wmpaj", + "id": "1260", + "current_tick_liquidity": "22150389947923150951.484827122590371132", + "token0": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token0Amount": "28033625075", + "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "token1Amount": "15809835408187348000000", + "current_sqrt_price": "1000245.986479629541837371289364624384788742", + "current_tick": "108000492", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 43881.2102388542, + "liquidity24hUsdChange": -8.953160366936903, + "volume24hUsd": 13434.622530631515, + "volume24hUsdChange": -26.359196232286706, + "volume7dUsd": 633976.1412671251, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo125nd8mhap89htwsy6eu2a0ygtv82e8vwu0mhmw8vvatjex6yqecszhxy49", + "id": "1646", + "current_tick_liquidity": "445366433439.547376124151577917", + "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "token0Amount": "565146980084", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "12017374548", + "current_sqrt_price": "0.237551400557609284706923028834386918", + "current_tick": "-13356934", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.010000000000000000", + "liquidityUsd": 43619.31986047518, + "liquidity24hUsdChange": 21.721534781769904, + "volume24hUsd": 3243.5744609538037, + "volume24hUsdChange": 17.652697713026157, + "volume7dUsd": 92796.19391814954, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1446", @@ -5754,26 +6304,26 @@ }, "total_shares": { "denom": "gamm/pool/1446", - "amount": "3016292382892567922696" + "amount": "2471858149337709105176" }, - "liquidityUsd": 63604.17698074912, - "liquidity24hUsdChange": -8.192322016736098, - "volume24hUsd": 306.9333422063365, - "volume24hUsdChange": 75.41694122239697, - "volume7dUsd": 1251.447619759755, + "liquidityUsd": 43178.02986513745, + "liquidity24hUsdChange": -10.50114000916941, + "volume24hUsd": 48.53161805456636, + "volume24hUsdChange": -83.30804712096901, + "volume7dUsd": 2662.959903171587, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "amount": "2710637162" + "amount": "2224652174" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", - "amount": "2767992689" + "amount": "2266044956" }, "weight": "536870912000000" } @@ -5781,146 +6331,124 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "13", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/13", - "amount": "178404150742515514281" - }, - "liquidityUsd": 63503.227818261716, - "liquidity24hUsdChange": -4.601864476113914, - "volume24hUsd": 7231.075554127963, - "volume24hUsdChange": -11.947786172334359, - "volume7dUsd": 47765.56364737129, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2928214468" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "100292422751" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1gyvzyl55d7hm6p6cd8uqrcuryegq4zy2ud8m3j8edx9a7tlgjkcqn8h63z", + "id": "1108", + "current_tick_liquidity": "816034521577.263126296303933615", + "token0": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "token0Amount": "15703880175385", + "token1": "uosmo", + "token1Amount": "24315902305", + "current_sqrt_price": "0.038572104069935968747908513273795660", + "current_tick": "-26512193", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 43014.19935194169, + "liquidity24hUsdChange": -10.143067985685564, + "volume24hUsd": 2928.6220214493546, + "volume24hUsdChange": -1.7205849065013903, + "volume7dUsd": 60068.6054400705, + "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "900", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/900", - "amount": "726767605409240525948" - }, - "liquidityUsd": 63477.05588808494, - "liquidity24hUsdChange": -0.411822347725504, - "volume24hUsd": 11963.675881346768, - "volume24hUsdChange": 92.16243515608963, - "volume7dUsd": 64599.95516833362, - "taker_fee": "0.001000000000000000", - "pool_assets": [ + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1564", + "code_id": "580", + "tokens": [ { - "token": { - "denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", - "amount": "32773487013835370000000" - }, - "weight": "536870912000000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "21257631366" }, { - "token": { - "denom": "uosmo", - "amount": "24845801771" - }, - "weight": "536870912000000" + "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "amount": "31528356109" } ], - "total_weight": "1073741824000000" + "liquidityUsd": 42844.44282586804, + "liquidity24hUsdChange": -1.2506638401289336, + "volume24hUsd": 3051.0346171181227, + "volume24hUsdChange": 0.9037376915555234, + "volume7dUsd": 92749.99035760343, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ugpvxcsff629dk5gz8q968lhrrmxjcqdqcun32xud3fyvrvxq0vsx0jgny", + "id": "1091", + "current_tick_liquidity": "904280680547.992654397296764966", + "token0": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", + "token0Amount": "32784361528125", + "token1": "uosmo", + "token1Amount": "23641594417", + "current_sqrt_price": "0.026918355600631618915570734850302721", + "current_tick": "-29754022", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 42802.1793299212, + "liquidity24hUsdChange": -2.7031163135675285, + "volume24hUsd": 911.2257393253481, + "volume24hUsdChange": 80.96214738168337, + "volume7dUsd": 29598.641405757822, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1218", + "id": "952", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1218", - "amount": "382385103216130599120" + "denom": "gamm/pool/952", + "amount": "80912501663601640200170" }, - "liquidityUsd": 63470.299489079945, - "liquidity24hUsdChange": -2.8213368903140976, - "volume24hUsd": 4215.563777498414, - "volume24hUsdChange": -46.07797708760243, - "volume7dUsd": 41867.908125270995, + "liquidityUsd": 42667.51741273893, + "liquidity24hUsdChange": -5.239152624740742, + "volume24hUsd": 2257.5615328805025, + "volume24hUsdChange": -12.954910699712913, + "volume7dUsd": 68173.73442631835, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "31853861582" + "denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", + "amount": "734555383691" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { - "denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", - "amount": "554957892760203300000000" + "denom": "uosmo", + "amount": "23643173605" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "886", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/886", - "amount": "4834413546700926195441" - }, - "liquidityUsd": 63077.85416484282, - "liquidity24hUsdChange": -5.5167267146211865, - "volume24hUsd": 1132.4244929124363, - "volume24hUsdChange": 118.1088962364357, - "volume7dUsd": 71533.79918743396, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2364784990" - }, - { - "denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", - "amount": "2749728531" - } - ], - "scaling_factors": [ - "1000000", - "794240" - ], - "scaling_factor_controller": "" + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1azfx0u2vf2r2zd9rvauwty0e82wqw76d5c49ft9tqm84j0ehp85sz6u6l3", + "id": "1604", + "current_tick_liquidity": "1359094413763052088.983424856027256303", + "token0": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", + "token0Amount": "5294467723726608000000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "26749345534", + "current_sqrt_price": "0.000001671258272078970773491177362962", + "current_tick": "-106206896", + "tick_spacing": "1", + "exponent_at_price_one": "-6", + "spread_factor": "0.001000000000000000", + "liquidityUsd": 41520.04763882104, + "liquidity24hUsdChange": -0.24534925804152383, + "volume24hUsd": 126.61971239874909, + "volume24hUsdChange": 86.18898467688841, + "volume7dUsd": 3151.8816234443143, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -5932,26 +6460,26 @@ }, "total_shares": { "denom": "gamm/pool/600", - "amount": "5024204357259150931" + "amount": "4907353887325353162" }, - "liquidityUsd": 59282.00416608868, - "liquidity24hUsdChange": -2.4428825674039585, - "volume24hUsd": 7747.898009916749, - "volume24hUsdChange": 28.62554037239678, - "volume7dUsd": 26880.454663002125, + "liquidityUsd": 41493.72926706921, + "liquidity24hUsdChange": -2.3931775715985384, + "volume24hUsd": 378.41187371616877, + "volume24hUsdChange": -35.17633143250893, + "volume7dUsd": 21427.38533535016, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2733604193" + "amount": "2581106705" }, "weight": "1073741824" }, { "token": { "denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", - "amount": "853972280574" + "amount": "865000772158" }, "weight": "1073741824" } @@ -5968,26 +6496,26 @@ }, "total_shares": { "denom": "gamm/pool/826", - "amount": "9610466938252938669836" + "amount": "9606686600774648846544" }, - "liquidityUsd": 59138.124181994004, - "liquidity24hUsdChange": -4.079358123632065, - "volume24hUsd": 2151.04037611835, - "volume24hUsdChange": -33.658463535769535, - "volume7dUsd": 17279.59377356558, + "liquidityUsd": 40529.49071804892, + "liquidity24hUsdChange": -5.31341170109044, + "volume24hUsd": 480.8302942764094, + "volume24hUsdChange": -49.276975008876164, + "volume7dUsd": 35799.373282754095, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/80825E8F04B12D914ABEADB1F4D39C04755B12C8402F6876EE3168450C0A90BB", - "amount": "3398757487388467000000000" + "amount": "3491502475628409500000000" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "23045080690" + "amount": "22458437783" }, "weight": "5368709120" } @@ -5995,143 +6523,104 @@ "total_weight": "10737418240" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "877", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/877", - "amount": "19516714391333271049531" - }, - "liquidityUsd": 58987.5021103041, - "liquidity24hUsdChange": -0.2438347924356109, - "volume24hUsd": 2567.7911259253883, - "volume24hUsdChange": 14.37284286563549, - "volume7dUsd": 19970.544390653486, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", - "amount": "19267267865583253000000" - }, - { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "19772396661" - }, - { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "19938814779" - } - ], - "scaling_factors": [ - "1000000000000", - "1", - "1" - ], - "scaling_factor_controller": "" + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1hnkx8h9vaeu579u05c3m800s36nu4sfh84fer3v6qhhy2jvhv38qnkmwva", + "id": "1566", + "current_tick_liquidity": "657459071748326578700199.951612101639584048", + "token0": "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", + "token0Amount": "8157528924526282000000", + "token1": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "token1Amount": "3367124623662333300000", + "current_sqrt_price": "0.992708649618905115069528568741801080", + "current_tick": "-145296", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 40427.978893211955, + "liquidity24hUsdChange": -9.121674138700783, + "volume24hUsd": 18021.270435835955, + "volume24hUsdChange": 98.22574168122152, + "volume7dUsd": 428152.97109407326, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1aapl7hjartsn8zq27ayyfwh4ezep7jwzquvct5ksglzl99e0ee4q2xxet8", + "id": "1100", + "current_tick_liquidity": "3714399956.523812749265725970", + "token0": "uion", + "token0Amount": "79432997", + "token1": "uosmo", + "token1Amount": "19214264162", + "current_sqrt_price": "17.422399008357085460110684457762773097", + "current_tick": "20035399", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 38935.94324665157, + "liquidity24hUsdChange": -7.175483615800977, + "volume24hUsd": 3689.971790795298, + "volume24hUsdChange": 10.549499309713838, + "volume7dUsd": 159763.29690507203, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1dsnwhxenw422tk9t20x4mjv5vyrmmd90kky403vt9d8qym7jc8ds4lkx0x", + "id": "1158", + "current_tick_liquidity": "225218531598.451695887626188196", + "token0": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "token0Amount": "1566364547892", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "8549540552", + "current_sqrt_price": "0.137958082302113095401128735747156859", + "current_tick": "-17096757", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 38511.80232891121, + "liquidity24hUsdChange": -0.28196798539855805, + "volume24hUsd": 1417.7038276133978, + "volume24hUsdChange": 23.90430127246881, + "volume7dUsd": 67342.84924632339, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "619", + "id": "577", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/619", - "amount": "68586834798314588811539" + "denom": "gamm/pool/577", + "amount": "295252366184035206844" }, - "liquidityUsd": 58009.36964379376, - "liquidity24hUsdChange": -4.575639377269959, - "volume24hUsd": 70.25265263808808, - "volume24hUsdChange": 4.81904378290863, - "volume7dUsd": 7156.019870511923, + "liquidityUsd": 38446.39409378225, + "liquidity24hUsdChange": -3.6006006222992797, + "volume24hUsd": 1037.8786472515667, + "volume24hUsdChange": 802.8795272798125, + "volume7dUsd": 9189.487566206402, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", - "amount": "1244301241740" + "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", + "amount": "2824267955808" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "22605225017" + "amount": "21304140132" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1pfa69mlhagzlwltmcuxc5m66xu9acrlnrjlweja79y8e4y4ayjuqty3gnp", - "id": "1081", - "current_tick_liquidity": "27495742130590.610978488052533079", - "token0": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "token0Amount": "34477242148", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "23127150002", - "current_sqrt_price": "1.000012719089717666488108550667382125", - "current_tick": "25", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 57574.11541860498, - "liquidity24hUsdChange": 6.70794967952445, - "volume24hUsd": 115649.11827029998, - "volume24hUsdChange": 12.305580450520345, - "volume7dUsd": 808094.656000333, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1aapl7hjartsn8zq27ayyfwh4ezep7jwzquvct5ksglzl99e0ee4q2xxet8", - "id": "1100", - "current_tick_liquidity": "3733915582.649881312217509835", - "token0": "uion", - "token0Amount": "77082116", - "token1": "uosmo", - "token1Amount": "19902163073", - "current_sqrt_price": "17.581920432898878046830289425175459431", - "current_tick": "20091239", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 56093.846080766074, - "liquidity24hUsdChange": -3.7360798281464414, - "volume24hUsd": 5904.309943303331, - "volume24hUsdChange": 25.583701160007124, - "volume7dUsd": 57405.6221017507, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1564", - "code_id": "580", - "tokens": [ - { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "27596240800" - }, - { - "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", - "amount": "25934251019" - } - ], - "liquidityUsd": 55751.93268346606, - "liquidity24hUsdChange": -6.45687638718242, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "641", @@ -6142,26 +6631,26 @@ }, "total_shares": { "denom": "gamm/pool/641", - "amount": "2906320515496387516063072" + "amount": "2795536053414223801605268" }, - "liquidityUsd": 53966.64309459423, - "liquidity24hUsdChange": -2.514717943553441, - "volume24hUsd": 2096.896240505086, - "volume24hUsdChange": -37.89039915918474, - "volume7dUsd": 38006.694138962295, + "liquidityUsd": 38184.62261099374, + "liquidity24hUsdChange": -2.390113968731845, + "volume24hUsd": 988.4967959653538, + "volume24hUsdChange": 8.246714565217536, + "volume7dUsd": 23900.050383517882, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "amount": "6147277629896" + "amount": "5656012673069" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "21013540428" + "amount": "21157576587" }, "weight": "536870912000000" } @@ -6170,55 +6659,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1q85yezm7z9rmdr4dn63w0yde869v6kd7knl7yl2jasvdnsvywrgs0t85hh", - "id": "1297", - "current_tick_liquidity": "5887602913825895963278.852596894580757099", - "token0": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "token0Amount": "12971093898075555000", - "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "2318048141223971700", - "current_sqrt_price": "0.997889667767239870247074341350690140", - "current_tick": "-42163", + "address": "osmo1m29dqh0553vshphrv3ju8590aa3ear3gx78f8mfrhy5qk26l5cxqgrtre5", + "id": "1316", + "current_tick_liquidity": "6239329618615.911169189009547007", + "token0": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "token0Amount": "18651459624", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "19268290359", + "current_sqrt_price": "1.000819177920775088113512332938331647", + "current_tick": "1639", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 53752.69787845661, - "liquidity24hUsdChange": -2.4194921404002865, - "volume24hUsd": 1727.4589366323755, - "volume24hUsdChange": -54.27628296266727, - "volume7dUsd": 78544.73319195586, + "spread_factor": "0.005000000000000000", + "liquidityUsd": 37971.656455062206, + "liquidity24hUsdChange": 1.6673053755194618, + "volume24hUsd": 1987.3940518365455, + "volume24hUsdChange": -84.54094798816334, + "volume7dUsd": 256275.9579178848, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1420", + "id": "651", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1420", - "amount": "6448578616436521043302" + "denom": "gamm/pool/651", + "amount": "413767886568923214991" }, - "liquidityUsd": 53141.71471876706, - "liquidity24hUsdChange": -3.1135442761531182, - "volume24hUsd": 2420.6659609666303, - "volume24hUsdChange": 109.96174705065688, - "volume7dUsd": 35269.93019578847, + "liquidityUsd": 37632.238166411786, + "liquidity24hUsdChange": -7.305530494018877, + "volume24hUsd": 1726.3868302242247, + "volume24hUsdChange": 9.395073298541758, + "volume7dUsd": 114156.4899152007, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", - "amount": "415035119018413" + "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", + "amount": "305137358326557" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "150609898633429" + "denom": "uosmo", + "amount": "20852995301" }, "weight": "536870912000000" } @@ -6227,70 +6716,91 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "577", + "id": "619", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/577", - "amount": "295491362041741353338" + "denom": "gamm/pool/619", + "amount": "67973774681356999915687" }, - "liquidityUsd": 52984.02497579359, - "liquidity24hUsdChange": -4.943477888832468, - "volume24hUsd": 1814.1192917279548, - "volume24hUsdChange": -83.05811532165811, - "volume7dUsd": 28273.31029514889, + "liquidityUsd": 37209.034655104166, + "liquidity24hUsdChange": -3.0701094166843457, + "volume24hUsd": 66.19915594424737, + "volume24hUsdChange": -65.07158820872719, + "volume7dUsd": 11987.23019372323, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", - "amount": "2916560090464" + "denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", + "amount": "1340713012370" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "20646937111" + "amount": "20618487303" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1fwmtga0klq30xt9uyy46shpjdg9nz8l3uckkzek4spumrqz7lfnquez6dh", + "id": "1337", + "current_tick_liquidity": "168435832736.568561205565121102", + "token0": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "token0Amount": "361557387558", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "3760978571", + "current_sqrt_price": "0.302393006637985449216198167449785739", + "current_tick": "-9855847", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 36854.64279153542, + "liquidity24hUsdChange": -1.944955765044798, + "volume24hUsd": 12328.203349849646, + "volume24hUsdChange": 127.18203939319154, + "volume7dUsd": 82955.04943632393, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "651", + "id": "773", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/651", - "amount": "413925773160778276621" + "denom": "gamm/pool/773", + "amount": "21234195172937992490873" }, - "liquidityUsd": 52910.09845296043, - "liquidity24hUsdChange": -5.489456417684779, - "volume24hUsd": 5150.422356860234, - "volume24hUsdChange": -43.985984435184164, - "volume7dUsd": 52151.398579897, + "liquidityUsd": 36418.645523185114, + "liquidity24hUsdChange": -2.668300279963123, + "volume24hUsd": 5070.200337538761, + "volume24hUsdChange": 357.1131419229741, + "volume7dUsd": 54529.44738964976, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", - "amount": "307368390408850" + "denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", + "amount": "27779134550688" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "20618129253" + "amount": "20199689164" }, "weight": "536870912000000" } @@ -6299,97 +6809,76 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1xk3ms4pa63dl8tldtfpr5yes2g5a05j07s5cpgn7ucgkg2m43jsq3wmpaj", - "id": "1260", - "current_tick_liquidity": "595556456783532222355.921588344527649216", - "token0": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token0Amount": "46155700683", - "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token1Amount": "6449507436537751000000", - "current_sqrt_price": "999712.694161631184118051251220995242468288", - "current_tick": "107994254", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 52557.3309516165, - "liquidity24hUsdChange": -0.1714022725117332, - "volume24hUsd": 56251.27901719758, - "volume24hUsdChange": -25.08027564587566, - "volume7dUsd": 319291.152192528, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo193rag3n9puz073n6wrsag3rpnhwltu4akcmpl79ue4ekxhn0k0cq8ccf4f", - "id": "1516", - "current_tick_liquidity": "75159970292131605.976991743948098945", - "token0": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "token0Amount": "17353892843476133000000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "7786907225", - "current_sqrt_price": "0.000001604331558762510076672436770406", - "current_tick": "-106426121", + "address": "osmo1y4px45czej0gqt7d88hvwuw7dgqst42yj5zjaxv26p56t9zup0vsn2scj4", + "id": "1623", + "current_tick_liquidity": "43862592723299.805451020440185525", + "token0": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", + "token0Amount": "342693063262", + "token1": "uosmo", + "token1Amount": "23589511096", + "current_sqrt_price": "0.216395506613165816475141229978947138", + "current_tick": "-14317299", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 52409.278319410296, - "liquidity24hUsdChange": -6.756377969775648, - "volume24hUsd": 78515.45508036065, - "volume24hUsdChange": 3.6176299854526883, - "volume7dUsd": 474110.24917295575, + "liquidityUsd": 35750.15744357419, + "liquidity24hUsdChange": 13.228260856877991, + "volume24hUsd": 33886.13355780622, + "volume24hUsdChange": 128.0867213364579, + "volume7dUsd": 250967.2403562515, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12vw7dlafwxefct6ntqr6hmn6x5h0u4yrll54u4x38fad838ya6gs0w57k0", - "id": "1278", - "current_tick_liquidity": "9856066395346890.396714851595478336", - "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token0Amount": "8341744429106976000", + "address": "osmo10w89trvxk6tw6v8r5l9y8x4552nw58f3lu7t0t0ljezcy8kpm9csgmzxcw", + "id": "1305", + "current_tick_liquidity": "27755691283.998574645195537998", + "token0": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "token0Amount": "927349434201", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "22257248435", - "current_sqrt_price": "0.000059317018131428781779910847972608", - "current_tick": "-78481492", + "token1Amount": "8868014209", + "current_sqrt_price": "0.169764275585652128416578147376488491", + "current_tick": "-16118010", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 51589.95627360199, - "liquidity24hUsdChange": -3.9236556215528053, - "volume24hUsd": 128946.77734520676, - "volume24hUsdChange": 6.5927920068991614, - "volume7dUsd": 674845.3824094282, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 35629.951159211974, + "liquidity24hUsdChange": 10.190040858406372, + "volume24hUsd": 1530.6648871402153, + "volume24hUsdChange": 29.069915275188436, + "volume7dUsd": 14016.716986809359, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1628", + "id": "625", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1628", - "amount": "100000000000000000000" + "denom": "gamm/pool/625", + "amount": "28360287264596765269112726" }, - "liquidityUsd": 51001.13091396462, - "liquidity24hUsdChange": -2.2241819748835514, - "volume24hUsd": 3110.6088869085047, - "volume24hUsdChange": 18.590312101156968, - "volume7dUsd": 21889.34062324871, + "liquidityUsd": 35488.998324854925, + "liquidity24hUsdChange": -1.8360382209409383, + "volume24hUsd": 568.25111321294, + "volume24hUsdChange": 23.796299458752387, + "volume7dUsd": 10775.008081466747, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "463825641308297340000000" + "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "amount": "9388445428276" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "4944449654468412500000" + "denom": "uosmo", + "amount": "19676640646" }, "weight": "536870912000000" } @@ -6398,55 +6887,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1dsnwhxenw422tk9t20x4mjv5vyrmmd90kky403vt9d8qym7jc8ds4lkx0x", - "id": "1158", - "current_tick_liquidity": "438981044990.393881046160125995", - "token0": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", - "token0Amount": "1013251355160", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "21624751630", - "current_sqrt_price": "0.169429896253507003447746135822577844", - "current_tick": "-16129352", + "address": "osmo1fem6led3cwf3yjnug3d9x95ap78j7vr4057jpuk8gmjc04wg7g6sawuq3a", + "id": "1490", + "current_tick_liquidity": "64257597556507.158139846953056318", + "token0": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "token0Amount": "25847262369059", + "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token1Amount": "31390952", + "current_sqrt_price": "0.000999873858398922282300518233423910", + "current_tick": "-54002523", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 50535.50378806623, - "liquidity24hUsdChange": -1.5203304341610733, - "volume24hUsd": 1590.2769302343406, - "volume24hUsdChange": 104.57136314293666, - "volume7dUsd": 9272.439996827128, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 35219.86994546533, + "liquidity24hUsdChange": -5.5608956422480205, + "volume24hUsd": 6640.352055645987, + "volume24hUsdChange": -17.516009141631216, + "volume7dUsd": 191175.54000551396, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "773", + "id": "1421", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/773", - "amount": "21270167409857137061061" + "denom": "gamm/pool/1421", + "amount": "1598374383547770942954" }, - "liquidityUsd": 50224.99724152095, - "liquidity24hUsdChange": -25.151312274953863, - "volume24hUsd": 5893.81204203466, - "volume24hUsdChange": 285.2271146367964, - "volume7dUsd": 23523.89517599741, + "liquidityUsd": 35049.02386406918, + "liquidity24hUsdChange": 0.1887002934894776, + "volume24hUsd": 0.30563549353682223, + "volume24hUsdChange": -99.50826197807558, + "volume7dUsd": 3220.035042026325, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", - "amount": "28603344954928" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "17506898667" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "19590204027" + "denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", + "amount": "7777683905725" }, "weight": "536870912000000" } @@ -6454,134 +6943,111 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1cz37k9amexpntukeryrs4j39y35j9lljc22wkg6m7tuadhrdw00q6yfcnf", - "id": "1109", - "current_tick_liquidity": "1544398734907.511304095421669119", - "token0": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "token0Amount": "2043602549861", - "token1": "uosmo", - "token1Amount": "18018349900", - "current_sqrt_price": "0.100988264419658733487468202345266390", - "current_tick": "-17980138", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 49892.16105060901, - "liquidity24hUsdChange": -4.70588499100847, - "volume24hUsd": 2006.423373784081, - "volume24hUsdChange": -12.808238529776409, - "volume7dUsd": 17285.988652947155, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "930", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "948", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/930", - "amount": "428529053490223189229" + "denom": "gamm/pool/948", + "amount": "203877236937554677531702" }, - "liquidityUsd": 49813.53254956162, - "liquidity24hUsdChange": -6.135795966270727, - "volume24hUsd": 1512.655986204465, - "volume24hUsdChange": 3.6129475943149414, - "volume7dUsd": 14281.91633678331, + "liquidityUsd": 34726.554092326805, + "liquidity24hUsdChange": -5.375372822740166, + "volume24hUsd": 16.920196083052716, + "volume24hUsdChange": -99.66426966182415, + "volume7dUsd": 13288.52149510875, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "6018216205" - }, - "weight": "536870912000000" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "289445600789" }, { - "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "2223262340989" - }, - "weight": "536870912000000" + "denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", + "amount": "144987100488" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1288681002", + "1000000000" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fwmtga0klq30xt9uyy46shpjdg9nz8l3uckkzek4spumrqz7lfnquez6dh", - "id": "1337", - "current_tick_liquidity": "259384239964.097291783627385794", - "token0": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "token0Amount": "360419442802", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "4485462673", - "current_sqrt_price": "0.347535092367489096455593234669993762", - "current_tick": "-8792194", + "address": "osmo16jjk0wkr7kjdhk69zpw03qqr0vd69kh5n4j7x8kx7v4awnmjrxmq3xhcv9", + "id": "1318", + "current_tick_liquidity": "316516358312.738375577566360051", + "token0": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "token0Amount": "817329333345", + "token1": "uosmo", + "token1Amount": "16319041283", + "current_sqrt_price": "0.160497214027607108661943112400257565", + "current_tick": "-16424065", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 47940.60975783161, - "liquidity24hUsdChange": -1.3141266686391229, - "volume24hUsd": 11118.739047204113, - "volume24hUsdChange": 15.880856768883595, - "volume7dUsd": 114244.61154103468, + "spread_factor": "0.001000000000000000", + "liquidityUsd": 33721.359664347096, + "liquidity24hUsdChange": -2.7584030968537903, + "volume24hUsd": 22263.903116684018, + "volume24hUsdChange": -65.06563781920225, + "volume7dUsd": 372163.3128988611, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1zmpf92sg6dl57fd8mm03mjwlmqzudzw32zank0lzxk6xsqprmyzsr38d28", - "id": "1279", - "current_tick_liquidity": "1683446508127178.367291059875533513", - "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token0Amount": "1926479889982840600", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "41101380130", - "current_sqrt_price": "0.000059292976153477313399470917104815", - "current_tick": "-78484343", + "address": "osmo1cz37k9amexpntukeryrs4j39y35j9lljc22wkg6m7tuadhrdw00q6yfcnf", + "id": "1109", + "current_tick_liquidity": "172379787999859.432595507648820933", + "token0": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "token0Amount": "2075748569069", + "token1": "uosmo", + "token1Amount": "16077538405", + "current_sqrt_price": "0.100406597463179340137928702979457328", + "current_tick": "-17991852", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 47825.61499862513, - "liquidity24hUsdChange": -0.9299844616323896, - "volume24hUsd": 15791.396990287234, - "volume24hUsdChange": 44.128205591087855, - "volume7dUsd": 87172.06016600587, + "liquidityUsd": 33400.88060818537, + "liquidity24hUsdChange": -3.3526914419454457, + "volume24hUsd": 1864.3852751696809, + "volume24hUsdChange": 206.71119504358145, + "volume7dUsd": 40609.53469799291, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "928", + "id": "1311", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/928", - "amount": "743761965593795094778" + "denom": "gamm/pool/1311", + "amount": "7341134668914573963298" }, - "liquidityUsd": 45814.76717335096, - "liquidity24hUsdChange": -4.0850274306732075, - "volume24hUsd": 561.5791539281632, - "volume24hUsdChange": -13.309742485107833, - "volume7dUsd": 4438.755913656569, + "liquidityUsd": 32900.44136935004, + "liquidity24hUsdChange": 13.159355049665656, + "volume24hUsd": 1916.6737063292549, + "volume24hUsdChange": 42.199085362143585, + "volume7dUsd": 53609.737483272576, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "2052766394017" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "16440942150" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "6503373977300622500" + "denom": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", + "amount": "389949986290" }, "weight": "536870912000000" } @@ -6590,304 +7056,241 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "625", + "id": "644", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/625", - "amount": "27052358908082675924999703" + "denom": "gamm/pool/644", + "amount": "148322775219018470649575" }, - "liquidityUsd": 45605.971890658264, - "liquidity24hUsdChange": -3.619118870598062, - "volume24hUsd": 1013.1170949419864, - "volume24hUsdChange": -64.68504610185772, - "volume7dUsd": 7913.443986678257, + "liquidityUsd": 32458.66434236953, + "liquidity24hUsdChange": -1.7885496546275617, + "volume24hUsd": 727.2762113444769, + "volume24hUsdChange": -80.07072241547905, + "volume7dUsd": 42436.646309565, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "amount": "9449340903135" + "denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", + "amount": "2346233662661" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "17771916537" + "amount": "17986184399" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1r5phjlxtxacsngx7dcl83d0dnmhe50lrde2y3666nngxmdlutltq7p3v66", - "id": "1483", - "current_tick_liquidity": "330758272320.307046985992730061", - "token0": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "token0Amount": "104985877554", - "token1": "uosmo", - "token1Amount": "28594538651", - "current_sqrt_price": "0.244552124229788225211716224494031543", - "current_tick": "-13019426", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 44762.313575739405, - "liquidity24hUsdChange": -4.463242561466078, - "volume24hUsd": 2362.5250788135913, - "volume24hUsdChange": -85.4147144517062, - "volume7dUsd": 125122.25714894218, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "644", + "id": "1065", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/644", - "amount": "148322775219018470649575" + "denom": "gamm/pool/1065", + "amount": "107707740056177054711931294" }, - "liquidityUsd": 44645.095379029655, - "liquidity24hUsdChange": -3.951605271659885, - "volume24hUsd": 478.6439102557577, - "volume24hUsdChange": -65.8088806497185, - "volume7dUsd": 23246.08194199726, + "liquidityUsd": 32049.28841055968, + "liquidity24hUsdChange": -2.1428647675867403, + "volume24hUsd": 294.09388929597645, + "volume24hUsdChange": 6707.937465665046, + "volume7dUsd": 5729.299392466266, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", - "amount": "2418700910494" + "denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", + "amount": "1327168530317" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "17397403784" + "amount": "17759338620" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1y4px45czej0gqt7d88hvwuw7dgqst42yj5zjaxv26p56t9zup0vsn2scj4", - "id": "1623", - "current_tick_liquidity": "38749779640299.503091529591475125", - "token0": "ibc/E7905742CE2EA4EA5D592527DC89220C59B617DE803939FE7293805A64B484D7", - "token0Amount": "643310763585", - "token1": "uosmo", - "token1Amount": "10404639770", - "current_sqrt_price": "0.192893987595032201406936097658309783", - "current_tick": "-15279191", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 44021.81517876942, - "liquidity24hUsdChange": 26.757307585902034, - "volume24hUsd": 32654.833256473157, - "volume24hUsdChange": 257.35394776999505, - "volume7dUsd": 147782.4238109166, - "taker_fee": "0.001000000000000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo16jjk0wkr7kjdhk69zpw03qqr0vd69kh5n4j7x8kx7v4awnmjrxmq3xhcv9", - "id": "1318", - "current_tick_liquidity": "353180023995.975314806984384457", - "token0": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", - "token0Amount": "1013132497874", - "token1": "uosmo", - "token1Amount": "11379707034", - "current_sqrt_price": "0.149107846192304754885474157779799453", - "current_tick": "-16776686", + "address": "osmo1uxxvkna3k4ytt0cv9am2pdygaelldjuv98rugvjtev3vlpaqwgrq43r7dj", + "id": "1517", + "current_tick_liquidity": "1366830024242938.986061660040828349", + "token0": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", + "token0Amount": "5679089946190243000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "13574866597", + "current_sqrt_price": "0.000056100383727641913170996239738923", + "current_tick": "-78852747", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.001000000000000000", - "liquidityUsd": 43423.70773408209, - "liquidity24hUsdChange": -3.676567705982599, - "volume24hUsd": 21763.648723384755, - "volume24hUsdChange": 8.84534678474477, - "volume7dUsd": 112255.79112277753, + "liquidityUsd": 31480.039246581167, + "liquidity24hUsdChange": 0.9750753093015556, + "volume24hUsd": 549.2688203708585, + "volume24hUsdChange": -62.06100498102012, + "volume7dUsd": 27845.1054408493, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo10a35qydvml2y506d56nh53wdp5hpvcah5t467rz48z9qqdwlvr4s4delme", - "id": "1078", - "current_tick_liquidity": "43435311925.821826074200039032", - "token0": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token0Amount": "3214061632", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "8544681836", - "current_sqrt_price": "3.294071983956425322418788637622392267", - "current_tick": "9085091", + "address": "osmo1638hhj9wdc0uj0hz6z29vm3g48zevka8en4h0j0ytf05ax5zal4qf58sz2", + "id": "1228", + "current_tick_liquidity": "11479199941.028604486571164148", + "token0": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "token0Amount": "1521597117290", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "252236016", + "current_sqrt_price": "0.142348531763167096600557368426615201", + "current_tick": "-16973690", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 43326.525334219776, - "liquidity24hUsdChange": -3.4528152137158754, - "volume24hUsd": 27075.95844310511, - "volume24hUsdChange": -1.799161330615729, - "volume7dUsd": 188139.58461258403, + "liquidityUsd": 31374.717628851766, + "liquidity24hUsdChange": 13.057772544242729, + "volume24hUsd": 2501.2076937609368, + "volume24hUsdChange": 493.27215375035854, + "volume7dUsd": 167564.8903132589, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "929", + "id": "617", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/929", - "amount": "610415428892372008071" + "denom": "gamm/pool/617", + "amount": "1644402335017799274540" }, - "liquidityUsd": 43215.639765984204, - "liquidity24hUsdChange": -4.2401193105260235, - "volume24hUsd": 356.737874120238, - "volume24hUsdChange": -7.883292498226181, - "volume7dUsd": 3889.20493670946, + "liquidityUsd": 31108.388284044013, + "liquidity24hUsdChange": -3.403470419392686, + "volume24hUsd": 3149.554679143201, + "volume24hUsdChange": -25.66630854337793, + "volume7dUsd": 44537.92072557824, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "1934225187695" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1926534294" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "31278109" + "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", + "amount": "242813199667221" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1nenhm2qd3nzccwk3ny7wmylfnvzzg7r2umcqft63we5r43lrraqsk5gfz7", + "id": "1243", + "current_tick_liquidity": "48569871946.784283811622924112", + "token0": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "token0Amount": "13234399367", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "2364451067", + "current_sqrt_price": "1.466377356134321764099726584853981276", + "current_tick": "1150262", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 30868.153546793757, + "liquidity24hUsdChange": -3.538981502935397, + "volume24hUsd": 5896.162195918214, + "volume24hUsdChange": -42.61408530848227, + "volume7dUsd": 100245.56238000165, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1065", + "id": "1023", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1065", - "amount": "107707593400737786739336298" + "denom": "gamm/pool/1023", + "amount": "156017555257036697485" }, - "liquidityUsd": 43184.997121782595, - "liquidity24hUsdChange": -4.507145659107825, - "volume24hUsd": 38.558847873318655, - "volume24hUsdChange": 388.8456556190732, - "volume7dUsd": 13185.463449265173, + "liquidityUsd": 30686.97045732991, + "liquidity24hUsdChange": -3.6426147216724267, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 5.701002068678682, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", - "amount": "1400156989703" + "denom": "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", + "amount": "6425524864" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "16828429326" + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "24963978" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1m29dqh0553vshphrv3ju8590aa3ear3gx78f8mfrhy5qk26l5cxqgrtre5", - "id": "1316", - "current_tick_liquidity": "6865433101076.366831109321935307", - "token0": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "token0Amount": "9161442255", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "32113646617", - "current_sqrt_price": "1.002447549721628957215791070307866665", - "current_tick": "4901", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 41252.2900671449, - "liquidity24hUsdChange": 13.590975397505945, - "volume24hUsd": 45871.28883285342, - "volume24hUsdChange": 8854.62743832436, - "volume7dUsd": 101770.3592779541, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1azfx0u2vf2r2zd9rvauwty0e82wqw76d5c49ft9tqm84j0ehp85sz6u6l3", - "id": "1604", - "current_tick_liquidity": "1133138410323410979.547867461264898227", - "token0": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", - "token0Amount": "5077509104741695000000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "27187523843", - "current_sqrt_price": "0.000001671645951100002803493543498945", - "current_tick": "-106205600", - "tick_spacing": "1", - "exponent_at_price_one": "-6", - "spread_factor": "0.001000000000000000", - "liquidityUsd": 41140.602461217946, - "liquidity24hUsdChange": -0.9241601965003694, - "volume24hUsd": 125.50341061235339, - "volume24hUsdChange": 206.61303938434548, - "volume7dUsd": 481.06916187830643, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1613", + "id": "1344", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1613", - "amount": "349262878524815049644" + "denom": "gamm/pool/1344", + "amount": "2642889979644298489518" }, - "liquidityUsd": 40439.416888333944, - "liquidity24hUsdChange": 1.2232066400371817, - "volume24hUsd": 3334.1367774978153, - "volume24hUsdChange": 20.724695268110686, - "volume7dUsd": 22515.394978888744, + "liquidityUsd": 30176.76750965109, + "liquidity24hUsdChange": -5.12860817407848, + "volume24hUsd": 143.80726886076974, + "volume24hUsdChange": 192.21215327653408, + "volume7dUsd": 27242.56905081156, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "20210131360" + "denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", + "amount": "425024923878067" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "368716303221852750000000" + "denom": "uosmo", + "amount": "16721726417" }, "weight": "536870912000000" } @@ -6895,113 +7298,153 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "616", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1426", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/616", - "amount": "110819924110972171959" + "denom": "gamm/pool/1426", + "amount": "5001894423442009732550" }, - "liquidityUsd": 40273.51583965817, - "liquidity24hUsdChange": -4.592119338413589, - "volume24hUsd": 76.7174243368871, - "volume24hUsdChange": -55.6902053411717, - "volume7dUsd": 2011.258851772462, + "liquidityUsd": 30006.372040017748, + "liquidity24hUsdChange": -3.257088470166783, + "volume24hUsd": 304.01231814361836, + "volume24hUsdChange": 119.46454191894192, + "volume7dUsd": 12505.074011008013, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1864848680" - }, - "weight": "53687091200" + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "5605589078668498000" }, { - "token": { - "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", - "amount": "54319552688323" - }, - "weight": "53687091200" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "4464474520163118000" } ], - "total_weight": "107374182400" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1p8ukmz0aggxzfvf63ke7sd4535gj9a6p3m26uf2patxme6d0skys9562zr", - "id": "1507", - "current_tick_liquidity": "768370816091.048687824555612730", - "token0": "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", - "token0Amount": "55389393816974", + "address": "osmo1h6tfrcp4cjvw6atlff78tvqxe2lqsxqw5jsn0aq6d39v53tje9vsgw0q43", + "id": "1636", + "current_tick_liquidity": "137295196390848796405420.764524110221144534", + "token0": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "token0Amount": "266153027541241550000000", + "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "token1Amount": "16642855006642934000000", + "current_sqrt_price": "0.221216526141139779690697059884540604", + "current_tick": "-14106325", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 29759.553596734484, + "liquidity24hUsdChange": -0.8179374736175045, + "volume24hUsd": 2257.5416250716335, + "volume24hUsdChange": 15.815454704868854, + "volume7dUsd": 42402.12467624839, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1caf4wn665qmd4hm646rgrp53usf5dlrekldenvga80c3j9g0r2qsu70c7t", + "id": "1298", + "current_tick_liquidity": "25726184571668389792534.707155109113444289", + "token0": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "token0Amount": "191991101964380420000000", + "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "token1Amount": "1035975890579386000000", + "current_sqrt_price": "0.382885280815235802285615093496675066", + "current_tick": "-8533989", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 29016.800103264406, + "liquidity24hUsdChange": 0.36714724312976155, + "volume24hUsd": 2704.7617541270433, + "volume24hUsdChange": 18.08743532100928, + "volume7dUsd": 116068.33446851825, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo10xgpyg2kpp64chlmz3zafzulnr9rulz3j8pqwp4fq52gvsxc8afqm79ya7", + "id": "1656", + "current_tick_liquidity": "11322142596.699951219243452901", + "token0": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "token0Amount": "76453511", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "31686476468", - "current_sqrt_price": "0.012473720305820796594111549842841511", - "current_tick": "-35444064", + "token1Amount": "24121050868", + "current_sqrt_price": "7.656931572345763302957359803381231048", + "current_tick": "13862860", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 40261.58380882118, - "liquidity24hUsdChange": 0.03690003154915329, - "volume24hUsd": 2655.872857217021, - "volume24hUsdChange": 233.48326437448898, - "volume7dUsd": 13018.357103220742, + "spread_factor": "0.010000000000000000", + "liquidityUsd": 28620.90169483635, + "liquidity24hUsdChange": -23.164823165866505, + "volume24hUsd": 38101.67725253154, + "volume24hUsdChange": -68.36640892465205, + "volume7dUsd": 885348.7417307519, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo10w89trvxk6tw6v8r5l9y8x4552nw58f3lu7t0t0ljezcy8kpm9csgmzxcw", - "id": "1305", - "current_tick_liquidity": "27755691283.998574645195537998", - "token0": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", - "token0Amount": "895625793947", + "address": "osmo193rag3n9puz073n6wrsag3rpnhwltu4akcmpl79ue4ekxhn0k0cq8ccf4f", + "id": "1516", + "current_tick_liquidity": "26684143767923746.229422353525358143", + "token0": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "token0Amount": "12949281168726857000000", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "9540173927", - "current_sqrt_price": "0.184764239051798163367259900102478980", - "current_tick": "-15586218", + "token1Amount": "3074559691", + "current_sqrt_price": "0.000001393919369552297582654702281315", + "current_tick": "-107056989", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 40071.959541094904, - "liquidity24hUsdChange": -12.491079677531138, - "volume24hUsd": 3027.2058330816853, - "volume24hUsdChange": 289.36914620717664, - "volume7dUsd": 11146.091488370661, + "liquidityUsd": 28213.642243076632, + "liquidity24hUsdChange": -41.835139288417814, + "volume24hUsd": 39737.57843186747, + "volume24hUsdChange": -29.645347000173572, + "volume7dUsd": 1253934.837808787, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "617", + "id": "1254", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/617", - "amount": "1648038871132943443011" + "denom": "gamm/pool/1254", + "amount": "122273020407484209954" }, - "liquidityUsd": 39743.05013867299, - "liquidity24hUsdChange": -4.753671734576683, - "volume24hUsd": 2013.3952137169251, - "volume24hUsdChange": -33.514486712838654, - "volume7dUsd": 13363.706822864024, + "liquidityUsd": 27404.322985352606, + "liquidity24hUsdChange": -4.058873504391478, + "volume24hUsd": 151.54284546405685, + "volume24hUsdChange": 3187.0853800080326, + "volume7dUsd": 1758.7069066349834, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1835362902" + "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "amount": "366735155" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", - "amount": "254141960496732" + "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "amount": "2246665554" }, "weight": "536870912000000" } @@ -7010,91 +7453,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "914", + "id": "616", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/914", - "amount": "1052671167599430915088" + "denom": "gamm/pool/616", + "amount": "110834566366721960194" }, - "liquidityUsd": 39622.294936362676, - "liquidity24hUsdChange": -4.725281186843797, - "volume24hUsd": 432.43310823634647, - "volume24hUsdChange": -53.500236068793086, - "volume7dUsd": 6561.5837003609495, + "liquidityUsd": 26887.478675300117, + "liquidity24hUsdChange": -2.2519296567260683, + "volume24hUsd": 86.47026164238615, + "volume24hUsdChange": 17.908673076359456, + "volume7dUsd": 6841.227747327962, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "1771937595251" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1672759953" }, - "weight": "536870912000000" + "weight": "53687091200" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1831756713" + "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", + "amount": "60618542908212" }, - "weight": "536870912000000" + "weight": "53687091200" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1vq070t8h8wywt20gv6dada0dgwpwdakywxtwfc4cq8rx3zjvs6cswekeup", - "id": "1637", - "current_tick_liquidity": "12836806890667022020099.034799510938220110", - "token0": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "token0Amount": "394389054534930560000000", - "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "5089296904235977000", - "current_sqrt_price": "0.003943600151754471240872541517361429", - "current_tick": "-44444802", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 39569.865603868915, - "liquidity24hUsdChange": 0.29684862714698856, - "volume24hUsd": 16783.15185684152, - "volume24hUsdChange": 68.87499093265058, - "volume7dUsd": 56069.69280267562, - "taker_fee": "0.001000000000000000" + "total_weight": "107374182400" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "778", + "id": "960", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/778", - "amount": "266589843214150218718900" + "denom": "gamm/pool/960", + "amount": "6160738276984827272056725" }, - "liquidityUsd": 38922.23932599176, - "liquidity24hUsdChange": -5.198668485020295, - "volume24hUsd": 2813.3657275528562, - "volume24hUsdChange": 22.61062949404247, - "volume7dUsd": 16396.393993916587, + "liquidityUsd": 25698.546288250276, + "liquidity24hUsdChange": -2.7575378128000114, + "volume24hUsd": 1530.2618225828305, + "volume24hUsdChange": -53.21867367372693, + "volume7dUsd": 94695.55272107472, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", - "amount": "10098783569542" + "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "amount": "552868400591" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "15167308032" + "amount": "14239711180" }, "weight": "536870912000000" } @@ -7103,201 +7525,133 @@ }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1575", - "code_id": "572", + "pool_id": "1445", + "code_id": "148", "tokens": [ { - "denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", - "amount": "6841642009836962" + "denom": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", + "amount": "6152088303590" }, { - "denom": "uosmo", - "amount": "30057075542" + "denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", + "amount": "13367942706410" } ], - "liquidityUsd": 38566.12805703244, - "liquidity24hUsdChange": -3.3382701125091665, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 25586.77951109642, + "liquidity24hUsdChange": 2.9292799381317596, + "volume24hUsd": 1692.4215087565342, + "volume24hUsdChange": 87.31874722693689, + "volume7dUsd": 56378.90021501857, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1608", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1608", - "amount": "100000000000000000000" - }, - "liquidityUsd": 38285.73741697576, - "liquidity24hUsdChange": -0.4093153555869712, - "volume24hUsd": 1485.1923237797855, - "volume24hUsdChange": 134.9556397331781, - "volume7dUsd": 8119.924363180112, - "taker_fee": "0.001000000000000000", - "pool_assets": [ + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1575", + "code_id": "641", + "tokens": [ { - "token": { - "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "amount": "27515486" - }, - "weight": "536870912000000" + "denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", + "amount": "7327401636573771" }, { - "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "348969080860902730000000" - }, - "weight": "536870912000000" + "denom": "uosmo", + "amount": "28084206036" } ], - "total_weight": "1073741824000000" + "liquidityUsd": 25341.00053747793, + "liquidity24hUsdChange": 1.3248877187317905, + "volume24hUsd": 944.1974015228873, + "volume24hUsdChange": 1127.1323599185318, + "volume7dUsd": 2134.3866540873278, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1445", - "code_id": "148", + "pool_id": "1462", + "code_id": "641", "tokens": [ { - "denom": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", - "amount": "10450954630090" + "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "amount": "33193613724360" }, { - "denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", - "amount": "9069076379910" + "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "amount": "1071823558873" } ], - "liquidityUsd": 37758.64235280796, - "liquidity24hUsdChange": -3.631913197737175, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 24911.26971781172, + "liquidity24hUsdChange": -1.0833347579441341, + "volume24hUsd": 88.79540350447036, + "volume24hUsdChange": 37953.59835492074, + "volume7dUsd": 1263.439257515586, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "948", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "778", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/948", - "amount": "203991055517825120851560" - }, - "liquidityUsd": 36677.778316777476, - "liquidity24hUsdChange": -3.6864673642314716, - "volume24hUsd": 74.57575019261554, - "volume24hUsdChange": -99.1281847044004, - "volume7dUsd": 13354.267040803908, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "280875013351" - }, - { - "denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", - "amount": "151426161512" - } - ], - "scaling_factors": [ - "1288681002", - "1000000000" - ], - "scaling_factor_controller": "" - }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1426", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1426", - "amount": "5001894423442009732550" + "denom": "gamm/pool/778", + "amount": "244040739450083222887550" }, - "liquidityUsd": 35409.04633175887, - "liquidity24hUsdChange": -2.6790902088504884, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 2094.3648111533944, + "liquidityUsd": 24741.105283490266, + "liquidity24hUsdChange": -0.9967140406616118, + "volume24hUsd": 1977.7657771582292, + "volume24hUsdChange": 59.530833306496156, + "volume7dUsd": 75736.84711658646, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "5668497016293028000" + "token": { + "denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", + "amount": "9422522327656" + }, + "weight": "536870912000000" }, { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "4400267805240846000" + "token": { + "denom": "uosmo", + "amount": "13709685561" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1geg6y7ckqxwmvln3v56j8jdk9umhvjwkuv50jgkkg0lj0nrtxgtqkcnyee", - "id": "1650", - "current_tick_liquidity": "8630076943024.938373219303640578", - "token0": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "token0Amount": "30990788017", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "4482967529", - "current_sqrt_price": "0.997904635789182231070834236050129603", - "current_tick": "-41864", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.001000000000000000", - "liquidityUsd": 35243.902246146536, - "liquidity24hUsdChange": 468.6472222224313, - "volume24hUsd": 32917.06262291983, - "volume24hUsdChange": 196.1130491519229, - "volume7dUsd": 61472.44812069064, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "960", + "id": "1471", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/960", - "amount": "6394896730739885772357130" + "denom": "gamm/pool/1471", + "amount": "113961786476165837695" }, - "liquidityUsd": 35004.271606280774, - "liquidity24hUsdChange": -3.876325045912459, - "volume24hUsd": 6571.152195487679, - "volume24hUsdChange": 76.79802512352751, - "volume7dUsd": 45983.95985165889, + "liquidityUsd": 24634.984887261904, + "liquidity24hUsdChange": -1.5579855803942395, + "volume24hUsd": 680.5622455919048, + "volume24hUsdChange": 26.90609469488238, + "volume7dUsd": 17969.151447373784, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", - "amount": "614845531313" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "12256412412" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "13648670173" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "9215303059491" }, "weight": "536870912000000" } @@ -7306,125 +7660,104 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "618", + "id": "1306", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/618", - "amount": "28625251072710683571064" + "denom": "gamm/pool/1306", + "amount": "14310814962964178427536" }, - "liquidityUsd": 34722.64113534783, - "liquidity24hUsdChange": -4.4908870755541805, - "volume24hUsd": 48.811016452125635, - "volume24hUsdChange": -48.850429548843245, - "volume7dUsd": 2742.8283432611847, + "liquidityUsd": 24377.28704867258, + "liquidity24hUsdChange": -6.38502823568617, + "volume24hUsd": 2048.314216227254, + "volume24hUsdChange": 14.220601261922738, + "volume7dUsd": 16540.69255307404, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1605054819" + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "amount": "19888248341936" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", - "amount": "744202911684" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "498600425733" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1uxxvkna3k4ytt0cv9am2pdygaelldjuv98rugvjtev3vlpaqwgrq43r7dj", - "id": "1517", - "current_tick_liquidity": "1366830024242938.986061660040828349", - "token0": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", - "token0Amount": "3299766943949965000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "21873633304", - "current_sqrt_price": "0.000062171926360627352807599348464480", - "current_tick": "-78134652", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.001000000000000000", - "liquidityUsd": 34591.32368158683, - "liquidity24hUsdChange": 0.5707145352125081, - "volume24hUsd": 1119.8512578372852, - "volume24hUsdChange": 94.78950411455568, - "volume7dUsd": 5151.33284455216, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1087", + "id": "922", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1087", - "amount": "1052495305723789511288418" + "denom": "gamm/pool/922", + "amount": "2741651284201270032413422" }, - "liquidityUsd": 34560.907984717196, - "liquidity24hUsdChange": -0.7069201926821336, - "volume24hUsd": 275.2236645277433, - "volume24hUsdChange": -89.4217841673644, - "volume7dUsd": 4247.790355481267, + "liquidityUsd": 23222.51941964231, + "liquidity24hUsdChange": -4.7021677887710975, + "volume24hUsd": 2881.591486507716, + "volume24hUsdChange": 2672.971514571177, + "volume7dUsd": 23117.221368669198, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { - "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "amount": "88418214784" + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "196256175277145930000000" }, { - "denom": "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", - "amount": "123611381737" + "denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", + "amount": "146538523014804960000000" } ], "scaling_factors": [ - "1046364126", - "1000000000" + "152072", + "100000" ], "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "915", + "id": "837", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/915", - "amount": "654680374974435314565" + "denom": "gamm/pool/837", + "amount": "1681050884824997889107" }, - "liquidityUsd": 34521.8647108113, - "liquidity24hUsdChange": -6.194184658095544, - "volume24hUsd": 954.7732953268602, - "volume24hUsdChange": -48.338075775289916, - "volume7dUsd": 10535.258757151387, + "liquidityUsd": 22991.385269642655, + "liquidity24hUsdChange": -1.774030287659198, + "volume24hUsd": 2525.0636275406832, + "volume24hUsdChange": -46.34105123776453, + "volume7dUsd": 87912.65934087535, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "1545027838845" + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "11501409784" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "amount": "11580330564" + "denom": "uosmo", + "amount": "12735366085" }, "weight": "536870912000000" } @@ -7433,34 +7766,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1023", + "id": "1669", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1023", - "amount": "156017555257036697485" + "denom": "gamm/pool/1669", + "amount": "1113267840712844724348836" }, - "liquidityUsd": 34499.1703765671, - "liquidity24hUsdChange": -3.4264438503632006, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 22943.933075811983, + "liquidity24hUsdChange": -3.1979555550209726, + "volume24hUsd": 5.125934364501334, + "volume24hUsdChange": -99.17135681193282, + "volume7dUsd": 19350.345103336236, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", - "amount": "6424755193" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "11296012649" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "24966955" + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "amount": "1843118905415953600" }, "weight": "536870912000000" } @@ -7469,76 +7802,76 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1vh3wdxc7tatprfdk58e2zaj8yh5yf24jswz4gunuu4d6k4plthsqgy0ey9", - "id": "1347", - "current_tick_liquidity": "58828471275.536221689609456428", - "token0": "uosmo", - "token0Amount": "5754629201", - "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token1Amount": "2260103262", - "current_sqrt_price": "0.332228826827890886947403191183228635", - "current_tick": "-8896241", + "address": "osmo1ez670mylwcd8zq3pqym7dca6usxf46mkuenudhy9jpk0pyjxcf4spdqrwa", + "id": "1106", + "current_tick_liquidity": "109713964677.194669273468777580", + "token0": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "token0Amount": "442438096165", + "token1": "uosmo", + "token1Amount": "12035623816", + "current_sqrt_price": "0.173796644789419473633885209389447352", + "current_tick": "-15979473", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 33652.70270849086, - "liquidity24hUsdChange": -2.7867059136745214, - "volume24hUsd": 234236.61587163134, - "volume24hUsdChange": 28.13173833263748, - "volume7dUsd": 1180848.0405788661, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 22918.60625851631, + "liquidity24hUsdChange": -2.0704220341210053, + "volume24hUsd": 790.4409752279611, + "volume24hUsdChange": -34.01162260970761, + "volume7dUsd": 28457.732289181004, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hnkx8h9vaeu579u05c3m800s36nu4sfh84fer3v6qhhy2jvhv38qnkmwva", - "id": "1566", - "current_tick_liquidity": "114948109255089232804166.958885694245050344", - "token0": "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", - "token0Amount": "5072169002014473000000", - "token1": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "token1Amount": "1513983569907578400000", - "current_sqrt_price": "0.986819217370741417954066831587165066", - "current_tick": "-261879", + "address": "osmo1gqjnn9x0xwjl65wj46p6ge0ah3ydw8a2vwzyl5ms0565jtjm65vsayfyd9", + "id": "1664", + "current_tick_liquidity": "50198064112074.903522337685656498", + "token0": "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", + "token0Amount": "191446973137014840", + "token1": "uosmo", + "token1Amount": "12514579169", + "current_sqrt_price": "0.000257673323227167733068358073547895", + "current_tick": "-66360446", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 33316.36411669625, - "liquidity24hUsdChange": -1.1621316031391025, - "volume24hUsd": 66266.08474914698, - "volume24hUsdChange": 78.87936438681349, - "volume7dUsd": 311137.3646128836, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 22761.801690330307, + "liquidity24hUsdChange": -3.4638839840303075, + "volume24hUsd": 283.7038570903244, + "volume24hUsdChange": -84.23647185338977, + "volume7dUsd": 16714.63510934938, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1421", + "id": "618", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1421", - "amount": "1598368005294890654389" + "denom": "gamm/pool/618", + "amount": "27937064394938725088348" }, - "liquidityUsd": 33259.58836291717, - "liquidity24hUsdChange": -2.287090359262339, - "volume24hUsd": 523.7093904390968, - "volume24hUsdChange": 950.0296814106491, - "volume7dUsd": 2001.380463551551, + "liquidityUsd": 22564.949941019004, + "liquidity24hUsdChange": -1.9616694122590679, + "volume24hUsd": 61.716312292799664, + "volume24hUsdChange": 136.7198485307564, + "volume7dUsd": 3726.5516992834287, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "16647610115" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1405219076" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", - "amount": "8172859247728" + "denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", + "amount": "810156297059" }, "weight": "536870912000000" } @@ -7547,82 +7880,40 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1254", + "id": "1232", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000200000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1254", - "amount": "122216467618479725223" + "denom": "gamm/pool/1232", + "amount": "68633286976082217494828" }, - "liquidityUsd": 32905.352648882705, - "liquidity24hUsdChange": -6.5756157805781426, - "volume24hUsd": 15.81353759256515, - "volume24hUsdChange": -93.9893419076023, - "volume7dUsd": 3176.1031312847317, + "liquidityUsd": 22499.164025281967, + "liquidity24hUsdChange": -0.12877943700428676, + "volume24hUsd": 766.7064224820142, + "volume24hUsdChange": -16.661350691014807, + "volume7dUsd": 21321.103697250786, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "amount": "335130601" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "11224732338" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", - "amount": "2451040260" + "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "amount": "589074645099" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ez670mylwcd8zq3pqym7dca6usxf46mkuenudhy9jpk0pyjxcf4spdqrwa", - "id": "1106", - "current_tick_liquidity": "109718569492.136832349128294780", - "token0": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "token0Amount": "441932171606", - "token1": "uosmo", - "token1Amount": "12067688882", - "current_sqrt_price": "0.174016697810853779141128442649607556", - "current_tick": "-15971819", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 32658.011011419097, - "liquidity24hUsdChange": -8.399658936659183, - "volume24hUsd": 3556.7069300406592, - "volume24hUsdChange": -53.64879864543377, - "volume7dUsd": 27695.003445277256, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1caf4wn665qmd4hm646rgrp53usf5dlrekldenvga80c3j9g0r2qsu70c7t", - "id": "1298", - "current_tick_liquidity": "215724221266349757693148.812092900461210750", - "token0": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", - "token0Amount": "164796083598809000000000", - "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token1Amount": "4027855867753006000000", - "current_sqrt_price": "0.416222442858759223689602418970555309", - "current_tick": "-8267589", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 32390.8918798396, - "liquidity24hUsdChange": -2.1331784951363244, - "volume24hUsd": 22259.9269376742, - "volume24hUsdChange": -37.932409688878536, - "volume7dUsd": 125561.70655272648, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "562", @@ -7633,26 +7924,26 @@ }, "total_shares": { "denom": "gamm/pool/562", - "amount": "7337033522357296593099854" + "amount": "7306971522551806352207498" }, - "liquidityUsd": 31994.219472683595, - "liquidity24hUsdChange": -2.977752634526826, - "volume24hUsd": 7133.615680896273, - "volume24hUsdChange": 1257.1009742079523, - "volume7dUsd": 15621.607755001498, + "liquidityUsd": 22439.07281057276, + "liquidity24hUsdChange": -3.2606853215126046, + "volume24hUsd": 214.38267736274935, + "volume24hUsdChange": -41.57821504006598, + "volume7dUsd": 23258.901022140362, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "122370028779489" + "amount": "115939532079102" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "650161594988" + "amount": "685972383528" }, "weight": "536870912000000" } @@ -7661,244 +7952,307 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "732", + "id": "1218", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/732", - "amount": "107435052196099863688" + "denom": "gamm/pool/1218", + "amount": "166446746987083169230" }, - "liquidityUsd": 31506.179041272226, - "liquidity24hUsdChange": -3.7154973136795952, - "volume24hUsd": 474.54052099288435, - "volume24hUsdChange": 13.956048539430652, - "volume7dUsd": 2323.3486079985287, + "liquidityUsd": 21869.05354472379, + "liquidity24hUsdChange": 0.04114424463781508, + "volume24hUsd": 1863.3671531568878, + "volume24hUsdChange": -55.54910423894175, + "volume7dUsd": 74464.07189221709, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4", - "amount": "471211757942965950000000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "10899445324" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "12277400548" + "denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", + "amount": "309524829947331100000000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1638hhj9wdc0uj0hz6z29vm3g48zevka8en4h0j0ytf05ax5zal4qf58sz2", - "id": "1228", - "current_tick_liquidity": "411184071686.457314904896293828", - "token0": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "token0Amount": "857004993075", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "7403063917", - "current_sqrt_price": "0.168347165817680069457814227297636089", - "current_tick": "-16165924", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 31475.78875419838, - "liquidity24hUsdChange": 2.64822711704455, - "volume24hUsd": 29033.9262978696, - "volume24hUsdChange": 24.346464684887543, - "volume7dUsd": 109034.80112699908, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1h6tfrcp4cjvw6atlff78tvqxe2lqsxqw5jsn0aq6d39v53tje9vsgw0q43", - "id": "1636", - "current_tick_liquidity": "137295196390848796405420.764524110221144534", - "token0": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "token0Amount": "230371831128336980000000", - "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token1Amount": "18500996778428970000000", - "current_sqrt_price": "0.234750442990614408048799110000363124", - "current_tick": "-13489223", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 31158.00681851657, - "liquidity24hUsdChange": 1.1640629791942656, - "volume24hUsd": 1907.7546158793593, - "volume24hUsdChange": 71.92269192568456, - "volume7dUsd": 6766.332549654964, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1306", + "id": "561", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1306", - "amount": "14303237511818139192828" + "denom": "gamm/pool/561", + "amount": "392542708471226607259652" }, - "liquidityUsd": 31067.15681997193, - "liquidity24hUsdChange": -4.097826363501588, - "volume24hUsd": 478.7583077264311, - "volume24hUsdChange": 192.07632856983707, - "volume7dUsd": 7897.842235114243, + "liquidityUsd": 21757.416405961427, + "liquidity24hUsdChange": -3.289959535720592, + "volume24hUsd": 1864.8906459919256, + "volume24hUsdChange": 0.7334764816880608, + "volume7dUsd": 64464.53656929722, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "amount": "22918283529274" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "112508836011874" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "430726481160" + "denom": "uosmo", + "amount": "12233734787" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1462", - "code_id": "503", - "tokens": [ - { - "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "amount": "32872354164574" - }, - { - "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", - "amount": "1083793840669" - } - ], - "liquidityUsd": 30832.798666313895, - "liquidity24hUsdChange": -3.025081464207591, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "922", + "id": "1087", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/922", - "amount": "2707421052449861424904528" + "denom": "gamm/pool/1087", + "amount": "1052495305723789511288418" }, - "liquidityUsd": 29917.94857134495, - "liquidity24hUsdChange": -3.7128540862780737, - "volume24hUsd": 294.5647744905302, - "volume24hUsdChange": -94.96199545475517, - "volume7dUsd": 10261.0120045884, + "liquidityUsd": 21700.738832102892, + "liquidity24hUsdChange": -8.423194530960268, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 7.0956084191410715, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "174741876311259200000000" + "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "amount": "88594755028" }, { - "denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", - "amount": "156830507341071180000000" + "denom": "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", + "amount": "123440951373" } ], "scaling_factors": [ - "151286", - "100000" + "1046364126", + "1000000000" ], "scaling_factor_controller": "" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1a7l5mnrzy9cxjnqrk90p26nkct3uuz7z84fnkegf94rgdt0jpxwszm40cp", + "id": "1648", + "current_tick_liquidity": "7358467521571.016595030512120666", + "token0": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "token0Amount": "2716124324", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "18915188453", + "current_sqrt_price": "1.004619783527047501323554704312093301", + "current_tick": "9260", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.010000000000000000", + "liquidityUsd": 21653.566637575284, + "liquidity24hUsdChange": -0.01487153912831221, + "volume24hUsd": 1781.4709823919732, + "volume24hUsdChange": 157.39223050520812, + "volume7dUsd": 67282.43115069863, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1lq8ycun4jyw6jam5fhlqazrwr74ay80yadk2khg5k2mwke057lyqrsp53w", + "id": "1447", + "current_tick_liquidity": "25166978484.104702148072507453", + "token0": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "token0Amount": "341402980031", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "679468210", + "current_sqrt_price": "0.247588110523855751798138174456853483", + "current_tick": "-12870013", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 21633.493304392465, + "liquidity24hUsdChange": 38.51299036209196, + "volume24hUsd": 16247.03233136423, + "volume24hUsdChange": 16.217494641143894, + "volume7dUsd": 73717.79500373341, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1x2yr00ptu8twfjafsyftygytymlxhh3ljk6236q4hyjaf5yuad4s9hyhku", + "id": "1113", + "current_tick_liquidity": "1209137499878.218228581939014049", + "token0": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "token0Amount": "5383086186761", + "token1": "uosmo", + "token1Amount": "12683025941", + "current_sqrt_price": "0.045710970386233207422522687450083559", + "current_tick": "-25910508", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 21612.570558108724, + "liquidity24hUsdChange": 4.851802223053965, + "volume24hUsd": 2244.0202331101473, + "volume24hUsdChange": 151.4562228658263, + "volume7dUsd": 31806.113194001893, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1mlvvte60x6mg2szmplyxcy24hm97e8gczd4vjmtaenlzf0tjqw8qg9p3jl", + "id": "1645", + "current_tick_liquidity": "514359053002.330421790727752955", + "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "token0Amount": "233971635152", + "token1": "uosmo", + "token1Amount": "9420786958", + "current_sqrt_price": "0.248816382135536130431062401901372519", + "current_tick": "-12809041", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.010000000000000000", + "liquidityUsd": 21578.828369694966, + "liquidity24hUsdChange": -4.408425519852706, + "volume24hUsd": 2316.0671410526893, + "volume24hUsdChange": -32.59771052913554, + "volume7dUsd": 76246.13978483638, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "561", + "id": "732", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/561", - "amount": "391176099836415752239861" + "denom": "gamm/pool/732", + "amount": "107435052196099863688" }, - "liquidityUsd": 29734.516846981445, - "liquidity24hUsdChange": -6.218233993459211, - "volume24hUsd": 24460.206128504047, - "volume24hUsdChange": 986.6138479638682, - "volume7dUsd": 64455.54414158125, + "liquidityUsd": 21039.724460070232, + "liquidity24hUsdChange": -5.161224804557666, + "volume24hUsd": 205.1907545154388, + "volume24hUsdChange": 253.5840865239823, + "volume7dUsd": 1675.4519509392621, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "114139421467980" + "denom": "ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4", + "amount": "496318804028906400000000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "11884096824" + "amount": "11658654831" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1vh3wdxc7tatprfdk58e2zaj8yh5yf24jswz4gunuu4d6k4plthsqgy0ey9", + "id": "1347", + "current_tick_liquidity": "37679102328.340780628912148365", + "token0": "uosmo", + "token0Amount": "15071655841", + "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "token1Amount": "768086331", + "current_sqrt_price": "0.307565533226610628631035905523294421", + "current_tick": "-9540345", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 20932.03670845138, + "liquidity24hUsdChange": -5.513938526734781, + "volume24hUsd": 59630.280875854696, + "volume24hUsdChange": -7.060931814978817, + "volume7dUsd": 1833676.869178242, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "898", + "id": "882", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/898", - "amount": "361866422749043184379" + "denom": "gamm/pool/882", + "amount": "5022819326470306516410" }, - "liquidityUsd": 29668.169641585824, - "liquidity24hUsdChange": -4.364085447421724, - "volume24hUsd": 1077.3559088149166, - "volume24hUsdChange": -43.22028308534877, - "volume7dUsd": 11777.981121713796, + "liquidityUsd": 20682.66415641242, + "liquidity24hUsdChange": 5.674686330463202, + "volume24hUsd": 16274.376592437264, + "volume24hUsdChange": 289.3122258320484, + "volume7dUsd": 149074.13007835118, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", - "amount": "260099693921832720000000" + "denom": "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", + "amount": "34145619002635840000000" }, - "weight": "5368709120" + "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "11561160804" + "amount": "11460798493" }, - "weight": "5368709120" + "weight": "1073741824" } ], - "total_weight": "10737418240" + "total_weight": "2147483648" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1pdrj78dz673enff39mww4p64rk459ktq9xdw88u0m7cdqg5mlh6qllhd3t", + "id": "1672", + "current_tick_liquidity": "15815957520.541646508616066545", + "token0": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "token0Amount": "5398375878", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "3043163258", + "current_sqrt_price": "1.797807998583714271404679699369570239", + "current_tick": "2232113", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.010000000000000000", + "liquidityUsd": 20523.889561020045, + "liquidity24hUsdChange": -24.69618926889381, + "volume24hUsd": 9284.130029032935, + "volume24hUsdChange": -22.19059248549443, + "volume7dUsd": 251592.75869114633, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -7910,140 +8264,98 @@ }, "total_shares": { "denom": "gamm/pool/662", - "amount": "9207118131737498895364" + "amount": "9122395850978999663513" }, - "liquidityUsd": 29496.5899580326, - "liquidity24hUsdChange": -6.19133099904317, - "volume24hUsd": 634.4625813602697, - "volume24hUsdChange": -38.82701630779944, - "volume7dUsd": 3758.14432207133, + "liquidityUsd": 20488.738075535686, + "liquidity24hUsdChange": -2.4935810144584227, + "volume24hUsd": 238.0592900403142, + "volume24hUsdChange": -22.227522550674436, + "volume7dUsd": 9700.31889058334, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "1090428198015551" + "amount": "1084388990509617" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "11494299237" + "amount": "11353339042" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo10xgpyg2kpp64chlmz3zafzulnr9rulz3j8pqwp4fq52gvsxc8afqm79ya7", - "id": "1656", - "current_tick_liquidity": "10661969645.834260260114458168", - "token0": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", - "token0Amount": "226535617", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "10913723915", - "current_sqrt_price": "8.887389241456716833134004405979098296", - "current_tick": "15898568", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.010000000000000000", - "liquidityUsd": 28783.63731069374, - "liquidity24hUsdChange": 24.850014871678088, - "volume24hUsd": 33370.14124014758, - "volume24hUsdChange": 482.6460301868906, - "volume7dUsd": 116955.66272315911, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "882", + "id": "1576", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/882", - "amount": "5296302921024854748235" + "denom": "gamm/pool/1576", + "amount": "113299106832419712187" }, - "liquidityUsd": 28732.818841655237, - "liquidity24hUsdChange": -1.3424545059280089, - "volume24hUsd": 4189.937307543477, - "volume24hUsdChange": 36.51772424213543, - "volume7dUsd": 61202.610575516475, + "liquidityUsd": 20171.791399329304, + "liquidity24hUsdChange": -0.8416177042009252, + "volume24hUsd": 52.18109660625875, + "volume24hUsdChange": -19.256165481650996, + "volume7dUsd": 6076.985962868875, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", - "amount": "38180424433308680000000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "10109240298" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "11196671146" + "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", + "amount": "90494004161298" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1gqjnn9x0xwjl65wj46p6ge0ah3ydw8a2vwzyl5ms0565jtjm65vsayfyd9", - "id": "1664", - "current_tick_liquidity": "41252990872968.764340115654135769", - "token0": "ibc/3A0A392E610A8D477851ABFEA74F3D828F36C015AB8E93B0FBB7566A6D13C4D6", - "token0Amount": "128038836483823640", - "token1": "uosmo", - "token1Amount": "10987118363", - "current_sqrt_price": "0.000295256468145843006055126950182392", - "current_tick": "-64282362", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 28419.407882925836, - "liquidity24hUsdChange": -5.681590377550576, - "volume24hUsd": 2074.2207296626, - "volume24hUsdChange": -24.79646814233639, - "volume7dUsd": 27937.352398765277, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1471", + "id": "596", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "exit_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1471", - "amount": "113961171237095313237" + "denom": "gamm/pool/596", + "amount": "25282270392927306894547" }, - "liquidityUsd": 28364.222994574033, - "liquidity24hUsdChange": -4.615472220308364, - "volume24hUsd": 1094.7237419785333, - "volume24hUsdChange": 561.0464332968601, - "volume7dUsd": 3777.1822261030147, + "liquidityUsd": 19755.7116575197, + "liquidity24hUsdChange": -4.950562843604116, + "volume24hUsd": 2069.7318740930814, + "volume24hUsdChange": 87.95953236787122, + "volume7dUsd": 28923.937601717225, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "14255990325" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1227810532" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "7856674848132" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "404327821209" }, "weight": "536870912000000" } @@ -8052,39 +8364,39 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "596", + "id": "898", "pool_params": { - "exit_fee": "0.001000000000000000", - "swap_fee": "0.003000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/596", - "amount": "25282277827686546658245" + "denom": "gamm/pool/898", + "amount": "361866422749043184379" }, - "liquidityUsd": 28234.346902403922, - "liquidity24hUsdChange": -4.591833293258717, - "volume24hUsd": 678.1911439533765, - "volume24hUsdChange": -16.091082182120722, - "volume7dUsd": 27134.042991207953, + "liquidityUsd": 19668.584676462277, + "liquidity24hUsdChange": -1.2882377132227791, + "volume24hUsd": 1710.9634245397742, + "volume24hUsdChange": -42.98807473481275, + "volume7dUsd": 55236.40789885984, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1304403920" + "denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", + "amount": "277767766280597130000000" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "378523669058" + "denom": "uosmo", + "amount": "10898870857" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -8096,10 +8408,10 @@ }, "total_shares": { "denom": "gamm/pool/695", - "amount": "3868217706969647944715" + "amount": "3863696469847386551738" }, - "liquidityUsd": 27916.770442963287, - "liquidity24hUsdChange": -4.625215344977842, + "liquidityUsd": 19609.049273007055, + "liquidity24hUsdChange": -3.393444051277468, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -8108,71 +8420,50 @@ { "token": { "denom": "ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB", - "amount": "143442" + "amount": "143276" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "10878671523" + "amount": "10865880752" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ce7xpte3sg5hd55njtd57leh2kswp7p589f85xj8tkqp5yvftcsss25at3", - "id": "1440", - "current_tick_liquidity": "286360022195693.410391234952972159", - "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token0Amount": "3239245018430500000", - "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token1Amount": "23727448", - "current_sqrt_price": "0.000002251446743784726062767910303600", - "current_tick": "-103930988", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 27885.927588985127, - "liquidity24hUsdChange": 9.265157438691023, - "volume24hUsd": 17665.737142069574, - "volume24hUsdChange": -5.323917912084596, - "volume7dUsd": 86408.73806584568, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1232", + "id": "22", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000200000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1232", - "amount": "68633286976082217494828" + "denom": "gamm/pool/22", + "amount": "63940112874202647215721" }, - "liquidityUsd": 27467.039613170782, - "liquidity24hUsdChange": -1.3662853560375146, - "volume24hUsd": 552.5598791089611, - "volume24hUsdChange": 175.60732635493065, - "volume7dUsd": 2646.2516245426905, + "liquidityUsd": 19583.78333244708, + "liquidity24hUsdChange": -3.3992883960198004, + "volume24hUsd": 279.6186578892963, + "volume24hUsdChange": -57.13556187966513, + "volume7dUsd": 10069.937691509169, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "13732367014" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "134336148107" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", - "amount": "481400709277" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1217097391" }, "weight": "536870912000000" } @@ -8181,61 +8472,40 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "837", + "id": "1626", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/837", - "amount": "1690148800988008005193" + "denom": "gamm/pool/1626", + "amount": "100038402038270277600" }, - "liquidityUsd": 27379.12809812648, - "liquidity24hUsdChange": -2.4248068354523613, - "volume24hUsd": 1986.7242948030926, - "volume24hUsdChange": 3.270512909082035, - "volume7dUsd": 21500.182150184042, + "liquidityUsd": 19137.53725427838, + "liquidity24hUsdChange": -3.9126960858396362, + "volume24hUsd": 1375.3342715540066, + "volume24hUsdChange": 27.338845063596235, + "volume7dUsd": 15907.885907377431, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "13779948123" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "194482284394232120000000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "10665877041" + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "172536111871005240000000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo125nd8mhap89htwsy6eu2a0ygtv82e8vwu0mhmw8vvatjex6yqecszhxy49", - "id": "1646", - "current_tick_liquidity": "653391084131.974790986485735747", - "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "token0Amount": "241297910401", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "7287407471", - "current_sqrt_price": "0.288764592784712438127805931604833014", - "current_tick": "-10661501", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.010000000000000000", - "liquidityUsd": 27096.651911544497, - "liquidity24hUsdChange": -5.177341452819496, - "volume24hUsd": 5768.206719442755, - "volume24hUsdChange": 20.255810010044048, - "volume7dUsd": 41301.28840153287, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1011", @@ -8246,26 +8516,26 @@ }, "total_shares": { "denom": "gamm/pool/1011", - "amount": "1059386376450237344305" + "amount": "1037098713162973272771" }, - "liquidityUsd": 26834.112806408782, - "liquidity24hUsdChange": -3.2565710161633157, - "volume24hUsd": 2336.3822345126123, - "volume24hUsdChange": 37.147396564587154, - "volume7dUsd": 19334.106891496376, + "liquidityUsd": 18992.917970551505, + "liquidity24hUsdChange": -2.843178295827802, + "volume24hUsd": 8169.268169303413, + "volume24hUsdChange": -10.492384123470632, + "volume7dUsd": 167537.00176760508, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", - "amount": "8759706008485822000000" + "amount": "8471849715201002000000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "10456778997" + "amount": "10524466608" }, "weight": "536870912000000" } @@ -8274,34 +8544,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "917", + "id": "1612", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/917", - "amount": "382453580106161811635" + "denom": "gamm/pool/1612", + "amount": "50000000000000000000" }, - "liquidityUsd": 26534.76513770456, - "liquidity24hUsdChange": -5.00335997208283, - "volume24hUsd": 53.6961861514561, - "volume24hUsdChange": -97.30564206710321, - "volume7dUsd": 12829.817495812713, + "liquidityUsd": 18974.858920737573, + "liquidity24hUsdChange": -2.948688917532106, + "volume24hUsd": 342.1196202063922, + "volume24hUsdChange": -58.83383280274095, + "volume7dUsd": 15821.882594894396, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "1189374803639" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "192742599588857000000000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", - "amount": "280388988165638300000" + "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "amount": "4403502483" }, "weight": "536870912000000" } @@ -8310,61 +8580,40 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "558", + "id": "1234", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/558", - "amount": "1588098735513804311072" + "denom": "gamm/pool/1234", + "amount": "32156643312251405421953" }, - "liquidityUsd": 26072.964211213606, - "liquidity24hUsdChange": -7.810470319984342, - "volume24hUsd": 7679.118609223079, - "volume24hUsdChange": 27.368835334778986, - "volume7dUsd": 42248.901681627714, + "liquidityUsd": 18647.930699369852, + "liquidity24hUsdChange": 0.03849536506451374, + "volume24hUsd": 13.858986045141304, + "volume24hUsdChange": -48.07177232789066, + "volume7dUsd": 1248.537378036694, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1203391824" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "9314594163" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", - "amount": "162148029000" + "denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", + "amount": "583924124616" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1x2yr00ptu8twfjafsyftygytymlxhh3ljk6236q4hyjaf5yuad4s9hyhku", - "id": "1113", - "current_tick_liquidity": "1396216064420.012455049774827795", - "token0": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "token0Amount": "5322836781955", - "token1": "uosmo", - "token1Amount": "9590184754", - "current_sqrt_price": "0.043367175409508183965683169107425337", - "current_tick": "-26119289", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 25150.05492521202, - "liquidity24hUsdChange": 1.3270108162683698, - "volume24hUsd": 1568.5594067003224, - "volume24hUsdChange": -75.12197305557207, - "volume7dUsd": 27445.44056859697, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", "id": "903", @@ -8375,22 +8624,22 @@ }, "total_shares": { "denom": "gamm/pool/903", - "amount": "34003829884880562866421" + "amount": "33808039309801907819198" }, - "liquidityUsd": 24994.005609583764, - "liquidity24hUsdChange": -6.115450297426542, - "volume24hUsd": 60.86882410653088, - "volume24hUsdChange": -91.1173898580147, - "volume7dUsd": 4910.844439376396, + "liquidityUsd": 18086.799761104867, + "liquidity24hUsdChange": -5.232280170241762, + "volume24hUsd": 4.057153331478715, + "volume24hUsdChange": 100.96838072514487, + "volume7dUsd": 101.91427511599534, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { "denom": "ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83", - "amount": "211006774712" + "amount": "210039446900" }, { "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "678471879714" + "amount": "674242440475" } ], "scaling_factors": [ @@ -8401,91 +8650,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo19mvxk73yuryc8l4faw8wegehcg3can30f4dtl3kf5f4z8dv6n72qqtcsdh", - "id": "1274", - "current_tick_liquidity": "35654838843411.766225220263824825", - "token0": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token0Amount": "12269222610", + "address": "osmo1sm87pf7uk0gelfxhemxykn3s508uwrzt36vszvtept0xln0l752sgara29", + "id": "1472", + "current_tick_liquidity": "38069144061.716870370367469558", + "token0": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "token0Amount": "214090667662", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "12008096511", - "current_sqrt_price": "0.999996490230734886672170142067437301", - "current_tick": "-71", + "token1Amount": "1942883276", + "current_sqrt_price": "0.269449639813897289213802119122599152", + "current_tick": "-11739690", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 24248.074398699922, - "liquidity24hUsdChange": -0.21101069760572272, - "volume24hUsd": 1905.877938735308, - "volume24hUsdChange": -77.95701760319659, - "volume7dUsd": 22877.24573092403, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 17526.145395692885, + "liquidity24hUsdChange": -4.926799749994052, + "volume24hUsd": 867.0887189519982, + "volume24hUsdChange": -78.31825623766001, + "volume7dUsd": 25318.287866961065, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1662", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1662", - "amount": "100000000000000000000" - }, - "liquidityUsd": 24053.746295492158, - "liquidity24hUsdChange": 2.7112352002921223, - "volume24hUsd": 848.001807956977, - "volume24hUsdChange": 1.7059847241444441, - "volume7dUsd": 3505.7252888044272, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "219337229294407150000000" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", - "amount": "3868880615" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1612", + "id": "1012", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.042069000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1612", - "amount": "50000000000000000000" + "denom": "gamm/pool/1012", + "amount": "194222551198329822344" }, - "liquidityUsd": 24049.53666145318, - "liquidity24hUsdChange": 2.70673546889613, - "volume24hUsd": 1028.9096490108636, - "volume24hUsdChange": -9.801707429622668, - "volume7dUsd": 15007.7899591193, + "liquidityUsd": 17316.618846290567, + "liquidity24hUsdChange": -1.9612262356452512, + "volume24hUsd": 73.07788702408172, + "volume24hUsdChange": -77.95318881286877, + "volume7dUsd": 11686.106866650694, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "219142228877579700000000" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1074546737" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", - "amount": "3870975117" + "denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", + "amount": "2431023" }, "weight": "536870912000000" } @@ -8493,40 +8706,25 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "573", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/573", - "amount": "339693407628393815067" - }, - "liquidityUsd": 23532.605639866502, - "liquidity24hUsdChange": -4.729677102206136, - "volume24hUsd": 71.24021686825793, - "volume24hUsdChange": 35.15761339197827, - "volume7dUsd": 3287.895565346168, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "897045761296" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "9181356295" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo10a35qydvml2y506d56nh53wdp5hpvcah5t467rz48z9qqdwlvr4s4delme", + "id": "1078", + "current_tick_liquidity": "503568587.982671161638532814", + "token0": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "token0Amount": "2118320686", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "104214584", + "current_sqrt_price": "2.835795338838524134880092468630824796", + "current_tick": "7041735", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 17173.039392303686, + "liquidity24hUsdChange": -1.1642814424711045, + "volume24hUsd": 526.8105819606321, + "volume24hUsdChange": -23.58781581945648, + "volume7dUsd": 229286.1295948597, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -8540,24 +8738,24 @@ "denom": "gamm/pool/1239", "amount": "2363000639233737380876" }, - "liquidityUsd": 23496.62214258416, - "liquidity24hUsdChange": -11.68323778291563, - "volume24hUsd": 1495.148689876713, - "volume24hUsdChange": -16.97875715882187, - "volume7dUsd": 3648.9143211891164, + "liquidityUsd": 16353.456569420505, + "liquidity24hUsdChange": -3.1722416813207115, + "volume24hUsd": 27.178556707017716, + "volume24hUsdChange": 100.25219734321524, + "volume7dUsd": 1560.829719257855, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", - "amount": "180477091545071020000000" + "amount": "182390544342669280000000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "9156217934" + "amount": "9061872735" }, "weight": "536870912000000" } @@ -8566,34 +8764,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "22", + "id": "558", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/22", - "amount": "63940112874202647215721" + "denom": "gamm/pool/558", + "amount": "1642589264104465980878" }, - "liquidityUsd": 23304.1804565011, - "liquidity24hUsdChange": -4.094701910801619, - "volume24hUsd": 249.77283799775924, - "volume24hUsdChange": -86.1747244861411, - "volume7dUsd": 5198.928492251793, + "liquidityUsd": 16053.946833731377, + "liquidity24hUsdChange": -2.894264326429975, + "volume24hUsd": 567.1623758984259, + "volume24hUsdChange": -64.6031457373405, + "volume7dUsd": 53404.2321361461, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "151517657980" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "997774534" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1076494473" + "denom": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", + "amount": "210246721041" }, "weight": "536870912000000" } @@ -8602,34 +8800,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1626", + "id": "573", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1626", - "amount": "100000000000000000000" + "denom": "gamm/pool/573", + "amount": "330869847755913386776" }, - "liquidityUsd": 23104.362017451887, - "liquidity24hUsdChange": -0.49741671635361245, - "volume24hUsd": 753.8572667076113, - "volume24hUsdChange": -25.798940134782338, - "volume7dUsd": 8325.52012962216, + "liquidityUsd": 16025.406905906679, + "liquidity24hUsdChange": -5.855562301588072, + "volume24hUsd": 14.97162038597575, + "volume24hUsdChange": -44.4841758173012, + "volume7dUsd": 4388.07124331573, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "210181239016985550000000" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "879765862644" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "159203138950680030000000" + "denom": "uosmo", + "amount": "8885575647" }, "weight": "536870912000000" } @@ -8638,91 +8836,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1576", + "id": "795", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1576", - "amount": "113299106832419712187" + "denom": "gamm/pool/795", + "amount": "2106150781908417230503381" }, - "liquidityUsd": 22766.75207426559, - "liquidity24hUsdChange": 2.082325208410158, - "volume24hUsd": 997.3396412321899, - "volume24hUsdChange": 2973.0318846995765, - "volume7dUsd": 11490.15000335759, + "liquidityUsd": 15110.782440024668, + "liquidity24hUsdChange": -2.031282096130159, + "volume24hUsd": 11810.832786987106, + "volume24hUsdChange": 65.30779468930803, + "volume7dUsd": 69199.900772716, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "11487597257" + "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "amount": "74986627132" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", - "amount": "79366976298670" + "denom": "uosmo", + "amount": "8350952930" }, "weight": "536870912000000" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo14nx06cfjs9xslz3ehd3tqs65pzad76479spnjfshdwcmxqnvp7rq2q7jcs", - "id": "1670", - "current_tick_liquidity": "25697011818.239305643229138605", - "token0": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", - "token0Amount": "1392020608", - "token1": "uosmo", - "token1Amount": "10035426673", - "current_sqrt_price": "2.273057407799281207787948032485060759", - "current_tick": "4166789", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.010000000000000000", - "liquidityUsd": 22044.380401267088, - "liquidity24hUsdChange": null, - "volume24hUsd": 450815.3881286404, - "volume24hUsdChange": null, - "volume7dUsd": 450815.3881286404, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1012", + "id": "831", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.042069000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1012", - "amount": "194025225392407314481" + "denom": "gamm/pool/831", + "amount": "30291452028911237038791" }, - "liquidityUsd": 21582.184178022027, - "liquidity24hUsdChange": -6.889092377658344, - "volume24hUsd": 810.7961331850514, - "volume24hUsdChange": -70.98872675601254, - "volume7dUsd": 5697.806361928951, + "liquidityUsd": 14954.84708528001, + "liquidity24hUsdChange": -1.541312142398523, + "volume24hUsd": 1064.0882084136526, + "volume24hUsdChange": -17.80146608851299, + "volume7dUsd": 58201.36865200482, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "996836696" + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "7463257689" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", - "amount": "2551632" + "denom": "uosmo", + "amount": "8288144623" }, "weight": "536870912000000" } @@ -8731,34 +8908,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "795", + "id": "637", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/795", - "amount": "2056388432759222502638119" + "denom": "gamm/pool/637", + "amount": "271070373101896747114424" }, - "liquidityUsd": 20516.247295066903, - "liquidity24hUsdChange": -1.916490225432146, - "volume24hUsd": 21164.292159160315, - "volume24hUsdChange": 175.17156768769397, - "volume7dUsd": 67830.06875641547, + "liquidityUsd": 14394.627557250678, + "liquidity24hUsdChange": -3.2695905604952844, + "volume24hUsd": 9.259058703500163, + "volume24hUsdChange": -5.106991962653859, + "volume7dUsd": 1154.4642812354703, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", - "amount": "73217266952" + "denom": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", + "amount": "4988457626602" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "7983069657" + "amount": "7976434978" }, "weight": "536870912000000" } @@ -8767,61 +8944,40 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "637", + "id": "1574", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.038000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/637", - "amount": "271070373101954848428560" + "denom": "gamm/pool/1574", + "amount": "1169308650562021075797" }, - "liquidityUsd": 20440.351012986663, - "liquidity24hUsdChange": -4.602141756761058, - "volume24hUsd": 3.878364594003057, - "volume24hUsdChange": -93.33439615484787, - "volume7dUsd": 4224.112828574881, + "liquidityUsd": 14382.621719207431, + "liquidity24hUsdChange": 7.011993360063289, + "volume24hUsd": 383.0449887435986, + "volume24hUsdChange": 91.35798527070253, + "volume7dUsd": 12251.342587581481, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", - "amount": "4994801579613" + "denom": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", + "amount": "5505148721184" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "7965243148" + "amount": "7969782233" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ph6wwy2424txglxvrcxuw4dw5fywuruh6vddfk292ssyy8vgwpcqwhw3d9", - "id": "1504", - "current_tick_liquidity": "1788854381.999831758160000000", - "token0": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", - "token0Amount": "18799516936", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1812461202", - "current_sqrt_price": "0.988205080438444916365542500929451609", - "current_tick": "-234508", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 20065.58105005731, - "liquidity24hUsdChange": -1.8378350703828557, - "volume24hUsd": 152.22890162429988, - "volume24hUsdChange": -32.820992658523366, - "volume7dUsd": 1948.8236214135477, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "631", @@ -8832,62 +8988,104 @@ }, "total_shares": { "denom": "gamm/pool/631", - "amount": "266945496360652168942754" + "amount": "265861777803203871063425" }, - "liquidityUsd": 19579.829001640766, - "liquidity24hUsdChange": -12.085502195719412, - "volume24hUsd": 5519.846905799446, - "volume24hUsdChange": 423.46650913439817, - "volume7dUsd": 12229.96484236403, + "liquidityUsd": 13870.876946823999, + "liquidity24hUsdChange": -3.756803440469927, + "volume24hUsd": 342.2582598552857, + "volume24hUsdChange": -27.89421536651687, + "volume7dUsd": 37053.18451406546, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "amount": "1143372759" + "amount": "1141223505" }, "weight": "858993459200000" }, { "token": { "denom": "uosmo", - "amount": "3051965178" + "amount": "3074484494" }, "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ph6wwy2424txglxvrcxuw4dw5fywuruh6vddfk292ssyy8vgwpcqwhw3d9", + "id": "1504", + "current_tick_liquidity": "1789605012.437135506641608921", + "token0": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "token0Amount": "19270377729", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "1437149167", + "current_sqrt_price": "0.803050062777011864812288689580720187", + "current_tick": "-3551106", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 13865.223610032752, + "liquidity24hUsdChange": -0.7876674748636373, + "volume24hUsd": 379.57263188950344, + "volume24hUsdChange": 28.078890921054935, + "volume7dUsd": 7024.804502912625, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1shmyytp70mf9d2lppsaacugd063vfhp7jw58kc30sa4ymndw0mfsjtzqq3", + "id": "1373", + "current_tick_liquidity": "4611903.738289320785166860", + "token0": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "token0Amount": "135763351364", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "1439662", + "current_sqrt_price": "0.311273539610634817031226318278916817", + "current_tick": "-9310879", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 13716.949650902323, + "liquidity24hUsdChange": -1.2514148792586424, + "volume24hUsd": 0.41213104928529354, + "volume24hUsdChange": -71.1139051041241, + "volume7dUsd": 81.21219110012714, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1013", + "id": "643", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1013", - "amount": "839785225943513628019833033" + "denom": "gamm/pool/643", + "amount": "1385397343552522370498" }, - "liquidityUsd": 19390.268416475592, - "liquidity24hUsdChange": -4.248775625074357, - "volume24hUsd": 378.6990169381089, - "volume24hUsdChange": -29.013267811012227, - "volume7dUsd": 5290.210409420394, + "liquidityUsd": 13605.848405550409, + "liquidity24hUsdChange": -1.2752656623034642, + "volume24hUsd": 254.87409748893927, + "volume24hUsdChange": 54.296606248087556, + "volume7dUsd": 6188.916795494312, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "uion", - "amount": "24470865" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "845426191" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "7551537256" + "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "amount": "2012462832310" }, "weight": "536870912000000" } @@ -8896,34 +9094,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1234", + "id": "1013", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1234", - "amount": "32115173804146996031770" + "denom": "gamm/pool/1013", + "amount": "839190457288231422821809820" }, - "liquidityUsd": 19232.230324538872, - "liquidity24hUsdChange": -0.13174507575143185, - "volume24hUsd": 27.154667766295955, - "volume24hUsdChange": -24.025470272111633, - "volume7dUsd": 801.4304900979587, + "liquidityUsd": 13480.32072514787, + "liquidity24hUsdChange": -6.043044101201542, + "volume24hUsd": 229.58441903150683, + "volume24hUsdChange": 326.0117784125737, + "volume7dUsd": 12151.974312104829, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "9626417158" + "denom": "uion", + "amount": "24817495" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", - "amount": "563439976644" + "denom": "uosmo", + "amount": "7461015068" }, "weight": "536870912000000" } @@ -8932,34 +9130,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "831", + "id": "930", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/831", - "amount": "32546109378736583528289" + "denom": "gamm/pool/930", + "amount": "146532168389620284698" }, - "liquidityUsd": 19073.038082684514, - "liquidity24hUsdChange": -2.2875387636832807, - "volume24hUsd": 403.05858676346867, - "volume24hUsdChange": -29.8158204550841, - "volume7dUsd": 6525.4722059711585, + "liquidityUsd": 13436.043840621007, + "liquidity24hUsdChange": -50.34287519423486, + "volume24hUsd": 195.70440024761524, + "volume24hUsdChange": -74.28824941358168, + "volume7dUsd": 10586.986430949664, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "9523658218" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "1788476383" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "7433076159" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "875970803674" }, "weight": "536870912000000" } @@ -8968,298 +9166,319 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1shmyytp70mf9d2lppsaacugd063vfhp7jw58kc30sa4ymndw0mfsjtzqq3", - "id": "1373", - "current_tick_liquidity": "106954277544.825363192947647730", - "token0": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", - "token0Amount": "135752617273", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1083096", - "current_sqrt_price": "0.374168111424335576451667291736729120", - "current_tick": "-8599983", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 19048.68728432842, - "liquidity24hUsdChange": 1.3849211010114624, - "volume24hUsd": 8942.620429423197, - "volume24hUsdChange": 7271.223070439644, - "volume7dUsd": 9068.651393941365, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1c9hupuvek5wnatnhjhprskx39hynqhnrk8cns5u655jgusg8xqqstc3d78", - "id": "1651", - "current_tick_liquidity": "6315264290.486100794622378326", - "token0": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", - "token0Amount": "19320329350", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "113736303", - "current_sqrt_price": "0.925078535673740885590062097323489240", - "current_tick": "-1442298", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 18554.887650398145, - "liquidity24hUsdChange": -7.421350710407713, - "volume24hUsd": 1721.4217567701842, - "volume24hUsdChange": -81.34964996300855, - "volume7dUsd": 169612.43985119954, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1sm87pf7uk0gelfxhemxykn3s508uwrzt36vszvtept0xln0l752sgara29", - "id": "1472", - "current_tick_liquidity": "38069144061.716870370367469558", - "token0": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "token0Amount": "209826309271", + "address": "osmo1g854f98z6c7eqwnpm7nn82d6mmunefzvy84hlgwnv58pa6wshhlsra06qu", + "id": "1253", + "current_tick_liquidity": "907624437022.661146029685375204", + "token0": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "token0Amount": "2606665717650", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "2262123989", - "current_sqrt_price": "0.277835465281331236869331085456590751", - "current_tick": "-11280746", + "token1Amount": "11439641416", + "current_sqrt_price": "0.024764033986106611797992751741603866", + "current_tick": "-30867427", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 18394.04216228801, - "liquidity24hUsdChange": -3.3047769726224105, - "volume24hUsd": 534.0410755737356, - "volume24hUsdChange": -78.71064534969989, - "volume7dUsd": 8020.204428028202, + "liquidityUsd": 13052.157797052503, + "liquidity24hUsdChange": 4.513996090986295, + "volume24hUsd": 2686.917311703483, + "volume24hUsdChange": 97.66069531023085, + "volume7dUsd": 30068.019643421416, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "643", + "id": "1238", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/643", - "amount": "1385413094799577408294" + "denom": "gamm/pool/1238", + "amount": "3153003312630714336800" }, - "liquidityUsd": 17976.307700044104, - "liquidity24hUsdChange": -2.425406233578259, - "volume24hUsd": 378.03404755303313, - "volume24hUsdChange": 68.9016355604414, - "volume7dUsd": 2249.9696132307668, + "liquidityUsd": 12521.178468811802, + "liquidity24hUsdChange": -2.0651995022270224, + "volume24hUsd": 27.086433847720404, + "volume24hUsdChange": 100.23813115463243, + "volume7dUsd": 772.3729114359658, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "831792630" + "amount": "780183167" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "amount": "2042367721132" + "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", + "amount": "139072545493497750000000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1j03uy4yedhauxfqw7c93rgelrzc69xwsxadmwg8wkm0mz0955t3sl7w0ax", + "id": "1492", + "current_tick_liquidity": "552439078019569.571779226070150374", + "token0": "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", + "token0Amount": "4119030219998248500", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "2510223868", + "current_sqrt_price": "0.000049055509157199654278266716064858", + "current_tick": "-79593558", + "tick_spacing": "10", + "exponent_at_price_one": "-6", + "spread_factor": "0.001000000000000000", + "liquidityUsd": 12434.933129852005, + "liquidity24hUsdChange": 1.470464212725165, + "volume24hUsd": 74.13343707071934, + "volume24hUsdChange": -52.939264606468065, + "volume7dUsd": 1178.393704493366, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "952", + "id": "553", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "exit_fee": "0.001000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/952", - "amount": "24135719667516080581594" + "denom": "gamm/pool/553", + "amount": "28798092538031865729040711442784" }, - "liquidityUsd": 17901.892309403782, - "liquidity24hUsdChange": -8.68066327883771, - "volume24hUsd": 4934.86514047101, - "volume24hUsdChange": -76.67381515718337, - "volume7dUsd": 85036.60704308531, + "liquidityUsd": 12338.000146547107, + "liquidity24hUsdChange": -2.5636114912382055, + "volume24hUsd": 121.7712984255635, + "volume24hUsdChange": -32.269199593311384, + "volume7dUsd": 5547.219198111251, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", - "amount": "217611678517" + "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "amount": "4327020458074917" }, - "weight": "1073741824" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "6976050703" + "amount": "6836804602" }, - "weight": "1073741824" + "weight": "5368709120" } ], - "total_weight": "2147483648" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "693", + "id": "1420", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/693", - "amount": "348965082957267052771" + "denom": "gamm/pool/1420", + "amount": "2441725819004936865114" }, - "liquidityUsd": 17587.349099065475, - "liquidity24hUsdChange": 11.202958422890909, - "volume24hUsd": 14130.987504300989, - "volume24hUsdChange": -2.210964838200314, - "volume7dUsd": 72605.41725125592, + "liquidityUsd": 12188.314829278905, + "liquidity24hUsdChange": -1.094178590099636, + "volume24hUsd": 3954.2368490355775, + "volume24hUsdChange": 68.53957162416783, + "volume7dUsd": 50353.76446838079, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", - "amount": "472453419137776" + "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "amount": "173156223179846" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "6853478779" + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "amount": "52214818539419" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1wgx6ryrwvl70geeevq0y8rkf8tlg25e4e3veef2c36y2sjkeq5hsv6dv08", + "id": "1315", + "current_tick_liquidity": "2604533148.488393331653253532", + "token0": "ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5", + "token0Amount": "17839177288", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "343239580", + "current_sqrt_price": "0.746724356012447281581735555981087086", + "current_tick": "-4424028", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 12136.369561840955, + "liquidity24hUsdChange": -4.4405623863013375, + "volume24hUsd": 3700.7989455183324, + "volume24hUsdChange": 142.79973701163058, + "volume7dUsd": 61228.46713694118, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1238", + "id": "751", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1238", - "amount": "3153003312630714336800" + "denom": "gamm/pool/751", + "amount": "941912114057617875834" }, - "liquidityUsd": 17486.253744862006, - "liquidity24hUsdChange": -11.600281849020256, - "volume24hUsd": 917.1864312217394, - "volume24hUsdChange": 2459.983697084937, - "volume7dUsd": 1207.7913601139178, + "liquidityUsd": 12026.03566349709, + "liquidity24hUsdChange": -2.5256529998880053, + "volume24hUsd": 52.98131273208957, + "volume24hUsdChange": 543025.2286066912, + "volume7dUsd": 232.49809728335902, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "808459363" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "660615561503" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", - "amount": "134177655413906800000000" + "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", + "amount": "7801017127585" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo15ug09var70vhm54gluvp6r4lyttk7qmaw9gen43g4s9kldn6tggsex0256", - "id": "1163", - "current_tick_liquidity": "114699758956.065055522988707034", - "token0": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "token0Amount": "14494007036", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "4383866429", - "current_sqrt_price": "0.941860584072214451299324107116471458", - "current_tick": "-1128987", + "address": "osmo13n6savdljhtpkvkqcg47ha9qj4eq3zsmnpl0599qu28kqr72qx2spzhtfw", + "id": "1261", + "current_tick_liquidity": "8749397053304967771.834094427880241635", + "token0": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token0Amount": "3668868214", + "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "token1Amount": "8345263429283774000000", + "current_sqrt_price": "1000657.457756416160729051072967026167902394", + "current_tick": "108001315", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 12024.872600286484, + "liquidity24hUsdChange": 0.1436681699620566, + "volume24hUsd": 6609.259050665925, + "volume24hUsdChange": -21.988562903951962, + "volume7dUsd": 164605.62956660028, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1c9hupuvek5wnatnhjhprskx39hynqhnrk8cns5u655jgusg8xqqstc3d78", + "id": "1651", + "current_tick_liquidity": "4092555701.256457308924178231", + "token0": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", + "token0Amount": "19629673600", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "77928232", + "current_sqrt_price": "0.734574818906873054755761270845931486", + "current_tick": "-4603999", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 17240.998706463422, - "liquidity24hUsdChange": 0.4322984842403737, - "volume24hUsd": 44431.926680981516, - "volume24hUsdChange": 42.69503539187864, - "volume7dUsd": 389632.7210187668, + "liquidityUsd": 11779.139765143613, + "liquidity24hUsdChange": -23.40690725112208, + "volume24hUsd": 757.4254618980439, + "volume24hUsdChange": 184.18019347441404, + "volume7dUsd": 44689.05728139756, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "751", + "id": "928", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/751", - "amount": "941129872753030309020" + "denom": "gamm/pool/928", + "amount": "249670399909319347369" }, - "liquidityUsd": 17207.516821991496, - "liquidity24hUsdChange": -1.7327458684689336, - "volume24hUsd": 261.90763058977996, - "volume24hUsdChange": 12550.548330127864, - "volume7dUsd": 427.71470670342643, + "liquidityUsd": 11770.163378999889, + "liquidity24hUsdChange": -51.28600289697035, + "volume24hUsd": 100.38044836553837, + "volume24hUsdChange": -71.91477721532723, + "volume7dUsd": 9812.928955121404, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "658842035832" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "765984152073" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", - "amount": "7808484557252" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "1967229560515285000" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "629", + "id": "693", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/629", - "amount": "112182849679251685756" + "denom": "gamm/pool/693", + "amount": "344322210725940120171" }, - "liquidityUsd": 16977.108507053497, - "liquidity24hUsdChange": -4.017430052863364, - "volume24hUsd": 4909.595765360372, - "volume24hUsdChange": -5.9559406121224265, - "volume7dUsd": 59957.72751076715, + "liquidityUsd": 11709.39692034742, + "liquidity24hUsdChange": -5.583033509568446, + "volume24hUsd": 6228.394240778742, + "volume24hUsdChange": 13.511832584708888, + "volume7dUsd": 95293.92670355999, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", - "amount": "177499949784825470000000000" + "denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", + "amount": "500651817932309" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "6616201209" + "amount": "6488479316" }, "weight": "536870912000000" } @@ -9268,133 +9487,105 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1mlvvte60x6mg2szmplyxcy24hm97e8gczd4vjmtaenlzf0tjqw8qg9p3jl", - "id": "1645", - "current_tick_liquidity": "318460541987.689390063764243561", - "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "token0Amount": "168939111502", + "address": "osmo1qk6sne5gky7vyml2g00755eadzj6k8vn3n5n5rxleqppml7n0hxshd3q79", + "id": "1621", + "current_tick_liquidity": "614199481752.588732803583060587", + "token0": "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", + "token0Amount": "236430001229", "token1": "uosmo", - "token1Amount": "2340525422", - "current_sqrt_price": "0.253172705852965905769177701797000022", - "current_tick": "-12590359", + "token1Amount": "1603900062", + "current_sqrt_price": "0.216959712483788930166789225377035338", + "current_tick": "-14292849", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.010000000000000000", - "liquidityUsd": 16877.561206470433, - "liquidity24hUsdChange": -6.746758921066032, - "volume24hUsd": 4109.371896451397, - "volume24hUsdChange": 63.758080152659744, - "volume7dUsd": 35236.810459989836, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 11489.284654203328, + "liquidity24hUsdChange": -2.1243894412919224, + "volume24hUsd": 3219.3934053976327, + "volume24hUsdChange": -51.23305957397915, + "volume7dUsd": 85570.6334131438, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "553", + "id": "679", "pool_params": { - "exit_fee": "0.001000000000000000", - "swap_fee": "0.002000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/553", - "amount": "28842357051804323374467113333598" + "denom": "gamm/pool/679", + "amount": "1086423993094137956483" }, - "liquidityUsd": 16486.454396408717, - "liquidity24hUsdChange": -3.5004568974359573, - "volume24hUsd": 323.32714303230836, - "volume24hUsdChange": 355.2145396054561, - "volume7dUsd": 2268.716704188354, + "liquidityUsd": 11441.530031321658, + "liquidity24hUsdChange": -0.8902377049316937, + "volume24hUsd": 526.8003692184794, + "volume24hUsdChange": -14.571735543441585, + "volume7dUsd": 29021.626721878467, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "amount": "4615121762061562" + "denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", + "amount": "3864526850667915400000" }, - "weight": "5368709120" + "weight": "268435456000000" }, { "token": { - "denom": "uosmo", - "amount": "6424479591" + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "3804282357" }, - "weight": "5368709120" + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "230343478546" + }, + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "3804748805" + }, + "weight": "268435456000000" } ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1zmdgxh3jxp8uxek5y38q8frmt050fk75dn00l44pa9a3wy99yq9shthqpv", - "id": "1433", - "current_tick_liquidity": "2215119113620.947921925541521463", - "token0": "uosmo", - "token0Amount": "8700720553", - "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token1Amount": "7437139", - "current_sqrt_price": "0.042756286082126057769412520946763142", - "current_tick": "-26171901", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 16331.630226712074, - "liquidity24hUsdChange": 39.39437437263505, - "volume24hUsd": 3297.4935702896746, - "volume24hUsdChange": null, - "volume7dUsd": 3297.4935702896746, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1qk6sne5gky7vyml2g00755eadzj6k8vn3n5n5rxleqppml7n0hxshd3q79", - "id": "1621", - "current_tick_liquidity": "614199481752.588732803583060587", - "token0": "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", - "token0Amount": "250828906558", - "token1": "uosmo", - "token1Amount": "929551359", - "current_sqrt_price": "0.215861781872502709702415940957290997", - "current_tick": "-14340370", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 16189.15244778459, - "liquidity24hUsdChange": -4.26605032533842, - "volume24hUsd": 4019.4811985592623, - "volume24hUsdChange": -16.362765070715568, - "volume7dUsd": 29249.40146844517, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "918", + "id": "1460", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/918", - "amount": "542974935483351413204" + "denom": "gamm/pool/1460", + "amount": "3013964453814096775940" }, - "liquidityUsd": 15954.967694503677, - "liquidity24hUsdChange": -2.871753215276628, - "volume24hUsd": 488.61976243546735, - "volume24hUsdChange": -20.945341203931445, - "volume7dUsd": 6267.02314693367, + "liquidityUsd": 11420.339948772584, + "liquidity24hUsdChange": -5.860363257642319, + "volume24hUsd": 529.0717951908928, + "volume24hUsdChange": -54.069498632288656, + "volume7dUsd": 30440.27397936103, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "715380729271" + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "amount": "587775125" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "amount": "50179521428" + "denom": "uosmo", + "amount": "6328305381" }, "weight": "536870912000000" } @@ -9403,34 +9594,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "726", + "id": "929", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/726", - "amount": "4387163667607682388183" + "denom": "gamm/pool/929", + "amount": "201999582535593294600" }, - "liquidityUsd": 15677.440404841582, - "liquidity24hUsdChange": -3.8829378547324933, - "volume24hUsd": 3228.179218455553, - "volume24hUsdChange": 7.158749088202413, - "volume7dUsd": 67930.57935162878, + "liquidityUsd": 11188.219295131319, + "liquidity24hUsdChange": -51.590598356812045, + "volume24hUsd": 79.06903245888607, + "volume24hUsdChange": -79.86652112912415, + "volume7dUsd": 12544.28326093281, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "8832663829" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "728001090797" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "6109221152" + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "9110035" }, "weight": "536870912000000" } @@ -9439,140 +9630,138 @@ }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "956", + "id": "872", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/956", - "amount": "2758150481292890443002" + "denom": "gamm/pool/872", + "amount": "492498955090359973550" }, - "liquidityUsd": 15490.848635009286, - "liquidity24hUsdChange": -5.860601068776079, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 4176.983070880904, + "liquidityUsd": 11026.599837173888, + "liquidity24hUsdChange": 0.052341095074363624, + "volume24hUsd": 5249.704231328151, + "volume24hUsdChange": 23.135616103062397, + "volume7dUsd": 181732.21780074766, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { - "denom": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", - "amount": "6824168583" + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "5455745830" }, { - "denom": "uosmo", - "amount": "4375259725" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "5564721577" } ], "scaling_factors": [ - "1000000000", - "1128014272" + "1", + "1" ], "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "790", + "id": "719", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/790", - "amount": "1462036887312891068505" + "denom": "gamm/pool/719", + "amount": "327155283677570242797678" }, - "liquidityUsd": 15175.385881501714, - "liquidity24hUsdChange": -5.513403700560161, - "volume24hUsd": 520.1729380889734, - "volume24hUsdChange": 37.89828991027192, - "volume7dUsd": 3977.1604289943907, + "liquidityUsd": 10947.061412722065, + "liquidity24hUsdChange": -2.8257970569442104, + "volume24hUsd": 480.8708571386708, + "volume24hUsdChange": -33.35365478740183, + "volume7dUsd": 10855.990356525752, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", - "amount": "50927812" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "26050895996" }, - "weight": "214748364800000" + "weight": "751619276800000" }, { "token": { - "denom": "uosmo", - "amount": "9469624172" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "3269803570" }, - "weight": "858993459200000" + "weight": "322122547200000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "730", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "956", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/730", - "amount": "3694884672041416146738" + "denom": "gamm/pool/956", + "amount": "2745924419991863230656" }, - "liquidityUsd": 14864.617750077696, - "liquidity24hUsdChange": -3.311048669973985, - "volume24hUsd": 567.0908575352921, - "volume24hUsdChange": -15.32508941346018, - "volume7dUsd": 5080.863970740612, + "liquidityUsd": 10859.255441400208, + "liquidity24hUsdChange": -3.240908131781543, + "volume24hUsd": 144.20637229077096, + "volume24hUsdChange": 155.28373404998766, + "volume7dUsd": 974.8161045229057, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", - "amount": "7638718431" - }, - "weight": "536870912000000" + "denom": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", + "amount": "4302339143" }, { - "token": { - "denom": "uosmo", - "amount": "5804026581" - }, - "weight": "536870912000000" + "denom": "uosmo", + "amount": "7164556557" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1000000000", + "1128014272" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "769", + "id": "726", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/769", - "amount": "1175391505498233095985" + "denom": "gamm/pool/726", + "amount": "4295631584590781339619" }, - "liquidityUsd": 14850.15437509432, - "liquidity24hUsdChange": -4.625215344977834, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 871.2006132617287, + "liquidityUsd": 10740.56633068822, + "liquidity24hUsdChange": -3.4606589659033515, + "volume24hUsd": 15388.356419257048, + "volume24hUsdChange": -21.81360565152901, + "volume7dUsd": 232054.52262265037, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", - "amount": "2872248221603" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "9106635959" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "5786842423" + "amount": "5951625259" }, "weight": "536870912000000" } @@ -9589,26 +9778,26 @@ }, "total_shares": { "denom": "gamm/pool/1307", - "amount": "4826219191806988809981" + "amount": "4826991007747062250594" }, - "liquidityUsd": 14758.995684597758, - "liquidity24hUsdChange": -4.308894852462173, - "volume24hUsd": 299.41807535477426, - "volume24hUsdChange": -47.72463550493289, - "volume7dUsd": 5019.351588339572, + "liquidityUsd": 10504.418298461731, + "liquidity24hUsdChange": -6.9671270740692615, + "volume24hUsd": 1506.4747676119555, + "volume24hUsdChange": 20.054732711698932, + "volume7dUsd": 38928.46572302763, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", - "amount": "4272120688" + "amount": "3985523616" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "198254491392" + "amount": "216167154677" }, "weight": "536870912000000" } @@ -9617,76 +9806,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo14t6vk4czks6n6g3d6e8wp7ryfr3z00g9nhmvtqdatj0y2xrwxz0qp3gm6y", - "id": "1417", - "current_tick_liquidity": "166423926635.366498246265270621", - "token0": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "token0Amount": "6891011066543", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1886300649", - "current_sqrt_price": "0.042923995420139161016310130871576234", - "current_tick": "-26157531", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 14517.358390867521, - "liquidity24hUsdChange": -11.346848121725886, - "volume24hUsd": 378.8193277500592, - "volume24hUsdChange": -20.716186017525857, - "volume7dUsd": 2301.0547464094893, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1wgx6ryrwvl70geeevq0y8rkf8tlg25e4e3veef2c36y2sjkeq5hsv6dv08", - "id": "1315", - "current_tick_liquidity": "3801128841.251695395548794037", - "token0": "ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5", - "token0Amount": "16987375565", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "567974092", - "current_sqrt_price": "0.893196131903650662063918453893220577", - "current_tick": "-2022007", + "address": "osmo1lpjplmmhycm0zf0a773zj0s2yr75lrek7ly49n7djxj3xzp5udfsed8agg", + "id": "1679", + "current_tick_liquidity": "123718652790.653215005561258106", + "token0": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", + "token0Amount": "587658976710", + "token1": "uosmo", + "token1Amount": "4545977512", + "current_sqrt_price": "0.108877503003181734887334838827658221", + "current_tick": "-17814569", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 14105.379474996933, - "liquidity24hUsdChange": -6.5225741668611255, - "volume24hUsd": 6275.368956825733, - "volume24hUsdChange": 98.13344136228694, - "volume7dUsd": 89567.05409806909, + "spread_factor": "0.010000000000000000", + "liquidityUsd": 10387.77558270086, + "liquidity24hUsdChange": -4.694178613228491, + "volume24hUsd": 152.87756826625102, + "volume24hUsdChange": -40.14965909763613, + "volume7dUsd": 5810.905545531534, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1460", + "id": "730", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1460", - "amount": "2850151187871613565940" + "denom": "gamm/pool/730", + "amount": "3765770763228880193614" }, - "liquidityUsd": 14068.873644168365, - "liquidity24hUsdChange": -7.730373676454545, - "volume24hUsd": 362.65302377655604, - "volume24hUsdChange": -59.03980870752539, - "volume7dUsd": 8818.177783758816, + "liquidityUsd": 10380.641337213396, + "liquidity24hUsdChange": -0.2165196617952469, + "volume24hUsd": 1252.0564445585062, + "volume24hUsdChange": 305.22255569284795, + "volume7dUsd": 17670.7302624525, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "amount": "600794129" + "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "amount": "8045438629" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "5482391145" + "amount": "5754583302" }, "weight": "536870912000000" } @@ -9695,40 +9863,61 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1574", + "id": "1328", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.038000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1574", - "amount": "786563951073892681027" + "denom": "gamm/pool/1328", + "amount": "136324345226635455966" }, - "liquidityUsd": 13830.828512981838, - "liquidity24hUsdChange": -1.5077395688245736, - "volume24hUsd": 249.12775799265088, - "volume24hUsdChange": -46.46152893041731, - "volume7dUsd": 2120.4744783569417, + "liquidityUsd": 10022.685092182453, + "liquidity24hUsdChange": -4.210057082344402, + "volume24hUsd": 1589.1935269021076, + "volume24hUsdChange": 30.863682430851725, + "volume7dUsd": 16367.001064208269, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", - "amount": "3563417231151" + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "amount": "5002204068" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "5389629169" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "205504219846" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1geg6y7ckqxwmvln3v56j8jdk9umhvjwkuv50jgkkg0lj0nrtxgtqkcnyee", + "id": "1650", + "current_tick_liquidity": "19925043765635.854361724352830166", + "token0": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "token0Amount": "206879925", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "9768535979", + "current_sqrt_price": "0.998989137495713720759099473522101749", + "current_tick": "-20208", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.001000000000000000", + "liquidityUsd": 9985.489334879292, + "liquidity24hUsdChange": 0.13202324646999483, + "volume24hUsd": 6445.968791149444, + "volume24hUsdChange": -71.77950955944623, + "volume7dUsd": 178255.274809721, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1381", @@ -9739,304 +9928,248 @@ }, "total_shares": { "denom": "gamm/pool/1381", - "amount": "864724699402253513581" + "amount": "757164413990464158666" }, - "liquidityUsd": 13822.44404210306, - "liquidity24hUsdChange": -1.0362555757198075, - "volume24hUsd": 111.18657344450422, - "volume24hUsdChange": -78.11056156093193, - "volume7dUsd": 2684.814229101053, + "liquidityUsd": 9846.104840557564, + "liquidity24hUsdChange": -1.298149105116181, + "volume24hUsd": 95.09578891345562, + "volume24hUsdChange": 193.21198381778368, + "volume7dUsd": 3448.2701276030243, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", - "amount": "186942347953206" + "amount": "202572642053701" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "6918626194" + "amount": "4918104435" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1pdrj78dz673enff39mww4p64rk459ktq9xdw88u0m7cdqg5mlh6qllhd3t", - "id": "1672", - "current_tick_liquidity": "17368186782.047055364991702766", - "token0": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", - "token0Amount": "1308758353", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "4418106563", - "current_sqrt_price": "2.575254415710040994347809504040904640", - "current_tick": "5631935", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.010000000000000000", - "liquidityUsd": 13060.813517081298, - "liquidity24hUsdChange": null, - "volume24hUsd": 143332.02390419453, - "volume24hUsdChange": null, - "volume7dUsd": 143332.02390419453, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "679", + "id": "629", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/679", - "amount": "1086423993094137956483" + "denom": "gamm/pool/629", + "amount": "112198792267879159747" }, - "liquidityUsd": 12671.957369777803, - "liquidity24hUsdChange": -1.5448308919677234, - "volume24hUsd": 738.2118962900093, - "volume24hUsdChange": 298.9384490589674, - "volume7dUsd": 3794.1701112599017, + "liquidityUsd": 9826.178793911964, + "liquidity24hUsdChange": -8.946032331576815, + "volume24hUsd": 3131.721981371153, + "volume24hUsdChange": 116.58610162678012, + "volume7dUsd": 54375.676781425915, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", - "amount": "4327546310262848000000" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "4224149363" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "166329468958" + "denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", + "amount": "221750796370770870000000000" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "4230637959" + "denom": "uosmo", + "amount": "5444939504" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1g854f98z6c7eqwnpm7nn82d6mmunefzvy84hlgwnv58pa6wshhlsra06qu", - "id": "1253", - "current_tick_liquidity": "543050765053.622457354902294943", - "token0": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "token0Amount": "1309519737263", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "11756922931", - "current_sqrt_price": "0.026382533293026629658962482371055483", - "current_tick": "-30039620", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 12601.819020293535, - "liquidity24hUsdChange": -0.5435454678763545, - "volume24hUsd": 550.3921418512048, - "volume24hUsdChange": 0.07143402494552598, - "volume7dUsd": 10690.197394049565, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1330", + "id": "790", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1330", - "amount": "13783737957574679758654" + "denom": "gamm/pool/790", + "amount": "1248845812545484809290" }, - "liquidityUsd": 12453.888620499121, - "liquidity24hUsdChange": -5.11775111915252, - "volume24hUsd": 3813.775567131087, - "volume24hUsdChange": 1.4408997857100359, - "volume7dUsd": 31708.885504284717, + "liquidityUsd": 9686.561137200966, + "liquidity24hUsdChange": -3.416043284471572, + "volume24hUsd": 1.7008420685266465, + "volume24hUsdChange": -99.72473295867633, + "volume7dUsd": 7630.989803944848, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "671559682398" + "denom": "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", + "amount": "34439108" }, - "weight": "536870912000000" + "weight": "214748364800000" }, { "token": { "denom": "uosmo", - "amount": "4853883051" + "amount": "8588118006" }, - "weight": "536870912000000" + "weight": "858993459200000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1h258kcj9l8m7chvvwf33hm8z2xw269mfgs8q8ksmvcvjl2cx246s7p3j0d", - "id": "1145", - "current_tick_liquidity": "1389801064400.809758712235991193", - "token0": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", - "token0Amount": "5556719354508", - "token1": "uosmo", - "token1Amount": "5896862590", - "current_sqrt_price": "0.026098346060862150788902801875485541", - "current_tick": "-30188764", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 12422.524026051018, - "liquidity24hUsdChange": -3.7309277485241856, - "volume24hUsd": 13548.42830946303, - "volume24hUsdChange": 87.39679694472667, - "volume7dUsd": 38083.18524305392, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "555", + "id": "914", "pool_params": { - "exit_fee": "0.001000000000000000", - "swap_fee": "0.003000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/555", - "amount": "25790681374838195008497443677" + "denom": "gamm/pool/914", + "amount": "359207812697027338250" }, - "liquidityUsd": 12342.930931936073, - "liquidity24hUsdChange": -3.4138815236706663, - "volume24hUsd": 228.79741068714958, - "volume24hUsdChange": 105.19267027410031, - "volume7dUsd": 843.2253715999894, + "liquidityUsd": 9674.954293833187, + "liquidity24hUsdChange": -50.25782419930677, + "volume24hUsd": 80.23431987803949, + "volume24hUsdChange": -78.64971581228721, + "volume7dUsd": 10619.263563963677, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "570213961" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "628886745132" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "amount": "3454484536217553" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "601529169" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1h258kcj9l8m7chvvwf33hm8z2xw269mfgs8q8ksmvcvjl2cx246s7p3j0d", + "id": "1145", + "current_tick_liquidity": "1631338158991.572875170498417030", + "token0": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", + "token0Amount": "5253345690342", + "token1": "uosmo", + "token1Amount": "6949537131", + "current_sqrt_price": "0.026701213020013860303296429005955420", + "current_tick": "-29870453", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 9650.276533282211, + "liquidity24hUsdChange": -3.5006073301451597, + "volume24hUsd": 1028.3743992521731, + "volume24hUsdChange": -63.52502226830757, + "volume7dUsd": 104460.42118824199, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1328", + "id": "555", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "exit_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1328", - "amount": "136324345226635455966" + "denom": "gamm/pool/555", + "amount": "25790681374838195008497443677" }, - "liquidityUsd": 12322.358598495764, - "liquidity24hUsdChange": -2.4977971333362587, - "volume24hUsd": 519.0890426427146, - "volume24hUsdChange": 11.675936092627149, - "volume7dUsd": 6563.672317304223, + "liquidityUsd": 9518.298409730025, + "liquidity24hUsdChange": -1.4209339885074257, + "volume24hUsd": 82.79669426580105, + "volume24hUsdChange": 132.07442103609884, + "volume7dUsd": 3144.0900767410008, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "amount": "6181563983" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "591971360" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "164914700642" + "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "amount": "3330597207334215" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo19tfxl29ycvmzzttpyujavwwnrsnhfmul56aref5z2t0qrdr76gfqsff847", - "id": "1600", - "current_tick_liquidity": "193550004184.468858721334582585", - "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "token0Amount": "149037455691", + "address": "osmo1f2zm5ssgk4zf3fara0d59svvnuc9vvwgylmjwgt4wtcxy37sgj9sqtlygp", + "id": "1258", + "current_tick_liquidity": "51000000.000000000000000000", + "token0": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "token0Amount": "13492481081", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "57591", - "current_sqrt_price": "0.298328720957319093804523410319895932", - "current_tick": "-10099998", + "token1Amount": "42581226", + "current_sqrt_price": "0.834828270713762126214582343088462616", + "current_tick": "-3030618", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 12240.037992613241, - "liquidity24hUsdChange": -7.171438765497816, - "volume24hUsd": 0.21716419527362743, - "volume24hUsdChange": -99.95140249629773, - "volume7dUsd": 37804.72094015176, + "spread_factor": "0.000100000000000000", + "liquidityUsd": 9372.560748734979, + "liquidity24hUsdChange": -2.0378743801446833, + "volume24hUsd": 6.632255099385035, + "volume24hUsdChange": 61.98956286636263, + "volume7dUsd": 4292.549984249351, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "557", + "id": "769", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/557", - "amount": "768970417857138539297" + "denom": "gamm/pool/769", + "amount": "1155798711268440627483" }, - "liquidityUsd": 12221.420982805546, - "liquidity24hUsdChange": -7.923327863204809, - "volume24hUsd": 1160.776368779729, - "volume24hUsdChange": 353.5941767603697, - "volume7dUsd": 8979.663119777788, + "liquidityUsd": 9345.283473040929, + "liquidity24hUsdChange": -4.0136417296839015, + "volume24hUsd": 30.482080788623488, + "volume24hUsdChange": null, + "volume7dUsd": 1694.581241181198, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", - "amount": "75950601721" + "denom": "ibc/1E09CB0F506ACF12FDE4683FB6B34DA62FB4BE122641E0D93AAF98A87675676C", + "amount": "3104501246133" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "4762471529" + "amount": "5178462984" }, "weight": "536870912000000" } @@ -10053,26 +10186,26 @@ }, "total_shares": { "denom": "gamm/pool/1061", - "amount": "7406024486931867164122" + "amount": "7099363955375202516878" }, - "liquidityUsd": 12159.436722406372, - "liquidity24hUsdChange": -3.35994334226592, - "volume24hUsd": 7389.804943829382, - "volume24hUsdChange": -25.374404581434877, - "volume7dUsd": 64141.152167877415, + "liquidityUsd": 9150.953510951107, + "liquidity24hUsdChange": -1.4383566690159448, + "volume24hUsd": 4363.1931335433255, + "volume24hUsdChange": 6.584840305610247, + "volume7dUsd": 78605.98365807232, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", - "amount": "35180739497308794000000" + "amount": "31402431476009630000000" }, "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "4757871211" + "amount": "5069651525" }, "weight": "1073741824" } @@ -10083,74 +10216,53 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1mct29nzs74826qznu5nluw5f9gxwyntfehyj88cmzszwx6nmv3asv3x9t4", "id": "1435", - "current_tick_liquidity": "681139539930.222019186716606947", + "current_tick_liquidity": "542538375219.626496892731819273", "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token0Amount": "8206477", + "token0Amount": "14360404", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "6470432477", - "current_sqrt_price": "26.298898745293303198726482495496338553", - "current_tick": "23916320", + "token1Amount": "293088968", + "current_sqrt_price": "24.801411113396961793277708269994806028", + "current_tick": "23151099", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 12099.909274725189, - "liquidity24hUsdChange": 296.67309334719243, - "volume24hUsd": 7263.052259426195, - "volume24hUsdChange": 25.750249002303764, - "volume7dUsd": 41030.61263868088, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo13n6savdljhtpkvkqcg47ha9qj4eq3zsmnpl0599qu28kqr72qx2spzhtfw", - "id": "1261", - "current_tick_liquidity": "3644548466822770160.458610999738482816", - "token0": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token0Amount": "9779152538", - "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token1Amount": "2231234141142797000000", - "current_sqrt_price": "999900.764021997978933333493641381259485249", - "current_tick": "107998015", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 11997.845194952035, - "liquidity24hUsdChange": -1.1842091734433875, - "volume24hUsd": 13217.688720912673, - "volume24hUsdChange": -8.428513703211395, - "volume7dUsd": 61848.16685028179, + "liquidityUsd": 9142.925678385816, + "liquidity24hUsdChange": -42.42134390593238, + "volume24hUsd": 2933.9004798965093, + "volume24hUsdChange": -54.81206001495044, + "volume7dUsd": 237425.81282731582, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "856", + "id": "1486", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/856", - "amount": "894387858909349746690" + "denom": "gamm/pool/1486", + "amount": "97585352453936744755" }, - "liquidityUsd": 11974.52395115041, - "liquidity24hUsdChange": -5.821547408757569, - "volume24hUsd": 475.7119749620007, - "volume24hUsdChange": -12.840691737002158, - "volume7dUsd": 4346.948340403195, + "liquidityUsd": 9066.762113840934, + "liquidity24hUsdChange": -2.1181432104821587, + "volume24hUsd": 450.6478466068485, + "volume24hUsdChange": -52.18980005330508, + "volume7dUsd": 11716.551404244336, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88", - "amount": "16108840273117" + "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", + "amount": "126431617303" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "4666260124" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "4534165823" }, "weight": "536870912000000" } @@ -10159,305 +10271,328 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1039", + "id": "1330", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1039", - "amount": "747225955156078463461805" + "denom": "gamm/pool/1330", + "amount": "13783746752738127010608" }, - "liquidityUsd": 11925.704517294784, - "liquidity24hUsdChange": -4.896379218612163, - "volume24hUsd": 199.9509618614191, - "volume24hUsdChange": 916.4732256053125, - "volume7dUsd": 730.1130452526749, + "liquidityUsd": 8807.878927141142, + "liquidity24hUsdChange": -3.266539855842315, + "volume24hUsd": 1879.220275205835, + "volume24hUsdChange": -30.907723115731656, + "volume7dUsd": 30969.623271143686, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "amount": "63073222" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "676154342839" }, - "weight": "107374182400" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "4639212438" + "amount": "4880540558" }, - "weight": "107374182400" + "weight": "536870912000000" } ], - "total_weight": "214748364800" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "615", + "id": "1242", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/615", - "amount": "102379940538605614147" + "denom": "gamm/pool/1242", + "amount": "40216172767807995073307" }, - "liquidityUsd": 11724.359109806035, - "liquidity24hUsdChange": -4.201925365070668, - "volume24hUsd": 47.153821624291766, - "volume24hUsdChange": 1314.578627761503, - "volume7dUsd": 820.3928826886738, + "liquidityUsd": 8704.537646275168, + "liquidity24hUsdChange": -0.7400134092621875, + "volume24hUsd": 207.7963282583654, + "volume24hUsdChange": 15.787412103993805, + "volume7dUsd": 5514.207252224253, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", - "amount": "15857537124407" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "4341891703" }, - "weight": "53687091200" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "231443532589" + "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "amount": "3056955166648129" }, - "weight": "53687091200" + "weight": "536870912000000" } ], - "total_weight": "107374182400" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1486", + "id": "813", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1486", - "amount": "108499478394790652352" + "denom": "gamm/pool/813", + "amount": "396302358158829365381402" }, - "liquidityUsd": 11516.055247471273, - "liquidity24hUsdChange": -0.21078960226474083, - "volume24hUsd": 885.1005918456171, - "volume24hUsdChange": -14.551532836754694, - "volume7dUsd": 10546.12030721031, + "liquidityUsd": 8648.857287146891, + "liquidity24hUsdChange": -4.814738657532041, + "volume24hUsd": 1883.7729994755312, + "volume24hUsdChange": -41.451547551388515, + "volume7dUsd": 19690.675085687744, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", - "amount": "122550720004" + "denom": "ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9", + "amount": "1464318675947705500000000" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "5766275554" + "denom": "uosmo", + "amount": "4792555244" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "719", + "id": "856", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/719", - "amount": "327155283677570242797678" + "denom": "gamm/pool/856", + "amount": "895299450669014084247" }, - "liquidityUsd": 11483.971546762847, - "liquidity24hUsdChange": -3.375949362701107, - "volume24hUsd": 453.1495678534535, - "volume24hUsdChange": -20.778880789333115, - "volume7dUsd": 3162.25807759897, + "liquidityUsd": 8646.816602642082, + "liquidity24hUsdChange": -3.8124123724477683, + "volume24hUsd": 359.87620676140057, + "volume24hUsdChange": 18.295824386344293, + "volume7dUsd": 3857.9881104785436, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "25335067693" + "denom": "ibc/C822645522FC3EECF817609AA38C24B64D04F5C267A23BCCF8F2E3BC5755FA88", + "amount": "15739276931769" }, - "weight": "751619276800000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "3449818587" + "denom": "uosmo", + "amount": "4791424448" }, - "weight": "322122547200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1386", + "id": "1039", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.025000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1386", - "amount": "12412082100587111293457" + "denom": "gamm/pool/1039", + "amount": "746137698845673996644172" }, - "liquidityUsd": 11306.862758891162, - "liquidity24hUsdChange": -4.701653623606487, - "volume24hUsd": 92.44500200501561, - "volume24hUsdChange": -90.38460095652874, - "volume7dUsd": 1601.112604003179, + "liquidityUsd": 8546.806228202335, + "liquidity24hUsdChange": -4.153336386803807, + "volume24hUsd": 37.338703022286474, + "volume24hUsdChange": 307765.56858065043, + "volume7dUsd": 2318.5357393811983, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", - "amount": "11456879916" + "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "amount": "61669370" }, - "weight": "536870912000000" + "weight": "107374182400" }, { "token": { "denom": "uosmo", - "amount": "4406084370" + "amount": "4737262483" }, - "weight": "536870912000000" + "weight": "107374182400" } ], - "total_weight": "1073741824000000" + "total_weight": "214748364800" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1f2zm5ssgk4zf3fara0d59svvnuc9vvwgylmjwgt4wtcxy37sgj9sqtlygp", - "id": "1258", - "current_tick_liquidity": "26708299349.871773381413902302", - "token0": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", - "token0Amount": "12140837939", + "address": "osmo15f6xhpfjce9palj3hts00yh6pn3athq9wlwcwt80lejrzryrtkes0930y2", + "id": "1358", + "current_tick_liquidity": "568426094974.482529274418833158", + "token0": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", + "token0Amount": "5179172717", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1102564960", - "current_sqrt_price": "0.905653268068264413846533413575195302", - "current_tick": "-1797922", + "token1Amount": "2695435181", + "current_sqrt_price": "1.055854154447959469375636168991793845", + "current_tick": "114827", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 11024.786331157466, - "liquidity24hUsdChange": -0.760982543596536, - "volume24hUsd": 221.0859471955449, - "volume24hUsdChange": -44.29114578225728, - "volume7dUsd": 2828.3031669857774, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 8480.417020700785, + "liquidity24hUsdChange": -0.006081713614489971, + "volume24hUsd": 2976.0217842391194, + "volume24hUsdChange": -27.15876811491223, + "volume7dUsd": 40726.690726152825, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "872", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1386", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.025000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/872", - "amount": "492498955090359973550" + "denom": "gamm/pool/1386", + "amount": "12412082100587111293457" }, - "liquidityUsd": 10981.47705629423, - "liquidity24hUsdChange": 0.0051133723039597555, - "volume24hUsd": 3517.950907823425, - "volume24hUsdChange": 196.49012113653916, - "volume7dUsd": 39061.343859254324, + "liquidityUsd": 8463.50602397713, + "liquidity24hUsdChange": -2.4904349577828993, + "volume24hUsd": 39.95894654667124, + "volume24hUsdChange": null, + "volume7dUsd": 785.853660023701, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "5923457250" + "token": { + "denom": "ibc/0835781EF3F3ADD053874323AB660C75B50B18B16733CAB783CA6BBD78244EDF", + "amount": "10782058758" + }, + "weight": "536870912000000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "5069395275" + "token": { + "denom": "uosmo", + "amount": "4689847321" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "813", + "id": "915", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/813", - "amount": "397095742467634440584794" + "denom": "gamm/pool/915", + "amount": "214604262630185850382" }, - "liquidityUsd": 10940.758092937767, - "liquidity24hUsdChange": -2.0663253215077684, - "volume24hUsd": 3277.673483796072, - "volume24hUsdChange": 214.75574963072694, - "volume7dUsd": 17927.70566095592, + "liquidityUsd": 8323.715570150132, + "liquidity24hUsdChange": -50.736264963083855, + "volume24hUsd": 168.42372367459578, + "volume24hUsdChange": -41.7881406418345, + "volume7dUsd": 11062.209516790206, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/A1AC7F9EE2F643A68E3A35BCEB22040120BEA4059773BB56985C76BDFEBC71D9", - "amount": "1643109293026731800000000" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "541551844594" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "4263419859" + "denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", + "amount": "3555301392" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1zmdgxh3jxp8uxek5y38q8frmt050fk75dn00l44pa9a3wy99yq9shthqpv", + "id": "1433", + "current_tick_liquidity": "18402324.144889954931832194", + "token0": "uosmo", + "token0Amount": "8889924637", + "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token1Amount": "184175", + "current_sqrt_price": "0.038322553455447407526407480053054232", + "current_tick": "-26531382", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 8135.072822235678, + "liquidity24hUsdChange": -6.98672628792611, + "volume24hUsd": 728.5883724730296, + "volume24hUsdChange": -50.69229787905509, + "volume7dUsd": 43856.68663662511, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "621", + "id": "756", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/621", - "amount": "3281548544971562778257" + "denom": "gamm/pool/756", + "amount": "614348836150043097904" }, - "liquidityUsd": 10862.737145057688, - "liquidity24hUsdChange": -4.62559548924659, + "liquidityUsd": 7368.404578187817, + "liquidity24hUsdChange": -4.6983463300875865, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 645.0569168922885, + "volume24hUsdChange": 0, + "volume7dUsd": 1.537984727971712, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", - "amount": "33669319389076" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "404762039961" }, "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "4233016476" + "denom": "ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867", + "amount": "5313600588219" }, "weight": "5368709120" } @@ -10466,106 +10601,148 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "756", + "id": "615", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/756", - "amount": "623108741079921019681" + "denom": "gamm/pool/615", + "amount": "102379940538605614147" }, - "liquidityUsd": 10767.316527125913, - "liquidity24hUsdChange": -4.812234286511593, - "volume24hUsd": 2.156240542490348, - "volume24hUsdChange": 212.39393861480386, - "volume7dUsd": 75.47490508722215, + "liquidityUsd": 7347.861575395924, + "liquidity24hUsdChange": -3.2909411364087835, + "volume24hUsd": 3.5637427545422558, + "volume24hUsdChange": null, + "volume7dUsd": 2975.6381860429465, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "410940396675" + "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", + "amount": "16600240627076" }, - "weight": "5368709120" + "weight": "53687091200" }, { "token": { - "denom": "ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867", - "amount": "5384013667473" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "221311148344" }, - "weight": "5368709120" + "weight": "53687091200" } ], - "total_weight": "10737418240" + "total_weight": "107374182400" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo14fltplmxyrlsj20d34kxfc55ungs0smtyw3u7d7z9w3mlevkhz2qday49j", + "id": "1370", + "current_tick_liquidity": "40152004428.141453283914224777", + "token0": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", + "token0Amount": "2897780077", + "token1": "uosmo", + "token1Amount": "3853422998", + "current_sqrt_price": "1.206131208633626823023518486895591660", + "current_tick": "454752", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 7280.8153987801425, + "liquidity24hUsdChange": -4.001697025092097, + "volume24hUsd": 6142.248627013049, + "volume24hUsdChange": -24.336072354091325, + "volume7dUsd": 264694.8055906142, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "690", + "id": "621", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/690", - "amount": "142225843110876084469108" + "denom": "gamm/pool/621", + "amount": "3272180481488498126808" }, - "liquidityUsd": 10089.35628876667, - "liquidity24hUsdChange": -3.546606272093352, - "volume24hUsd": 988.4204961904222, - "volume24hUsdChange": 219.66761784068643, - "volume7dUsd": 15697.821445353315, + "liquidityUsd": 7273.0829172237045, + "liquidity24hUsdChange": -3.3934440512774673, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 574.684898211369, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "amount": "1836605419750" + "denom": "ibc/307E5C96C8F60D1CBEE269A9A86C0834E1DB06F2B3788AE4F716EDB97A48B97D", + "amount": "35168748201962" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "3936868516" + "amount": "4030203126" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" + }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1568", + "code_id": "580", + "tokens": [ + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "3644433356" + }, + { + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "6134933825" + } + ], + "liquidityUsd": 7265.93773590555, + "liquidity24hUsdChange": 24.58225627013915, + "volume24hUsd": 4215.247144896355, + "volume24hUsdChange": -28.388116555083887, + "volume7dUsd": 44112.308263477615, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "567", + "id": "557", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/567", - "amount": "4002602065213061259269" + "denom": "gamm/pool/557", + "amount": "775951661290608504053" }, - "liquidityUsd": 10059.673222961634, - "liquidity24hUsdChange": -2.6411016999713675, - "volume24hUsd": 187.46790135169056, - "volume24hUsdChange": 520.6957191279967, - "volume7dUsd": 1112.1800318306412, + "liquidityUsd": 7130.076315908389, + "liquidity24hUsdChange": -3.99417766962432, + "volume24hUsd": 65.22383437321224, + "volume24hUsdChange": -88.92311329906745, + "volume7dUsd": 7762.594271852275, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "4997398018" + "denom": "ibc/F3FF7A84A73B62921538642F9797C423D2B4C4ACB3C7FCFFCE7F12AA69909C4B", + "amount": "93525721073" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "198473129863" + "denom": "uosmo", + "amount": "3950959474" }, "weight": "536870912000000" } @@ -10574,91 +10751,125 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo14fltplmxyrlsj20d34kxfc55ungs0smtyw3u7d7z9w3mlevkhz2qday49j", - "id": "1370", - "current_tick_liquidity": "77520470649.399404123193143382", - "token0": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", - "token0Amount": "2348051715", - "token1": "uosmo", - "token1Amount": "4530025261", - "current_sqrt_price": "1.159281108745341331196976241300344423", - "current_tick": "343932", + "address": "osmo1vf9ye5yvc98g4fdtx42gvghx6yasyzsmds6sdkkc23z83qq0m5js3yl0xt", + "id": "1268", + "current_tick_liquidity": "108569052425.217935767753176830", + "token0": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "token0Amount": "5693446768", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "1397925278", + "current_sqrt_price": "0.997354363858479082085859312191311471", + "current_tick": "-52843", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 9861.428873431818, - "liquidity24hUsdChange": 5.4823561890327905, - "volume24hUsd": 2734.99870713575, - "volume24hUsdChange": -63.211241674739746, - "volume7dUsd": 45087.776119954964, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 7065.376098132945, + "liquidity24hUsdChange": 171.99936138872948, + "volume24hUsd": 1671.4989249929154, + "volume24hUsdChange": 133.53858288805506, + "volume7dUsd": 129223.82761647813, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1242", + "id": "690", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1242", - "amount": "40213058906996248381259" + "denom": "gamm/pool/690", + "amount": "142534866009009291810586" }, - "liquidityUsd": 9723.279355084565, - "liquidity24hUsdChange": -1.3022773137689325, - "volume24hUsd": 85.84264993435193, - "volume24hUsdChange": -35.48525990967626, - "volume7dUsd": 896.1395249532058, + "liquidityUsd": 6939.653062162835, + "liquidity24hUsdChange": -3.3450944675791106, + "volume24hUsd": 166.56961198312825, + "volume24hUsdChange": -50.49944669372375, + "volume7dUsd": 3155.312973026649, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "4890519228" + "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "amount": "1897114095921" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "amount": "2708639494803747" + "denom": "uosmo", + "amount": "3845441030" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1284", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000500000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1284", + "amount": "5460883075474832375902" + }, + "liquidityUsd": 6801.74486233397, + "liquidity24hUsdChange": -3.857186512580265, + "volume24hUsd": 241.03733438196184, + "volume24hUsdChange": -71.03998500475181, + "volume7dUsd": 10565.023431594565, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "amount": "4834134867605" + }, + { + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "6235724" + } + ], + "scaling_factors": [ + "1000000", + "1" + ], + "scaling_factor_controller": "" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1573", + "id": "567", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1573", - "amount": "5760563966806393312" + "denom": "gamm/pool/567", + "amount": "4002602065213061259269" }, - "liquidityUsd": 9551.62596111657, - "liquidity24hUsdChange": -5.90286127261951, - "volume24hUsd": 1763.2816295171704, - "volume24hUsdChange": -19.890836838322766, - "volume7dUsd": 11853.467423137754, + "liquidityUsd": 6612.492772552187, + "liquidity24hUsdChange": -2.9367006734664907, + "volume24hUsd": 6.131504652756434, + "volume24hUsdChange": -12.69414409596202, + "volume7dUsd": 2426.3140437914644, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", - "amount": "587735466792" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "4996885341" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", - "amount": "59257635745" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "198690206456" }, "weight": "536870912000000" } @@ -10667,23 +10878,23 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fytdjeuxjy65ajdaczvg07x7lyqpmwg4lux833tmamph2as2uc7q59jhq3", - "id": "1107", - "current_tick_liquidity": "473054110.461940428154393160", - "token0": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "token0Amount": "51741427", - "token1": "uosmo", - "token1Amount": "3546481258", - "current_sqrt_price": "8.609778588247740775935888182282664362", - "current_tick": "15412828", + "address": "osmo1clh353m53qzyzh03xlsg5nc8s4qnlksswx7q7q9x4fmqn4us2dasxercvl", + "id": "1437", + "current_tick_liquidity": "110857080137.389007612795743723", + "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token0Amount": "8436373", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "1210226910", + "current_sqrt_price": "24.828006871215117077077634182909667883", + "current_tick": "23164299", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.003000000000000000", - "liquidityUsd": 9450.483652511914, - "liquidity24hUsdChange": -12.20483876849702, - "volume24hUsd": 3247.672944113426, - "volume24hUsdChange": 70054.28980068344, - "volume7dUsd": 9892.493165522033, + "spread_factor": "0.000100000000000000", + "liquidityUsd": 6410.325792039486, + "liquidity24hUsdChange": 23.69607250356141, + "volume24hUsd": 29597.664777376664, + "volume24hUsdChange": 8.316776165176446, + "volume7dUsd": 582208.6922811326, "taker_fee": "0.001000000000000000" }, { @@ -10696,26 +10907,26 @@ }, "total_shares": { "denom": "gamm/pool/919", - "amount": "785942546220030249384" + "amount": "785941821058139894288" }, - "liquidityUsd": 9076.868216177449, - "liquidity24hUsdChange": -3.2532494147076596, - "volume24hUsd": 203.74939110003373, - "volume24hUsdChange": 361.8059676871526, - "volume7dUsd": 2228.9608029636197, + "liquidityUsd": 6358.960803572896, + "liquidity24hUsdChange": -5.3524881799352055, + "volume24hUsd": 515.8679117921102, + "volume24hUsdChange": 21.617546747091062, + "volume7dUsd": 3301.8962123323877, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", - "amount": "5164475822507" + "amount": "4869916386638" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "121946956532" + "amount": "129949017631" }, "weight": "536870912000000" } @@ -10724,34 +10935,112 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "787", + "id": "682", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/787", - "amount": "4475832885186520534248" + "denom": "gamm/pool/682", + "amount": "8491690669157901573593" }, - "liquidityUsd": 8930.015377646094, - "liquidity24hUsdChange": -4.407232197359272, - "volume24hUsd": 16.02806843328658, - "volume24hUsdChange": -96.16336681280984, - "volume7dUsd": 764.4264791076297, + "liquidityUsd": 6352.446350867107, + "liquidity24hUsdChange": -2.689683087834076, + "volume24hUsd": 55.63647186171974, + "volume24hUsdChange": -45.579158832774816, + "volume7dUsd": 18695.36148040016, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A", - "amount": "1216910741006" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "394336571" + }, + "weight": "5368709120" + }, + { + "token": { + "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "amount": "1635674143126016600000" + }, + "weight": "5368709120" + } + ], + "total_weight": "10737418240" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ppd4jpetp6hlhdz68w6564ys40meyx4n5ucuqp6wckfgrunfsa9qduczr7", + "id": "1591", + "current_tick_liquidity": "519183996.989039030468426576", + "token0": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", + "token0Amount": "10153770711", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "301604631", + "current_sqrt_price": "0.701854346797827916514040200941584249", + "current_tick": "-5074005", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 6182.010082036259, + "liquidity24hUsdChange": 1.6758553531038123, + "volume24hUsd": 292.79614435925976, + "volume24hUsdChange": -65.2716266577799, + "volume7dUsd": 75661.83199591647, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo14t6vk4czks6n6g3d6e8wp7ryfr3z00g9nhmvtqdatj0y2xrwxz0qp3gm6y", + "id": "1417", + "current_tick_liquidity": "251663217.670132288008713788", + "token0": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "token0Amount": "6523364377421", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "6771919", + "current_sqrt_price": "0.030680769243503570925712509814502812", + "current_tick": "-27586904", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 6156.385582064646, + "liquidity24hUsdChange": -14.224565658479973, + "volume24hUsd": 71.00488820577432, + "volume24hUsdChange": -86.68832079450264, + "volume7dUsd": 7487.791370405878, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "941", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/941", + "amount": "43064011365138091859241" + }, + "liquidityUsd": 6141.99623204532, + "liquidity24hUsdChange": -3.3650793533855228, + "volume24hUsd": 0.9054980979044002, + "volume24hUsdChange": null, + "volume7dUsd": 110.7646135855645, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C", + "amount": "2390521178670" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3479868998" + "amount": "3403438775" }, "weight": "536870912000000" } @@ -10768,26 +11057,26 @@ }, "total_shares": { "denom": "gamm/pool/758", - "amount": "554028249915173892080" + "amount": "547540170350323133663" }, - "liquidityUsd": 8856.470609866654, - "liquidity24hUsdChange": -4.814240147784641, - "volume24hUsd": 1.8757078205708098, - "volume24hUsdChange": -99.0202797728572, - "volume7dUsd": 262.051067998898, + "liquidityUsd": 6086.646298618743, + "liquidity24hUsdChange": -3.321543305843245, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 22.415952800052153, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "338011939780" + "amount": "334352348084" }, "weight": "5368709120" }, { "token": { "denom": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", - "amount": "5184833344914" + "amount": "5119563867904" }, "weight": "5368709120" } @@ -10796,148 +11085,184 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "941", + "id": "950", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "exit_fee": "0.004200000000000000", + "swap_fee": "0.006900000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/941", - "amount": "43064011365138091859241" + "denom": "gamm/pool/950", + "amount": "4174027890489031928910" }, - "liquidityUsd": 8848.950006200219, - "liquidity24hUsdChange": -3.4115362531063593, - "volume24hUsd": 80.62221538403921, - "volume24hUsdChange": -91.76304349933483, - "volume7dUsd": 1116.8982159329885, + "liquidityUsd": 6009.328963665723, + "liquidity24hUsdChange": -4.437700797695247, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 710.4769886817734, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C", - "amount": "2359255590244" + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "4921314" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { - "denom": "uosmo", - "amount": "3448279257" + "denom": "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", + "amount": "86573540" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1dr8d97e7fjqvsqtatg872x2jvtz25cmau5j3zp23rs7nh3ax3mss05dmll", "id": "1170", - "current_tick_liquidity": "45218934172.877773605612160392", + "current_tick_liquidity": "4860273812.146606466358341507", "token0": "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", - "token0Amount": "118813207258", + "token0Amount": "121533757819", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1703636594", - "current_sqrt_price": "0.244797229583661086140594292459177407", - "current_tick": "-13007432", + "token1Amount": "816070850", + "current_sqrt_price": "0.205847045781898372798522637436443999", + "current_tick": "-14762700", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 8804.912014955555, - "liquidity24hUsdChange": -3.351054238618878, - "volume24hUsd": 1963.54832113268, - "volume24hUsdChange": 143.0266262137109, - "volume7dUsd": 12085.952911636845, + "liquidityUsd": 5979.324063705976, + "liquidity24hUsdChange": -1.682735996401132, + "volume24hUsd": 60.7017248926979, + "volume24hUsdChange": -38.741772277309536, + "volume7dUsd": 9575.047728307401, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "682", + "id": "638", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/682", - "amount": "8491690669157901573593" + "denom": "gamm/pool/638", + "amount": "43380551057478359144001" }, - "liquidityUsd": 8445.698970320613, - "liquidity24hUsdChange": -5.39573388328248, - "volume24hUsd": 291.4492133185388, - "volume24hUsdChange": 80.52903001637954, - "volume7dUsd": 1876.7713592014172, + "liquidityUsd": 5837.983675572035, + "liquidity24hUsdChange": -2.1635230165261436, + "volume24hUsd": 10.71714620044947, + "volume24hUsdChange": 51.072788363082275, + "volume7dUsd": 628.3166304570909, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "390727497" + "amount": "363749576" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "1639298500666218000000" + "denom": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", + "amount": "2014856030149" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1603", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1603", + "amount": "124196948467041550531" + }, + "liquidityUsd": 5813.071907775087, + "liquidity24hUsdChange": -2.4073340067183397, + "volume24hUsd": 86.84362951406025, + "volume24hUsdChange": 38.38430226039853, + "volume7dUsd": 3022.4516848004737, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", + "amount": "1043731669165549200000" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "3221173310" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo15f6xhpfjce9palj3hts00yh6pn3athq9wlwcwt80lejrzryrtkes0930y2", - "id": "1358", - "current_tick_liquidity": "568426094974.482529274418833158", - "token0": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", - "token0Amount": "6216651323", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1541049443", - "current_sqrt_price": "1.053823308827876148161767316355886308", - "current_tick": "110543", + "address": "osmo15ug09var70vhm54gluvp6r4lyttk7qmaw9gen43g4s9kldn6tggsex0256", + "id": "1163", + "current_tick_liquidity": "7982018732.008233525574635992", + "token0": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "token0Amount": "9283668595", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "259455372", + "current_sqrt_price": "0.766368373637251108210014295883398366", + "current_tick": "-4126796", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 8436.140687202622, - "liquidity24hUsdChange": -0.07448063905632325, - "volume24hUsd": 680.1451669745948, - "volume24hUsdChange": 169.58524147683883, - "volume7dUsd": 19624.858945762204, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 5734.539872757013, + "liquidity24hUsdChange": -32.9833391673578, + "volume24hUsd": 6136.983827005329, + "volume24hUsdChange": -38.05910468920046, + "volume7dUsd": 215018.28174656525, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1295", + "id": "1470", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1295", - "amount": "1073249399021103270843732" + "denom": "gamm/pool/1470", + "amount": "1293629953416355724097363" }, - "liquidityUsd": 8260.208234, - "liquidity24hUsdChange": 1.351181508337155, - "volume24hUsd": 2115.719969466, - "volume24hUsdChange": 107.0448116629827, - "volume7dUsd": 12658.391870640779, + "liquidityUsd": 5599.169376872525, + "liquidity24hUsdChange": -4.060717630870117, + "volume24hUsd": 29.956006966848523, + "volume24hUsdChange": -67.8916052616656, + "volume7dUsd": 1705.5087938215086, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", - "amount": "30625046322" + "denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "amount": "147822404463804" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "4130104117" + "denom": "uosmo", + "amount": "3102644392" }, "weight": "536870912000000" } @@ -10946,34 +11271,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "638", + "id": "1308", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/638", - "amount": "43575781507713112492010" + "denom": "gamm/pool/1308", + "amount": "3189799891305261870399" }, - "liquidityUsd": 8093.54359116824, - "liquidity24hUsdChange": -4.517126273979584, - "volume24hUsd": 3.9949850819053836, - "volume24hUsdChange": null, - "volume7dUsd": 194.4895408472887, + "liquidityUsd": 5551.923458060513, + "liquidity24hUsdChange": -9.730182365599147, + "volume24hUsd": 699.7552823300239, + "volume24hUsdChange": -13.605707048050434, + "volume7dUsd": 9892.935091586018, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "374970958" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "291292318" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/346786EA82F41FE55FAD14BF69AD8BA9B36985406E43F3CB23E6C45A285A9593", - "amount": "1971669934745" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "113605709391" }, "weight": "536870912000000" } @@ -10990,26 +11315,26 @@ }, "total_shares": { "denom": "gamm/pool/1240", - "amount": "109015692194255991675" + "amount": "103629296505967726886" }, - "liquidityUsd": 7855.999986160316, - "liquidity24hUsdChange": -1.2256215252374951, - "volume24hUsd": 171.7919301816416, - "volume24hUsdChange": 423.90764367954824, - "volume7dUsd": 2954.4713622759027, + "liquidityUsd": 5537.591773011318, + "liquidity24hUsdChange": -2.6287167077543416, + "volume24hUsd": 52.59232432897038, + "volume24hUsdChange": 36.634056801974445, + "volume7dUsd": 2360.539586587645, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", - "amount": "27609697667508" + "amount": "24925382396588" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3061344202" + "amount": "3068522651" }, "weight": "536870912000000" } @@ -11018,34 +11343,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1470", + "id": "701", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1470", - "amount": "1275917448654428295678216" + "denom": "gamm/pool/701", + "amount": "326533340348190564433184" }, - "liquidityUsd": 7844.307877196691, - "liquidity24hUsdChange": -2.7857541120261597, - "volume24hUsd": 334.9279618960544, - "volume24hUsdChange": 51.358284574102754, - "volume7dUsd": 1835.6958183848242, + "liquidityUsd": 5452.849713988007, + "liquidity24hUsdChange": -3.6085370693942, + "volume24hUsd": 1416.193190543219, + "volume24hUsdChange": 8.675648343950234, + "volume7dUsd": 20346.271442655525, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "amount": "145835022438780" + "denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", + "amount": "89386524055188" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3056787994" + "amount": "3021564887" }, "weight": "536870912000000" } @@ -11054,34 +11379,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "701", + "id": "731", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/701", - "amount": "360849836004455370278341" + "denom": "gamm/pool/731", + "amount": "593419196499466616585" }, - "liquidityUsd": 7807.993046553498, - "liquidity24hUsdChange": -3.4908537651419778, - "volume24hUsd": 1710.2433236553231, - "volume24hUsdChange": -37.13607565080107, - "volume7dUsd": 16378.738863697572, + "liquidityUsd": 5352.573219470312, + "liquidity24hUsdChange": -3.7852981056795674, + "volume24hUsd": 538.6200352884686, + "volume24hUsdChange": -84.78974479288678, + "volume7dUsd": 55951.88828505728, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", - "amount": "107399683314202" + "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", + "amount": "205512155602568130000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3041789535" + "amount": "2965999091" }, "weight": "536870912000000" } @@ -11089,69 +11414,71 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1284", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "633", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1284", - "amount": "5586384133365861217756" + "denom": "gamm/pool/633", + "amount": "64955005234528699202549894" }, - "liquidityUsd": 7642.4615780305485, - "liquidity24hUsdChange": -5.2884709010161695, - "volume24hUsd": 248.23669637915128, - "volume24hUsdChange": -41.225965435267284, - "volume7dUsd": 5273.706821718947, + "liquidityUsd": 5228.250596709914, + "liquidity24hUsdChange": -1.6525735641560406, + "volume24hUsd": 258.4043191509757, + "volume24hUsdChange": -16.613743419692696, + "volume7dUsd": 10827.155978058057, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "amount": "4920147412275" + "token": { + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "2608102287" + }, + "weight": "536870912000000" }, { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "6398543" + "token": { + "denom": "uosmo", + "amount": "2900534788" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1000000", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1308", + "id": "1288", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1308", - "amount": "3189803358928874356750" + "denom": "gamm/pool/1288", + "amount": "3077327321293019220176938" }, - "liquidityUsd": 7554.750571310963, - "liquidity24hUsdChange": -6.008288152308971, - "volume24hUsd": 304.28932960418484, - "volume24hUsdChange": -14.571815501580243, - "volume7dUsd": 4200.42334725846, + "liquidityUsd": 5120.235045677877, + "liquidity24hUsdChange": -0.10538903973877883, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "325158916" + "denom": "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", + "amount": "62898395787" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "101256048379" + "denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", + "amount": "320660647562" }, "weight": "536870912000000" } @@ -11170,81 +11497,60 @@ "denom": "gamm/pool/718", "amount": "251768485478975007898" }, - "liquidityUsd": 7440.931801374245, - "liquidity24hUsdChange": -4.625215344977836, + "liquidityUsd": 5067.30680389736, + "liquidity24hUsdChange": -3.3934440512774535, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 5.260543869945636, + "volume7dUsd": 456.552128298188, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484", - "amount": "352038329702" + "amount": "363566936883" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2899599474" + "amount": "2807925601" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1a7l5mnrzy9cxjnqrk90p26nkct3uuz7z84fnkegf94rgdt0jpxwszm40cp", - "id": "1648", - "current_tick_liquidity": "4667750586.016610437323925169", - "token0": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "token0Amount": "1077332807", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "6281781636", - "current_sqrt_price": "0.995901144267283223019326332906573520", - "current_tick": "-81810", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.010000000000000000", - "liquidityUsd": 7344.568195855394, - "liquidity24hUsdChange": 229.44978028505543, - "volume24hUsd": 14.838004458337192, - "volume24hUsdChange": -97.9977901146473, - "volume7dUsd": 6434.326458913263, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "731", + "id": "857", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000200000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/731", - "amount": "591564357408285869934" + "denom": "gamm/pool/857", + "amount": "6356083878360384188161" }, - "liquidityUsd": 7327.364908156425, - "liquidity24hUsdChange": -4.531081006221703, - "volume24hUsd": 1702.811608417632, - "volume24hUsdChange": -21.290241961255248, - "volume7dUsd": 6944.70904320818, + "liquidityUsd": 5051.1764658468, + "liquidity24hUsdChange": -2.7225347486995872, + "volume24hUsd": 60.06279057974532, + "volume24hUsdChange": -54.56158679441187, + "volume7dUsd": 4359.196134918847, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", - "amount": "208243912871608330000" + "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "amount": "3652377568" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2855344465" + "amount": "2798987364" }, "weight": "536870912000000" } @@ -11253,91 +11559,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "950", + "id": "902", "pool_params": { - "exit_fee": "0.004200000000000000", - "swap_fee": "0.006900000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/950", - "amount": "4174027890489031928910" + "denom": "gamm/pool/902", + "amount": "89179049771345156435259" }, - "liquidityUsd": 7174.912892666744, - "liquidity24hUsdChange": -4.162549100712397, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 230.90194841607666, + "liquidityUsd": 4945.607873707481, + "liquidity24hUsdChange": -3.5577798562072958, + "volume24hUsd": 14.675818669187958, + "volume24hUsdChange": -54.30199075383702, + "volume7dUsd": 3063.9705306189417, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "5195590" + "denom": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", + "amount": "759298747946" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", - "amount": "81951431" + "denom": "uosmo", + "amount": "2740489080" }, - "weight": "1073741824" - } - ], - "total_weight": "2147483648" - }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1568", - "code_id": "580", - "tokens": [ - { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "3539730866" - }, - { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "4088954110" + "weight": "536870912000000" } ], - "liquidityUsd": 7164.764986110744, - "liquidity24hUsdChange": -1.644321650602553, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1603", + "id": "1368", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1603", - "amount": "124196948467041550531" + "denom": "gamm/pool/1368", + "amount": "11432435127190172447096" }, - "liquidityUsd": 6877.677802413978, - "liquidity24hUsdChange": -3.7013304060542236, - "volume24hUsd": 56.76162213292381, - "volume24hUsdChange": 36.28316329915362, - "volume7dUsd": 408.6284429095723, + "liquidityUsd": 4938.011068897561, + "liquidity24hUsdChange": -2.224766211732223, + "volume24hUsd": 2070.4946812090916, + "volume24hUsdChange": 84.45975568266525, + "volume7dUsd": 11720.856849269156, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", - "amount": "1248785463522625200000" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "656340408" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2680109356" + "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "amount": "24500371751" }, "weight": "536870912000000" } @@ -11346,34 +11631,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "902", + "id": "1629", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/902", - "amount": "89179049771345156435259" + "denom": "gamm/pool/1629", + "amount": "1837902964009485653325" }, - "liquidityUsd": 6762.201081662921, - "liquidity24hUsdChange": -3.095572979807958, - "volume24hUsd": 183.52368818663822, - "volume24hUsdChange": 176.89062938222202, - "volume7dUsd": 590.5055666153119, + "liquidityUsd": 4846.4354021945055, + "liquidity24hUsdChange": -2.453282252749343, + "volume24hUsd": 16.639290025989517, + "volume24hUsdChange": -86.30332076007396, + "volume7dUsd": 2106.6470285132496, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", - "amount": "787965753952" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "2460008227" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2635110121" + "denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", + "amount": "25301412632" }, "weight": "536870912000000" } @@ -11390,26 +11675,26 @@ }, "total_shares": { "denom": "gamm/pool/763", - "amount": "471561966085962082891" + "amount": "471580245885251430403" }, - "liquidityUsd": 6563.810747146321, - "liquidity24hUsdChange": -0.8306164297102382, - "volume24hUsd": 69.57124801611161, - "volume24hUsdChange": null, - "volume7dUsd": 204.46402734302433, + "liquidityUsd": 4544.265408357214, + "liquidity24hUsdChange": -3.32154330584324, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.6567942711282372, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/022A879A5301CBCACF96216C967805F15C33C615B74DC7236027C1BA1BF664FF", - "amount": "5058325441025" + "amount": "5076714198924" }, "weight": "5368709120" }, { "token": { "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "250511349354" + "amount": "249626105257" }, "weight": "5368709120" } @@ -11418,127 +11703,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "857", + "id": "787", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000200000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/857", - "amount": "6356083878360384188161" + "denom": "gamm/pool/787", + "amount": "3838098182222970821375" }, - "liquidityUsd": 6548.127503254671, - "liquidity24hUsdChange": -2.7409293199300326, - "volume24hUsd": 123.8509254036088, - "volume24hUsdChange": 13.078732238962163, - "volume7dUsd": 949.3118846008338, + "liquidityUsd": 4543.296434781277, + "liquidity24hUsdChange": -3.85164517492255, + "volume24hUsd": 55.94874705640039, + "volume24hUsdChange": null, + "volume7dUsd": 4832.608975613909, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", - "amount": "4005670652" + "denom": "ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A", + "amount": "1241039679424" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2551689435" + "amount": "2517557919" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo18kekvh8aggm6dhpswwtdj092cr7nu9erhyqx2c95srzyjlgy755q0ej7ua", - "id": "1299", - "current_tick_liquidity": "2103811548.965048127687878937", - "token0": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", - "token0Amount": "28280843527", - "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "119715544", - "current_sqrt_price": "0.129337497989360053455494674856990207", - "current_tick": "-17327182", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 6417.289683529827, - "liquidity24hUsdChange": -6.350860751782489, - "volume24hUsd": 402.7090049962265, - "volume24hUsdChange": 232.00165800472848, - "volume7dUsd": 11153.562386383457, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1624", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1624", - "amount": "1708441866764643736754" - }, - "liquidityUsd": 6387.9446548027545, - "liquidity24hUsdChange": -6.45751596140645, - "volume24hUsd": 766.0910261187797, - "volume24hUsdChange": -32.83662178396864, - "volume7dUsd": 36387.42664016291, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", - "amount": "13871675108103" - }, - "weight": "1073741824" - }, - { - "token": { - "denom": "uosmo", - "amount": "2489269013" - }, - "weight": "1073741824" - } - ], - "total_weight": "2147483648" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "633", + "id": "1326", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/633", - "amount": "64957098970024744031170396" + "denom": "gamm/pool/1326", + "amount": "76681153850619117575" }, - "liquidityUsd": 6206.590163458679, - "liquidity24hUsdChange": -2.3409592152746614, - "volume24hUsd": 3.2810972397957103, - "volume24hUsdChange": -97.949250505278, - "volume7dUsd": 3793.97352793398, + "liquidityUsd": 4449.576308729023, + "liquidity24hUsdChange": -5.98261127931589, + "volume24hUsd": 319.9475293499061, + "volume24hUsdChange": -75.81782913505106, + "volume7dUsd": 4168.582331189724, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "3114567706" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "342409135232" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2414474465" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "90985152489" }, "weight": "536870912000000" } @@ -11547,34 +11775,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1368", + "id": "1403", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1368", - "amount": "11432435127190172447096" + "denom": "gamm/pool/1403", + "amount": "357969097404067585552" }, - "liquidityUsd": 6088.21160108004, - "liquidity24hUsdChange": -2.90478564978743, - "volume24hUsd": 2664.3054699785903, - "volume24hUsdChange": 79.97994647021933, - "volume7dUsd": 12277.112782671335, + "liquidityUsd": 4432.634980113561, + "liquidity24hUsdChange": -0.8713288448361266, + "volume24hUsd": 70.41455088528713, + "volume24hUsdChange": -71.61628108923829, + "volume7dUsd": 1934.521345654711, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "733087811" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "2214089948" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", - "amount": "21705010919" + "denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", + "amount": "1493024088" }, "weight": "536870912000000" } @@ -11583,91 +11811,112 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1wdpey2ncq8ql436dxneqsvtmahmmpq42utnmp4vt9u63mpns0h2qahc7gc", - "id": "1427", - "current_tick_liquidity": "10268333043582876.215473407492303931", - "token0": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", - "token0Amount": "70136734118395410000", + "address": "osmo1fytdjeuxjy65ajdaczvg07x7lyqpmwg4lux833tmamph2as2uc7q59jhq3", + "id": "1107", + "current_tick_liquidity": "179176935.803840397299240579", + "token0": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "token0Amount": "18375706", "token1": "uosmo", - "token1Amount": "1996313510", - "current_sqrt_price": "0.000006066760380213007539885218216910", - "current_tick": "-96319442", + "token1Amount": "3488342029", + "current_sqrt_price": "8.757715644411430694218125766290952740", + "current_tick": "15669758", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 5875.628745828455, - "liquidity24hUsdChange": -51.94758925762025, - "volume24hUsd": 4039.542633751077, - "volume24hUsdChange": -87.95748746377086, - "volume7dUsd": 218921.15747332273, + "spread_factor": "0.003000000000000000", + "liquidityUsd": 4420.622140565376, + "liquidity24hUsdChange": -7.6326799716017595, + "volume24hUsd": 9.306667276393947, + "volume24hUsdChange": null, + "volume7dUsd": 16508.588578667346, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1drzeqwvw53vytc0sqzd66cm0nnnt43nm074eylmkulhv78j76ssq8halsu", + "id": "1350", + "current_tick_liquidity": "93377244769207.167143958423675667", + "token0": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", + "token0Amount": "6934627037460814000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "387226019", + "current_sqrt_price": "0.000023474076630042885161632496150743", + "current_tick": "-85489678", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 4186.946746805704, + "liquidity24hUsdChange": 1.2424674424136772, + "volume24hUsd": 133.10794909334862, + "volume24hUsdChange": 22.668316133317326, + "volume7dUsd": 32427.5428925445, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "904", + "id": "547", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/904", - "amount": "297980081296308380386" + "denom": "gamm/pool/547", + "amount": "11943377888815079894837" }, - "liquidityUsd": 5765.575066182759, - "liquidity24hUsdChange": -4.776425224018843, + "liquidityUsd": 4097.815048428769, + "liquidity24hUsdChange": -1.1734790346351565, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 3.133585413935643, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "220046257467" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "254281383" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE95D1E09F5A44FC5409F4E0F52750DF2A868D865BC91F3C3EE3C83235789D18", - "amount": "2297799580855" + "denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", + "amount": "15319909801" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "197", + "id": "917", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/197", - "amount": "185113041831964055484978" + "denom": "gamm/pool/917", + "amount": "83855941096224721123" }, - "liquidityUsd": 5646.609997132032, - "liquidity24hUsdChange": -4.635035701971253, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 4632.2256257991285, + "liquidityUsd": 4097.3389491433445, + "liquidity24hUsdChange": -51.27871611606564, + "volume24hUsd": 32.59822897113251, + "volume24hUsdChange": -85.70664694371878, + "volume7dUsd": 12748.513777761724, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "1738120196210" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "266326094281" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2200384013" + "denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "amount": "60471672629620920000" }, "weight": "536870912000000" } @@ -11678,89 +11927,89 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1q4gt54tlryyaawwuht768e53y2vnavvyystypw8dd8whu03tjqsspvnfap", "id": "1116", - "current_tick_liquidity": "17210622709.189119497880814490", + "current_tick_liquidity": "442787172.175417545571806693", "token0": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", - "token0Amount": "5773707044", + "token0Amount": "7743413947", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1631351233", - "current_sqrt_price": "0.830939736240701066493060305546645254", - "current_tick": "-3095392", + "token1Amount": "190631273", + "current_sqrt_price": "0.698085042987864398822650732598040122", + "current_tick": "-5126773", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 5616.649921570181, - "liquidity24hUsdChange": -4.6082751690705965, - "volume24hUsd": 2160.0824570823643, - "volume24hUsdChange": 34.188173326936656, - "volume7dUsd": 13835.83750941398, + "liquidityUsd": 4008.035412967501, + "liquidity24hUsdChange": -4.19262684934107, + "volume24hUsd": 55.20671453236107, + "volume24hUsdChange": -13.150222450107199, + "volume7dUsd": 20358.59013909673, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1288", + "id": "904", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1288", - "amount": "3065377937513349016127019" + "denom": "gamm/pool/904", + "amount": "297980081296308380386" }, - "liquidityUsd": 5438.382444494171, - "liquidity24hUsdChange": 0.18315051051375064, + "liquidityUsd": 4005.785352522592, + "liquidity24hUsdChange": -3.3215433058432544, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 8.53399389893606, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", - "amount": "62788392193" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "220046257467" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", - "amount": "318652805816" + "denom": "ibc/BE95D1E09F5A44FC5409F4E0F52750DF2A868D865BC91F3C3EE3C83235789D18", + "amount": "2297799580855" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "547", + "id": "634", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/547", - "amount": "11943377888815079894837" + "denom": "gamm/pool/634", + "amount": "96054516675635720588262" }, - "liquidityUsd": 5335.320067553128, - "liquidity24hUsdChange": -4.455779495370157, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 113.50438547976593, + "liquidityUsd": 3934.9158716370403, + "liquidity24hUsdChange": -3.4800961807755986, + "volume24hUsd": 26.203662544638593, + "volume24hUsdChange": -87.15889194957575, + "volume7dUsd": 2633.245372589906, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "246427460" + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "662770698423798900" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "amount": "15807127273" + "denom": "uosmo", + "amount": "2180438533" }, "weight": "536870912000000" } @@ -11769,70 +12018,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "464", + "id": "197", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/464", - "amount": "2076396504214475785887" + "denom": "gamm/pool/197", + "amount": "185113041831964055484978" }, - "liquidityUsd": 5158.10031623459, - "liquidity24hUsdChange": -4.780285809919845, - "volume24hUsd": 31.06271323105297, - "volume24hUsdChange": -49.285701284664775, - "volume7dUsd": 350.9479458440098, + "liquidityUsd": 3902.3691485936642, + "liquidity24hUsdChange": -3.3934440512774757, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 416.4291690348645, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "276661099169" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "1769313248422" }, - "weight": "644245094400000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "191009133" + "denom": "uosmo", + "amount": "2162403553" }, - "weight": "429496729600000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1519", + "id": "1295", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1519", - "amount": "263379170088637263587" + "denom": "gamm/pool/1295", + "amount": "646611132142847666484938" }, - "liquidityUsd": 5149.966274108639, - "liquidity24hUsdChange": -4.919128819762833, - "volume24hUsd": 133.1140284610862, - "volume24hUsdChange": 23.698287728055533, - "volume7dUsd": 3588.065310858057, + "liquidityUsd": 3894.2668860000003, + "liquidity24hUsdChange": -12.342800315918296, + "volume24hUsd": 556.4276701990997, + "volume24hUsdChange": 119.56228755444145, + "volume7dUsd": 6735.274426413216, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", - "amount": "54276147119147220000" + "denom": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", + "amount": "23661093971" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "69335426077" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1947133443" }, "weight": "536870912000000" } @@ -11841,34 +12090,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "762", + "id": "909", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/762", - "amount": "428123806870818189066" + "denom": "gamm/pool/909", + "amount": "4270330917654749552925" }, - "liquidityUsd": 5135.780638168366, - "liquidity24hUsdChange": -4.79089029627689, - "volume24hUsd": 0.4332508661572809, - "volume24hUsdChange": -22.48193801896057, - "volume7dUsd": 365.99197388805703, + "liquidityUsd": 3786.083932, + "liquidity24hUsdChange": -0.07603643887623837, + "volume24hUsd": 0.02412938230996022, + "volume24hUsdChange": null, + "volume7dUsd": 48.25555664094945, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "196009816129" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1893041966" }, "weight": "5368709120" }, { "token": { - "denom": "ibc/6A6174468758D207DD2D880363BF699C6568A29E87651337AEDAFD9E69EA7E58", - "amount": "5345734694835" + "denom": "ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5", + "amount": "10471214195953535000000" }, "weight": "5368709120" } @@ -11877,34 +12126,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "634", + "id": "1520", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/634", - "amount": "96054516675635720588262" + "denom": "gamm/pool/1520", + "amount": "72753610502537511805" }, - "liquidityUsd": 5103.32756950319, - "liquidity24hUsdChange": -3.4655227555896237, - "volume24hUsd": 35.41999867144703, - "volume24hUsdChange": -56.287748962516474, - "volume7dUsd": 432.03189811105574, + "liquidityUsd": 3767.1152890987123, + "liquidity24hUsdChange": -4.236192382349507, + "volume24hUsd": 406.5204722203751, + "volume24hUsdChange": 30.058655457751115, + "volume7dUsd": 5539.743447951869, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "725934494471197300" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "1881223486" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1988676463" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "77237669957" }, "weight": "536870912000000" } @@ -11913,34 +12162,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1529", + "id": "565", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1529", - "amount": "100055105372756371611" + "denom": "gamm/pool/565", + "amount": "1411134145700152056930" }, - "liquidityUsd": 5097.93554879337, - "liquidity24hUsdChange": -12.455480158492223, - "volume24hUsd": 489.5878542159349, - "volume24hUsdChange": -31.63294807089585, - "volume7dUsd": 5995.756716974902, + "liquidityUsd": 3720.9760271032255, + "liquidity24hUsdChange": -2.2406822536272695, + "volume24hUsd": 60.56023399256369, + "volume24hUsdChange": -44.49078200357726, + "volume7dUsd": 1958.5535061928233, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "274837892810" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "19247183740009" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "amount": "223352723977606020" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "234226039" }, "weight": "536870912000000" } @@ -11949,163 +12198,142 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1542", + "id": "612", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1542", - "amount": "100000000000000000000" + "denom": "gamm/pool/612", + "amount": "928211445267702154857222" }, - "liquidityUsd": 5000.6839580383985, - "liquidity24hUsdChange": -5.066939846043193, - "volume24hUsd": 216.01809813665767, - "volume24hUsdChange": -18.658203936720177, - "volume7dUsd": 2244.703177723043, + "liquidityUsd": 3710.4038732583413, + "liquidity24hUsdChange": -3.8116248073185526, + "volume24hUsd": 4.447052901087038, + "volume24hUsdChange": -89.76901005320026, + "volume7dUsd": 915.9432138883507, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", - "amount": "157049722835" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "8821586207" }, - "weight": "536870912000000" + "weight": "751619276800000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "67057978123" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "66869537575" }, - "weight": "536870912000000" + "weight": "322122547200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "565", + "id": "464", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/565", - "amount": "1418491695336049580497" + "denom": "gamm/pool/464", + "amount": "2076396504214475785887" }, - "liquidityUsd": 4993.905128653078, - "liquidity24hUsdChange": -6.589666818847584, - "volume24hUsd": 1243.7704515572868, - "volume24hUsdChange": 1027.904407371823, - "volume7dUsd": 3215.9228920960372, + "liquidityUsd": 3661.10863250267, + "liquidity24hUsdChange": -2.348448902488488, + "volume24hUsd": 18.826873908173674, + "volume24hUsdChange": 16.40351021003848, + "volume7dUsd": 810.2747961439302, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "19191294069138" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "285994737982" }, - "weight": "536870912000000" + "weight": "644245094400000" }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "236318800" + "amount": "181875604" }, - "weight": "536870912000000" + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "764", + "id": "1542", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/764", - "amount": "511791642581623681648" + "denom": "gamm/pool/1542", + "amount": "100000000000000000000" }, - "liquidityUsd": 4952.229990008755, - "liquidity24hUsdChange": -4.781129070164639, - "volume24hUsd": 0.12892882718155735, - "volume24hUsdChange": null, - "volume7dUsd": 145.2785370199949, + "liquidityUsd": 3582.4058627249424, + "liquidity24hUsdChange": -2.7355817893686285, + "volume24hUsd": 524.3484879223194, + "volume24hUsdChange": 29.471292097227998, + "volume7dUsd": 9209.143743665467, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "189004507427" + "denom": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", + "amount": "144246858898" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/C1CEF00F016FE89EA6E5B07DA895AACD91B0AAD69A991033D846B988AD4FB69D", - "amount": "7902701633754" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "73801322400" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ppd4jpetp6hlhdz68w6564ys40meyx4n5ucuqp6wckfgrunfsa9qduczr7", - "id": "1591", - "current_tick_liquidity": "71971030175.349508990564721716", - "token0": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", - "token0Amount": "3734597611", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "2606006341", - "current_sqrt_price": "0.785838475793739863394013853860482302", - "current_tick": "-3824579", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 4907.0206102918855, - "liquidity24hUsdChange": -0.7251958821792766, - "volume24hUsd": 21938.825268108292, - "volume24hUsdChange": 238.74823184708677, - "volume7dUsd": 83135.28593459216, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "766", + "id": "762", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/766", - "amount": "581856980238269573803" + "denom": "gamm/pool/762", + "amount": "428123806870818189066" }, - "liquidityUsd": 4814.717115514298, - "liquidity24hUsdChange": -4.781238003018891, - "volume24hUsd": 0.13696853642696208, - "volume24hUsdChange": null, - "volume7dUsd": 139.6351585131631, + "liquidityUsd": 3567.5829654199333, + "liquidity24hUsdChange": -3.321543305843256, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.0664943620862903, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DE9A32D603EE05E9B8619DF24D90FD518C932AE0B5B3209A986B7262DBADE2A", - "amount": "10544819332344" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "195974874003" }, "weight": "5368709120" }, { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "183756254991" + "denom": "ibc/6A6174468758D207DD2D880363BF699C6568A29E87651337AEDAFD9E69EA7E58", + "amount": "5346690702386" }, "weight": "5368709120" } @@ -12114,34 +12342,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1403", + "id": "1519", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1403", - "amount": "340030146656797119124" + "denom": "gamm/pool/1519", + "amount": "263378748590273720333" }, - "liquidityUsd": 4794.180630874553, - "liquidity24hUsdChange": 2.7422738390332198, - "volume24hUsd": 89.08058809311923, - "volume24hUsdChange": 381.29342577194103, - "volume7dUsd": 604.1881913759503, + "liquidityUsd": 3542.4334677217903, + "liquidity24hUsdChange": -5.841243592449747, + "volume24hUsd": 259.0933563477982, + "volume24hUsdChange": -36.68687756473712, + "volume7dUsd": 5056.21039831767, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "2399658381" + "denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "amount": "52375802111841175000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", - "amount": "1240823453" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "72339896334" }, "weight": "536870912000000" } @@ -12150,34 +12378,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1326", + "id": "670", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1326", - "amount": "55451738042983051889" + "denom": "gamm/pool/670", + "amount": "10288358134544959279895708" }, - "liquidityUsd": 4734.719500133237, - "liquidity24hUsdChange": -5.227286295271203, - "volume24hUsd": 359.7232701961395, - "volume24hUsdChange": -52.04931295208113, - "volume7dUsd": 5357.45909701715, + "liquidityUsd": 3515.0775062891344, + "liquidity24hUsdChange": -0.5450434612433459, + "volume24hUsd": 184.87924121984057, + "volume24hUsdChange": -1.9267666110051498, + "volume7dUsd": 4691.916076980084, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "254725160673" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "218540268" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "63648525503" + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "1752189459" }, "weight": "536870912000000" } @@ -12186,227 +12414,206 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1520", + "id": "764", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1520", - "amount": "72753610502537511805" + "denom": "gamm/pool/764", + "amount": "511791642581623681648" }, - "liquidityUsd": 4626.455940558284, - "liquidity24hUsdChange": -2.4964111340528228, - "volume24hUsd": 173.56215122882327, - "volume24hUsdChange": 41.999163851635416, - "volume7dUsd": 2675.924190526888, + "liquidityUsd": 3440.24575018667, + "liquidity24hUsdChange": -3.3215433058432593, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.4440392188185118, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "2327828235" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "188979971585" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "61714910259" + "denom": "ibc/C1CEF00F016FE89EA6E5B07DA895AACD91B0AAD69A991033D846B988AD4FB69D", + "amount": "7903730753150" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1y05tsqhvj5sep7zmlzv9cfk89a3avwvm6hwedqmvhqd6v3eqf8hqxdj23f", - "id": "1267", - "current_tick_liquidity": "377617543941.443757905966023873", - "token0": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "token0Amount": "124342970267260", - "token1": "uosmo", - "token1Amount": "308528913", - "current_sqrt_price": "0.004841678176580941517296306863948974", - "current_tick": "-43655816", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 4558.608713688939, - "liquidity24hUsdChange": -2.02502670624216, - "volume24hUsd": 787.8622637503078, - "volume24hUsdChange": 513.2458064809048, - "volume7dUsd": 18333.411415437477, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fql8jeu77kvt9j7a702j5plnhxaut2cy507y3cmu8m73m9apjj7q0g8lay", - "id": "1580", - "current_tick_liquidity": "43391130756109405.348859013241605919", - "token0": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", - "token0Amount": "1917112927339953000000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1538871631", - "current_sqrt_price": "0.000001236227510700200911862341680574", - "current_tick": "-107471742", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 4473.626080905961, - "liquidity24hUsdChange": -0.8030218839957675, - "volume24hUsd": 7828.5451866922895, - "volume24hUsdChange": -30.172935146856705, - "volume7dUsd": 40010.07043157418, - "taker_fee": "0.001000000000000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "613", + "id": "766", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/613", - "amount": "2703081089200584652247" + "denom": "gamm/pool/766", + "amount": "581856980238269573803" }, - "liquidityUsd": 4452.489517208287, - "liquidity24hUsdChange": -8.505654511944888, - "volume24hUsd": 339.3677249718668, - "volume24hUsdChange": -1.9490975401163249, - "volume7dUsd": 3800.4558118902946, + "liquidityUsd": 3343.340341825923, + "liquidity24hUsdChange": -3.3215433058432513, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 4.666811148512287, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", - "amount": "141474889051" + "denom": "ibc/1DE9A32D603EE05E9B8619DF24D90FD518C932AE0B5B3209A986B7262DBADE2A", + "amount": "10550552199373" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "1735056389" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "183656752650" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "851", + "id": "759", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/851", - "amount": "523826006760831538187" + "denom": "gamm/pool/759", + "amount": "415608069123902460822" }, - "liquidityUsd": 4445.620310080782, - "liquidity24hUsdChange": -6.057371626839197, - "volume24hUsd": 117.08010317593522, - "volume24hUsdChange": -26.550537908730803, - "volume7dUsd": 1572.585273714074, + "liquidityUsd": 3312.4292773005673, + "liquidity24hUsdChange": 5.364296252052854, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "566296280103417300000" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", - "amount": "2975773063" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "181958742531" }, - "weight": "365072220160000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", - "amount": "174562949555" + "denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", + "amount": "5404643577616" }, - "weight": "354334801920000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "612", + "id": "851", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/612", - "amount": "928211445267702154857222" + "denom": "gamm/pool/851", + "amount": "523826006760831538187" }, - "liquidityUsd": 4426.333882740926, - "liquidity24hUsdChange": -4.461398407747111, - "volume24hUsd": 17.66576371601982, - "volume24hUsdChange": -68.18527723260021, - "volume7dUsd": 453.03912662236814, + "liquidityUsd": 3297.7669045929833, + "liquidity24hUsdChange": -2.1402747792263757, + "volume24hUsd": 19.217367176592862, + "volume24hUsdChange": -44.42692554203313, + "volume7dUsd": 1075.5225365969427, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "9790597902" + "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "amount": "562498542210731600000" }, - "weight": "751619276800000" + "weight": "354334801920000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "52190451860" + "denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", + "amount": "3241732052" }, - "weight": "322122547200000" + "weight": "365072220160000" + }, + { + "token": { + "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "amount": "162098338229" + }, + "weight": "354334801920000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1wdpey2ncq8ql436dxneqsvtmahmmpq42utnmp4vt9u63mpns0h2qahc7gc", + "id": "1427", + "current_tick_liquidity": "7829386930483658.122342607135784527", + "token0": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "token0Amount": "42643892715717010000", + "token1": "uosmo", + "token1Amount": "2029330084", + "current_sqrt_price": "0.000006131636676645722375631256660224", + "current_tick": "-96240304", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 3278.6607284811216, + "liquidity24hUsdChange": 190.8112679353647, + "volume24hUsd": 8451.024904868094, + "volume24hUsdChange": 553.6599395215591, + "volume7dUsd": 40281.551959531156, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1562", + "id": "1529", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1562", - "amount": "102181747458725750346" + "denom": "gamm/pool/1529", + "amount": "101003851991201118005" }, - "liquidityUsd": 4410.871318440022, - "liquidity24hUsdChange": -4.433463158672691, - "volume24hUsd": 32.90728571256781, - "volume24hUsdChange": 55.971358196710256, - "volume7dUsd": 2856.091873662413, + "liquidityUsd": 3225.7016936903083, + "liquidity24hUsdChange": -6.082364291333466, + "volume24hUsd": 141.82207682294603, + "volume24hUsdChange": -48.16167495622041, + "volume7dUsd": 7439.111903221492, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", - "amount": "244729049521236620000" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "248110248403" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "59148731425" + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "amount": "254955041888464500" }, "weight": "536870912000000" } @@ -12415,23 +12622,23 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1clh353m53qzyzh03xlsg5nc8s4qnlksswx7q7q9x4fmqn4us2dasxercvl", - "id": "1437", - "current_tick_liquidity": "1567874790891.090129582676516250", - "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token0Amount": "1312130", + "address": "osmo1fql8jeu77kvt9j7a702j5plnhxaut2cy507y3cmu8m73m9apjj7q0g8lay", + "id": "1580", + "current_tick_liquidity": "132931809395848.078720923651353944", + "token0": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", + "token0Amount": "2811027008514333000000", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "3734625879", - "current_sqrt_price": "26.353211351955979198116605116005925041", - "current_tick": "23944917", + "token1Amount": "7237987", + "current_sqrt_price": "0.000001054431570804175645373155656340", + "current_tick": "-107888175", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 4397.398594320196, - "liquidity24hUsdChange": -70.4508704735946, - "volume24hUsd": 47867.1285616611, - "volume24hUsdChange": -12.393965605754465, - "volume7dUsd": 286437.55648534896, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 3158.2457314889953, + "liquidity24hUsdChange": 87.15681411651751, + "volume24hUsd": 2534.7606103479784, + "volume24hUsdChange": 2506.1755446863503, + "volume7dUsd": 12788.345187371797, "taker_fee": "0.001000000000000000" }, { @@ -12446,24 +12653,24 @@ "denom": "gamm/pool/761", "amount": "434332172868223505373" }, - "liquidityUsd": 4391.0928325721925, - "liquidity24hUsdChange": -14.517291702118843, - "volume24hUsd": 273.2120135018264, - "volume24hUsdChange": 54790.03084845617, - "volume7dUsd": 419.44871845101835, + "liquidityUsd": 3050.3273344989316, + "liquidity24hUsdChange": -3.321543305843248, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.02409764793168586, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "167588407558" + "amount": "167560928741" }, "weight": "5368709120" }, { "token": { "denom": "ibc/8A07D4BD40E0F44ECFDF360F7EA7008B288926FB87C54489FE54DB81A5340E0C", - "amount": "6409124113642" + "amount": "6410178328105" }, "weight": "5368709120" } @@ -12472,55 +12679,76 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1drzeqwvw53vytc0sqzd66cm0nnnt43nm074eylmkulhv78j76ssq8halsu", - "id": "1350", - "current_tick_liquidity": "2391005436294071.184597927431055082", - "token0": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", - "token0Amount": "6140092100824613000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "809806626", - "current_sqrt_price": "0.000024041880604668233059699361909398", - "current_tick": "-85219880", + "address": "osmo18kekvh8aggm6dhpswwtdj092cr7nu9erhyqx2c95srzyjlgy755q0ej7ua", + "id": "1299", + "current_tick_liquidity": "1219240738.941274068656234948", + "token0": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "token0Amount": "31369483955", + "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "token1Amount": "78827515", + "current_sqrt_price": "0.096912649539469492938853657572353376", + "current_tick": "-18607939", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 3009.138420132287, + "liquidity24hUsdChange": -6.574981414739614, + "volume24hUsd": 1138.4556457230617, + "volume24hUsdChange": -7.6570485192804405, + "volume7dUsd": 28640.73332367732, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1d8n6xjp9lx3fvnfkn80cqjjdgqjgnchr082l8gv50j2r99awwvgq3mqn65", + "id": "1151", + "current_tick_liquidity": "870632830266.002964027088053584", + "token0": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", + "token0Amount": "33560187110541", + "token1": "uosmo", + "token1Amount": "2195858640", + "current_sqrt_price": "0.005808755461881298937258273313255546", + "current_tick": "-42625836", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 4342.285132328797, - "liquidity24hUsdChange": -2.242430130010759, - "volume24hUsd": 3804.7259770733913, - "volume24hUsdChange": 26.137926164424368, - "volume7dUsd": 16065.026372510742, + "liquidityUsd": 3003.1395374793365, + "liquidity24hUsdChange": -3.265522621214836, + "volume24hUsd": 85.44834848852067, + "volume24hUsdChange": 80.17893453031817, + "volume7dUsd": 10839.131221158217, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1179", + "id": "1573", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1179", - "amount": "105943109129763350360777" + "denom": "gamm/pool/1573", + "amount": "5671648905038042591" }, - "liquidityUsd": 4252.474760294224, - "liquidity24hUsdChange": -3.0881505360177797, - "volume24hUsd": 209.7642469650577, - "volume24hUsdChange": 26.10806484586794, - "volume7dUsd": 1402.8514862453999, + "liquidityUsd": 2991.111124800188, + "liquidity24hUsdChange": -42.2723926275968, + "volume24hUsd": 1577.9217250642073, + "volume24hUsdChange": 2193.70782315099, + "volume7dUsd": 4579.202851560474, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", - "amount": "863191576752317100000" + "denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", + "amount": "1238743221853" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1657114177" + "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "amount": "27408406882" }, "weight": "536870912000000" } @@ -12529,91 +12757,91 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "858", + "id": "613", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/858", - "amount": "647557257542878002878860" + "denom": "gamm/pool/613", + "amount": "2570853571920981003125" }, - "liquidityUsd": 4182.641859289587, - "liquidity24hUsdChange": -10.09408154053787, - "volume24hUsd": 141.09412363544254, - "volume24hUsdChange": -82.79361508396877, - "volume7dUsd": 4386.56382874447, + "liquidityUsd": 2935.510607404327, + "liquidity24hUsdChange": -16.38201195908157, + "volume24hUsd": 1417.9953157585458, + "volume24hUsdChange": 584.6615258369109, + "volume7dUsd": 15866.2353596577, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06", - "amount": "6363091117732495000000000" + "denom": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", + "amount": "137629616307" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1629901531" + "amount": "1626642259" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1d8n6xjp9lx3fvnfkn80cqjjdgqjgnchr082l8gv50j2r99awwvgq3mqn65", - "id": "1151", - "current_tick_liquidity": "2198090819713.494306012052293457", - "token0": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", - "token0Amount": "57027285819598", - "token1": "uosmo", - "token1Amount": "1347297988", - "current_sqrt_price": "0.005721426191738254607274677523993370", - "current_tick": "-42726529", + "address": "osmo1juq05cdfez9mfagmz4ttdf68n2p98stztatgn2e9xyw3jjp48mvsf8xx2r", + "id": "1159", + "current_tick_liquidity": "4407222363.925938062643614646", + "token0": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", + "token0Amount": "13358501313", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1439668876", + "current_sqrt_price": "0.328943799032318744122687644518369625", + "current_tick": "-8917960", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 4123.962041812845, - "liquidity24hUsdChange": -4.838159816100541, - "volume24hUsd": 63.15853601491899, - "volume24hUsdChange": -81.48730632147902, - "volume7dUsd": 19961.50112427808, + "liquidityUsd": 2897.9552232237857, + "liquidity24hUsdChange": 0.4368732760701175, + "volume24hUsd": 247.86494939893316, + "volume24hUsdChange": -22.346849192042857, + "volume7dUsd": 7127.294878039909, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1402", + "id": "879", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.060000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1402", - "amount": "1429053591774210684910" + "denom": "gamm/pool/879", + "amount": "60718978342045198408" }, - "liquidityUsd": 4106.1342832945265, - "liquidity24hUsdChange": -13.261824441891749, - "volume24hUsd": 20.649130450288304, - "volume24hUsdChange": null, - "volume7dUsd": 402.4022147558005, + "liquidityUsd": 2884.7846506742226, + "liquidity24hUsdChange": -1.5928156520789203, + "volume24hUsd": 143.45331763070234, + "volume24hUsdChange": 20.35320671307337, + "volume7dUsd": 4134.372420715672, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "amount": "1088301405974" + "denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + "amount": "1458222545223349200000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1645227120" + "amount": "1598533696" }, "weight": "536870912000000" } @@ -12622,34 +12850,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "670", + "id": "910", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/670", - "amount": "10288358134544959279895708" + "denom": "gamm/pool/910", + "amount": "265006692607742795672" }, - "liquidityUsd": 4064.7307729078443, - "liquidity24hUsdChange": -2.2553016013767753, - "volume24hUsd": 85.7293881038832, - "volume24hUsdChange": 9.761271836721063, - "volume7dUsd": 919.8977631897825, + "liquidityUsd": 2852.62173835417, + "liquidity24hUsdChange": -2.8119538164160867, + "volume24hUsd": 18.47661139421251, + "volume24hUsdChange": -15.733062448809898, + "volume7dUsd": 1164.9901200174638, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "187302860" + "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", + "amount": "918854901408" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "2041034018" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "1062884532350" }, "weight": "536870912000000" } @@ -12658,34 +12886,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1527", + "id": "1562", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1527", - "amount": "100026961092372259352" + "denom": "gamm/pool/1562", + "amount": "102238418458700103186" }, - "liquidityUsd": 3842.266169456313, - "liquidity24hUsdChange": -5.854978368903366, - "volume24hUsd": 401.43335689139303, - "volume24hUsdChange": 0.19145065542855666, - "volume7dUsd": 3077.776307856745, + "liquidityUsd": 2787.6585092481173, + "liquidity24hUsdChange": -7.694639110598998, + "volume24hUsd": 18.461679427465377, + "volume24hUsdChange": -81.32638612771272, + "volume7dUsd": 4130.058943355149, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "207022569302" + "denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", + "amount": "254943001108210640000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "68435233381" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "57142342103" }, "weight": "536870912000000" } @@ -12694,142 +12922,142 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "909", + "id": "1527", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/909", - "amount": "4280920928084332270422" + "denom": "gamm/pool/1527", + "amount": "100026961092372259352" }, - "liquidityUsd": 3808.4570519999997, - "liquidity24hUsdChange": 4.85643930200994, - "volume24hUsd": 123.20438232946795, - "volume24hUsdChange": 12020.698965796399, - "volume7dUsd": 132.8858692719747, + "liquidityUsd": 2757.381301184643, + "liquidity24hUsdChange": -4.221198897910978, + "volume24hUsd": 207.75516089102754, + "volume24hUsdChange": -30.68745342013174, + "volume7dUsd": 3509.0525089281296, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1904228526" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "210782437380" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D38BB3DD46864694F009AF01DA5A815B3A875F8CC52FF5679BFFCC35DC7451D5", - "amount": "10460989895192697000000" + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "amount": "67688251354" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "910", + "id": "858", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/910", - "amount": "265006692607742795672" + "denom": "gamm/pool/858", + "amount": "645354211758182477787788" }, - "liquidityUsd": 3794.354829339808, - "liquidity24hUsdChange": -7.674658030845424, - "volume24hUsd": 48.62311341164549, - "volume24hUsdChange": 228.1986196351359, - "volume7dUsd": 307.72229155711096, + "liquidityUsd": 2704.170690561391, + "liquidity24hUsdChange": -3.3646563504007547, + "volume24hUsd": 0.40160511583614195, + "volume24hUsdChange": -31.124040824770994, + "volume7dUsd": 1141.669741299878, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", - "amount": "925280010808" + "denom": "ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06", + "amount": "6879138353806018000000000" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "1054016285437" + "denom": "uosmo", + "amount": "1498450835" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "759", + "id": "1543", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/759", - "amount": "369174580690014989853" + "denom": "gamm/pool/1543", + "amount": "100477652518981813602" }, - "liquidityUsd": 3764.668359222849, - "liquidity24hUsdChange": -4.632901158161729, - "volume24hUsd": 3.5628395463542386, - "volume24hUsdChange": -98.21856971288517, - "volume7dUsd": 738.8613453600842, + "liquidityUsd": 2684.985508954685, + "liquidity24hUsdChange": -3.2125411391353156, + "volume24hUsd": 0.9294437562741746, + "volume24hUsdChange": -91.58889492780837, + "volume7dUsd": 659.675797142599, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "143680582343" + "denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", + "amount": "4515115913105303000000" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", - "amount": "5398667458410" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "206112649138" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "935", + "id": "706", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/935", - "amount": "100332837943348018373" + "denom": "gamm/pool/706", + "amount": "154786151160826655034" }, - "liquidityUsd": 3674.681823097443, - "liquidity24hUsdChange": -4.625215344977819, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 71.35286882050372, + "liquidityUsd": 2678.058901976673, + "liquidity24hUsdChange": -1.308360232766843, + "volume24hUsd": 81.70302232179407, + "volume24hUsdChange": -31.032421911584684, + "volume7dUsd": 3247.5505247457104, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", - "amount": "11166728522101" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "2024777221" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1431958492" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1335861021" }, "weight": "536870912000000" } @@ -12837,113 +13065,90 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1vf9ye5yvc98g4fdtx42gvghx6yasyzsmds6sdkkc23z83qq0m5js3yl0xt", - "id": "1268", - "current_tick_liquidity": "316558618529.663380368155394873", - "token0": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "token0Amount": "1533904432", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "2095400882", - "current_sqrt_price": "0.999651301029410806453291631970718817", - "current_tick": "-6973", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 3623.7716618350155, - "liquidity24hUsdChange": -0.5033541492979028, - "volume24hUsd": 2309.0276683649754, - "volume24hUsdChange": -27.460583336795153, - "volume7dUsd": 20477.852031311762, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1543", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "939", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1543", - "amount": "100477652518981813602" + "denom": "gamm/pool/939", + "amount": "512443283811611449294" }, - "liquidityUsd": 3564.8605739601635, - "liquidity24hUsdChange": -5.566134374548137, - "volume24hUsd": 10.387294753594407, - "volume24hUsdChange": -95.1032791339665, - "volume7dUsd": 334.93036764257494, + "liquidityUsd": 2649.5039695295472, + "liquidity24hUsdChange": 0.15002131547097558, + "volume24hUsd": 229.71804981653062, + "volume24hUsdChange": 482.8256324586814, + "volume7dUsd": 11955.989918059535, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", - "amount": "4838021857445372000000" - }, - "weight": "536870912000000" + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "1282020569" }, { - "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "192263056240" - }, - "weight": "536870912000000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1365248040" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1cmaxwhqczlxeqwzxwm0dhyq2pw0a84jyzuqa56el8fmmhg4rmvtskzu5vy", - "id": "1500", - "current_tick_liquidity": "56132601206.322563141661433496", - "token0": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", - "token0Amount": "20519502742", + "address": "osmo1jna0045mpy05wgjgydpkxyu578a0ehtuggu3mhkxz93n4cqychmscppd9y", + "id": "1474", + "current_tick_liquidity": "46432121461.599772106218587924", + "token0": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", + "token0Amount": "627638220", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "772897094", - "current_sqrt_price": "0.367377618136624307290415227019418091", - "current_tick": "-8650337", + "token1Amount": "2006142564", + "current_sqrt_price": "0.996348527475776144964109179794414729", + "current_tick": "-72897", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 3544.8294126128444, - "liquidity24hUsdChange": -1.8422546927578651, - "volume24hUsd": 1314.2527938787266, - "volume24hUsdChange": 148.38824578515909, - "volume7dUsd": 5414.720625836802, + "spread_factor": "0.000100000000000000", + "liquidityUsd": 2631.8507247919397, + "liquidity24hUsdChange": 61.595692516428294, + "volume24hUsd": 3515.8776826321246, + "volume24hUsdChange": -68.07919952908019, + "volume7dUsd": 89305.30383397738, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1629", + "id": "1179", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1629", - "amount": "1308418633367084079398" + "denom": "gamm/pool/1179", + "amount": "95122395184798729692845" }, - "liquidityUsd": 3534.676479199805, - "liquidity24hUsdChange": -1.9189289274539845, - "volume24hUsd": 34.72407306384265, - "volume24hUsdChange": -88.70847652491801, - "volume7dUsd": 635.3786374708936, + "liquidityUsd": 2593.9252960637855, + "liquidity24hUsdChange": -6.0696095991331305, + "volume24hUsd": 92.06449797109583, + "volume24hUsdChange": 13.273321818428169, + "volume7dUsd": 11828.043309231534, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "1813840248" + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "amount": "815408997924528400000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", - "amount": "17299037773" + "denom": "uosmo", + "amount": "1437361014" }, "weight": "536870912000000" } @@ -12952,70 +13157,91 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "879", + "id": "935", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/879", - "amount": "60718978342045198408" + "denom": "gamm/pool/935", + "amount": "100332837943348018373" }, - "liquidityUsd": 3451.4826905340838, - "liquidity24hUsdChange": -4.54920361480406, - "volume24hUsd": 60.39817377730685, - "volume24hUsdChange": 125.97493221302332, - "volume7dUsd": 410.48625067254517, + "liquidityUsd": 2578.416912413863, + "liquidity24hUsdChange": -3.3934440512774735, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 13.520507125577364, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", - "amount": "1727170671137128500000" + "denom": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", + "amount": "11191720534045" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1344981739" + "amount": "1428767418" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1cmaxwhqczlxeqwzxwm0dhyq2pw0a84jyzuqa56el8fmmhg4rmvtskzu5vy", + "id": "1500", + "current_tick_liquidity": "24496908406.315094427166112952", + "token0": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", + "token0Amount": "25191620762", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "106551851", + "current_sqrt_price": "0.300976684194753645456669668416509965", + "current_tick": "-9941304", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 2422.865070471977, + "liquidity24hUsdChange": -0.39429518602426145, + "volume24hUsd": 738.1430641985659, + "volume24hUsdChange": null, + "volume7dUsd": 758.20625642937, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1669", + "id": "1402", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.060000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1669", - "amount": "136798635036496350337909" + "denom": "gamm/pool/1402", + "amount": "1380716812156293521927" }, - "liquidityUsd": 3427.7000345940887, - "liquidity24hUsdChange": 123526.21786191367, - "volume24hUsd": 39.569641618847555, - "volume24hUsdChange": null, - "volume7dUsd": 39.569641618847555, + "liquidityUsd": 2397.1487368450958, + "liquidity24hUsdChange": -8.891404820919755, + "volume24hUsd": 74.13681761135558, + "volume24hUsdChange": 143.11343515722794, + "volume7dUsd": 268.3677007889731, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "1723935179" + "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "amount": "1232434632546" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "amount": "149394850879232370" + "denom": "uosmo", + "amount": "1369052877" }, "weight": "536870912000000" } @@ -13034,24 +13260,24 @@ "denom": "gamm/pool/765", "amount": "420633460064811409396" }, - "liquidityUsd": 3414.694903573588, - "liquidity24hUsdChange": -4.783196051252754, - "volume24hUsd": 0.14213552238045837, - "volume24hUsdChange": null, - "volume7dUsd": 211.3022736367954, + "liquidityUsd": 2372.08836566879, + "liquidity24hUsdChange": -3.321543305843279, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.41466137432330047, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/423967B46B1A51D78619085105B04FCFA14F7CBC0BE7539A316B2DCDFC7D8C07", - "amount": "7734273350971" + "amount": "7735453900193" }, "weight": "5368709120" }, { "token": { "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "130323658143" + "amount": "130303828416" }, "weight": "5368709120" } @@ -13060,34 +13286,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1560", + "id": "918", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1560", - "amount": "100031082179441924952" + "denom": "gamm/pool/918", + "amount": "121920077069898310341" }, - "liquidityUsd": 3386.711904187345, - "liquidity24hUsdChange": -5.24581541874681, - "volume24hUsd": 58.21373209293818, - "volume24hUsdChange": 64.19518821073073, - "volume7dUsd": 784.8232408624597, + "liquidityUsd": 2357.2904273298113, + "liquidity24hUsdChange": -51.93904979457484, + "volume24hUsd": 73.70464174335021, + "volume24hUsdChange": -90.94528312315579, + "volume7dUsd": 6883.117295808701, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "182046026428" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "153815271743" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "45566410352" + "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "amount": "11805038136" }, "weight": "536870912000000" } @@ -13096,154 +13322,91 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1g72hjts3qpqrjz7vpn9v4r3m6ulh3yf7k7uc7pehgjvqf8r876ts8vrqwt", - "id": "1351", - "current_tick_liquidity": "12216597393286657.842673088893828507", - "token0": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "token0Amount": "1013689834641031400000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "282405428", - "current_sqrt_price": "0.000001754126188764072245804244469758", - "current_tick": "-105923042", + "address": "osmo1yw2qywpktk9ykqvd3pxj6ydnt7su70njjltnj0ky0stxlgkkdf4qn8lus7", + "id": "1079", + "current_tick_liquidity": "28950529.472494871593511194", + "token0": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "token0Amount": "287071024", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "13735711", + "current_sqrt_price": "2.838054286066734113580766836787619708", + "current_tick": "7054552", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 3385.329490436085, - "liquidity24hUsdChange": -2.4418559105004456, - "volume24hUsd": 2619.6769772925018, - "volume24hUsdChange": 32.60207361042588, - "volume7dUsd": 13450.280680036667, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 2326.871665151108, + "liquidity24hUsdChange": -1.164828916812039, + "volume24hUsd": 9.198285630427563, + "volume24hUsdChange": -71.99558359173996, + "volume7dUsd": 33222.97999824722, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1561", + "id": "1560", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1561", - "amount": "100052293089612915304" + "denom": "gamm/pool/1560", + "amount": "100031082179441924952" }, - "liquidityUsd": 3379.180056837663, - "liquidity24hUsdChange": -5.2495637577471275, - "volume24hUsd": 52.9199573477791, - "volume24hUsdChange": -25.6989374370459, - "volume7dUsd": 1034.9832872458423, + "liquidityUsd": 2298.267956079848, + "liquidity24hUsdChange": -5.987490990336384, + "volume24hUsd": 94.76603340908554, + "volume24hUsdChange": -38.34131289217895, + "volume7dUsd": 806.6027630697683, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "181770991053" + "amount": "176677193217" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "45432794087" + "amount": "47043661808" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1lq8ycun4jyw6jam5fhlqazrwr74ay80yadk2khg5k2mwke057lyqrsp53w", - "id": "1447", - "current_tick_liquidity": "23660494619.541547196428538116", - "token0": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "token0Amount": "33922746722", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "989101412", - "current_sqrt_price": "0.265410676215794751395382818483145517", - "current_tick": "-11955718", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 3374.011647212063, - "liquidity24hUsdChange": 0.47467996757539244, - "volume24hUsd": 400.23736293647755, - "volume24hUsdChange": -58.45522504122995, - "volume7dUsd": 5289.837556317382, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo136t8psgf50wpcjdcdcdvez75xus35glwtc050lz8xwdp3etcpgysn7lahr", - "id": "1502", - "current_tick_liquidity": "86942854998.137713619772254649", - "token0": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", - "token0Amount": "188775797738", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "363474924", - "current_sqrt_price": "0.126773107283480734803578402405022708", - "current_tick": "-17392858", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 3368.529332516251, - "liquidity24hUsdChange": -4.70899635560969, - "volume24hUsd": 1626.9791912953815, - "volume24hUsdChange": -36.2440402895655, - "volume7dUsd": 11305.931402646647, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1juq05cdfez9mfagmz4ttdf68n2p98stztatgn2e9xyw3jjp48mvsf8xx2r", - "id": "1159", - "current_tick_liquidity": "4403112990.161457138171348068", - "token0": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", - "token0Amount": "11493486246", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1672031338", - "current_sqrt_price": "0.381878411700317440390184302604864360", - "current_tick": "-8541689", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 3335.974142163991, - "liquidity24hUsdChange": -6.037833980456396, - "volume24hUsd": 384.59907312654974, - "volume24hUsdChange": 20.932802438176186, - "volume7dUsd": 2384.2111247097005, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "706", + "id": "1561", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/706", - "amount": "154786151160826655034" + "denom": "gamm/pool/1561", + "amount": "100052293089612915304" }, - "liquidityUsd": 3297.0655365996745, - "liquidity24hUsdChange": -0.8049781663535421, - "volume24hUsd": 19.69840586917475, - "volume24hUsdChange": -43.806254011409294, - "volume7dUsd": 170.96182185634683, + "liquidityUsd": 2291.974378699545, + "liquidity24hUsdChange": -5.995364436101785, + "volume24hUsd": 120.96706432173417, + "volume24hUsdChange": -27.325940542013832, + "volume7dUsd": 958.6218405866191, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "1629983978" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "176459612121" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1655179926" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "46843746271" }, "weight": "536870912000000" } @@ -13256,19 +13419,19 @@ "id": "1334", "current_tick_liquidity": "6456053514.669700073011781529", "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "token0Amount": "21130604641", + "token0Amount": "21366910318", "token1": "uosmo", - "token1Amount": "1212206087", - "current_sqrt_price": "0.252965995940256106852894500013926481", - "current_tick": "-12600821", + "token1Amount": "1191540014", + "current_sqrt_price": "0.249764923719581364062461767857821963", + "current_tick": "-12761749", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.001000000000000000", - "liquidityUsd": 3290.7678942265056, - "liquidity24hUsdChange": -5.973998473184066, - "volume24hUsd": 242.15808636119513, - "volume24hUsdChange": -18.978777065772487, - "volume7dUsd": 1869.1974635186725, + "liquidityUsd": 2269.4928370574635, + "liquidity24hUsdChange": -4.22550658777024, + "volume24hUsd": 171.25497329844777, + "volume24hUsdChange": -39.85490882634015, + "volume7dUsd": 7909.536267312397, "taker_fee": "0.001000000000000000" }, { @@ -13283,24 +13446,24 @@ "denom": "gamm/pool/1663", "amount": "206325354330708661400" }, - "liquidityUsd": 3256.3845924501666, - "liquidity24hUsdChange": -5.888944803402756, - "volume24hUsd": 60.92814400636532, - "volume24hUsdChange": 81.22438348728298, - "volume7dUsd": 127.75436945337559, + "liquidityUsd": 2256.618983725769, + "liquidity24hUsdChange": -4.160657263294816, + "volume24hUsd": 39.335437389707, + "volume24hUsdChange": 120.00401969356847, + "volume7dUsd": 901.8285996711824, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "amount": "19895178557" + "amount": "20197640642" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1264484604" + "amount": "1249706016" }, "weight": "536870912000000" } @@ -13311,95 +13474,23 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo103qel0yyplush6fzwf9l44rnyn9e5762clnlq24enw9lkm3h4yusqjyrye", "id": "1332", - "current_tick_liquidity": "10669713307.913847600721500897", + "current_tick_liquidity": "10669777544.031650129224747311", "token0": "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", - "token0Amount": "49927765155", + "token0Amount": "50109578197", "token1": "uosmo", - "token1Amount": "1259284939", - "current_sqrt_price": "0.157408925210256824281837235094203562", - "current_tick": "-16522244", + "token1Amount": "1254812426", + "current_sqrt_price": "0.156988787761689800983849858905432361", + "current_tick": "-16535453", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.005000000000000000", - "liquidityUsd": 3203.08822610538, - "liquidity24hUsdChange": 0.4355653508016372, - "volume24hUsd": 613.1526699528475, - "volume24hUsdChange": 391.4281853058959, - "volume7dUsd": 6760.410294780239, + "liquidityUsd": 2246.589909310209, + "liquidity24hUsdChange": -1.1506117985407953, + "volume24hUsd": 45.19869964908749, + "volume24hUsdChange": -46.908349590236206, + "volume7dUsd": 2345.193531047424, "taker_fee": "0.001000000000000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "757", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/757", - "amount": "333908340360817757872" - }, - "liquidityUsd": 3190.479202386685, - "liquidity24hUsdChange": -4.796990015740497, - "volume24hUsd": 0.38987664446082915, - "volume24hUsdChange": null, - "volume7dUsd": 151.8320474242489, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/051A38BBEF92B9D8293AFBE1FA293E704359E9CB28297A0FD5DBA3E9CCEE9AB1", - "amount": "5203017510718" - }, - "weight": "5368709120" - }, - { - "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "121766345933" - }, - "weight": "5368709120" - } - ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1667", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1667", - "amount": "194682487961476725500" - }, - "liquidityUsd": 3118.1451396269986, - "liquidity24hUsdChange": -2.3836332547420924, - "volume24hUsd": 64.08400802943557, - "volume24hUsdChange": -92.67800225513123, - "volume7dUsd": 970.8290740095242, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "amount": "1570477408" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "1215085993" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1530", @@ -13412,60 +13503,24 @@ "denom": "gamm/pool/1530", "amount": "100045897131742466839" }, - "liquidityUsd": 3084.3681652453306, - "liquidity24hUsdChange": -7.320223775549578, - "volume24hUsd": 48.83618684050945, - "volume24hUsdChange": -0.90519709836969, - "volume7dUsd": 525.485221742972, + "liquidityUsd": 2235.67823849662, + "liquidity24hUsdChange": -3.307842790175141, + "volume24hUsd": 22.5349660035731, + "volume24hUsdChange": -57.4495404626335, + "volume7dUsd": 891.1674364928072, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "166962765016" + "amount": "171590312967" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "854726079204" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1638", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1638", - "amount": "551036592206751477266516" - }, - "liquidityUsd": 3042.822720727767, - "liquidity24hUsdChange": -4.625215344977824, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 242.92027906059218, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", - "amount": "322250349075" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "1185734179" + "amount": "833163847740" }, "weight": "536870912000000" } @@ -13474,127 +13529,148 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1pnx5v2glx2wzmp2hzh00dv7wtvpkpj9wk93j89rz6rjsvmkjhjrslly2f4", - "id": "1349", - "current_tick_liquidity": "2362348919436719.389612633926478770", - "token0": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", - "token0Amount": "39014896787927360000", + "address": "osmo132ymzlfce8ztju4xxfmr4cycuy0szjrerfpej7mjw7nz504qlj4q26xdqd", + "id": "1594", + "current_tick_liquidity": "2760259004.530833297285334152", + "token0": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "token0Amount": "177731347", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1199976086", - "current_sqrt_price": "0.000006872995235553977625642091177844", - "current_tick": "-95276194", + "token1Amount": "315523530", + "current_sqrt_price": "3.270252097593416754910687343633538409", + "current_tick": "9069454", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 3042.259918886393, - "liquidity24hUsdChange": -2.855802589540665, - "volume24hUsd": 1276.5388188125685, - "volume24hUsdChange": -58.28362508326281, - "volume7dUsd": 13425.35102724151, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 2212.5977420639297, + "liquidity24hUsdChange": 19.77399377040588, + "volume24hUsd": 1357.0717498807355, + "volume24hUsdChange": null, + "volume7dUsd": 10571.276104378552, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "461", + "id": "757", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/461", - "amount": "1136764846247754777950" + "denom": "gamm/pool/757", + "amount": "333908340360817757872" }, - "liquidityUsd": 3025.1402838158233, - "liquidity24hUsdChange": -3.312622610577575, - "volume24hUsd": 30.092417295802363, - "volume24hUsdChange": -44.3573490581296, - "volume7dUsd": 251.94188562393103, + "liquidityUsd": 2198.925615684976, + "liquidity24hUsdChange": -3.3215433058432513, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 17.767209290393644, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "134712992359" + "denom": "ibc/051A38BBEF92B9D8293AFBE1FA293E704359E9CB28297A0FD5DBA3E9CCEE9AB1", + "amount": "5245129206073" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "1509347229" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "120791632501" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1549", + "id": "1535", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1549", - "amount": "100083433686505287596" + "denom": "gamm/pool/1535", + "amount": "100076837710441907837" }, - "liquidityUsd": 2961.753576230073, - "liquidity24hUsdChange": -0.9844790879992533, - "volume24hUsd": 187.98621207396633, - "volume24hUsdChange": 127.6375403102599, - "volume7dUsd": 998.5290933156908, + "liquidityUsd": 2173.3004316039514, + "liquidity24hUsdChange": -2.328536450643226, + "volume24hUsd": 41.332866201098575, + "volume24hUsdChange": 619.0053491719644, + "volume7dUsd": 694.651726239332, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "158740630386" + "amount": "166513059352" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", - "amount": "1545529111883051900000" + "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "amount": "322510031637" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1pmqc7pzhre58rx662xs8uqsrhgjugthtk3mgwajv99evdut92ufsd0syau", + "id": "1410", + "current_tick_liquidity": "2534410183.797252520870086132", + "token0": "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", + "token0Amount": "11420417711", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "384139838", + "current_sqrt_price": "0.346600252449893698435630450088192852", + "current_tick": "-8798683", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 2147.7492440930473, + "liquidity24hUsdChange": 0.23921335342197003, + "volume24hUsd": 730.9420202190931, + "volume24hUsdChange": null, + "volume7dUsd": 3008.4312699098823, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1535", + "id": "1544", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1535", - "amount": "100076837710441907837" + "denom": "gamm/pool/1544", + "amount": "100107489554413616398" }, - "liquidityUsd": 2955.706229890502, - "liquidity24hUsdChange": -3.0929794348072246, - "volume24hUsd": 47.545904082402856, - "volume24hUsdChange": -43.79038513888524, - "volume7dUsd": 420.63799818909547, + "liquidityUsd": 2112.7868509171763, + "liquidity24hUsdChange": -2.9889088454690347, + "volume24hUsd": 384.1519023556239, + "volume24hUsdChange": 12.249836712372044, + "volume7dUsd": 2690.4743547698595, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "159260413630" + "denom": "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", + "amount": "98886444" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "amount": "336735131586" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "162043420007" }, "weight": "536870912000000" } @@ -13603,34 +13679,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1541", + "id": "1521", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1541", - "amount": "58000000000000000000" + "denom": "gamm/pool/1521", + "amount": "103338749317009475676" }, - "liquidityUsd": 2942.448475317882, - "liquidity24hUsdChange": -3.558862425040511, - "volume24hUsd": 129.9843150931319, - "volume24hUsdChange": 330.33031793965415, - "volume7dUsd": 737.891179554111, + "liquidityUsd": 2086.3484561545542, + "liquidity24hUsdChange": -1.2948165264685076, + "volume24hUsd": 13.948322090134578, + "volume24hUsdChange": -39.85010045894373, + "volume7dUsd": 954.9158201616875, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", - "amount": "10872796596" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "161270893676" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "39511302933" + "denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", + "amount": "1564279005272456500000" }, "weight": "536870912000000" } @@ -13639,55 +13715,76 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1yw2qywpktk9ykqvd3pxj6ydnt7su70njjltnj0ky0stxlgkkdf4qn8lus7", - "id": "1079", - "current_tick_liquidity": "4554605872.007966558427876343", - "token0": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token0Amount": "128722874", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1535011817", - "current_sqrt_price": "3.294903852387021806624348296859683191", - "current_tick": "9085639", + "address": "osmo1g72hjts3qpqrjz7vpn9v4r3m6ulh3yf7k7uc7pehgjvqf8r876ts8vrqwt", + "id": "1351", + "current_tick_liquidity": "4256882169250794.694608705881725649", + "token0": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "token0Amount": "739614885456148400000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "498365150", + "current_sqrt_price": "0.000001458710449497858768737426945645", + "current_tick": "-106872164", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 2926.421202605334, - "liquidity24hUsdChange": -2.065668865059079, - "volume24hUsd": 1803.4345546030738, - "volume24hUsdChange": -16.160694270326157, - "volume7dUsd": 16317.614723772696, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 2073.849349199525, + "liquidity24hUsdChange": 33.6306078252937, + "volume24hUsd": 1488.6909940883002, + "volume24hUsdChange": 137976499.68052635, + "volume7dUsd": 5676.096126970039, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1qf6fsqlfkr9wg7zjk9yw2tk3y50x07k7xmgrq6p6jzykwfc4p5gs6lzqxe", + "id": "1302", + "current_tick_liquidity": "12832584757.855864444480298898", + "token0": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "token0Amount": "194706535969", + "token1": "uosmo", + "token1Amount": "880972864", + "current_sqrt_price": "0.084971492458520032792825029021197723", + "current_tick": "-20779846", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 2063.1215618707943, + "liquidity24hUsdChange": -3.3236115830892388, + "volume24hUsd": 405.20366730067605, + "volume24hUsdChange": 30.821847087999547, + "volume7dUsd": 7351.203683192421, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1544", + "id": "1549", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1544", - "amount": "100107489554413616398" + "denom": "gamm/pool/1549", + "amount": "100083433686505287596" }, - "liquidityUsd": 2918.4613980269323, - "liquidity24hUsdChange": -2.506826991603903, - "volume24hUsd": 1636.5948428175318, - "volume24hUsdChange": 1786.7606633121677, - "volume7dUsd": 2048.724828790243, + "liquidityUsd": 2054.2909646359144, + "liquidity24hUsdChange": -2.46361666173473, + "volume24hUsd": 46.20456459765077, + "volume24hUsdChange": 7.385011912275304, + "volume7dUsd": 1680.6150219485285, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", - "amount": "100343562" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "158369031705" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "158533780284" + "denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", + "amount": "1555194430714847800000" }, "weight": "536870912000000" } @@ -13696,34 +13793,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1505", + "id": "461", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1505", - "amount": "59583131834830888919858" + "denom": "gamm/pool/461", + "amount": "1136764846247754777950" }, - "liquidityUsd": 2916.025398770119, - "liquidity24hUsdChange": -6.064645875622977, - "volume24hUsd": 84.78728705272594, - "volume24hUsdChange": null, - "volume7dUsd": 95.33140299105075, + "liquidityUsd": 2035.134800967939, + "liquidity24hUsdChange": -2.8690118602112524, + "volume24hUsd": 2.9153251695033413, + "volume24hUsdChange": -42.437700042379404, + "volume7dUsd": 367.0093499383778, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", - "amount": "51943291916" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "132577542227" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1136323506" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "1534679884" }, "weight": "536870912000000" } @@ -13731,24 +13828,24 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1qf6fsqlfkr9wg7zjk9yw2tk3y50x07k7xmgrq6p6jzykwfc4p5gs6lzqxe", - "id": "1302", - "current_tick_liquidity": "9885939962.978863062646829095", - "token0": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "token0Amount": "193506681086", - "token1": "uosmo", - "token1Amount": "866001943", - "current_sqrt_price": "0.084940084614653849038396890426667992", - "current_tick": "-20785183", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 2905.1237222742966, - "liquidity24hUsdChange": -5.321474489720328, - "volume24hUsd": 319.31294179614963, - "volume24hUsdChange": 9.843313296699808, - "volume7dUsd": 2855.1092053867915, + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1211", + "code_id": "148", + "tokens": [ + { + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "1994433858" + }, + { + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "amount": "6576142" + } + ], + "liquidityUsd": 2004.4977613942287, + "liquidity24hUsdChange": 0.30244182845468115, + "volume24hUsd": 3046.8622080498, + "volume24hUsdChange": -58.3502159095628, + "volume7dUsd": 43469.24627301032, "taker_fee": "0.001000000000000000" }, { @@ -13763,24 +13860,24 @@ "denom": "gamm/pool/1532", "amount": "100065864545311397950" }, - "liquidityUsd": 2892.2134360233513, - "liquidity24hUsdChange": -5.992627834899345, - "volume24hUsd": 46.62969047661975, - "volume24hUsdChange": -77.96805975559737, - "volume7dUsd": 2235.9025997626627, + "liquidityUsd": 1999.8357311202835, + "liquidity24hUsdChange": -1.6712885197591991, + "volume24hUsd": 55.52358544489437, + "volume24hUsdChange": -6.415982766333206, + "volume7dUsd": 1737.0910624646529, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "155485841801" + "amount": "152800682822" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", - "amount": "2844882730" + "amount": "2905649680" }, "weight": "536870912000000" } @@ -13789,34 +13886,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1531", + "id": "1286", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1531", - "amount": "100065620126374586935" + "denom": "gamm/pool/1286", + "amount": "5623306972814330366918" }, - "liquidityUsd": 2877.9833331613427, - "liquidity24hUsdChange": -6.523545547273804, - "volume24hUsd": 47.000499628297575, - "volume24hUsdChange": -66.58949258548873, - "volume7dUsd": 849.4610218280726, + "liquidityUsd": 1989.872745857518, + "liquidity24hUsdChange": -1.4653315157162776, + "volume24hUsd": 139.02036975013257, + "volume24hUsdChange": 546.1986460216979, + "volume7dUsd": 626.4419802229298, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", - "amount": "1319157427" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "1001506302" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "155793541995" + "denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", + "amount": "32370808098164" }, "weight": "536870912000000" } @@ -13825,34 +13922,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1521", + "id": "1541", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1521", - "amount": "100075020114912910583" + "denom": "gamm/pool/1541", + "amount": "58000000000000000000" }, - "liquidityUsd": 2824.9217037106628, - "liquidity24hUsdChange": -4.066409024958191, - "volume24hUsd": 45.92138481388605, - "volume24hUsdChange": -6.551463205378519, - "volume7dUsd": 446.56948590101933, + "liquidityUsd": 1965.9349577741955, + "liquidity24hUsdChange": -4.70679530939753, + "volume24hUsd": 125.4175034041746, + "volume24hUsdChange": 41.97937042264199, + "volume7dUsd": 1206.1868733236658, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "153177926467" + "denom": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", + "amount": "10690993691" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", - "amount": "1541113165470315600000" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "40298382150" }, "weight": "536870912000000" } @@ -13871,60 +13968,81 @@ "denom": "gamm/pool/1545", "amount": "100030501000020176929" }, - "liquidityUsd": 2762.612906794563, - "liquidity24hUsdChange": -5.262879423986468, - "volume24hUsd": 15.542263928058237, - "volume24hUsdChange": -1.2910026833362402, - "volume7dUsd": 220.40424290455482, + "liquidityUsd": 1930.916067520324, + "liquidity24hUsdChange": -3.2969498655980103, + "volume24hUsd": 8.802286448782958, + "volume24hUsdChange": 15.70964574740669, + "volume7dUsd": 366.95310161003033, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "105375943687" + "amount": "105400600993" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "149081275840" + "amount": "149161058159" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ww5567k7ya8g2rzfft30mgdqwy6jyfqfl60805kclwc3x44qzp6qgd3d3r", + "id": "1590", + "current_tick_liquidity": "3534595.711596772230092627", + "token0": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", + "token0Amount": "1114328216", + "token1": "uosmo", + "token1Amount": "875447199", + "current_sqrt_price": "1.074440355611669979759077709793382155", + "current_tick": "154422", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1928.1382759129474, + "liquidity24hUsdChange": 27390.94131094987, + "volume24hUsd": 121.19274291269531, + "volume24hUsdChange": null, + "volume7dUsd": 121.19274291269531, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1547", + "id": "1531", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1547", - "amount": "100078928995945128763" + "denom": "gamm/pool/1531", + "amount": "100065620126374586935" }, - "liquidityUsd": 2675.759975575239, - "liquidity24hUsdChange": -4.23781047028335, - "volume24hUsd": 30.546361249412698, - "volume24hUsdChange": -30.160774486563604, - "volume7dUsd": 355.56862975009955, + "liquidityUsd": 1917.5657439313388, + "liquidity24hUsdChange": -2.9614811795620177, + "volume24hUsd": 61.893749991487155, + "volume24hUsdChange": 30.089520615623773, + "volume7dUsd": 1784.7853273804233, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "144264427864" + "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "amount": "1398310442" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "amount": "437159458741052160000" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "147560582058" }, "weight": "536870912000000" } @@ -13932,69 +14050,71 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "939", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1546", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/939", - "amount": "512443283811611449294" + "denom": "gamm/pool/1546", + "amount": "100000060448365719252" }, - "liquidityUsd": 2648.180005896609, - "liquidity24hUsdChange": 0.15882178267006283, - "volume24hUsd": 79.90464277123564, - "volume24hUsdChange": -15.569768912528506, - "volume7dUsd": 2097.9011387295577, + "liquidityUsd": 1880.7398286234802, + "liquidity24hUsdChange": -2.168855859363243, + "volume24hUsd": 20.56353750356042, + "volume24hUsdChange": 138.13736707736172, + "volume7dUsd": 191.46863223992645, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "1224395100" + "token": { + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "145082423922" + }, + "weight": "536870912000000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1422238807" + "token": { + "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "amount": "495386092656" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1525", + "id": "1547", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1525", - "amount": "100000020900608024300" + "denom": "gamm/pool/1547", + "amount": "100078928995945128763" }, - "liquidityUsd": 2543.0037033182625, - "liquidity24hUsdChange": -6.0437102409431915, - "volume24hUsd": 68.26394545269814, - "volume24hUsdChange": 29.378152041850967, - "volume7dUsd": 770.279205122035, + "liquidityUsd": 1874.245145811526, + "liquidity24hUsdChange": -1.7015979779704475, + "volume24hUsd": 35.512476992096204, + "volume24hUsdChange": 36.768460295058745, + "volume7dUsd": 2336.808269504499, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "138303036291" + "amount": "143799418013" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "490250790830047040000" + "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "amount": "440309511229848740000" }, "weight": "536870912000000" } @@ -14003,70 +14123,112 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1546", + "id": "1525", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1546", - "amount": "100000060448365719252" + "denom": "gamm/pool/1525", + "amount": "100000020900608024300" }, - "liquidityUsd": 2535.2184235257027, - "liquidity24hUsdChange": -4.763295987770253, - "volume24hUsd": 11.427570936184548, - "volume24hUsdChange": -80.00999974999121, - "volume7dUsd": 332.8709716575431, + "liquidityUsd": 1855.7220136219614, + "liquidity24hUsdChange": -3.7251381935061016, + "volume24hUsd": 66.00173313083391, + "volume24hUsdChange": -15.760483927875047, + "volume7dUsd": 1526.1896198860024, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "136236782748" + "amount": "142367085369" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "amount": "527188169339" + "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "amount": "478297888570447200000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1mha30tw2umw75hj4846adguv7ewlamvu6e0dq8mvxczacs4q2j3qusnwvf", + "id": "1675", + "current_tick_liquidity": "3668330667032632198408.944794968569768155", + "token0": "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", + "token0Amount": "41150807287549420000", + "token1": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "token1Amount": "20443465430239954000", + "current_sqrt_price": "1.110432997150644264993094548013482598", + "current_tick": "233061", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1820.0346340930928, + "liquidity24hUsdChange": 0.7662633635048224, + "volume24hUsd": 586.0947242792504, + "volume24hUsdChange": -78.23993852778244, + "volume7dUsd": 26143.711372135764, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo136t8psgf50wpcjdcdcdvez75xus35glwtc050lz8xwdp3etcpgysn7lahr", + "id": "1502", + "current_tick_liquidity": "28080422519.898699997946080375", + "token0": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", + "token0Amount": "106789600393", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "472282491", + "current_sqrt_price": "0.111055101276609832612615441486493083", + "current_tick": "-17766677", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1792.1853227367228, + "liquidity24hUsdChange": 2.767601044100562, + "volume24hUsd": 1406.0598588361813, + "volume24hUsdChange": 262.56932777050605, + "volume7dUsd": 4952.806762064702, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1548", + "id": "1689", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1548", - "amount": "100105657400825740330" + "denom": "gamm/pool/1689", + "amount": "100000000000000000000" }, - "liquidityUsd": 2523.866526376817, - "liquidity24hUsdChange": -4.478810996701301, - "volume24hUsd": 52.92808903514903, - "volume24hUsdChange": 0.7861202894574308, - "volume7dUsd": 1599.5594912620747, + "liquidityUsd": 1784.3265678364098, + "liquidity24hUsdChange": -2.698814041289715, + "volume24hUsd": 39.15445734260356, + "volume24hUsdChange": 43.39999037408556, + "volume7dUsd": 142.1408479884279, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "136300174352" + "denom": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", + "amount": "83241488585" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "1420055849" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "893043273" }, "weight": "536870912000000" } @@ -14075,70 +14237,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "768", + "id": "1523", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/768", - "amount": "301281620691269578957" + "denom": "gamm/pool/1523", + "amount": "100142787098187956855" }, - "liquidityUsd": 2491.4225561643707, - "liquidity24hUsdChange": -4.797891034732495, - "volume24hUsd": 0.2962487410540745, - "volume24hUsdChange": -97.67108164905738, - "volume7dUsd": 94.84208553297609, + "liquidityUsd": 1778.3468087405922, + "liquidity24hUsdChange": -3.29901193736468, + "volume24hUsd": 158.44176626437527, + "volume24hUsdChange": 3.7989298236254188, + "volume7dUsd": 1960.0451784621337, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "95086474976" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "236697558" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/B3FB7128CE957DE1ADB687A919AA0786C77C62FB1280C07CDD78AEA032D56853", - "amount": "5444844654030" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "136666180669" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1342", + "id": "1667", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1342", - "amount": "7070720170422733319835" + "denom": "gamm/pool/1667", + "amount": "130437266934189406085" }, - "liquidityUsd": 2443.9743178169483, - "liquidity24hUsdChange": -2.5251930602656807, - "volume24hUsd": 207.37160831260718, - "volume24hUsdChange": 236.28535023597118, - "volume7dUsd": 5188.2967957145975, + "liquidityUsd": 1760.8378889000444, + "liquidity24hUsdChange": -1.5664205880859101, + "volume24hUsd": 63.805042495072875, + "volume24hUsdChange": -30.538503510520314, + "volume7dUsd": 2265.0375322127948, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", - "amount": "11254996971796024" + "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "amount": "879375220" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", - "amount": "38436923463" + "denom": "uosmo", + "amount": "975725761" }, "weight": "536870912000000" } @@ -14147,220 +14309,178 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "592", + "id": "1683", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/592", - "amount": "540281182414140958413" + "denom": "gamm/pool/1683", + "amount": "104582705922459224015" }, - "liquidityUsd": 2439.7355053370475, - "liquidity24hUsdChange": -4.226155636520933, - "volume24hUsd": 6.463561035700884, - "volume24hUsdChange": 107.54762303758578, - "volume7dUsd": 103.1672862571429, + "liquidityUsd": 1741.4077255527345, + "liquidity24hUsdChange": -8.318354445677361, + "volume24hUsd": 714.4859070918635, + "volume24hUsdChange": 2.784873276756705, + "volume7dUsd": 10457.545016053802, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "93061111169" + "denom": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "amount": "268098337" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "48201019731" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "872540523" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo132ymzlfce8ztju4xxfmr4cycuy0szjrerfpej7mjw7nz504qlj4q26xdqd", - "id": "1594", - "current_tick_liquidity": "11024939547.128689037631633753", - "token0": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "token0Amount": "114304789", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "790233583", - "current_sqrt_price": "3.796365640537999477598340684185744613", - "current_tick": "9441239", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 2431.296541921302, - "liquidity24hUsdChange": -0.8355541150203258, - "volume24hUsd": 2269.326031532137, - "volume24hUsdChange": -0.16532214708236512, - "volume7dUsd": 16319.910340969223, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1658", + "id": "1548", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1658", - "amount": "87608193112280698180" + "denom": "gamm/pool/1548", + "amount": "100105657400825740330" }, - "liquidityUsd": 2399.895324109276, - "liquidity24hUsdChange": -31.748560018567073, - "volume24hUsd": 604.7048686471106, - "volume24hUsdChange": -76.24090172321168, - "volume7dUsd": 5916.880142479084, + "liquidityUsd": 1734.0564257945775, + "liquidity24hUsdChange": -3.1466219340401542, + "volume24hUsd": 148.3508197549478, + "volume24hUsdChange": -60.252605632499865, + "volume7dUsd": 3361.2991319365256, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", - "amount": "15233866" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "132612710207" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "933219436" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "1475803777" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo10m20lq9samt3gq0c5tgr9yu0mhr9hurzrhkmafat33y5xsus62tsdp7vgm", - "id": "1482", - "current_tick_liquidity": "1471838697864532.338539427613522347", - "token0": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "token0Amount": "60240831377648040000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "337310407", - "current_sqrt_price": "0.000005770236294215232154942559787215", - "current_tick": "-96670438", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 2342.0710764670516, - "liquidity24hUsdChange": -5.197127544800903, - "volume24hUsd": 5625.370641770033, - "volume24hUsdChange": -22.935927500576046, - "volume7dUsd": 42251.04964317502, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1551", + "id": "768", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1551", - "amount": "100000024142790104800" + "denom": "gamm/pool/768", + "amount": "301281620691269578957" }, - "liquidityUsd": 2302.8490569523065, - "liquidity24hUsdChange": -4.284304852394722, - "volume24hUsd": 16.973191734977284, - "volume24hUsdChange": 70.96596836933496, - "volume7dUsd": 160.98169687650895, + "liquidityUsd": 1730.3868866868872, + "liquidity24hUsdChange": -3.3215433058432393, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.4590324321136093, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "123685060914" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "95053809647" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4", - "amount": "34584374918074280000000" + "denom": "ibc/B3FB7128CE957DE1ADB687A919AA0786C77C62FB1280C07CDD78AEA032D56853", + "amount": "5446721411373" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1630", + "id": "1678", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1630", - "amount": "108900299476858213953" + "denom": "gamm/pool/1678", + "amount": "106446890000964694900" }, - "liquidityUsd": 2293.895668064063, - "liquidity24hUsdChange": -11.483773016609502, - "volume24hUsd": 243.775068054726, - "volume24hUsdChange": 599.5256065160465, - "volume7dUsd": 966.5168951286827, + "liquidityUsd": 1669.6087475981174, + "liquidity24hUsdChange": -0.6505179952835167, + "volume24hUsd": 20.73734271906931, + "volume24hUsdChange": -25.845682901382972, + "volume7dUsd": 1441.8389465338316, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", - "amount": "143652153931" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "833352803" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "893890557" + "denom": "ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5", + "amount": "1962732366" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1539", + "id": "1615", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1539", - "amount": "100215184688499074458" + "denom": "gamm/pool/1615", + "amount": "5640710931071609305" }, - "liquidityUsd": 2251.509691609299, - "liquidity24hUsdChange": -4.602037507792355, - "volume24hUsd": 86.9999370059142, - "volume24hUsdChange": -49.12677687468646, - "volume7dUsd": 1650.2406415392227, + "liquidityUsd": 1658.9954446493114, + "liquidity24hUsdChange": -2.6710911694721706, + "volume24hUsd": 32.79552815067415, + "volume24hUsdChange": -66.75673307767156, + "volume7dUsd": 1080.41255035141, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "121168145214" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "16854664784694036000000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", - "amount": "484199355" + "denom": "uosmo", + "amount": "918730684" }, "weight": "536870912000000" } @@ -14379,24 +14499,24 @@ "denom": "gamm/pool/1524", "amount": "100002329257610561923" }, - "liquidityUsd": 2224.7388464887167, - "liquidity24hUsdChange": -6.560592330995943, - "volume24hUsd": 54.97216129147787, - "volume24hUsdChange": -32.785950487009906, - "volume7dUsd": 890.3971478348905, + "liquidityUsd": 1657.0218994822285, + "liquidity24hUsdChange": -1.8830535874728962, + "volume24hUsd": 63.72278852423274, + "volume24hUsdChange": 51.76218978225088, + "volume7dUsd": 1040.9929863556683, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "120611545732" + "amount": "126405234248" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "amount": "742285157" + "amount": "711457348" }, "weight": "536870912000000" } @@ -14405,169 +14525,106 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1523", + "id": "1624", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1523", - "amount": "100142787098187956855" + "denom": "gamm/pool/1624", + "amount": "925088606689881635292" }, - "liquidityUsd": 2224.1008824663536, - "liquidity24hUsdChange": -6.47334822280772, - "volume24hUsd": 38.592141689788036, - "volume24hUsdChange": -69.91199470598727, - "volume7dUsd": 934.212518244345, + "liquidityUsd": 1651.1974634913486, + "liquidity24hUsdChange": -25.514100886468754, + "volume24hUsd": 197.7405144377897, + "volume24hUsdChange": 1028.7127073190882, + "volume7dUsd": 2997.346914737356, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "269056906" + "denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "amount": "11128928763741" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "119445322447" + "denom": "uosmo", + "amount": "914971169" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1pmqc7pzhre58rx662xs8uqsrhgjugthtk3mgwajv99evdut92ufsd0syau", - "id": "1410", - "current_tick_liquidity": "5096709296.600972612644517877", - "token0": "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", - "token0Amount": "10147277174", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "563321635", - "current_sqrt_price": "0.402377449931105437873242090156873016", - "current_tick": "-8380924", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 2203.8819762917456, - "liquidity24hUsdChange": -3.348521340017975, - "volume24hUsd": 648.9039060852901, - "volume24hUsdChange": 85.5120064897047, - "volume7dUsd": 3135.5328929320326, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1jna0045mpy05wgjgydpkxyu578a0ehtuggu3mhkxz93n4cqychmscppd9y", - "id": "1474", - "current_tick_liquidity": "61909495282.133029474958117232", - "token0": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", - "token0Amount": "987660793", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1192174790", - "current_sqrt_price": "0.993936161908734777162216230857282848", - "current_tick": "-120910", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 2165.57383324355, - "liquidity24hUsdChange": -25.285993947558723, - "volume24hUsd": 11799.369666634182, - "volume24hUsdChange": 142.76416624035107, - "volume7dUsd": 39802.950805456334, - "taker_fee": "0.001000000000000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "767", + "id": "592", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/767", - "amount": "299473159795982674352" + "denom": "gamm/pool/592", + "amount": "540281182414140958413" }, - "liquidityUsd": 2096.9962528274673, - "liquidity24hUsdChange": -4.792563164359561, - "volume24hUsd": 0.18734284672555254, - "volume24hUsdChange": null, - "volume7dUsd": 177.31409919634612, + "liquidityUsd": 1647.6309097643366, + "liquidity24hUsdChange": -3.291453231226023, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 349.72245406809174, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/239A507997222805E441956EBE8087D7E2D05D6535C6D4C75EF8DCF83B3DE1A1", - "amount": "6373888227553" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "90536681232" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "80032984058" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "49583567538" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1lgusv8rqtsfdqmmepn5a55nrmwv7f7rd402lth78dxhsx0z8qzgswl3vsp", - "id": "1581", - "current_tick_liquidity": "12467564573.540686062203587900", - "token0": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", - "token0Amount": "474859875", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1059636990", - "current_sqrt_price": "1.481300752546805638464733092853930783", - "current_tick": "1194251", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 2095.5058834666793, - "liquidity24hUsdChange": -0.7828872021532778, - "volume24hUsd": 936.0505248626341, - "volume24hUsdChange": 129.81495630587708, - "volume7dUsd": 4266.416730144219, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1615", + "id": "1539", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1615", - "amount": "5640710931071609305" + "denom": "gamm/pool/1539", + "amount": "100215184688499074458" }, - "liquidityUsd": 2088.775693900002, - "liquidity24hUsdChange": -1.0346904187622878, - "volume24hUsd": 61.23079078093591, - "volume24hUsdChange": -19.41875486276142, - "volume7dUsd": 447.9842211158714, + "liquidityUsd": 1612.3135979626586, + "liquidity24hUsdChange": -2.001788673869708, + "volume24hUsd": 215.08714733333568, + "volume24hUsdChange": -3.344024137450981, + "volume7dUsd": 3550.519071883538, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "18990652128531026000000" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "124209112552" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "815025862" + "denom": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", + "amount": "477634013" }, "weight": "536870912000000" } @@ -14576,106 +14633,190 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1555", + "id": "1018", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1555", - "amount": "100000026190527539800" + "denom": "gamm/pool/1018", + "amount": "61647164603849413639" }, - "liquidityUsd": 2085.535919570044, - "liquidity24hUsdChange": -4.637664785962102, - "volume24hUsd": 12.460500438217549, - "volume24hUsdChange": 10.608598641813478, - "volume7dUsd": 375.31223466933886, + "liquidityUsd": 1569.1856688076464, + "liquidity24hUsdChange": -5.4568294144945195, + "volume24hUsd": 508.0923750562024, + "volume24hUsdChange": -31.35159904425838, + "volume7dUsd": 18700.4935074994, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "111938441695" + "denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", + "amount": "160716595073260160000000000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", - "amount": "1137681286" + "denom": "uosmo", + "amount": "869526315" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1pnx5v2glx2wzmp2hzh00dv7wtvpkpj9wk93j89rz6rjsvmkjhjrslly2f4", + "id": "1349", + "current_tick_liquidity": "789702206631633.516058183788804135", + "token0": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "token0Amount": "35527564897406066000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "346287045", + "current_sqrt_price": "0.000005829701056503675956738740236831", + "current_tick": "-96601459", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1552.6222518325576, + "liquidity24hUsdChange": -35.66018545858401, + "volume24hUsd": 1448.3548722639453, + "volume24hUsdChange": 1929.3596563343826, + "volume7dUsd": 12140.947442030276, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo10m20lq9samt3gq0c5tgr9yu0mhr9hurzrhkmafat33y5xsus62tsdp7vgm", + "id": "1482", + "current_tick_liquidity": "623490429912028.323008648342222820", + "token0": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "token0Amount": "60675854745912260000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "38727", + "current_sqrt_price": "0.000005415348563830410019757693096292", + "current_tick": "-97067400", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1551.380361244589, + "liquidity24hUsdChange": 0.525743483012123, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 4126.332886165616, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1286", + "id": "1551", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1286", - "amount": "5411594342560055242177" + "denom": "gamm/pool/1551", + "amount": "100000024142790104800" }, - "liquidityUsd": 2050.8057450339425, - "liquidity24hUsdChange": -1.3099066543460494, - "volume24hUsd": 6.100416722048717, - "volume24hUsdChange": -95.35436614493827, - "volume7dUsd": 278.1426054858243, + "liquidityUsd": 1537.3436100031684, + "liquidity24hUsdChange": -5.101676081405331, + "volume24hUsd": 14.671343491613511, + "volume24hUsdChange": 1260.9171385507796, + "volume7dUsd": 161.94141868748318, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "1035522716" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "118583153620" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/67C89B8B0A70C08F093C909A4DD996DD10E0494C87E28FD9A551697BF173D4CA", - "amount": "27953313688142" + "denom": "ibc/F16FDC11A7662B86BC0B9CE61871CBACF7C20606F95E86260FD38915184B75B4", + "amount": "36090440161179570000000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1cpxx7m3lkmf70t6j7ws4pquvmzath5z25ll22v6sf9yx89nh2j0qzfdtxe", + "id": "1131", + "current_tick_liquidity": "230373822355.514791804812831006", + "token0": "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", + "token0Amount": "23195967", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1496800486", + "current_sqrt_price": "1.001441438815986179839656681390130437", + "current_tick": "2884", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1522.425864130762, + "liquidity24hUsdChange": -24.538610546174866, + "volume24hUsd": 21.53357453434755, + "volume24hUsdChange": null, + "volume7dUsd": 8606.491578565834, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1lgusv8rqtsfdqmmepn5a55nrmwv7f7rd402lth78dxhsx0z8qzgswl3vsp", + "id": "1581", + "current_tick_liquidity": "5704627443.077655585980018300", + "token0": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", + "token0Amount": "1016935983", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "56222662", + "current_sqrt_price": "1.196110022198850786093550380382424284", + "current_tick": "430679", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1516.1222178062346, + "liquidity24hUsdChange": 5.922062972580341, + "volume24hUsd": 93.14182123619337, + "volume24hUsdChange": 2674.844680719491, + "volume7dUsd": 3841.0062679537946, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1018", + "id": "1630", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1018", - "amount": "56665566476416752693" + "denom": "gamm/pool/1630", + "amount": "104813847755115396776" }, - "liquidityUsd": 2048.8304619404876, - "liquidity24hUsdChange": -5.819586715949573, - "volume24hUsd": 1527.3621378620653, - "volume24hUsdChange": 92.89765037009813, - "volume7dUsd": 6979.306497911789, + "liquidityUsd": 1504.8134163137493, + "liquidity24hUsdChange": -6.203662592653597, + "volume24hUsd": 28.100668986646316, + "volume24hUsdChange": 3.4412293229311617, + "volume7dUsd": 728.0838022852006, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", - "amount": "144783620811481000000000000" + "denom": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", + "amount": "145260273173" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "798392982" + "amount": "833855987" }, "weight": "536870912000000" } @@ -14684,34 +14825,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1550", + "id": "1555", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1550", - "amount": "100000023275130193700" + "denom": "gamm/pool/1555", + "amount": "100000026190527539800" }, - "liquidityUsd": 2035.4286273039402, - "liquidity24hUsdChange": -6.245490252701432, - "volume24hUsd": 15.379616475887833, - "volume24hUsdChange": -73.0560661225341, - "volume7dUsd": 246.64916245025563, + "liquidityUsd": 1498.44178748947, + "liquidity24hUsdChange": -2.7927483553527828, + "volume24hUsd": 13.16288293599054, + "volume24hUsdChange": -40.47274804595016, + "volume7dUsd": 637.2249108259215, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "110085498628" + "amount": "115810874428" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", - "amount": "1469460414" + "denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", + "amount": "1101400012" }, "weight": "536870912000000" } @@ -14720,34 +14861,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1528", + "id": "1557", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1528", - "amount": "100007007969363858466" + "denom": "gamm/pool/1557", + "amount": "100000118712230607792" }, - "liquidityUsd": 2023.290181195723, - "liquidity24hUsdChange": -6.12207321089458, - "volume24hUsd": 27.236000293534588, - "volume24hUsdChange": 38.340849363299384, - "volume7dUsd": 533.0839489430613, + "liquidityUsd": 1496.053258531073, + "liquidity24hUsdChange": -4.436322191734112, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 399.7259556061944, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "109914803323" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "10192772721" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "amount": "30172462146436217000" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "115797294017" }, "weight": "536870912000000" } @@ -14756,76 +14897,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1cpxx7m3lkmf70t6j7ws4pquvmzath5z25ll22v6sf9yx89nh2j0qzfdtxe", - "id": "1131", - "current_tick_liquidity": "307161757501.321035354092949425", - "token0": "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", - "token0Amount": "690741940", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1328763207", - "current_sqrt_price": "0.999280926585704635909102442002080017", - "current_tick": "-14377", + "address": "osmo1fzrf6klmqkdehg4e5qstj2gq036fdauslxdyt4adz8lu5kk7kmqq6mpguh", + "id": "1478", + "current_tick_liquidity": "165129001.515941372557143663", + "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "token0Amount": "153594761", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "26228982", + "current_sqrt_price": "3.088223739017317457506369985756560913", + "current_tick": "8537125", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 2015.8150183476132, - "liquidity24hUsdChange": -0.1418820909590234, - "volume24hUsd": 1521.5008007892088, - "volume24hUsdChange": 3323.7156445524065, - "volume7dUsd": 103596.67952042042, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1211", - "code_id": "148", - "tokens": [ - { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "706034" - }, - { - "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "amount": "2000303966" - } - ], - "liquidityUsd": 1998.338123442737, - "liquidity24hUsdChange": -0.2145401360731713, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "spread_factor": "0.000100000000000000", + "liquidityUsd": 1492.550153331041, + "liquidity24hUsdChange": 12.086434196894103, + "volume24hUsd": 3068.0319259172597, + "volume24hUsdChange": 129.01405753102551, + "volume7dUsd": 12534.58967192925, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1533", + "id": "1528", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1533", - "amount": "100000000000000000000" + "denom": "gamm/pool/1528", + "amount": "100007007969363858466" }, - "liquidityUsd": 1983.3015372875734, - "liquidity24hUsdChange": -4.673286406796677, - "volume24hUsd": 28.54185685640359, - "volume24hUsdChange": -46.99610187075017, - "volume7dUsd": 414.92174046984576, + "liquidityUsd": 1491.9442563023167, + "liquidity24hUsdChange": -1.3412019815896015, + "volume24hUsd": 163.85626565639794, + "volume24hUsdChange": 206.78248099768842, + "volume7dUsd": 2689.868701150153, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "107213341418" + "amount": "114238600069" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "13624474112571523000000" + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "amount": "29250325225395954000" }, "weight": "536870912000000" } @@ -14834,34 +14954,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1538", + "id": "1673", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, - "total_shares": { - "denom": "gamm/pool/1538", - "amount": "100000024489126630000" + "total_shares": { + "denom": "gamm/pool/1673", + "amount": "143642255571475834110" }, - "liquidityUsd": 1969.8602690846126, - "liquidity24hUsdChange": -2.137020128557474, - "volume24hUsd": 536.8858484155708, - "volume24hUsdChange": 147.5798831647662, - "volume7dUsd": 2383.789868427272, + "liquidityUsd": 1482.2329861343997, + "liquidity24hUsdChange": -10.969811839242169, + "volume24hUsd": 445.24815466790113, + "volume24hUsdChange": -11.299586025712959, + "volume7dUsd": 12602.554036493493, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", - "amount": "7061957083" + "denom": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "amount": "228490608" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "105599312249" + "denom": "uosmo", + "amount": "822851094" }, "weight": "536870912000000" } @@ -14878,26 +14998,26 @@ }, "total_shares": { "denom": "gamm/pool/905", - "amount": "42281325990842041588" + "amount": "42282189194291736384" }, - "liquidityUsd": 1964.0833221090834, - "liquidity24hUsdChange": -4.763176547294042, - "volume24hUsd": 0.026809063051158998, - "volume24hUsdChange": 12.21633723544403, - "volume7dUsd": 3.128258018817524, + "liquidityUsd": 1463.048005562936, + "liquidity24hUsdChange": -4.313025034920007, + "volume24hUsd": 0.2016014274968757, + "volume24hUsdChange": null, + "volume7dUsd": 4.89422212306115, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", - "amount": "22447154" + "amount": "21219372" }, "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "765368521" + "amount": "810712694" }, "weight": "1073741824" } @@ -14906,91 +15026,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1631", + "id": "767", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1631", - "amount": "104678935699453093282" + "denom": "gamm/pool/767", + "amount": "299473159795982674352" }, - "liquidityUsd": 1956.7248608148748, - "liquidity24hUsdChange": -4.625459253300707, + "liquidityUsd": 1456.6753756550188, + "liquidity24hUsdChange": -3.3215433058432593, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 48.301485336701596, + "volume24hUsdChange": 0, + "volume7dUsd": 0.03060504588781463, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", - "amount": "80379291100" + "denom": "ibc/239A507997222805E441956EBE8087D7E2D05D6535C6D4C75EF8DCF83B3DE1A1", + "amount": "6375067142156" }, - "weight": "526133493760000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "777751080" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "80018257732" }, - "weight": "547608330240000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1lls6rflu3209aur06ku69d4mk2x7rjgu3uhj58gwg72s057x3cds2ja0d0", - "id": "1144", - "current_tick_liquidity": "104011414228.931649589729158027", - "token0": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", - "token0Amount": "1266872941778", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "842795890", - "current_sqrt_price": "0.029680762891382622523102549927898928", - "current_tick": "-28190524", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1948.8500566721136, - "liquidity24hUsdChange": -1.6088035238380562, - "volume24hUsd": 1607.4299452686846, - "volume24hUsdChange": 232.183679495839, - "volume7dUsd": 4383.802975166488, - "taker_fee": "0.001000000000000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1553", + "id": "1533", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1553", - "amount": "100000025368815029100" + "denom": "gamm/pool/1533", + "amount": "100000000000000000000" }, - "liquidityUsd": 1939.914233393244, - "liquidity24hUsdChange": -3.5762848609373945, - "volume24hUsd": 33.63657602183345, - "volume24hUsdChange": 21.481759196152343, - "volume7dUsd": 257.23340505195193, + "liquidityUsd": 1454.2109666302867, + "liquidity24hUsdChange": -4.557046159426903, + "volume24hUsd": 76.81490493644719, + "volume24hUsdChange": 71.28239074205979, + "volume7dUsd": 680.7085566800741, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "104730769945" + "amount": "111383657644" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", - "amount": "443709903" + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "13151414814304815000000" }, "weight": "536870912000000" } @@ -14999,39 +15098,39 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "760", + "id": "1550", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/760", - "amount": "262428151732625930310" + "denom": "gamm/pool/1550", + "amount": "100000023275130193700" }, - "liquidityUsd": 1917.707272941147, - "liquidity24hUsdChange": -4.7973522875300505, - "volume24hUsd": 0.24405695572803657, - "volume24hUsdChange": null, - "volume7dUsd": 138.94926036022193, + "liquidityUsd": 1442.5024675765517, + "liquidity24hUsdChange": -3.8747064974772467, + "volume24hUsd": 26.971572240611618, + "volume24hUsdChange": -30.098928835130728, + "volume7dUsd": 456.34272146998546, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "73190324206" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "111038273043" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/C9864D1B9623F703C75BBF72B7FF8A7317E1535C96538D21467A4311246DC3B5", - "amount": "5342225740021" + "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "amount": "1459109517" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", @@ -15040,179 +15139,143 @@ "tokens": [ { "denom": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", - "amount": "11875610904" + "amount": "5341920847" }, { "denom": "uosmo", - "amount": "1480599133" + "amount": "790709433" } ], - "liquidityUsd": 1899.7515471729655, - "liquidity24hUsdChange": -9.438360252335846, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 1436.3351757155142, + "liquidity24hUsdChange": 1.6672448959604347, + "volume24hUsd": 179.63150555524203, + "volume24hUsdChange": -48.973543468902506, + "volume7dUsd": 13999.876653064486, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "183", + "id": "1631", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/183", - "amount": "9181664647926809591041" + "denom": "gamm/pool/1631", + "amount": "104678935699453093282" }, - "liquidityUsd": 1897.4164600679317, - "liquidity24hUsdChange": -4.550246944925827, - "volume24hUsd": 0.9340684145579958, - "volume24hUsdChange": -99.4669431808615, - "volume7dUsd": 290.4833822070656, + "liquidityUsd": 1424.5216074397863, + "liquidity24hUsdChange": -0.9351289276317729, + "volume24hUsd": 18.186965367947835, + "volume24hUsdChange": null, + "volume7dUsd": 29.47528694666803, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "87605386" + "denom": "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", + "amount": "77535745602" }, - "weight": "536870912000000" + "weight": "526133493760000" }, { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "584272030168" + "denom": "uosmo", + "amount": "805151506" }, - "weight": "536870912000000" + "weight": "547608330240000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1554", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1554", - "amount": "100000022328565689300" - }, - "liquidityUsd": 1897.2026162503817, - "liquidity24hUsdChange": -6.685135623995173, - "volume24hUsd": 13.765884051710707, - "volume24hUsdChange": -82.15127421382562, - "volume7dUsd": 455.150350286117, - "taker_fee": "0.001000000000000000", - "pool_assets": [ + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1692", + "code_id": "666", + "tokens": [ { - "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "102621137976" - }, - "weight": "536870912000000" + "denom": "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", + "amount": "5744731078" }, { - "token": { - "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", - "amount": "65811549820" - }, - "weight": "536870912000000" + "denom": "uosmo", + "amount": "690662173" } ], - "total_weight": "1073741824000000" + "liquidityUsd": 1409.703621327712, + "liquidity24hUsdChange": -3.523998291904355, + "volume24hUsd": 71.25402065977207, + "volume24hUsdChange": 170.395239189055, + "volume7dUsd": 141.97040591067153, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1429", + "id": "1680", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.212000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1429", - "amount": "189527428986919211424" + "denom": "gamm/pool/1680", + "amount": "106650418905964271903" }, - "liquidityUsd": 1883.1491241833335, - "liquidity24hUsdChange": -5.750224000465719, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 1409.0127986722946, + "liquidity24hUsdChange": -2.441450288137873, + "volume24hUsd": 20.852237540248773, + "volume24hUsdChange": 15.41715593745748, + "volume7dUsd": 2369.871662763904, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", - "amount": "317369091341797970000" + "denom": "ibc/EFC1776BEFB7842F2DC7BABD9A3050E188145C99007ECC5F3526FED45A68D5F5", + "amount": "1655169379" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "733829896" + "amount": "780770390" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1j03uy4yedhauxfqw7c93rgelrzc69xwsxadmwg8wkm0mz0955t3sl7w0ax", - "id": "1492", - "current_tick_liquidity": "40548558397207.184826354431467577", - "token0": "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", - "token0Amount": "863759308944747000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "1862974306", - "current_sqrt_price": "0.000046944279473809988875819752378926", - "current_tick": "-79796235", - "tick_spacing": "10", - "exponent_at_price_one": "-6", - "spread_factor": "0.001000000000000000", - "liquidityUsd": 1860.9805888120209, - "liquidity24hUsdChange": -0.23153556257090652, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 18.108738496073492, - "taker_fee": "0.001000000000000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1552", + "id": "1538", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1552", - "amount": "100000026597753635700" + "denom": "gamm/pool/1538", + "amount": "100000024489126630000" }, - "liquidityUsd": 1848.2348575852398, - "liquidity24hUsdChange": -4.129839145548362, - "volume24hUsd": 15.161459824801899, - "volume24hUsdChange": 47.018804929532756, - "volume7dUsd": 283.56287396048975, + "liquidityUsd": 1408.1235081933055, + "liquidity24hUsdChange": -2.1013531336107185, + "volume24hUsd": 442.76719937838163, + "volume24hUsdChange": 258.91113099140404, + "volume7dUsd": 1749.456830693512, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "99067884428" + "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "amount": "6976501164" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", - "amount": "32554593949" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "107980836053" }, "weight": "536870912000000" } @@ -15221,34 +15284,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1557", + "id": "1658", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1557", - "amount": "100000118712230607792" + "denom": "gamm/pool/1658", + "amount": "69520231702680023506" }, - "liquidityUsd": 1833.3390520799999, - "liquidity24hUsdChange": -4.746616455653803, - "volume24hUsd": 8.894788241171126, - "volume24hUsdChange": -94.83642516761392, - "volume7dUsd": 464.21659658073935, + "liquidityUsd": 1403.0103732055877, + "liquidity24hUsdChange": -13.257876090138925, + "volume24hUsd": 421.8294880024768, + "volume24hUsdChange": -40.82998418813435, + "volume7dUsd": 6020.058133674608, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "11961232784" + "denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "amount": "11918406" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "98545502727" + "denom": "uosmo", + "amount": "781658448" }, "weight": "536870912000000" } @@ -15257,34 +15320,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "747", + "id": "1383", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/747", - "amount": "61584498652688557475645" + "denom": "gamm/pool/1383", + "amount": "288712026205744309284" }, - "liquidityUsd": 1753.660226344705, - "liquidity24hUsdChange": -4.625224556286237, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 1364.6573570729838, + "liquidity24hUsdChange": 24.18226787126033, + "volume24hUsd": 298.33022193759075, + "volume24hUsdChange": 36.24739177351809, + "volume7dUsd": 1302.4317761603731, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/49C2B2C444B7C5F0066657A4DBF19D676E0D185FF721CFD3E14FA253BCB9BC04", - "amount": "6631701690563483000000000" + "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "amount": "19452187934714" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1366740727" + "amount": "756191894" }, "weight": "536870912000000" } @@ -15297,51 +15360,51 @@ "id": "1430", "current_tick_liquidity": "23415592.544416973723394273", "token0": "uosmo", - "token0Amount": "798388943", + "token0Amount": "859024641", "token1": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "token1Amount": "1044169", - "current_sqrt_price": "0.043085030662486616438518413095197260", - "current_tick": "-26143681", + "token1Amount": "932717", + "current_sqrt_price": "0.038321679127595260385324322868254762", + "current_tick": "-26531449", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000100000000000000", - "liquidityUsd": 1745.8228967048235, - "liquidity24hUsdChange": -5.7543181899291325, - "volume24hUsd": 13.32021290591447, - "volume24hUsdChange": -58.758496731033816, - "volume7dUsd": 296.03634728592425, + "liquidityUsd": 1348.3881370597396, + "liquidity24hUsdChange": -3.4992658650791943, + "volume24hUsd": 23.27938919432692, + "volume24hUsdChange": 45.90890625781141, + "volume7dUsd": 1003.5199988224396, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1673", + "id": "183", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1673", - "amount": "100000000000000000000" + "denom": "gamm/pool/183", + "amount": "9110061234689374885945" }, - "liquidityUsd": 1743.592788604385, - "liquidity24hUsdChange": 0.006211529804806065, - "volume24hUsd": 10.942214955866461, - "volume24hUsdChange": null, - "volume7dUsd": 10.942214955866461, + "liquidityUsd": 1338.5236553487252, + "liquidity24hUsdChange": -2.289758609090017, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 153.93605331501564, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", - "amount": "132312101" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "83531612" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "677542948" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "603428457201" }, "weight": "536870912000000" } @@ -15350,190 +15413,190 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1522", + "id": "760", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1522", - "amount": "127836593326841390613" + "denom": "gamm/pool/760", + "amount": "262428151732625930310" }, - "liquidityUsd": 1740.2494012626573, - "liquidity24hUsdChange": -3.4897644906085894, - "volume24hUsd": 17.66122996968403, - "volume24hUsdChange": -55.310812185147576, - "volume7dUsd": 196.5781500183955, + "liquidityUsd": 1329.0704947169222, + "liquidity24hUsdChange": -3.3215433058432358, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.050364296498014965, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", - "amount": "568127246608319800000" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "73008651871" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "93849712860" + "denom": "ibc/C9864D1B9623F703C75BBF72B7FF8A7317E1535C96538D21467A4311246DC3B5", + "amount": "5355559168962" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1536", + "id": "1553", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1536", - "amount": "100000025728679205900" + "denom": "gamm/pool/1553", + "amount": "100000025368815029100" }, - "liquidityUsd": 1735.6486579388334, - "liquidity24hUsdChange": -5.993167874895479, - "volume24hUsd": 48.20740918325807, - "volume24hUsdChange": 114.41136075622742, - "volume7dUsd": 246.23594845210064, + "liquidityUsd": 1319.8943505144546, + "liquidity24hUsdChange": -1.8766739516327107, + "volume24hUsd": 5.733450757572639, + "volume24hUsdChange": -72.42299514292701, + "volume7dUsd": 909.6280262603324, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "3137879093" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "100746189939" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "93856378737" + "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", + "amount": "462334043" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo18m8450l0cywh7jc3haszq4p5tdhcz6w4yax26s0f6m4sng5vcf4svkq5tu", + "id": "1317", + "current_tick_liquidity": "28884832801.210201059684950776", + "token0": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "token0Amount": "503675478787", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "394842011", + "current_sqrt_price": "0.042703204009762037911903590981286672", + "current_tick": "-26176437", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 1316.462990206013, + "liquidity24hUsdChange": -1.051979073018175, + "volume24hUsd": 81.78747030283824, + "volume24hUsdChange": -26.101712451324776, + "volume7dUsd": 2048.4272228411405, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1392", + "id": "1342", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1392", - "amount": "847580022229301913182" + "denom": "gamm/pool/1342", + "amount": "7070720170422733319835" }, - "liquidityUsd": 1709.6968280273986, - "liquidity24hUsdChange": -4.639924592979681, - "volume24hUsd": 0.13885293186255324, - "volume24hUsdChange": null, - "volume7dUsd": 33.8053268605738, + "liquidityUsd": 1304.486795587861, + "liquidity24hUsdChange": 6.829926365203012, + "volume24hUsd": 44.10832265478723, + "volume24hUsdChange": -56.984812623617266, + "volume7dUsd": 3065.3264510422855, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A", - "amount": "83955001447" + "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", + "amount": "14948204884753153" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "666238605" + "denom": "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", + "amount": "29329915534" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1zywfmhe04ccpm7kplylu08zmeq77gxsxyuxpfav2h48kspcl0d4qzcnmup", + "id": "1152", + "current_tick_liquidity": "115140452530.125993148006315706", + "token0": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", + "token0Amount": "20928314003394", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "633350124", + "current_sqrt_price": "0.005501659260341640733677230257053840", + "current_tick": "-42973175", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1271.5143375319544, + "liquidity24hUsdChange": -1.381905564621468, + "volume24hUsd": 29.303221408322468, + "volume24hUsdChange": -7.137750148144518, + "volume7dUsd": 1886.194474020912, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1383", + "id": "1552", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1383", - "amount": "225152509247566192551" + "denom": "gamm/pool/1552", + "amount": "100000026597753635700" }, - "liquidityUsd": 1703.2262160654502, - "liquidity24hUsdChange": -4.717382139102997, - "volume24hUsd": 338.22047756594486, - "volume24hUsdChange": 329.76139221140403, - "volume7dUsd": 1811.836053004516, + "liquidityUsd": 1268.5525439734197, + "liquidity24hUsdChange": -1.8659072040140543, + "volume24hUsd": 14.817727506697729, + "volume24hUsdChange": 318.7162567966699, + "volume7dUsd": 489.75407693809314, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", - "amount": "13297846460333" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "96972510281" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "663717122" + "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "amount": "33312272929" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1j0s7q30txcddp46cv4glyv634rp60seehsrek03fpd2npx6n0j3qmchar6", - "id": "1588", - "current_tick_liquidity": "3877866005154616.807755299419695321", - "token0": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", - "token0Amount": "73245290887923860000", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "396408401", - "current_sqrt_price": "0.000004210046011664166973372131636747", - "current_tick": "-98227552", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1684.605210355672, - "liquidity24hUsdChange": -2.2271580167200433, - "volume24hUsd": 3589.9954489074626, - "volume24hUsdChange": 45.48651726312376, - "volume7dUsd": 13703.01609874087, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo18m8450l0cywh7jc3haszq4p5tdhcz6w4yax26s0f6m4sng5vcf4svkq5tu", - "id": "1317", - "current_tick_liquidity": "28001008244.334788660063367228", - "token0": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "token0Amount": "369917317524", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "656694301", - "current_sqrt_price": "0.052428595067637923772813240622459506", - "current_tick": "-25251243", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 1670.7080474160707, - "liquidity24hUsdChange": -2.002290935264118, - "volume24hUsd": 66.40359994534211, - "volume24hUsdChange": 20.278600303309563, - "volume7dUsd": 930.8548085461339, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1537", @@ -15546,24 +15609,24 @@ "denom": "gamm/pool/1537", "amount": "198987134302966358024" }, - "liquidityUsd": 1610.9007439905906, - "liquidity24hUsdChange": -2.539956187585166, - "volume24hUsd": 24.4091000608649, - "volume24hUsdChange": -68.37846800604474, - "volume7dUsd": 462.18023446644634, + "liquidityUsd": 1268.108925683421, + "liquidity24hUsdChange": -2.0928136202266123, + "volume24hUsd": 19.606068756428957, + "volume24hUsdChange": -58.860926314355446, + "volume7dUsd": 4176.817568856433, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "86265208395" + "amount": "97148721925" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "amount": "11532664672" + "amount": "10351921236" }, "weight": "536870912000000" } @@ -15572,55 +15635,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1jadryz4m7sc2lev9e55tcph3wr6sg7x7z4k5wzarp8zy8pvkv65sq2uj22", - "id": "1275", - "current_tick_liquidity": "42410616029777934.379766060863786019", - "token0": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token0Amount": "1583377278", - "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token1Amount": "13973903399442754000", - "current_sqrt_price": "999868.740799284161678707882367985057216096", - "current_tick": "107997374", + "address": "osmo1ux49jymafd7uqxvjl8t8v6ep5afrkckts3hxr5aa2ddjkpmea4qqu0zhta", + "id": "1503", + "current_tick_liquidity": "79914323708.280473428779790340", + "token0": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", + "token0Amount": "41945128540", + "token1": "uosmo", + "token1Amount": "822866268", + "current_sqrt_price": "0.117016609608410369823580494338585472", + "current_tick": "-17630712", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 1595.6599727227285, - "liquidity24hUsdChange": -0.22912542096819918, - "volume24hUsd": 3.7866779820919865, - "volume24hUsdChange": -95.32770911559338, - "volume7dUsd": 2851.587597692919, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1260.7390670980105, + "liquidity24hUsdChange": 4.10864256743601, + "volume24hUsd": 3377.295052993452, + "volume24hUsdChange": 96.93828011648375, + "volume7dUsd": 39807.48748184439, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "578", + "id": "1429", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.212000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/578", - "amount": "25255198235140694641" + "denom": "gamm/pool/1429", + "amount": "186022088707274439122" }, - "liquidityUsd": 1573.5150226073135, - "liquidity24hUsdChange": -4.474318189333375, - "volume24hUsd": 17.445863412390334, - "volume24hUsdChange": 148.34595577914916, - "volume7dUsd": 67.52626454658655, + "liquidityUsd": 1253.236980356775, + "liquidity24hUsdChange": -3.4988844848189835, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.00009421538154786998, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", - "amount": "86708054140" + "denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", + "amount": "326463392729551400000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "31036703421" + "denom": "uosmo", + "amount": "694450985" }, "weight": "536870912000000" } @@ -15629,34 +15692,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1534", + "id": "1522", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1534", - "amount": "100000109300702039903" + "denom": "gamm/pool/1522", + "amount": "127836593326841390613" }, - "liquidityUsd": 1555.930271383147, - "liquidity24hUsdChange": -3.7536611073842714, - "volume24hUsd": 12.611242624287478, - "volume24hUsdChange": -49.43760061523357, - "volume7dUsd": 259.1473926336294, + "liquidityUsd": 1250.4945519218134, + "liquidity24hUsdChange": -2.958556090841885, + "volume24hUsd": 66.85731591724098, + "volume24hUsdChange": 12.076440032795684, + "volume7dUsd": 1191.5055352621566, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "amount": "6500247890" + "denom": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", + "amount": "559526385610860600000" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "83285258467" + "amount": "95694740276" }, "weight": "536870912000000" } @@ -15665,70 +15728,91 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1060", + "id": "1536", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1060", - "amount": "80951115413580211" + "denom": "gamm/pool/1536", + "amount": "100000025728679205900" }, - "liquidityUsd": 1541.5682146320482, - "liquidity24hUsdChange": 3.481721709817874, - "volume24hUsd": 6.296026286923965, - "volume24hUsdChange": -84.92775507872763, - "volume7dUsd": 229.90402068233405, + "liquidityUsd": 1244.8737879410041, + "liquidity24hUsdChange": -2.5915110074489744, + "volume24hUsd": 10.601198388790978, + "volume24hUsdChange": -8.344377429618257, + "volume7dUsd": 290.22032737133554, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "amount": "3012343500" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "3069026295" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "601041416" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "96091645580" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ham6hp6uy4v5n6yujkmeqxgvlnpzmj7jp04shszq7c5lcqqlpygqumrssl", + "id": "1479", + "current_tick_liquidity": "32379000341595.843330832886854391", + "token0": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "token0Amount": "146430809783092230", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "319671374", + "current_sqrt_price": "0.000079294209506119599362684138892662", + "current_tick": "-75712429", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1244.4858574855418, + "liquidity24hUsdChange": 14.277988959260007, + "volume24hUsd": 614.7620010049742, + "volume24hUsdChange": -0.4614443449710371, + "volume7dUsd": 18907.24910722884, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "931", + "id": "747", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/931", - "amount": "26846231974924430638" + "denom": "gamm/pool/747", + "amount": "61584498652688557475645" }, - "liquidityUsd": 1539.027801857986, - "liquidity24hUsdChange": -2.389641736997657, - "volume24hUsd": 14.458270614147407, - "volume24hUsdChange": 9611.437951167192, - "volume7dUsd": 79.60430116928504, + "liquidityUsd": 1234.6581921157679, + "liquidity24hUsdChange": -3.3934440512774824, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 4.611345001326624, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "68788765239" + "denom": "ibc/49C2B2C444B7C5F0066657A4DBF19D676E0D185FF721CFD3E14FA253BCB9BC04", + "amount": "6624110352653767000000000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "516714560719" + "denom": "uosmo", + "amount": "1368311997" }, "weight": "536870912000000" } @@ -15737,34 +15821,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "964", + "id": "1554", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/964", - "amount": "160437245065430751407" + "denom": "gamm/pool/1554", + "amount": "100000022328565689300" }, - "liquidityUsd": 1532.6690167060779, - "liquidity24hUsdChange": -4.625215344977837, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.04628911864780242, + "liquidityUsd": 1221.8245649605046, + "liquidity24hUsdChange": -3.043244245969535, + "volume24hUsd": 31.344977120814, + "volume24hUsdChange": -35.595979806382644, + "volume7dUsd": 743.8313461934505, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E", - "amount": "573251007828" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "93933988568" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "597253999" + "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", + "amount": "72086452918" }, "weight": "536870912000000" } @@ -15773,160 +15857,190 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1j45sm78xm8urutmf0f2usqaa247tnuqzjqmwpkh4ty0qgdx7sk0s752nq0", - "id": "1653", - "current_tick_liquidity": "176726177083.332598625054951962", - "token0": "ibc/D1DD525F3226643940897A170DFDFC3727F5C4C43131C4D91EEF7D0E93F102B7", - "token0Amount": "26536559140009", - "token1": "uosmo", - "token1Amount": "1176770961", - "current_sqrt_price": "0.006659724651979299132503204759602802", - "current_tick": "-41564807", + "address": "osmo1f54cctrdk28nfgtjal2sk3df5788c2sg7g2le7mjkgzew77qlz8qawzq37", + "id": "1465", + "current_tick_liquidity": "6413833254.478278931185820205", + "token0": "uosmo", + "token0Amount": "1134980057", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "192689672", + "current_sqrt_price": "0.948753406509753467058885185540129578", + "current_tick": "-998670", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.010000000000000000", - "liquidityUsd": 1509.9106868300237, - "liquidity24hUsdChange": -4.6309110494042525, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1464.08831005207, + "spread_factor": "0.000100000000000000", + "liquidityUsd": 1217.1067710866082, + "liquidity24hUsdChange": 45.440268248256295, + "volume24hUsd": 1471.2205625465424, + "volume24hUsdChange": null, + "volume7dUsd": 3657.200562584053, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ham6hp6uy4v5n6yujkmeqxgvlnpzmj7jp04shszq7c5lcqqlpygqumrssl", - "id": "1479", - "current_tick_liquidity": "24548434966837.370684081738730529", - "token0": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "token0Amount": "68600824811983420", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "716501558", - "current_sqrt_price": "0.000106646789126201412439220964053914", - "current_tick": "-71862647", + "address": "osmo1henrzn5frhjz33fffmd90r6z9am73n40xu3wguk64r54y8j24tusx0qtwh", + "id": "1696", + "current_tick_liquidity": "8524976930.863199317375064281", + "token0": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", + "token0Amount": "1639443372", + "token1": "uosmo", + "token1Amount": "259002058", + "current_sqrt_price": "0.771894854423252407266388398396976750", + "current_tick": "-4041784", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 1498.9360459389413, - "liquidity24hUsdChange": 662.5752473174813, - "volume24hUsd": 134.5593891153015, - "volume24hUsdChange": 2421.163784589975, - "volume7dUsd": 7282.461208628522, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1210.965852207327, + "liquidity24hUsdChange": null, + "volume24hUsd": 3452.3103730430776, + "volume24hUsdChange": null, + "volume7dUsd": 3452.3103730430776, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1zywfmhe04ccpm7kplylu08zmeq77gxsxyuxpfav2h48kspcl0d4qzcnmup", - "id": "1152", - "current_tick_liquidity": "115140452530.125993148006315706", - "token0": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", - "token0Amount": "17702457819390", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "748783849", - "current_sqrt_price": "0.006504207139817599148622240126177982", - "current_tick": "-41769529", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1491.3184534734148, - "liquidity24hUsdChange": -2.638310086654053, - "volume24hUsd": 23.37302497216748, - "volume24hUsdChange": 111.70527178397546, - "volume7dUsd": 1454.883011486414, - "taker_fee": "0.001000000000000000" + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1392", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1392", + "amount": "847580022229301913182" + }, + "liquidityUsd": 1192.103465158445, + "liquidity24hUsdChange": -3.712260641938038, + "volume24hUsd": 2.047826776852616, + "volume24hUsdChange": null, + "volume7dUsd": 5.74294615530172, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A", + "amount": "84679482978" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "660575325" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1dl99cqsjtxgyerqrhr2zhy79kmcmlt7l9geqq0yhq2artlkzkh5sh4u2u4", - "id": "1102", - "current_tick_liquidity": "5504735055.893617401396917883", - "token0": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", - "token0Amount": "49472755543", - "token1": "uosmo", - "token1Amount": "580373093", - "current_sqrt_price": "0.108198196223545528239125779821142075", - "current_tick": "-17829316", + "address": "osmo1j0s7q30txcddp46cv4glyv634rp60seehsrek03fpd2npx6n0j3qmchar6", + "id": "1588", + "current_tick_liquidity": "109316826714470.044258120261755702", + "token0": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", + "token0Amount": "90050596342873990000", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "17656771", + "current_sqrt_price": "0.000003603577480372237861667971048887", + "current_tick": "-98701423", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1487.7025789997829, - "liquidity24hUsdChange": -4.803301105215202, - "volume24hUsd": 0.07974970905103267, - "volume24hUsdChange": -93.92730549086443, - "volume7dUsd": 94.14864115339262, + "liquidityUsd": 1190.3604254979577, + "liquidity24hUsdChange": 0.9306754584276208, + "volume24hUsd": 214.3009665985443, + "volume24hUsdChange": 13981.9182662422, + "volume7dUsd": 7936.9757292533895, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1vuy0la03p4jdz8j9a246g5dp8nvk8r5d5q5swx3488el9h8mr3rsfn7f9k", - "id": "1322", - "current_tick_liquidity": "1118148014.129997292299095039", - "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token0Amount": "116920598", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "113355741", - "current_sqrt_price": "3.406054248601796199737145752522975959", - "current_tick": "9160120", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1472.1608736758496, - "liquidity24hUsdChange": -5.782152788291252, - "volume24hUsd": 698.1622608331639, - "volume24hUsdChange": -7.270061617368333, - "volume7dUsd": 3456.4625456583954, - "taker_fee": "0.001000000000000000" + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1695", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1695", + "amount": "100015468772986486300" + }, + "liquidityUsd": 1165.7015503889081, + "liquidity24hUsdChange": -3.396724353975301, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 9.310687293774636, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", + "amount": "1969157106650386000000000" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "645945342" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1gwyf7u0twj97x7xjn02jaww8juufrtnrrwf3dn6mzd7acnqle20s6l83my", - "id": "1438", - "current_tick_liquidity": "510682018.962102916142572918", - "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token0Amount": "697024", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "974602735", - "current_sqrt_price": "26.403324559342086521270853990411073653", - "current_tick": "23971355", + "address": "osmo1hnsrfrv5yjwxzlusyn2nyeftglweeuzkzedgw9fee37lcuunxleqtpknwr", + "id": "1262", + "current_tick_liquidity": "222068570328.601550576133352454", + "token0": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", + "token0Amount": "42996217", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "1112304112", + "current_sqrt_price": "1.000007251980480337433620468656005325", + "current_tick": "14", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1457.6341960863879, - "liquidity24hUsdChange": -1.0930740988771466, - "volume24hUsd": 560.2443812058953, - "volume24hUsdChange": -6.084614012279616, - "volume7dUsd": 4195.848999415927, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1156.463272812754, + "liquidity24hUsdChange": 0.19213754707402908, + "volume24hUsd": 1512.110445365711, + "volume24hUsdChange": 1314.7444805668104, + "volume7dUsd": 12147.721234605538, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1556", + "id": "1534", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1556", - "amount": "100332475317013904674" + "denom": "gamm/pool/1534", + "amount": "100000109300702039903" }, - "liquidityUsd": 1456.26146476143, - "liquidity24hUsdChange": -5.808603769593536, - "volume24hUsd": 1.3243439159357384, - "volume24hUsdChange": -90.39507965434251, - "volume7dUsd": 127.8544884010171, + "liquidityUsd": 1136.9735058486322, + "liquidity24hUsdChange": -1.460062184695946, + "volume24hUsd": 21.137083984492268, + "volume24hUsdChange": 93.89734925707467, + "volume7dUsd": 311.2955768874245, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", - "amount": "3210042052" + "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "amount": "6161474402" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "78673941512" + "amount": "87983760913" }, "weight": "536870912000000" } @@ -15935,76 +16049,76 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ux49jymafd7uqxvjl8t8v6ep5afrkckts3hxr5aa2ddjkpmea4qqu0zhta", - "id": "1503", - "current_tick_liquidity": "71640778771.707592870700987722", - "token0": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", - "token0Amount": "65867871941", - "token1": "uosmo", - "token1Amount": "313312370", - "current_sqrt_price": "0.111611424883819503068507063125329432", - "current_tick": "-17754289", + "address": "osmo1nheh2lm04e4dnv8yn7a4mfsxjx38nu56ymgp8m39uu328dmc2nuq0rxey3", + "id": "1348", + "current_tick_liquidity": "18227347.808288978616287929", + "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "token0Amount": "117727117", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "3130758", + "current_sqrt_price": "3.086932373061942887697965763106281793", + "current_tick": "8529151", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1450.6728218311578, - "liquidity24hUsdChange": -5.195866359270005, - "volume24hUsd": 1419.3026756427853, - "volume24hUsdChange": -19.548801564920634, - "volume7dUsd": 10361.503429693927, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1127.0193836126407, + "liquidity24hUsdChange": 0.4396837074305905, + "volume24hUsd": 646.4335407372652, + "volume24hUsdChange": 72873038.32384498, + "volume7dUsd": 646.4344666532627, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fzrf6klmqkdehg4e5qstj2gq036fdauslxdyt4adz8lu5kk7kmqq6mpguh", - "id": "1478", - "current_tick_liquidity": "2376146889.672005828270862530", - "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token0Amount": "105359878", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "214510948", - "current_sqrt_price": "3.406887154006063913900168177577159213", - "current_tick": "9160688", + "address": "osmo18kn89ertee4w08d6w09yf7rf2a42dytdgs00tezrwzqusfl3zvcsg42ztz", + "id": "1146", + "current_tick_liquidity": "620058372.935223227349859545", + "token0": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", + "token0Amount": "495108545", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "570529057", + "current_sqrt_price": "1.057571715456063174108268963950512546", + "current_tick": "118457", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 1438.868886890198, - "liquidity24hUsdChange": -5.033917125649212, - "volume24hUsd": 6945.773366871148, - "volume24hUsdChange": 30.57697244133032, - "volume7dUsd": 35532.398946744965, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1124.178053037634, + "liquidity24hUsdChange": 0.07980541502722006, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 487.9064707055458, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1526", + "id": "1505", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1526", - "amount": "100152443387165596547" + "denom": "gamm/pool/1505", + "amount": "59583131834830888919858" }, - "liquidityUsd": 1425.4525648192982, - "liquidity24hUsdChange": -6.328540353175314, - "volume24hUsd": 27.097274685521505, - "volume24hUsdChange": -27.689906724247365, - "volume7dUsd": 319.38035725503926, + "liquidityUsd": 1117.9177539128843, + "liquidity24hUsdChange": -2.738371432578527, + "volume24hUsd": 3.8880475389134124, + "volume24hUsdChange": null, + "volume7dUsd": 2332.9232133916967, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "77006672208" + "denom": "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", + "amount": "95502190579" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "137824082931387320000" + "denom": "uosmo", + "amount": "619467106" }, "weight": "536870912000000" } @@ -16013,55 +16127,55 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1y5cf857lg5e6aay339q2trkfc2x6m22z0jz9r9p55hm36nludwrsyk4t4r", - "id": "1432", - "current_tick_liquidity": "44498389.490338764848785545", - "token0": "uosmo", - "token0Amount": "591145449", - "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token1Amount": "918231", - "current_sqrt_price": "0.042948358621271778474792056515571861", - "current_tick": "-26155439", + "address": "osmo1dl99cqsjtxgyerqrhr2zhy79kmcmlt7l9geqq0yhq2artlkzkh5sh4u2u4", + "id": "1102", + "current_tick_liquidity": "5504735055.893617401396917883", + "token0": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", + "token0Amount": "46225402845", + "token1": "uosmo", + "token1Amount": "620981336", + "current_sqrt_price": "0.115575158480052506835781827580158122", + "current_tick": "-17664239", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1396.5381282940266, - "liquidity24hUsdChange": -4.0725659729860215, - "volume24hUsd": 30.236696909118812, - "volume24hUsdChange": 91.73857740283304, - "volume7dUsd": 321.41419894804375, + "liquidityUsd": 1116.6405072365164, + "liquidity24hUsdChange": -3.2051574554667437, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 129.76700632509798, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1540", + "id": "1385", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1540", - "amount": "100870207786810292561" + "denom": "gamm/pool/1385", + "amount": "40529830556266132506" }, - "liquidityUsd": 1391.5972313909895, - "liquidity24hUsdChange": -8.648251118284456, - "volume24hUsd": 104.30265085676628, - "volume24hUsdChange": 68.36214881065288, - "volume7dUsd": 470.29185312565954, + "liquidityUsd": 1115.8814734842, + "liquidity24hUsdChange": -8.61396080897798, + "volume24hUsd": 56.3204221965953, + "volume24hUsdChange": -18.374559511814738, + "volume7dUsd": 2078.309030399192, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "75006246896" + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "amount": "57604310" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", - "amount": "4802677978" + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "amount": "558952226" }, "weight": "536870912000000" } @@ -16070,70 +16184,112 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1385", + "id": "578", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1385", - "amount": "41536848513785866943" + "denom": "gamm/pool/578", + "amount": "25255198235140694641" }, - "liquidityUsd": 1256.1099143391914, - "liquidity24hUsdChange": -4.165991842272239, - "volume24hUsd": 54.37711588275232, - "volume24hUsdChange": 13.442402282447215, - "volume7dUsd": 281.6182149906295, + "liquidityUsd": 1103.63901292757, + "liquidity24hUsdChange": -3.5384749703553027, + "volume24hUsd": 0.9749297635006335, + "volume24hUsdChange": null, + "volume7dUsd": 242.02246410029534, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "amount": "53648461" + "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", + "amount": "80687590322" }, "weight": "536870912000000" }, { "token": { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "amount": "629313724" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "33381359082" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1lls6rflu3209aur06ku69d4mk2x7rjgu3uhj58gwg72s057x3cds2ja0d0", + "id": "1144", + "current_tick_liquidity": "20063241855.010957729464427368", + "token0": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", + "token0Amount": "912151477469", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "508839078", + "current_sqrt_price": "0.025362568505792747454501343681168024", + "current_tick": "-30567402", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1096.4305287862146, + "liquidity24hUsdChange": -1.8643388557193143, + "volume24hUsd": 37.92335581123568, + "volume24hUsdChange": -50.09190722589538, + "volume7dUsd": 4296.369810296308, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1y5cf857lg5e6aay339q2trkfc2x6m22z0jz9r9p55hm36nludwrsyk4t4r", + "id": "1432", + "current_tick_liquidity": "44498389.490338764848785545", + "token0": "uosmo", + "token0Amount": "718114220", + "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token1Amount": "709735", + "current_sqrt_price": "0.038259780378524480032000603770451019", + "current_tick": "-26536190", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1085.3417212182035, + "liquidity24hUsdChange": -3.587985211592188, + "volume24hUsd": 50.27281304825899, + "volume24hUsdChange": 66.43077176128195, + "volume7dUsd": 1391.3805891618429, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1329", + "id": "1556", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000900000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1329", - "amount": "206707189729085835506" + "denom": "gamm/pool/1556", + "amount": "100332475317013904674" }, - "liquidityUsd": 1254.5558684141888, - "liquidity24hUsdChange": -7.097093615359322, - "volume24hUsd": 35.88613545716696, - "volume24hUsdChange": 14.420803090959877, - "volume7dUsd": 179.18969200408733, + "liquidityUsd": 1076.3955401142257, + "liquidity24hUsdChange": -2.455851387082812, + "volume24hUsd": 4.000225876055108, + "volume24hUsdChange": 8.743162500502308, + "volume7dUsd": 248.2539362971878, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", - "amount": "306040931778" + "denom": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", + "amount": "3062284971" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "46302361616889" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "82545742410" }, "weight": "536870912000000" } @@ -16142,60 +16298,39 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "971", + "id": "1366", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/971", - "amount": "31901563771771288786092" + "denom": "gamm/pool/1366", + "amount": "115519829587033825214" }, - "liquidityUsd": 1231.2882797514199, - "liquidity24hUsdChange": -4.852050230811066, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 115.14067635111985, + "liquidityUsd": 1073.6603152957475, + "liquidity24hUsdChange": -3.669519145361175, + "volume24hUsd": 7.980249958953249, + "volume24hUsdChange": -15.880737200734888, + "volume7dUsd": 733.001585648292, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", - "amount": "561370559" + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "amount": "881020411172" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "479811258" + "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "amount": "43658770" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1nheh2lm04e4dnv8yn7a4mfsxjx38nu56ymgp8m39uu328dmc2nuq0rxey3", - "id": "1348", - "current_tick_liquidity": "1977889451.599266791804577988", - "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token0Amount": "104748120", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "393948", - "current_sqrt_price": "3.464298009455631691563462749468558883", - "current_tick": "9200136", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 1217.870505000219, - "liquidity24hUsdChange": -6.363837104781288, - "volume24hUsd": 1210.8656921208476, - "volume24hUsdChange": -15.586375230108072, - "volume7dUsd": 7109.243100863865, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", @@ -16207,26 +16342,26 @@ }, "total_shares": { "denom": "gamm/pool/908", - "amount": "8457593903839273586395588297" + "amount": "8443258129578637381630355637" }, - "liquidityUsd": 1167.4411772239507, - "liquidity24hUsdChange": -0.4301119932556436, - "volume24hUsd": 3.885950664483931, - "volume24hUsdChange": -77.39682987973033, - "volume7dUsd": 153.45189312313497, + "liquidityUsd": 1069.617086242965, + "liquidity24hUsdChange": -1.136458010497262, + "volume24hUsd": 47.72353108587542, + "volume24hUsdChange": 39.84102505911504, + "volume7dUsd": 855.3937467571969, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "293905045463570900000" + "amount": "244102420851279500000" }, { "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", - "amount": "709868175" + "amount": "840566822" }, { "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "295096392" + "amount": "244152718" } ], "scaling_factors": [ @@ -16238,34 +16373,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1366", + "id": "964", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1366", - "amount": "115519829587033825214" + "denom": "gamm/pool/964", + "amount": "163349743356734317827" }, - "liquidityUsd": 1163.0129073682738, - "liquidity24hUsdChange": -5.0393493432389675, - "volume24hUsd": 9.673119032337329, - "volume24hUsdChange": -63.97154446337582, - "volume7dUsd": 263.15164311348394, + "liquidityUsd": 1030.504512798225, + "liquidity24hUsdChange": -3.393444051277475, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 160.645723384892, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "amount": "863884078318" + "denom": "ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E", + "amount": "621665198643" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", - "amount": "44494309" + "denom": "uosmo", + "amount": "571029171" }, "weight": "536870912000000" } @@ -16274,251 +16409,188 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hnsrfrv5yjwxzlusyn2nyeftglweeuzkzedgw9fee37lcuunxleqtpknwr", - "id": "1262", - "current_tick_liquidity": "221244541881.451174167940462658", - "token0": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", - "token0Amount": "341026948", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "812609341", - "current_sqrt_price": "0.998660336194702244743490955207510235", - "current_tick": "-26776", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 1151.4895572374335, - "liquidity24hUsdChange": -25.205616466440844, - "volume24hUsd": 1425.805852542013, - "volume24hUsdChange": -65.39794747910074, - "volume7dUsd": 17151.251317024282, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1f54cctrdk28nfgtjal2sk3df5788c2sg7g2le7mjkgzew77qlz8qawzq37", - "id": "1465", - "current_tick_liquidity": "7325676963.752978168458177923", - "token0": "uosmo", - "token0Amount": "666772169", + "address": "osmo1gwyf7u0twj97x7xjn02jaww8juufrtnrrwf3dn6mzd7acnqle20s6l83my", + "id": "1438", + "current_tick_liquidity": "383011514.221577187106929688", + "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token0Amount": "1468947", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "284782175", - "current_sqrt_price": "1.134318418033553219002073513534046156", - "current_tick": "286678", + "token1Amount": "112456416", + "current_sqrt_price": "24.788498597858535366765186819008840900", + "current_tick": "23144696", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 1139.9346825845457, - "liquidity24hUsdChange": -3.2327442341732078, - "volume24hUsd": 1470.4821772942307, - "volume24hUsdChange": 26.580656206678512, - "volume7dUsd": 9480.282161497325, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 1017.8639418712899, + "liquidity24hUsdChange": -3.0057034926753374, + "volume24hUsd": 1149.6380959345395, + "volume24hUsdChange": 60.25397577667263, + "volume7dUsd": 21361.227325812517, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "729", + "id": "1540", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/729", - "amount": "247261438382618079405" + "denom": "gamm/pool/1540", + "amount": "100870207786810292561" }, - "liquidityUsd": 1134.1004011415205, - "liquidity24hUsdChange": -2.353232615113569, - "volume24hUsd": 9.981643830776372, - "volume24hUsdChange": -96.9008903322038, - "volume7dUsd": 805.7859096701649, + "liquidityUsd": 1014.278019606977, + "liquidity24hUsdChange": -1.350234740687595, + "volume24hUsd": 24.86642363240735, + "volume24hUsdChange": -45.47404643964092, + "volume7dUsd": 1010.9686525373634, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", - "amount": "212676244147" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "78341672171" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "307639801" + "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", + "amount": "4624014042" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1266", + "id": "1060", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1266", - "amount": "196238144421143258920" + "denom": "gamm/pool/1060", + "amount": "74483516406916617" }, - "liquidityUsd": 1128.1603755139367, - "liquidity24hUsdChange": -2.9109393187236963, - "volume24hUsd": 23.84799261356748, - "volume24hUsdChange": -65.45317147026383, - "volume7dUsd": 311.87163659244555, + "liquidityUsd": 1002.4882219246258, + "liquidity24hUsdChange": -3.4883033790230287, + "volume24hUsd": 0.8750472040035766, + "volume24hUsdChange": -40.92384158204497, + "volume7dUsd": 46.34932301379465, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", - "amount": "273084104415" + "denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "amount": "2759126013" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { - "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "amount": "8068707379" + "denom": "uosmo", + "amount": "555588896" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo18kn89ertee4w08d6w09yf7rf2a42dytdgs00tezrwzqusfl3zvcsg42ztz", - "id": "1146", - "current_tick_liquidity": "620058372.935223227349859545", - "token0": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", - "token0Amount": "497018528", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "568399715", - "current_sqrt_price": "1.054137652306012250087565179075343337", - "current_tick": "111206", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 1119.0315830089817, - "liquidity24hUsdChange": -0.1362102494879808, - "volume24hUsd": 2.2865421882552797, - "volume24hUsdChange": null, - "volume7dUsd": 560.9788732007577, - "taker_fee": "0.001000000000000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "824", + "id": "971", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/824", - "amount": "1302743887592460178771" + "denom": "gamm/pool/971", + "amount": "31901563771771288786092" }, - "liquidityUsd": 1103.6452047439366, - "liquidity24hUsdChange": -1.6526653903872466, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 8.282796410967915, + "liquidityUsd": 1001.4014678659299, + "liquidity24hUsdChange": -5.146017655994534, + "volume24hUsd": 5.149668224055698, + "volume24hUsdChange": 95.25976266386205, + "volume7dUsd": 194.5411473163969, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", - "amount": "502428480871" + "denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", + "amount": "485973053" }, - "weight": "5368709120" + "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "430071010" + "amount": "554902422" }, - "weight": "5368709120" + "weight": "1073741824" } ], - "total_weight": "10737418240" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1365", + "id": "1526", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1365", - "amount": "2368907965069613407481" + "denom": "gamm/pool/1526", + "amount": "100152443387165596547" }, - "liquidityUsd": 1103.1519984056915, - "liquidity24hUsdChange": 8.965692686153789, - "volume24hUsd": 124.41786829201092, - "volume24hUsdChange": -39.375177401328955, - "volume7dUsd": 1431.7098584977234, + "liquidityUsd": 992.122263836174, + "liquidity24hUsdChange": -3.9160946377294454, + "volume24hUsd": 14.347850142378496, + "volume24hUsdChange": -32.61142857283325, + "volume7dUsd": 1080.7207936983177, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "552166917" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "76438656442" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", - "amount": "5246545597" + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "139444204753491870000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1gdr65wegcfce7muym28qjsa5ea54hwqt04a6d05a436p384suu5s5pyf4v", - "id": "1076", - "current_tick_liquidity": "4704540979.660811858348878088", - "token0": "uosmo", - "token0Amount": "542570893", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "400216292", - "current_sqrt_price": "1.133644781182885900201091693092454156", - "current_tick": "285150", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1095.852337716351, - "liquidity24hUsdChange": -2.830680270563861, - "volume24hUsd": 609.5360241336246, - "volume24hUsdChange": -4.1137091415779174, - "volume7dUsd": 3181.6755692592988, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1s7l6ax844wztz3eudwsllfhw9uc04kc7v6p5pkhku2wtyg8hgekqjpckqp", "id": "1565", - "current_tick_liquidity": "1829930938978859918984.391501884629423860", + "current_tick_liquidity": "1457272909987729268650.451964317348094316", "token0": "ibc/BB0AFE2AFBD6E883690DAE4B9168EAC2B306BCC9C9292DACBB4152BBB08DB25F", - "token0Amount": "335897713331384070000", + "token0Amount": "713210467940289700000", "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token1Amount": "758305753096914000000", - "current_sqrt_price": "0.980627419832991204150269834287359842", - "current_tick": "-383699", + "token1Amount": "508320075642866600000", + "current_sqrt_price": "0.815299363310708784893715730896575132", + "current_tick": "-3352870", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1081.5696590125242, - "liquidity24hUsdChange": -1.1517392330899687, - "volume24hUsd": 224.46153328951746, - "volume24hUsdChange": -73.31158303856218, - "volume7dUsd": 5780.187444821421, + "liquidityUsd": 982.9935450710678, + "liquidity24hUsdChange": -5.7711452763362505, + "volume24hUsd": 324.7635264840039, + "volume24hUsdChange": -12.745427394976172, + "volume7dUsd": 9012.666127671237, "taker_fee": "0.001000000000000000" }, { @@ -16527,51 +16599,51 @@ "id": "1153", "current_tick_liquidity": "4077042299.459276602083589388", "token0": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", - "token0Amount": "11107661866", + "token0Amount": "13878340745", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "556319523", - "current_sqrt_price": "0.217167699969269939523700312010112497", - "current_tick": "-14283820", + "token1Amount": "442454011", + "current_sqrt_price": "0.189239217615949744456313962952680887", + "current_tick": "-15418852", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1077.279793022331, - "liquidity24hUsdChange": -0.22217726305952262, - "volume24hUsd": 133.4256191360803, - "volume24hUsdChange": -16.421773273121634, - "volume7dUsd": 766.9892298601802, + "liquidityUsd": 940.1819580879264, + "liquidity24hUsdChange": -2.2002706880758214, + "volume24hUsd": 62.477571867592516, + "volume24hUsdChange": -46.08586087756916, + "volume7dUsd": 2169.331111059602, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "805", + "id": "1266", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/805", - "amount": "291714783747775265861" + "denom": "gamm/pool/1266", + "amount": "196238144421143258920" }, - "liquidityUsd": 1060.9612141582068, - "liquidity24hUsdChange": 3.4848622741665385, - "volume24hUsd": 578.6397351798473, - "volume24hUsdChange": 10376.82694496327, - "volume7dUsd": 715.5992805512569, + "liquidityUsd": 918.0488763731416, + "liquidity24hUsdChange": -1.594884589852568, + "volume24hUsd": 18.234825553433033, + "volume24hUsdChange": -40.651884296088824, + "volume7dUsd": 2251.5874231241796, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", - "amount": "32888010371" + "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", + "amount": "295754654842" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "273115490" + "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "amount": "7478022692" }, "weight": "536870912000000" } @@ -16580,40 +16652,123 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "770", + "id": "1329", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.012345678900000001", + "swap_fee": "0.000900000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/770", - "amount": "305024304947961259472" + "denom": "gamm/pool/1329", + "amount": "206707189729085835506" }, - "liquidityUsd": 1024.9015279522564, - "liquidity24hUsdChange": -6.100056682162934, - "volume24hUsd": 10.565501613297178, - "volume24hUsdChange": 88.64060481671702, - "volume7dUsd": 28.20798637971452, + "liquidityUsd": 911.8991566424431, + "liquidity24hUsdChange": -1.8358205422767089, + "volume24hUsd": 9.518296783909527, + "volume24hUsdChange": -44.62463613229989, + "volume7dUsd": 477.81221569380165, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "283277958136" + "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", + "amount": "293923414628" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", - "amount": "55873974398" + "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "amount": "48231625097267" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "876", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000100000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/876", + "amount": "31828539325842696629200" + }, + "liquidityUsd": 903.4699340719806, + "liquidity24hUsdChange": -0.8916063770571618, + "volume24hUsd": 42.1762467720182, + "volume24hUsdChange": -34.424286595360535, + "volume7dUsd": 1678.8311381190126, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "173815931661903220000" + }, + { + "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "amount": "553816107" + }, + { + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "173859772" + }, + { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "172751696" + } + ], + "scaling_factors": [ + "1000000000000", + "1", + "1", + "1" + ], + "scaling_factor_controller": "" + }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "938", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000400000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/938", + "amount": "326877600091074117705" + }, + "liquidityUsd": 863.203507, + "liquidity24hUsdChange": -0.2656677502013095, + "volume24hUsd": 18.368602, + "volume24hUsdChange": -95.46662893983074, + "volume7dUsd": 6601.943609, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", + "amount": "845629212" + }, + { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "863203507" + }, + { + "denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", + "amount": "851407789" + } + ], + "scaling_factors": [ + "1", + "1", + "1" + ], + "scaling_factor_controller": "" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "669", @@ -16626,24 +16781,24 @@ "denom": "gamm/pool/669", "amount": "2990975819727066002575" }, - "liquidityUsd": 1020.9905617603323, - "liquidity24hUsdChange": -4.6275213790830785, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 76.5049002230435, + "liquidityUsd": 860.9569128840589, + "liquidity24hUsdChange": -1.447746935205336, + "volume24hUsd": 6.468328467891218, + "volume24hUsdChange": null, + "volume7dUsd": 202.0607898727803, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", - "amount": "1577344745" + "amount": "1464492567" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "397861958" + "amount": "428718124" }, "weight": "536870912000000" } @@ -16651,56 +16806,92 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1617", - "code_id": "580", - "tokens": [ + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1vuy0la03p4jdz8j9a246g5dp8nvk8r5d5q5swx3488el9h8mr3rsfn7f9k", + "id": "1322", + "current_tick_liquidity": "6167599.065846245069492212", + "token0": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "token0Amount": "81184965", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "18958337", + "current_sqrt_price": "3.068289765188732093654136474054644115", + "current_tick": "8414402", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 794.0213375633385, + "liquidity24hUsdChange": -10.60130010899218, + "volume24hUsd": 21.043489722118046, + "volume24hUsdChange": -92.94945764736352, + "volume7dUsd": 1612.064451125019, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "958", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/958", + "amount": "854094646889275231718" + }, + "liquidityUsd": 778.0968499859607, + "liquidity24hUsdChange": -1.9723969602036757, + "volume24hUsd": 8.351679822501032, + "volume24hUsdChange": 60.85033444694425, + "volume7dUsd": 553.5728742645845, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "17565323473" + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "48769595" + }, + "weight": "1073741824" }, { - "denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "amount": "6104698314" + "token": { + "denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", + "amount": "108134" + }, + "weight": "1073741824" } ], - "liquidityUsd": 994.9385789617015, - "liquidity24hUsdChange": -6.606799251812275, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "901", + "id": "824", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/901", - "amount": "251163844957122455836" + "denom": "gamm/pool/824", + "amount": "1302743887592460178771" }, - "liquidityUsd": 988.749762342292, - "liquidity24hUsdChange": -1.9590406763970687, - "volume24hUsd": 6.733358711385941, - "volume24hUsdChange": -98.12821377025102, - "volume7dUsd": 2825.237445350129, + "liquidityUsd": 775.4567133249893, + "liquidity24hUsdChange": -2.5617098146345803, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 114.84455535672487, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", - "amount": "1509839913884576400000" + "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", + "amount": "505082515149" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "281213414" + "amount": "427939755" }, "weight": "5368709120" } @@ -16709,83 +16900,89 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "958", + "id": "770", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.012345678900000001", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/958", - "amount": "854094646889275231718" + "denom": "gamm/pool/770", + "amount": "305024304947961259472" }, - "liquidityUsd": 978.296962544947, - "liquidity24hUsdChange": -6.886262263817828, - "volume24hUsd": 6.609170084120439, - "volume24hUsdChange": -96.54551272750608, - "volume7dUsd": 348.03039711354677, + "liquidityUsd": 770.1934918575175, + "liquidity24hUsdChange": -1.7503382124412215, + "volume24hUsd": 3.4047394188024853, + "volume24hUsdChange": -1.9805700715979022, + "volume7dUsd": 59.0860281143704, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "46159341" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "286573330038" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", - "amount": "113170" + "denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", + "amount": "55750092291" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "876", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1659", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.100000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/876", - "amount": "31828539325842696629200" + "denom": "gamm/pool/1659", + "amount": "330926184335930563518" }, - "liquidityUsd": 964.5617628635389, - "liquidity24hUsdChange": -0.3172252810864156, - "volume24hUsd": 8.901672816957525, - "volume24hUsdChange": -36.80821494652223, - "volume7dUsd": 119.06588237076411, + "liquidityUsd": 761.307753724778, + "liquidity24hUsdChange": 2.1555614902160687, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 986.8778110229513, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "204944349906885100000" + "token": { + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "2465723552379" + }, + "weight": "268435456000000" }, { - "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", - "amount": "426178175" + "token": { + "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", + "amount": "6135511062579417" + }, + "weight": "268435456000000" }, { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "207193092" + "token": { + "denom": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", + "amount": "967823328" + }, + "weight": "268435456000000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "205331906" + "token": { + "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "amount": "11130116538" + }, + "weight": "268435456000000" } ], - "scaling_factors": [ - "1000000000000", - "1", - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -16797,51 +16994,72 @@ }, "total_shares": { "denom": "gamm/pool/1558", - "amount": "100100123633136141964" + "amount": "100120070047528590999" }, - "liquidityUsd": 964.4766118884968, - "liquidity24hUsdChange": -5.069954319034937, - "volume24hUsd": 1.4237184424643294, - "volume24hUsdChange": -74.49242443716668, - "volume7dUsd": 285.77132247360805, + "liquidityUsd": 715.7228964490889, + "liquidity24hUsdChange": -2.0844190960615183, + "volume24hUsd": 6.285777121194073, + "volume24hUsdChange": null, + "volume7dUsd": 102.61554514219466, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "51711384443" + "amount": "54804428827" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", - "amount": "31454253226" + "amount": "29712678931" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1617", + "code_id": "580", + "tokens": [ + { + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "amount": "17014165631" + }, + { + "denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "amount": "6241232566" + } + ], + "liquidityUsd": 696.8662793261535, + "liquidity24hUsdChange": -5.087778501289582, + "volume24hUsd": 29.87697059167744, + "volume24hUsdChange": 331.3865140167842, + "volume7dUsd": 394.3254580980338, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo10h0zlm3ey9weqllut0xfje3qql0sznqm45dth4tzefjhj0sp2sjsw85q28", "id": "1501", - "current_tick_liquidity": "17631809891.201538289141995467", + "current_tick_liquidity": "31399479768.167455079093109351", "token0": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", - "token0Amount": "6422131353", + "token0Amount": "6021415079", "token1": "uosmo", - "token1Amount": "74904449", - "current_sqrt_price": "0.324561697151694984859477304084323371", - "current_tick": "-8946598", + "token1Amount": "112974229", + "current_sqrt_price": "0.317876221302196252285709233282195662", + "current_tick": "-8989548", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 963.9194293179995, - "liquidity24hUsdChange": -2.505739870026947, - "volume24hUsd": 127.98614194145173, - "volume24hUsdChange": 3536.179013551127, - "volume7dUsd": 1531.6622717986538, + "liquidityUsd": 655.5691805522766, + "liquidity24hUsdChange": -0.9522032369218548, + "volume24hUsd": 452.0862924857045, + "volume24hUsdChange": 155.9872991000053, + "volume7dUsd": 8039.381432961383, "taker_fee": "0.001000000000000000" }, { @@ -16856,135 +17074,117 @@ "denom": "gamm/pool/1559", "amount": "100000054636923576400" }, - "liquidityUsd": 952.9214733298489, - "liquidity24hUsdChange": -5.1389598256607645, - "volume24hUsd": 1.2841963045253053, - "volume24hUsdChange": -90.22734850260275, - "volume7dUsd": 99.17331917102759, + "liquidityUsd": 616.4782986174152, + "liquidity24hUsdChange": -3.012073344919933, + "volume24hUsd": 1.2936843814334473, + "volume24hUsdChange": null, + "volume7dUsd": 113.68206798757086, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "51208212183" + "amount": "47463172511" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", - "amount": "20513966107" + "amount": "22147524024" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo10gyeekttzskshzs89kewzjjewzfzknxvtt0rcs4ysmje7ducyuvq8pc47t", + "id": "1123", + "current_tick_liquidity": "1570177740.417522588512923667", + "token0": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", + "token0Amount": "59246761", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "498031961", + "current_sqrt_price": "1.140273556573242557113115779742831550", + "current_tick": "300223", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 576.5765839411685, + "liquidity24hUsdChange": -0.23817666839292445, + "volume24hUsd": 390.054558511665, + "volume24hUsdChange": 39.21541032353593, + "volume7dUsd": 5305.749073690165, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "984", + "id": "1640", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.007000000000000001", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/984", - "amount": "3619885829365339312121" + "denom": "gamm/pool/1640", + "amount": "129395356876628650900" }, - "liquidityUsd": 929.1897471182792, - "liquidity24hUsdChange": -20.066019316604205, - "volume24hUsd": 373.66033742871144, - "volume24hUsdChange": -55.37924922242399, - "volume7dUsd": 9529.918794402507, + "liquidityUsd": 570.4963824701113, + "liquidity24hUsdChange": -6.401537279083359, + "volume24hUsd": 23.15176927017013, + "volume24hUsdChange": 39.879264608612324, + "volume7dUsd": 749.0435364622368, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55", - "amount": "2125666" + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "amount": "179456983996469260000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "347017436" + "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "amount": "146853042745555110000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "938", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/938", - "amount": "326877600091074117705" - }, - "liquidityUsd": 850.770688, - "liquidity24hUsdChange": -0.4387605984428872, - "volume24hUsd": 193.97936700000002, - "volume24hUsdChange": -82.95426422690736, - "volume7dUsd": 6542.6974869999995, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", - "amount": "858255330" - }, - { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "850770688" - }, - { - "denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", - "amount": "848148171" - } - ], - "scaling_factors": [ - "1", - "1", - "1" - ], - "scaling_factor_controller": "" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1640", + "id": "548", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.007000000000000001", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1640", - "amount": "129395356876628650900" + "denom": "gamm/pool/548", + "amount": "438023139599979379" }, - "liquidityUsd": 813.1927039997929, - "liquidity24hUsdChange": -3.9490173325677795, - "volume24hUsd": 82.80743739079138, - "volume24hUsdChange": 137.23048146051676, - "volume7dUsd": 477.66850359433033, + "liquidityUsd": 568.2534504081618, + "liquidity24hUsdChange": -4.1073038257459125, + "volume24hUsd": 0.37408610863136144, + "volume24hUsdChange": -96.31765290461185, + "volume7dUsd": 210.64628188485804, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", - "amount": "166439951727325730000" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "3888686910" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "156782688262420720000" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "430297754" }, "weight": "536870912000000" } @@ -17003,24 +17203,24 @@ "denom": "gamm/pool/859", "amount": "71790758116264168116" }, - "liquidityUsd": 772.1337038322547, - "liquidity24hUsdChange": -5.544861816868201, - "volume24hUsd": 13.82789711264889, - "volume24hUsdChange": -60.038896543579135, - "volume7dUsd": 141.58649445164951, + "liquidityUsd": 564.3186132479261, + "liquidity24hUsdChange": -2.8350641427622607, + "volume24hUsd": 11.46236320100517, + "volume24hUsdChange": -50.120761059443595, + "volume7dUsd": 1319.7438060537547, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", - "amount": "188488631009" + "amount": "182220130163" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "300183435" + "amount": "311932700" }, "weight": "5368709120" } @@ -17039,24 +17239,24 @@ "denom": "gamm/pool/1058", "amount": "35455322516848383706" }, - "liquidityUsd": 770.980707370747, - "liquidity24hUsdChange": -4.810537265045162, - "volume24hUsd": 3.329057387926105, - "volume24hUsdChange": 0.2783849610807791, - "volume7dUsd": 526.8469289696718, + "liquidityUsd": 550.828421198323, + "liquidity24hUsdChange": -3.204676980556039, + "volume24hUsd": 6.9416484216177485, + "volume24hUsdChange": 153.47179822700528, + "volume7dUsd": 409.1074927972118, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/6727B2F071643B3841BD535ECDD4ED9CAE52ABDD0DCD07C3630811A7A37B215C", - "amount": "9160602396333" + "amount": "9074149677521" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "301005349" + "amount": "304279823" }, "weight": "5368709120" } @@ -17065,70 +17265,91 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "548", + "id": "931", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/548", - "amount": "438023139599979379" + "denom": "gamm/pool/931", + "amount": "12520255168830541649" }, - "liquidityUsd": 719.5869177075156, - "liquidity24hUsdChange": -2.676219208190501, - "volume24hUsd": 4.183094012902883, - "volume24hUsdChange": -89.3165701111624, - "volume7dUsd": 105.95520649238436, + "liquidityUsd": 535.8254018169214, + "liquidity24hUsdChange": -4.1717785459697625, + "volume24hUsd": 0.420388287416258, + "volume24hUsdChange": -65.02565333939155, + "volume7dUsd": 43.878857044324114, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "4671690933" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "34932143922" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "357750737" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "221475188348" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1j45sm78xm8urutmf0f2usqaa247tnuqzjqmwpkh4ty0qgdx7sk0s752nq0", + "id": "1653", + "current_tick_liquidity": "176726177083.332598625054951962", + "token0": "ibc/D1DD525F3226643940897A170DFDFC3727F5C4C43131C4D91EEF7D0E93F102B7", + "token0Amount": "54932616824976", + "token1": "uosmo", + "token1Amount": "568376969", + "current_sqrt_price": "0.003217144700141820141992963718694376", + "current_tick": "-44964998", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.010000000000000000", + "liquidityUsd": 512.8591158481087, + "liquidity24hUsdChange": -3.3934440512774664, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 46.740063502973, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "642", + "id": "869", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/642", - "amount": "250362159645089223621314" + "denom": "gamm/pool/869", + "amount": "204173361218490489055" }, - "liquidityUsd": 665.119442127987, - "liquidity24hUsdChange": -2.0308646071557073, - "volume24hUsd": 4.710131981106911, - "volume24hUsdChange": 37.35518012140493, - "volume7dUsd": 19.305752891235198, + "liquidityUsd": 474.60317578840875, + "liquidity24hUsdChange": -1.7294238614580297, + "volume24hUsd": 2.0236945869546075, + "volume24hUsdChange": -25.20137088766756, + "volume7dUsd": 72.36799788408068, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "amount": "75918804091" + "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", + "amount": "152608361471" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "13095889820" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "29501670" }, "weight": "536870912000000" } @@ -17137,34 +17358,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "869", + "id": "642", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/869", - "amount": "204173361218490489055" + "denom": "gamm/pool/642", + "amount": "250362159645089223621314" }, - "liquidityUsd": 632.2686575709172, - "liquidity24hUsdChange": -5.4586919014739355, - "volume24hUsd": 12.759445673960167, - "volume24hUsdChange": null, - "volume7dUsd": 31.179541977123563, + "liquidityUsd": 472.55235758139344, + "liquidity24hUsdChange": -2.324968812981173, + "volume24hUsd": 0.27120094866079636, + "volume24hUsdChange": -52.47228583388094, + "volume7dUsd": 61.07405929830865, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", - "amount": "153795533151" + "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "amount": "70035972224" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "29239241" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "14216269015" }, "weight": "536870912000000" } @@ -17173,34 +17394,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1338", + "id": "1365", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.036900000000000004", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1338", - "amount": "38315338273102740056" + "denom": "gamm/pool/1365", + "amount": "1366738111552907507813" }, - "liquidityUsd": 620.7509174393485, - "liquidity24hUsdChange": -7.454507632214141, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 18.342785392602657, + "liquidityUsd": 455.7240774414403, + "liquidity24hUsdChange": -28.82467204587461, + "volume24hUsd": 31.89906326528016, + "volume24hUsdChange": 25.103022260750386, + "volume7dUsd": 2946.1577142179244, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "23156495537270" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "240280089" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "amount": "3744863427" + "denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", + "amount": "4116655303" }, "weight": "536870912000000" } @@ -17209,34 +17430,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1363", + "id": "1406", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1363", - "amount": "110288032544915670284" + "denom": "gamm/pool/1406", + "amount": "103828308261701250290" }, - "liquidityUsd": 612.7719057076708, - "liquidity24hUsdChange": -7.424477544157564, - "volume24hUsd": 62.35221539188259, - "volume24hUsdChange": 93.21022696757689, - "volume7dUsd": 817.1869591457516, + "liquidityUsd": 438.6679949273816, + "liquidity24hUsdChange": -7.377709877103368, + "volume24hUsd": 22.779276402879155, + "volume24hUsdChange": -21.042461414105233, + "volume7dUsd": 433.3416743569876, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", - "amount": "2787712304197824" + "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "amount": "233072385634" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "241682542" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "218729482" }, "weight": "536870912000000" } @@ -17245,34 +17466,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1406", + "id": "1338", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.036900000000000004", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1406", - "amount": "103968756590145020150" + "denom": "gamm/pool/1338", + "amount": "38315338273102740056" }, - "liquidityUsd": 611.3000148245329, - "liquidity24hUsdChange": -6.82574618120471, - "volume24hUsd": 26.73093322007075, - "volume24hUsdChange": 8.355793295256076, - "volume7dUsd": 198.4376315184383, + "liquidityUsd": 429.3015815895536, + "liquidity24hUsdChange": -3.1617625345475076, + "volume24hUsd": 1.8178140491686807, + "volume24hUsdChange": 93.83193765939194, + "volume7dUsd": 69.41648502132057, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "amount": "166131992417" + "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "amount": "23176080868686" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "307064010" + "denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "amount": "3763263220" }, "weight": "536870912000000" } @@ -17281,68 +17502,40 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1660", + "id": "1219", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.100000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1660", - "amount": "123373291160664002800" + "denom": "gamm/pool/1219", + "amount": "100000000000000000000" }, - "liquidityUsd": 604.5349978252572, - "liquidity24hUsdChange": -3.707844390275334, - "volume24hUsd": 37.35449757115235, - "volume24hUsdChange": null, - "volume7dUsd": 313.63292924842114, + "liquidityUsd": 403.83227851615766, + "liquidity24hUsdChange": 0.4186560035248339, + "volume24hUsd": 31.122870784581803, + "volume24hUsdChange": -11.25403224621058, + "volume7dUsd": 633.9396460878949, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "2402470090316" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", - "amount": "149172118074" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "201255655" }, - "weight": "365072220160000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "11832442794" + "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", + "amount": "1856679030" }, - "weight": "354334801920000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo10gyeekttzskshzs89kewzjjewzfzknxvtt0rcs4ysmje7ducyuvq8pc47t", - "id": "1123", - "current_tick_liquidity": "39047673.103451343628103070", - "token0": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", - "token0Amount": "29546939", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "538276092", - "current_sqrt_price": "1.322222155825204467503499074753492100", - "current_tick": "748271", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 588.5074608536153, - "liquidity24hUsdChange": -0.5427506305173617, - "volume24hUsd": 2.094157267828372, - "volume24hUsdChange": 1007.87958229322, - "volume7dUsd": 14.328120350742463, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "599", @@ -17355,24 +17548,24 @@ "denom": "gamm/pool/599", "amount": "99936828108365072244" }, - "liquidityUsd": 537.2924118828693, - "liquidity24hUsdChange": -6.692851366033846, - "volume24hUsd": 25.19131281821935, - "volume24hUsdChange": 228.84533490369958, - "volume7dUsd": 117.21420490591147, + "liquidityUsd": 400.5026832636519, + "liquidity24hUsdChange": -2.2641543026563196, + "volume24hUsd": 11.502705232439425, + "volume24hUsdChange": 8.39881241009641, + "volume7dUsd": 220.20830279836827, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "24754304" + "amount": "24830530" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "149817787437" + "amount": "149358054168" }, "weight": "536870912000000" } @@ -17381,34 +17574,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1508", + "id": "984", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1508", - "amount": "669366744218279438" + "denom": "gamm/pool/984", + "amount": "1781201796017063744426" }, - "liquidityUsd": 537.1680593632747, - "liquidity24hUsdChange": -14.994139460095605, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 332.22043343583334, + "liquidityUsd": 389.21308567800736, + "liquidity24hUsdChange": -12.359413970394332, + "volume24hUsd": 115.55963414982145, + "volume24hUsdChange": 6.263657295970935, + "volume7dUsd": 6819.708378419364, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", - "amount": "70834672319" + "denom": "ibc/18A1B70E3205A48DE8590C0D11030E7146CDBF1048789261D53FFFD7527F8B55", + "amount": "959829" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", - "amount": "6665355075" + "denom": "uosmo", + "amount": "203826285" }, "weight": "536870912000000" } @@ -17416,90 +17609,71 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1qq7nes5a42d72nxndyymjy76m5knt35434sggrdntalx8x2234sqx2n9zc", - "id": "1276", - "current_tick_liquidity": "10302627482990534481.690225146568355633", - "token0": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token0Amount": "530143536", - "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token1Amount": "153174867319260030", - "current_sqrt_price": "1000499.889930014661406871615412739348365655", - "current_tick": "108001000", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 529.5883792193384, - "liquidity24hUsdChange": -0.22334091919786178, - "volume24hUsd": 0.11296519484020062, - "volume24hUsdChange": -99.95773636998182, - "volume7dUsd": 270.70175040866684, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1510", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1622", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1510", - "amount": "215988243677303245195" + "denom": "gamm/pool/1622", + "amount": "495000000000000000" }, - "liquidityUsd": 511.149431359344, - "liquidity24hUsdChange": -3.43211364781418, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 15.375769062026853, + "liquidityUsd": 386.32548310177225, + "liquidity24hUsdChange": -2.4066937551229115, + "volume24hUsd": 6.343198539086903, + "volume24hUsdChange": 99.42450685049444, + "volume7dUsd": 156.52574964802417, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "amount": "192084" + "token": { + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "3925250794732103700000" + }, + "weight": "536870912000000" }, { - "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "amount": "576780743903" + "token": { + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "64474529386771300" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1219", + "id": "1625", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1219", - "amount": "100000000000000000000" + "denom": "gamm/pool/1625", + "amount": "66659987263794068540" }, - "liquidityUsd": 463.4651599461182, - "liquidity24hUsdChange": -6.015692062453007, - "volume24hUsd": 25.35224234905362, - "volume24hUsdChange": 9.876566224019854, - "volume7dUsd": 200.7065113876939, + "liquidityUsd": 385.3161699819639, + "liquidity24hUsdChange": -3.758872914827597, + "volume24hUsd": 10.296756674779228, + "volume24hUsdChange": 1.0045194360520795, + "volume7dUsd": 432.29981381812763, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "232636657" + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "amount": "314164968883" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", - "amount": "1593999780" + "denom": "uosmo", + "amount": "213179823" }, "weight": "536870912000000" } @@ -17508,84 +17682,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1659", + "id": "1613", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.100000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1659", - "amount": "142854307670399848614" + "denom": "gamm/pool/1613", + "amount": "3492628785248150496" }, - "liquidityUsd": 447.76131056600036, - "liquidity24hUsdChange": -7.094335712034678, - "volume24hUsd": 7.1739459161867485, - "volume24hUsdChange": 9.909576220619657, - "volume7dUsd": 84.75312450363951, + "liquidityUsd": 383.6957315043378, + "liquidity24hUsdChange": -0.8815778626126831, + "volume24hUsd": 19.616138458235824, + "volume24hUsdChange": -46.23383702235497, + "volume7dUsd": 97533.45805114658, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "1188363237441" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", - "amount": "1282972290952475" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", - "amount": "460078463" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "190773698" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", - "amount": "5541276368" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "3913715597168951000000" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1622", + "id": "1250", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1622", - "amount": "495000000000000000" + "denom": "gamm/pool/1250", + "amount": "82837222469240407770" }, - "liquidityUsd": 442.285466952981, - "liquidity24hUsdChange": -0.2843808464305795, - "volume24hUsd": 10.601553784943375, - "volume24hUsdChange": 36.58560526338016, - "volume7dUsd": 64.01368688280469, + "liquidityUsd": 364.51442138014215, + "liquidity24hUsdChange": -5.470207313011586, + "volume24hUsd": 46.4458553726988, + "volume24hUsdChange": -37.66839989096293, + "volume7dUsd": 1231.009983568371, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "4036414070681195000000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "182222333" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "62687893139344420" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "19075940" }, "weight": "536870912000000" } @@ -17594,34 +17754,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1250", + "id": "1363", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1250", - "amount": "88521882318979887847" + "denom": "gamm/pool/1363", + "amount": "110508330493742836260" }, - "liquidityUsd": 427.9155528081992, - "liquidity24hUsdChange": -3.418223950369285, - "volume24hUsd": 16.81792269042615, - "volume24hUsdChange": -34.025594544377775, - "volume7dUsd": 387.375181326544, + "liquidityUsd": 330.02830466201453, + "liquidity24hUsdChange": 4.395710575410142, + "volume24hUsd": 1.7092637433562414, + "volume24hUsdChange": -95.18989152302349, + "volume7dUsd": 764.8685345150619, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "214471863" + "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", + "amount": "3801035265217950" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "18383810" + "denom": "uosmo", + "amount": "181947886" }, "weight": "536870912000000" } @@ -17630,34 +17790,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1069", + "id": "729", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1069", - "amount": "18855210136649856317" + "denom": "gamm/pool/729", + "amount": "245131428661941841664" }, - "liquidityUsd": 406.9340992660719, - "liquidity24hUsdChange": -3.617448367145046, - "volume24hUsd": 84.11510963776608, - "volume24hUsdChange": 517.0573724188127, - "volume7dUsd": 151.95963915493346, + "liquidityUsd": 323.0003638486929, + "liquidity24hUsdChange": -3.6975071551714036, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 161.21151394634344, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", - "amount": "232731366160" + "denom": "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", + "amount": "179768691496" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "158631196" + "amount": "357965691" }, "weight": "5368709120" } @@ -17676,24 +17836,24 @@ "denom": "gamm/pool/842", "amount": "851055487971175551272" }, - "liquidityUsd": 395.48696518263176, - "liquidity24hUsdChange": 1.310622140535745, - "volume24hUsd": 11.056743752516304, - "volume24hUsdChange": 1045.9319839816824, - "volume7dUsd": 38.11683119900335, + "liquidityUsd": 307.85057293552927, + "liquidity24hUsdChange": -0.546928496300208, + "volume24hUsd": 46.547182605229835, + "volume24hUsdChange": null, + "volume7dUsd": 73.80441007631669, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", - "amount": "2258565625" + "amount": "2439476228" }, "weight": "858993459200000" }, { "token": { "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "79079537" + "amount": "61409820" }, "weight": "214748364800000" } @@ -17706,21 +17866,174 @@ "id": "1271", "current_tick_liquidity": "5672333887.752016567381430341", "token0": "ibc/EA4C0A9F72E2CEDF10D0E7A9A6A22954DB3444910DB5BE980DF59B05A46DAD1C", - "token0Amount": "4952472422", + "token0Amount": "15959488938", "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "276398618", - "current_sqrt_price": "0.152857515189629810959108742258497307", - "current_tick": "-16663459", + "token1Amount": "78048862", + "current_sqrt_price": "0.117889576598708722594570115095314807", + "current_tick": "-17610205", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 299.5905809485141, + "liquidity24hUsdChange": -1.9581161960860425, + "volume24hUsd": 37.35409189554142, + "volume24hUsdChange": 14.13638512464466, + "volume7dUsd": 1214.1244089563095, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1069", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1069", + "amount": "18855210136649856317" + }, + "liquidityUsd": 292.93506295302586, + "liquidity24hUsdChange": -3.545316207937558, + "volume24hUsd": 4.746677018381947, + "volume24hUsdChange": 416.98526447143615, + "volume7dUsd": 135.71340903962826, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", + "amount": "227569246353" + }, + "weight": "5368709120" + }, + { + "token": { + "denom": "uosmo", + "amount": "162399190" + }, + "weight": "5368709120" + } + ], + "total_weight": "10737418240" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1sscn7un74jzum4d8elne6y8zkcerdd6z8dtnev7p0dqznxrgcxvqfl79mq", + "id": "1172", + "current_tick_liquidity": "950360829.428334884907112858", + "token0": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "token0Amount": "6251697876", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "144471303", + "current_sqrt_price": "0.152016479983807814390401395420391841", + "current_tick": "-16689099", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 289.9974915291393, + "liquidity24hUsdChange": -1.0430292128035825, + "volume24hUsd": 10.27975597021554, + "volume24hUsdChange": -9.17559170390233, + "volume7dUsd": 244.63561807674114, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1y05tsqhvj5sep7zmlzv9cfk89a3avwvm6hwedqmvhqd6v3eqf8hqxdj23f", + "id": "1267", + "current_tick_liquidity": "107368470780.468427282472752824", + "token0": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "token0Amount": "128253995860424", + "token1": "uosmo", + "token1Amount": "307338914", + "current_sqrt_price": "0.003726094612856775058450737031939310", + "current_tick": "-44611622", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 391.5450450339929, - "liquidity24hUsdChange": -1.4382723018234749, - "volume24hUsd": 28.842504266958915, - "volume24hUsdChange": 85.57138248607035, - "volume7dUsd": 176.33846466352975, + "liquidityUsd": 277.31870272132346, + "liquidity24hUsdChange": -5.858869418342779, + "volume24hUsd": 266.7998194732401, + "volume24hUsdChange": -91.41453973637064, + "volume7dUsd": 40008.571239253455, "taker_fee": "0.001000000000000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "802", + "pool_params": { + "exit_fee": "0.030000000000000000", + "swap_fee": "0.030000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/802", + "amount": "1279404996732339444604196886" + }, + "liquidityUsd": 267.98315694640553, + "liquidity24hUsdChange": -1.1994777322721326, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "16431323" + }, + "weight": "1073741824" + }, + { + "token": { + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "amount": "12704735" + }, + "weight": "1073741824" + } + ], + "total_weight": "2147483648" + }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "895", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000200000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/895", + "amount": "2447224976780564733246" + }, + "liquidityUsd": 266.9974682075401, + "liquidity24hUsdChange": 0.0286377410722898, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 66.211209564908, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "133461118831298080000" + }, + { + "denom": "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", + "amount": "24846257715017780000000" + }, + { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "133455767" + } + ], + "scaling_factors": [ + "1000000000000", + "1000000000000", + "1" + ], + "scaling_factor_controller": "" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "580", @@ -17733,24 +18046,24 @@ "denom": "gamm/pool/580", "amount": "808649524635878118593" }, - "liquidityUsd": 384.68856383020443, - "liquidity24hUsdChange": -4.96696015112235, - "volume24hUsd": 5.109021866567719, - "volume24hUsdChange": 261.44891824154246, - "volume7dUsd": 39.077317061330234, + "liquidityUsd": 266.586023811986, + "liquidity24hUsdChange": -2.584124174374932, + "volume24hUsd": 2.609731862439958, + "volume24hUsdChange": 3.7721472617003022, + "volume7dUsd": 89.50542789931181, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "697264985" + "amount": "660228624" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "7596517822" + "amount": "8033085682" }, "weight": "536870912000000" } @@ -17759,34 +18072,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "848", + "id": "649", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/848", - "amount": "7829919818604864430134" + "denom": "gamm/pool/649", + "amount": "1943339622624381983152" }, - "liquidityUsd": 374.87426733018935, - "liquidity24hUsdChange": -4.671070596548156, - "volume24hUsd": 1.0478799052663468, - "volume24hUsdChange": null, - "volume7dUsd": 80.20548215547922, + "liquidityUsd": 252.50879277873392, + "liquidity24hUsdChange": -4.17459953249019, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 6.865120930342872, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", - "amount": "6494638787566497000000000" + "denom": "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", + "amount": "1307631" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "292163739" + "amount": "279843290" }, "weight": "536870912000000" } @@ -17795,34 +18108,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "649", + "id": "1390", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/649", - "amount": "1965091376874929402479" + "denom": "gamm/pool/1390", + "amount": "112447829134134501300" }, - "liquidityUsd": 367.0272893138047, - "liquidity24hUsdChange": -4.625288030964942, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 53.05593537242925, + "liquidityUsd": 251.84404575120416, + "liquidity24hUsdChange": -2.9099987322471983, + "volume24hUsd": 1.2535474942591032, + "volume24hUsdChange": -96.76512301997336, + "volume7dUsd": 42.58254529880227, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", - "amount": "1307868" + "denom": "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", + "amount": "334273962" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "286048082" + "amount": "279106583" }, "weight": "536870912000000" } @@ -17831,70 +18144,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "802", + "id": "1289", "pool_params": { - "exit_fee": "0.030000000000000000", - "swap_fee": "0.030000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/802", - "amount": "1279404996732339444604196886" + "denom": "gamm/pool/1289", + "amount": "755052168815965397123" }, - "liquidityUsd": 360.36914240006377, - "liquidity24hUsdChange": -4.521826997478043, + "liquidityUsd": 247.56390005713973, + "liquidity24hUsdChange": -1.1734790346351711, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1.988426416851805, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "16431323" + "denom": "ibc/0431F9D0CA099C1D2E6676D642104E5D581117E87B0BF979F65CCE0099521669", + "amount": "3723962230" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "12704735" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "30724125" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "894", + "id": "848", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/894", - "amount": "539283198663113867187473" + "denom": "gamm/pool/848", + "amount": "7829919818604864430134" }, - "liquidityUsd": 349.88357282440916, - "liquidity24hUsdChange": 6.138478007174024, - "volume24hUsd": 0.9992060122200866, + "liquidityUsd": 245.55360990457527, + "liquidity24hUsdChange": -4.167323650028878, + "volume24hUsd": 0.6575215738035485, "volume24hUsdChange": null, - "volume7dUsd": 612.7419058913256, + "volume7dUsd": 53.27565819591096, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099", - "amount": "609602427846" + "denom": "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", + "amount": "6979979337496188000000000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "272686876" + "amount": "272135197" }, "weight": "536870912000000" } @@ -17903,34 +18216,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1496", + "id": "894", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1496", - "amount": "432129130382320891" + "denom": "gamm/pool/894", + "amount": "539283198663113867187473" }, - "liquidityUsd": 339.98717820270474, - "liquidity24hUsdChange": -18.63330463831377, + "liquidityUsd": 232.00313353213767, + "liquidity24hUsdChange": -3.3934440512774695, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 216.52018521358477, + "volume24hUsdChange": 0, + "volume7dUsd": 33.00596049388965, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", - "amount": "46339441181" + "denom": "ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099", + "amount": "647276934034" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", - "amount": "4218670906" + "denom": "uosmo", + "amount": "257117859" }, "weight": "536870912000000" } @@ -17939,34 +18252,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "658", + "id": "901", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/658", - "amount": "1291359096117573020303086" + "denom": "gamm/pool/901", + "amount": "254172302689004474970" }, - "liquidityUsd": 334.9940018131881, - "liquidity24hUsdChange": -3.134789236728293, - "volume24hUsd": 4.910161694013224, - "volume24hUsdChange": 224.18881505566253, - "volume7dUsd": 29.12998597946259, + "liquidityUsd": 231.74737573905145, + "liquidity24hUsdChange": -19.07308729788029, + "volume24hUsd": 24.737074586581187, + "volume24hUsdChange": 14048.482231736261, + "volume7dUsd": 452.8707189006794, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "12338807060535" + "denom": "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", + "amount": "1702146432577724500000" }, "weight": "5368709120" }, { "token": { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "953188201098" + "denom": "uosmo", + "amount": "256834415" }, "weight": "5368709120" } @@ -17975,34 +18288,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1289", + "id": "805", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1289", - "amount": "755052168815965397123" + "denom": "gamm/pool/805", + "amount": "291714783747775265861" }, - "liquidityUsd": 332.5989738937998, - "liquidity24hUsdChange": -4.455779495370134, + "liquidityUsd": 230.8323741810907, + "liquidity24hUsdChange": -8.883400509270128, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 4.798519229797959, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0431F9D0CA099C1D2E6676D642104E5D581117E87B0BF979F65CCE0099521669", - "amount": "3723962230" + "denom": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", + "amount": "35115939514" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "30724125" + "denom": "uosmo", + "amount": "255820363" }, "weight": "536870912000000" } @@ -18011,23 +18324,80 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1sscn7un74jzum4d8elne6y8zkcerdd6z8dtnev7p0dqznxrgcxvqfl79mq", - "id": "1172", - "current_tick_liquidity": "950360829.428334884907112858", - "token0": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", - "token0Amount": "5604339659", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "161159022", - "current_sqrt_price": "0.169575932055434088739763344530920565", - "current_tick": "-16124401", + "address": "osmo1jajm3c4wrmzuqjggtga5455zrmu9mhpua6s55sn6dc7zqwr6ykhskc5k8u", + "id": "1112", + "current_tick_liquidity": "118408393.693578482629773028", + "token0": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", + "token0Amount": "109739186", + "token1": "uosmo", + "token1Amount": "127760333", + "current_sqrt_price": "1.079007244877791769722320796539824173", + "current_tick": "164256", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 320.3812728592951, - "liquidity24hUsdChange": -1.7261545548616037, - "volume24hUsd": 8.043734874965507, - "volume24hUsdChange": -7.963092686016282, - "volume7dUsd": 52.64092603097292, + "liquidityUsd": 228.34586792398073, + "liquidity24hUsdChange": -5.144127404560482, + "volume24hUsd": 0.7858347235447737, + "volume24hUsdChange": -81.93471983688012, + "volume7dUsd": 98.7600417711409, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "658", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/658", + "amount": "1291359096117573020303086" + }, + "liquidityUsd": 228.29753653218637, + "liquidity24hUsdChange": -2.7371853589603226, + "volume24hUsd": 1.4199669197990428, + "volume24hUsdChange": 664.8704881833648, + "volume7dUsd": 34.19370745594367, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "amount": "12087732012629" + }, + "weight": "5368709120" + }, + { + "token": { + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "amount": "974388139604" + }, + "weight": "5368709120" + } + ], + "total_weight": "10737418240" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo19mvxk73yuryc8l4faw8wegehcg3can30f4dtl3kf5f4z8dv6n72qqtcsdh", + "id": "1274", + "current_tick_liquidity": "194076599220.397717317218346629", + "token0": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token0Amount": "115763118", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "110981304", + "current_sqrt_price": "1.000252570780543007040863110272474524", + "current_tick": "505", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 227.03599733807172, + "liquidity24hUsdChange": 3.7945944828997877, + "volume24hUsd": 264.3894265537038, + "volume24hUsdChange": 24.56138200709957, + "volume7dUsd": 15252.501398053051, "taker_fee": "0.001000000000000000" }, { @@ -18042,24 +18412,24 @@ "denom": "gamm/pool/1333", "amount": "49762848741020516730" }, - "liquidityUsd": 319.6555922584505, - "liquidity24hUsdChange": -1.1278087173551525, - "volume24hUsd": 9.716773148566052, - "volume24hUsdChange": 43.427081568794115, - "volume7dUsd": 133.6112158595599, + "liquidityUsd": 225.73346847966508, + "liquidity24hUsdChange": -0.12445608665719302, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 58.71087791705942, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "11817966089647" + "amount": "11907731763730" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", - "amount": "5026886907" + "amount": "5092126015" }, "weight": "536870912000000" } @@ -18068,34 +18438,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1665", + "id": "1638", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1665", - "amount": "32076409143039748714" + "denom": "gamm/pool/1638", + "amount": "62706430932585395171775" }, - "liquidityUsd": 310.4329369223279, - "liquidity24hUsdChange": -5.486469401809522, + "liquidityUsd": 218.182738318205, + "liquidity24hUsdChange": -89.0223318118176, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 2.2036459137428306, + "volume7dUsd": 667.7133213719725, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", - "amount": "13175719" + "denom": "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", + "amount": "40893032996" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "11051536" + "denom": "uosmo", + "amount": "121075684" }, "weight": "536870912000000" } @@ -18114,24 +18484,24 @@ "denom": "gamm/pool/549", "amount": "46856346072623442465" }, - "liquidityUsd": 307.54882298851265, - "liquidity24hUsdChange": -3.9530960393019385, - "volume24hUsd": 11.309454244420447, - "volume24hUsdChange": 233.15023338882176, - "volume7dUsd": 42.15584084180275, + "liquidityUsd": 213.40322492399332, + "liquidity24hUsdChange": -2.2595233275800752, + "volume24hUsd": 1.3215211853812945, + "volume24hUsdChange": -20.276534799961283, + "volume7dUsd": 59.217769570040296, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "557428159" + "amount": "527414992" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "152677764" + "amount": "161459017" }, "weight": "536870912000000" } @@ -18140,34 +18510,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1390", + "id": "298", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1390", - "amount": "112447829134134501300" + "denom": "gamm/pool/298", + "amount": "370479285208305966" }, - "liquidityUsd": 302.73860589012804, - "liquidity24hUsdChange": -7.63171103819425, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 33.70993679973852, + "liquidityUsd": 193.70884742261055, + "liquidity24hUsdChange": -2.289677248438058, + "volume24hUsd": 4.492272347512327, + "volume24hUsdChange": 4.382356421111345, + "volume7dUsd": 98.01738752474944, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", - "amount": "392079123" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "12032564" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "235943757" + "amount": "107228661" }, "weight": "536870912000000" } @@ -18176,119 +18546,80 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1jajm3c4wrmzuqjggtga5455zrmu9mhpua6s55sn6dc7zqwr6ykhskc5k8u", - "id": "1112", - "current_tick_liquidity": "118408393.693578482629773028", - "token0": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", - "token0Amount": "127502226", - "token1": "uosmo", - "token1Amount": "109960731", - "current_sqrt_price": "0.928683549132937805137024703326041384", - "current_tick": "-1375469", + "address": "osmo1gdr65wegcfce7muym28qjsa5ea54hwqt04a6d05a436p384suu5s5pyf4v", + "id": "1076", + "current_tick_liquidity": "741443053.855858185636456138", + "token0": "uosmo", + "token0Amount": "151389144", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "52607941", + "current_sqrt_price": "0.948688250020506592410821206114198060", + "current_tick": "-999907", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 280.91943144786615, - "liquidity24hUsdChange": -4.851529255094046, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 35.63440411092329, + "liquidityUsd": 189.29147906733863, + "liquidity24hUsdChange": -76.95491374793355, + "volume24hUsd": 82.51430999654752, + "volume24hUsdChange": 340674.2920663346, + "volume7dUsd": 1208.9547365755352, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "298", + "id": "954", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/298", - "amount": "370479285208305966" + "denom": "gamm/pool/954", + "amount": "21160308417712683671464" }, - "liquidityUsd": 267.73982513470355, - "liquidity24hUsdChange": -4.54053088973682, - "volume24hUsd": 3.3308228181464035, - "volume24hUsdChange": -61.93598659661781, - "volume7dUsd": 51.54613978891466, + "liquidityUsd": 186.87802739993106, + "liquidity24hUsdChange": 0.5161474281114875, + "volume24hUsd": 7.723439642063493, + "volume24hUsdChange": null, + "volume7dUsd": 89.29845427216377, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "12366053" + "denom": "ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28", + "amount": "21619700595" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "104335994" + "amount": "207107885" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "895", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000200000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/895", - "amount": "2447224976780564733246" - }, - "liquidityUsd": 266.9685082298554, - "liquidity24hUsdChange": 0.05562624690551027, - "volume24hUsd": 0.11957186698959504, - "volume24hUsdChange": -90.02620751179423, - "volume7dUsd": 3.553819452178141, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "133417080798860470000" - }, - { - "denom": "ibc/5D270A584B1078FBE07D14570ED5E88EC1FEDA8518B76C322606291E6FD8286F", - "amount": "24844562274476724000000" - }, - { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "133520021" - } - ], - "scaling_factors": [ - "1000000000000", - "1000000000000", - "1" - ], - "scaling_factor_controller": "" - }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1qymc3d9y6xx6x7mj2x6deguffudc5wg8cssjgmzu6ryjyzw3ut3q6dupwu", - "id": "1481", - "current_tick_liquidity": "154302591.852298413415441542", - "token0": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", - "token0Amount": "286194166", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "59778869", - "current_sqrt_price": "0.834542159312326484263739431806677997", - "current_tick": "-3035394", + "address": "osmo1jadryz4m7sc2lev9e55tcph3wr6sg7x7z4k5wzarp8zy8pvkv65sq2uj22", + "id": "1275", + "current_tick_liquidity": "150238269203480578.017253767296549135", + "token0": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token0Amount": "121029552", + "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "token1Amount": "61756041626291260000", + "current_sqrt_price": "1000280.989357030848487204741163612158239821", + "current_tick": "108000562", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 257.36833765827583, - "liquidity24hUsdChange": -5.267799773315846, - "volume24hUsd": 7.575308371299239, - "volume24hUsdChange": 18.28295288486695, - "volume7dUsd": 1465.3587845991087, + "liquidityUsd": 182.94464614371515, + "liquidity24hUsdChange": -88.53810581141545, + "volume24hUsd": 102.90008567966561, + "volume24hUsdChange": 54.16633388856822, + "volume7dUsd": 11267.047031009983, "taker_fee": "0.001000000000000000" }, { @@ -18301,26 +18632,26 @@ }, "total_shares": { "denom": "gamm/pool/664", - "amount": "103371899612984955861" + "amount": "102949293655251964888" }, - "liquidityUsd": 253.3973451589239, - "liquidity24hUsdChange": -6.105201704518103, - "volume24hUsd": 2.3186242433282516, - "volume24hUsdChange": -56.275417904767565, - "volume7dUsd": 13.294163047915069, + "liquidityUsd": 182.01602958028542, + "liquidity24hUsdChange": -1.2793588735765244, + "volume24hUsd": 0.8706794892983495, + "volume24hUsdChange": -2.732189805125576, + "volume7dUsd": 24.327793091692644, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "11769564" + "amount": "11309303" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "9315023649727" + "amount": "9620880070379" }, "weight": "536870912000000" } @@ -18337,26 +18668,62 @@ }, "total_shares": { "denom": "gamm/pool/959", - "amount": "2202540149816568078673" + "amount": "2189219361574525595139" }, - "liquidityUsd": 249.52557542116222, - "liquidity24hUsdChange": -4.1326796531348995, + "liquidityUsd": 181.12421154570376, + "liquidity24hUsdChange": -2.912878025551243, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 62.31341192129557, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", - "amount": "561735913762" + "amount": "538509698452" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "194471404" + "amount": "200731209" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1508", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1508", + "amount": "669366744218279438" + }, + "liquidityUsd": 177.22943665570529, + "liquidity24hUsdChange": -44.90989482788657, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 36.790251097630374, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", + "amount": "145809720220" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "amount": "3245849422" }, "weight": "536870912000000" } @@ -18375,24 +18742,24 @@ "denom": "gamm/pool/937", "amount": "12388654387688566953" }, - "liquidityUsd": 241.40836271965992, - "liquidity24hUsdChange": -4.298353446051997, - "volume24hUsd": 2.0696088123549026, - "volume24hUsdChange": 355.1443632841736, - "volume7dUsd": 9.45943780972747, + "liquidityUsd": 174.98021625504452, + "liquidity24hUsdChange": -4.490953748762952, + "volume24hUsd": 0.7633954883093208, + "volume24hUsdChange": 25.863264320382505, + "volume7dUsd": 24.463955308861156, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "10763302455" + "amount": "11324721211" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "1668787981017323300000" + "amount": "1588848914051785000000" }, "weight": "536870912000000" } @@ -18411,24 +18778,24 @@ "denom": "gamm/pool/786", "amount": "340035839805529302376959" }, - "liquidityUsd": 225.7280952109776, - "liquidity24hUsdChange": 4.31398968869306, - "volume24hUsd": 235.37516157630378, - "volume24hUsdChange": 166.87390207784722, - "volume7dUsd": 6909.288811662872, + "liquidityUsd": 169.79501945188045, + "liquidity24hUsdChange": 2.3250863105626745, + "volume24hUsd": 24.174238355281013, + "volume24hUsdChange": -68.74463220872099, + "volume7dUsd": 1094.6476103741845, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", - "amount": "595600393831" + "amount": "564646807914" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "175924490" + "amount": "188175613" }, "weight": "536870912000000" } @@ -18447,30 +18814,66 @@ "denom": "gamm/pool/1595", "amount": "56890392475373732116" }, - "liquidityUsd": 223.78925704757427, - "liquidity24hUsdChange": -5.7818231559719395, - "volume24hUsd": 8.808323088093514, - "volume24hUsdChange": 387.1708035723597, - "volume7dUsd": 26.337996197529804, + "liquidityUsd": 168.31384057162495, + "liquidity24hUsdChange": -3.2992293577607557, + "volume24hUsd": 2.137923901331218, + "volume24hUsdChange": -5.720172974581225, + "volume7dUsd": 66.9367714517251, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6253024" + "amount": "6358532" }, "weight": "322122547200000" }, { "token": { "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "60696153961238274000" + "amount": "60315509946708570000" }, "weight": "751619276800000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "866", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/866", + "amount": "993529433794748159584123054622421" + }, + "liquidityUsd": 160.910435, + "liquidity24hUsdChange": -1.9476838592497578, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", + "amount": "1724420408640962000000" + }, + "weight": "5368709120" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "160910435" + }, + "weight": "5368709120" + } + ], + "total_weight": "10737418240" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1086", @@ -18483,24 +18886,24 @@ "denom": "gamm/pool/1086", "amount": "616881535507750692" }, - "liquidityUsd": 222.5943065984697, - "liquidity24hUsdChange": -5.6872376800321724, - "volume24hUsd": 0.018270387255673846, - "volume24hUsdChange": -98.3123219721781, - "volume7dUsd": 9.185801903562089, + "liquidityUsd": 157.88456198908102, + "liquidity24hUsdChange": -3.9305672799950773, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 18.904339117336683, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", - "amount": "160907052" + "amount": "160037099" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "86873855" + "amount": "87545720" }, "weight": "536870912000000" } @@ -18509,34 +18912,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1016", + "id": "818", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1016", - "amount": "286699478617234605513911" + "denom": "gamm/pool/818", + "amount": "320492259167927460108" }, - "liquidityUsd": 219.151176138834, - "liquidity24hUsdChange": -4.625407435814699, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 34.61777413028263, + "liquidityUsd": 157.83120074546304, + "liquidity24hUsdChange": -2.9530304469676523, + "volume24hUsd": 1.2933434250370381, + "volume24hUsdChange": -98.15804128341381, + "volume7dUsd": 211.3554544279854, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", - "amount": "46659116381738210000" + "denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", + "amount": "169371144" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "170798672" + "amount": "174916691" }, "weight": "536870912000000" } @@ -18553,98 +18956,119 @@ }, "total_shares": { "denom": "gamm/pool/949", - "amount": "143588588218746702145" + "amount": "143395941665282751553" }, - "liquidityUsd": 213.67764690957128, - "liquidity24hUsdChange": -5.540781661784025, - "volume24hUsd": 0.5342137855828811, - "volume24hUsdChange": null, - "volume7dUsd": 6.640841899569769, + "liquidityUsd": 156.21309625097993, + "liquidity24hUsdChange": -2.834180848080523, + "volume24hUsd": 0.9066356115506251, + "volume24hUsdChange": 16.53986619564092, + "volume7dUsd": 29.245666477226976, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", - "amount": "1596122942997" + "amount": "1533650688236" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "166532797" + "amount": "173123424" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1n78cf5ya9sqxpyytu0vqr770vs70y4vleghk2u5jd5ewdzsun67sggclpv", + "id": "1439", + "current_tick_liquidity": "2716449.916722265650166777", + "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token0Amount": "112242", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "83509699", + "current_sqrt_price": "24.622021431390618001575430666959958419", + "current_tick": "23062439", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 152.80817629772008, + "liquidity24hUsdChange": -1.6067163198032888, + "volume24hUsd": 5.701074514593211, + "volume24hUsdChange": 171.53358533116253, + "volume7dUsd": 15.500905770651183, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1210", + "id": "1016", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1210", - "amount": "48965599362096423829329" + "denom": "gamm/pool/1016", + "amount": "286591356446474987115469" }, - "liquidityUsd": 196.14752591291943, - "liquidity24hUsdChange": -4.6252153449778275, + "liquidityUsd": 152.44215131821414, + "liquidity24hUsdChange": -3.3935012337435677, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 50.83877422002398, + "volume24hUsdChange": -100, + "volume7dUsd": 17.20451168389703, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6", - "amount": "4539946140" + "denom": "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", + "amount": "47155445668885160000" }, - "weight": "53687091200" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "152870441" + "amount": "168944268" }, - "weight": "53687091200" + "weight": "536870912000000" } ], - "total_weight": "107374182400" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "818", + "id": "1452", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.100000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/818", - "amount": "320492259167927460108" + "denom": "gamm/pool/1452", + "amount": "100000000000000000000" }, - "liquidityUsd": 194.95132713489363, - "liquidity24hUsdChange": -4.118906069091064, - "volume24hUsd": 1.0310179673661257, - "volume24hUsdChange": null, - "volume7dUsd": 19.48718935131019, + "liquidityUsd": 151.5338058791021, + "liquidity24hUsdChange": -2.3291309582386037, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 481.4771533183628, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", - "amount": "194664991" + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "21322418749302350000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "151938166" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "75958443" }, "weight": "536870912000000" } @@ -18653,34 +19077,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "807", + "id": "1346", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/807", - "amount": "53349401061968487600317" + "denom": "gamm/pool/1346", + "amount": "6250000000000000000" }, - "liquidityUsd": 191.14159261599823, - "liquidity24hUsdChange": -5.913477231926418, - "volume24hUsd": 0.7997934364787611, - "volume24hUsdChange": 1161.0907840613595, - "volume7dUsd": 8.715846914880077, + "liquidityUsd": 140.2071783944112, + "liquidity24hUsdChange": -6.66051234337286, + "volume24hUsd": 3.1501272866961085, + "volume24hUsdChange": -57.18900400086208, + "volume7dUsd": 71.07326587372613, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "692965024" + "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", + "amount": "45618562731" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", - "amount": "442845551" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "7269129" }, "weight": "536870912000000" } @@ -18689,34 +19113,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1356", + "id": "807", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1356", - "amount": "13254626727644913308" + "denom": "gamm/pool/807", + "amount": "52034869711688075652814" }, - "liquidityUsd": 191.0813952255055, - "liquidity24hUsdChange": -1.6761329291443892, - "volume24hUsd": 6.5166772111763756, - "volume24hUsdChange": 309.62393359905616, - "volume7dUsd": 82.80599369975666, + "liquidityUsd": 135.17778794890035, + "liquidity24hUsdChange": -2.1728521546424373, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 3.3450866527578165, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", - "amount": "1497498974729" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "670226410" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "539673812927" + "denom": "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", + "amount": "435683770" }, "weight": "536870912000000" } @@ -18735,24 +19159,24 @@ "denom": "gamm/pool/39", "amount": "10959629474713576483086" }, - "liquidityUsd": 190.77367114986137, - "liquidity24hUsdChange": -4.616656666217081, - "volume24hUsd": 0.08092096691747394, - "volume24hUsdChange": -91.79037205021461, - "volume7dUsd": 2.478914976195408, + "liquidityUsd": 134.60473271032686, + "liquidity24hUsdChange": -3.283255386105294, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 13.35908280592277, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "887636" + "amount": "847257" }, "weight": "53687091200000" }, { "token": { "denom": "uosmo", - "amount": "141193367" + "amount": "141610006" }, "weight": "1020054732800000" } @@ -18761,34 +19185,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "774", + "id": "961", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/774", - "amount": "421953092733777014700" + "denom": "gamm/pool/961", + "amount": "111566249290587854767" }, - "liquidityUsd": 188.35589682972264, - "liquidity24hUsdChange": -7.4739756676760525, + "liquidityUsd": 133.77068105988852, + "liquidity24hUsdChange": -3.393444051277476, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 3.7707542345460525, + "volume24hUsdChange": 0, + "volume7dUsd": 15.280841643868934, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", - "amount": "68348766341" + "denom": "ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E", + "amount": "10881480758914" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "146797921" + "amount": "148251580" }, "weight": "536870912000000" } @@ -18796,38 +19220,40 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "913", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1448", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/913", - "amount": "141602588803538779200" + "denom": "gamm/pool/1448", + "amount": "72324920805136967832" }, - "liquidityUsd": 187.71640216636868, - "liquidity24hUsdChange": -3.2998312506863656, + "liquidityUsd": 132.99704460975013, + "liquidity24hUsdChange": 0.1869509269651675, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 40.54569307855639, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "211518696" + "token": { + "denom": "ibc/1570B676D4F35BACD92F470C01E4FD7B19CA7B8D62DA974A76A59079CEE338E3", + "amount": "21355716894" + }, + "weight": "536870912000000" }, { - "denom": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", - "amount": "82695323" + "token": { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "132863374" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -18839,26 +19265,26 @@ }, "total_shares": { "denom": "gamm/pool/936", - "amount": "9253667023411381825" + "amount": "9208441532183920065" }, - "liquidityUsd": 187.4778442719792, - "liquidity24hUsdChange": -5.623579031691485, - "volume24hUsd": 4.47028435880011, - "volume24hUsdChange": 728.560778207633, - "volume7dUsd": 20.11479614525899, + "liquidityUsd": 132.31717431510125, + "liquidity24hUsdChange": -2.5173905340251137, + "volume24hUsd": 0.2639682169166581, + "volume24hUsdChange": -70.06239102552276, + "volume7dUsd": 23.035641943112616, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "8414286498" + "amount": "8655654619" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "338933373" + "amount": "326573534" }, "weight": "536870912000000" } @@ -18877,24 +19303,24 @@ "denom": "gamm/pool/1377", "amount": "497596472111079172556" }, - "liquidityUsd": 183.62736421550645, - "liquidity24hUsdChange": -4.62521534497783, + "liquidityUsd": 129.06290378761105, + "liquidity24hUsdChange": -3.3934440512774806, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 29.011475858257175, + "volume7dUsd": 0.9324023054002436, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE", - "amount": "43664883261" + "amount": "43690608276" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "143112670" + "amount": "143034178" }, "weight": "536870912000000" } @@ -18903,18 +19329,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1509", + "id": "1210", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1509", - "amount": "108513745097335005490" + "denom": "gamm/pool/1210", + "amount": "48965599362096423829329" }, - "liquidityUsd": 181.81401399027084, - "liquidity24hUsdChange": -4.625215344977826, + "liquidityUsd": 128.1620461289977, + "liquidity24hUsdChange": -3.393444051277477, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -18922,51 +19348,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/76C7288A12425C0315EBF706264BBDB1FBBD69BF1C00B7BF12634E12531E8F44", - "amount": "831003" + "denom": "ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6", + "amount": "4889830640" }, - "weight": "536870912000000" + "weight": "53687091200" }, { "token": { "denom": "uosmo", - "amount": "141699409" + "amount": "142035801" }, - "weight": "536870912000000" + "weight": "53687091200" } ], - "total_weight": "1073741824000000" + "total_weight": "107374182400" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1346", + "id": "1509", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1346", - "amount": "6250000000000000000" + "denom": "gamm/pool/1509", + "amount": "108513745097335005490" }, - "liquidityUsd": 177.7621976783852, - "liquidity24hUsdChange": -6.4877422777059826, + "liquidityUsd": 127.85851218390857, + "liquidity24hUsdChange": -3.393444051277482, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 9.058083912403212, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", - "amount": "43496296116" + "denom": "ibc/76C7288A12425C0315EBF706264BBDB1FBBD69BF1C00B7BF12634E12531E8F44", + "amount": "831003" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "7611162" + "denom": "uosmo", + "amount": "141699409" }, "weight": "536870912000000" } @@ -18983,26 +19409,26 @@ }, "total_shares": { "denom": "gamm/pool/788", - "amount": "950161369695318197504" + "amount": "950316710338374402461" }, - "liquidityUsd": 176.39262851916985, - "liquidity24hUsdChange": -17.061258662883773, - "volume24hUsd": 0.1342706856939098, - "volume24hUsdChange": -77.30450183653124, - "volume7dUsd": 6.415661930413589, + "liquidityUsd": 126.78715895467381, + "liquidity24hUsdChange": -3.393444051277466, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 4.7074003828093165, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", - "amount": "30685964905348" + "amount": "30034400098200" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "137474173" + "amount": "140512080" }, "weight": "536870912000000" } @@ -19011,127 +19437,125 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "961", + "id": "867", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/961", - "amount": "111566249290587854767" + "denom": "gamm/pool/867", + "amount": "240257005819814597" }, - "liquidityUsd": 175.58440347540483, - "liquidity24hUsdChange": -4.630625527286687, + "liquidityUsd": 126.5083502613589, + "liquidity24hUsdChange": -2.198868727887158, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 3.983818813105736, + "volume24hUsdChange": 0, + "volume7dUsd": 33.050084985672015, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E", - "amount": "11784955925295" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "7871572" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "136844271" + "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "amount": "5171604" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1453", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "913", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1453", - "amount": "26512606942471701780" + "denom": "gamm/pool/913", + "amount": "141602588803538779200" }, - "liquidityUsd": 169.08609502593453, - "liquidity24hUsdChange": -5.770462295435853, - "volume24hUsd": 2.214640656809423, - "volume24hUsdChange": -40.81858342970259, - "volume7dUsd": 24.488723956462287, + "liquidityUsd": 123.54009531116925, + "liquidity24hUsdChange": -3.584807710262436, + "volume24hUsd": 2.0961351979957557, + "volume24hUsdChange": 2.569034533797679, + "volume7dUsd": 4.139768744439108, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "16321915378990408000" - }, - "weight": "536870912000000" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "209492617" }, { - "token": { - "denom": "uosmo", - "amount": "66106853" - }, - "weight": "536870912000000" + "denom": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", + "amount": "84932007" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1lrle6xmke4dzcnevw003j5hxz2h34w3w9r8awt5ep8fy6vaw8lmqnjh0r8", - "id": "1378", - "current_tick_liquidity": "69250986.533803520073790207", - "token0": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", - "token0Amount": "6618389979", - "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "token1Amount": "14436055", - "current_sqrt_price": "0.406042814678905613819978590249925487", - "current_tick": "-8351293", + "address": "osmo1qymc3d9y6xx6x7mj2x6deguffudc5wg8cssjgmzu6ryjyzw3ut3q6dupwu", + "id": "1481", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "token0Amount": "248421041", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "13093", + "current_sqrt_price": "0.754199132667344209221311109494678935", + "current_tick": "-4311837", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 167.7888456327471, - "liquidity24hUsdChange": -16.660666561145586, - "volume24hUsd": 15.413464305378763, - "volume24hUsdChange": -86.27107248485324, - "volume7dUsd": 2843.538739626806, + "spread_factor": "0.000500000000000000", + "liquidityUsd": 122.47200022112304, + "liquidity24hUsdChange": -4.483686241472074, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 151.40606192293518, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "808", + "id": "1453", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/808", - "amount": "157429188495841586487616" + "denom": "gamm/pool/1453", + "amount": "26512606942471701780" }, - "liquidityUsd": 165.69220173511502, - "liquidity24hUsdChange": -4.625215344977817, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.26033548089281283, + "liquidityUsd": 119.64658635135635, + "liquidity24hUsdChange": -3.9727161342626327, + "volume24hUsd": 0.9997706990175017, + "volume24hUsdChange": 108.93214484404791, + "volume7dUsd": 799.9765694383601, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6", - "amount": "87789814418" + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "16836590938470330000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "129134639" + "amount": "66462772" }, "weight": "536870912000000" } @@ -19140,70 +19564,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "866", + "id": "966", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/866", - "amount": "993529433794748159584123054622421" + "denom": "gamm/pool/966", + "amount": "105586762137849048427" }, - "liquidityUsd": 165.077292, - "liquidity24hUsdChange": 0, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 117.656192, + "liquidity24hUsdChange": -0.759334592660478, + "volume24hUsd": 0.907436, + "volume24hUsdChange": -50.4661964580969, + "volume7dUsd": 95.27716600000001, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", - "amount": "1680678670892369200000" + "denom": "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", + "amount": "347087511314" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "165077292" + "amount": "117656192" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "793", + "id": "1496", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/793", - "amount": "6212745879497339259357" + "denom": "gamm/pool/1496", + "amount": "432129130382320891" }, - "liquidityUsd": 154.02365683848643, - "liquidity24hUsdChange": -5.044136823633935, - "volume24hUsd": 0.02663485019187681, - "volume24hUsdChange": -69.43627608652838, - "volume7dUsd": 15.844749968659936, + "liquidityUsd": 111.9908213426327, + "liquidity24hUsdChange": -45.57333599282381, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 36.790251097630374, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", - "amount": "355456492" + "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", + "amount": "95560181939" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "120040588" + "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "amount": "2051043831" }, "weight": "536870912000000" } @@ -19212,34 +19636,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1391", + "id": "808", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1391", - "amount": "31176753735892443479" + "denom": "gamm/pool/808", + "amount": "157429188495841586487616" }, - "liquidityUsd": 153.91867879568358, - "liquidity24hUsdChange": 34.94730426983017, - "volume24hUsd": 84.75850797584172, - "volume24hUsdChange": 71.59026720533342, - "volume7dUsd": 176.52969344053733, + "liquidityUsd": 111.2931050824577, + "liquidity24hUsdChange": -4.650493524850797, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.1875348365796153, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "amount": "154249642" + "denom": "ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6", + "amount": "91927147471" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", - "amount": "22420540" + "denom": "uosmo", + "amount": "123340769" }, "weight": "536870912000000" } @@ -19248,70 +19672,77 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "867", + "id": "1660", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.100000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/867", - "amount": "240257005819814597" + "denom": "gamm/pool/1660", + "amount": "30843322790166000700" }, - "liquidityUsd": 153.79273656143732, - "liquidity24hUsdChange": -5.510061549517455, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 14.848080037752183, + "liquidityUsd": 110.5918124701544, + "liquidity24hUsdChange": -3.1679961030824586, + "volume24hUsd": 0.13957804130830612, + "volume24hUsdChange": null, + "volume7dUsd": 87.05963375204816, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "7207622" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "577584923448" }, - "weight": "5368709120" + "weight": "354334801920000" }, { "token": { - "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", - "amount": "5643761" + "denom": "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", + "amount": "37895562844" }, - "weight": "5368709120" + "weight": "365072220160000" + }, + { + "token": { + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "3345435452" + }, + "weight": "354334801920000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "954", + "id": "774", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/954", - "amount": "15052997127506530149696" + "denom": "gamm/pool/774", + "amount": "421953092733777014700" }, - "liquidityUsd": 148.01459264649702, - "liquidity24hUsdChange": -3.7920499352400645, - "volume24hUsd": 2.6964300818665006, - "volume24hUsdChange": 497.36527401255915, - "volume7dUsd": 144.53805711534278, + "liquidityUsd": 110.04525854742052, + "liquidity24hUsdChange": -3.3934440512774686, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 47.56048026731806, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0F91EE8B98AAE3CF393D94CD7F89A10F8D7758C5EC707E721899DFE65C164C28", - "amount": "19642784107" + "denom": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", + "amount": "82353416083" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "115357336" + "amount": "121957841" }, "weight": "536870912000000" } @@ -19320,34 +19751,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1141", + "id": "793", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1141", - "amount": "100000000000000000000" + "denom": "gamm/pool/793", + "amount": "6212745879497339259357" }, - "liquidityUsd": 146.55949923756023, - "liquidity24hUsdChange": -4.539968887555399, - "volume24hUsd": 1.2598703659213744, - "volume24hUsdChange": -64.72438119717982, - "volume7dUsd": 14.840656296324275, + "liquidityUsd": 109.50722551856735, + "liquidity24hUsdChange": -3.069576334711465, + "volume24hUsd": 0.3665052189454811, + "volume24hUsdChange": 20.823425512189083, + "volume7dUsd": 7.964231281049948, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6768049" + "denom": "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", + "amount": "351686590" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "57122045" + "amount": "121361565" }, "weight": "536870912000000" } @@ -19366,24 +19797,24 @@ "denom": "gamm/pool/883", "amount": "13051797358843715562" }, - "liquidityUsd": 146.4027688808912, - "liquidity24hUsdChange": -4.756883788795782, + "liquidityUsd": 109.0045649263864, + "liquidity24hUsdChange": -4.3202329860044, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1.0092177618632312, + "volume24hUsdChange": 0, + "volume7dUsd": 15.119784032338345, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/E27CD305D33F150369AB526AEB6646A76EC3FFB1A6CA58A663B5DE657A89D55D", - "amount": "1673597" + "amount": "1579985" }, "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "57037402" + "amount": "60439184" }, "weight": "1073741824" } @@ -19392,34 +19823,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "966", + "id": "1141", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/966", - "amount": "109788999385004562827" + "denom": "gamm/pool/1141", + "amount": "100000000000000000000" }, - "liquidityUsd": 141.206044, - "liquidity24hUsdChange": -0.9251517841342932, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 11.551517690449767, + "liquidityUsd": 106.05125536888387, + "liquidity24hUsdChange": -2.2883197483191635, + "volume24hUsd": 1.1837200157385437, + "volume24hUsdChange": 53.201356985243144, + "volume7dUsd": 26.280528851081787, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", - "amount": "311964159913" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6597446" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "141206044" + "denom": "uosmo", + "amount": "58617003" }, "weight": "536870912000000" } @@ -19428,91 +19859,76 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1lhnrzjtgxavrf23wx5lug770afhucnv8nq9psxdhdll5ln6d46mqxfhtwc", - "id": "1303", - "current_tick_liquidity": "9270715.705104435227310533", - "token0": "ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424", - "token0Amount": "865462", - "token1": "uosmo", - "token1Amount": "108933966", - "current_sqrt_price": "10.715405585567018974024830383858031613", - "current_tick": "18148199", + "address": "osmo1lrle6xmke4dzcnevw003j5hxz2h34w3w9r8awt5ep8fy6vaw8lmqnjh0r8", + "id": "1378", + "current_tick_liquidity": "45437486.454516095581365021", + "token0": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", + "token0Amount": "6648621772", + "token1": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "token1Amount": "11029343", + "current_sqrt_price": "0.322503253066363087289072265850158497", + "current_tick": "-8959917", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 139.7727891606075, - "liquidity24hUsdChange": -4.625215344977828, + "liquidityUsd": 105.29179508087473, + "liquidity24hUsdChange": -10.854093166683814, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 91.48975289561277, + "volume7dUsd": 4003.293757481502, "taker_fee": "0.001000000000000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1448", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1448", - "amount": "72324920805136967832" - }, - "liquidityUsd": 132.72118632111275, - "liquidity24hUsdChange": -0.23153556257090924, + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ggp52x7klm75f6urvug9g50g3k57xzqwcv95s34p6wgmldl380uq2svyzc", + "id": "1292", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", + "token0Amount": "624", + "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token1Amount": "34557607228742100", + "current_sqrt_price": "1.078553366901499689527180298469625753", + "current_tick": "163277", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 103.46043400757522, + "liquidity24hUsdChange": -2.866985634857237, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.05175818080991061, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/1570B676D4F35BACD92F470C01E4FD7B19CA7B8D62DA974A76A59079CEE338E3", - "amount": "21355716894" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "132863374" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1452", + "id": "1391", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.100000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1452", - "amount": "100000000000000000000" + "denom": "gamm/pool/1391", + "amount": "31176753735892443479" }, - "liquidityUsd": 124.99691737551683, - "liquidity24hUsdChange": -3.5126427567959544, + "liquidityUsd": 101.5460864694631, + "liquidity24hUsdChange": -6.157714232257971, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 3.4282168112741402, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "11853502840220726000" + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "amount": "102037188" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "63801222" + "denom": "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", + "amount": "33893140" }, "weight": "536870912000000" } @@ -19531,51 +19947,30 @@ "denom": "gamm/pool/645", "amount": "885209419236634389469" }, - "liquidityUsd": 124.1836189484219, - "liquidity24hUsdChange": -3.8690330803391384, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 23.073510492403415, + "liquidityUsd": 92.8257956410741, + "liquidity24hUsdChange": -0.6666993005477051, + "volume24hUsd": 0.24439828031647, + "volume24hUsdChange": -92.70039077990698, + "volume7dUsd": 37.902157891455715, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5730320" + "amount": "5734895" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/9BCB27203424535B6230D594553F1659C77EC173E36D9CF4759E7186EE747E84", - "amount": "6734205884" + "amount": "6739169741" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ggp52x7klm75f6urvug9g50g3k57xzqwcv95s34p6wgmldl380uq2svyzc", - "id": "1292", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", - "token0Amount": "624", - "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "34557607228742100", - "current_sqrt_price": "1.078553366901499689527180298469625753", - "current_tick": "163277", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 121.60590612846946, - "liquidity24hUsdChange": -3.1697509287582686, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "990", @@ -19588,24 +19983,24 @@ "denom": "gamm/pool/990", "amount": "1298477734186264693" }, - "liquidityUsd": 115.10988501401314, - "liquidity24hUsdChange": -7.333137556173548, - "volume24hUsd": 2.3001546420549177, - "volume24hUsdChange": 185.81571675138244, - "volume7dUsd": 5.704156981776232, + "liquidityUsd": 83.82591432264353, + "liquidity24hUsdChange": -1.8366336658009483, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 19.14241363513126, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", - "amount": "310296131" + "amount": "308042133" }, "weight": "429496729600000" }, { "token": { "denom": "uosmo", - "amount": "54654632" + "amount": "55689606" }, "weight": "644245094400000" } @@ -19622,26 +20017,26 @@ }, "total_shares": { "denom": "gamm/pool/978", - "amount": "1955658895348434502631" + "amount": "1939869075445036510835" }, - "liquidityUsd": 108.48838705492072, - "liquidity24hUsdChange": -4.625255953010534, + "liquidityUsd": 75.67716670856011, + "liquidity24hUsdChange": -3.3934440512774793, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.378227348891584, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250", - "amount": "312400694060" + "amount": "309878398016" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "84552010" + "amount": "83869346" }, "weight": "536870912000000" } @@ -19660,24 +20055,24 @@ "denom": "gamm/pool/822", "amount": "39022949854557828570" }, - "liquidityUsd": 103.13836192048146, - "liquidity24hUsdChange": -4.166779954874191, + "liquidityUsd": 70.18237427283438, + "liquidity24hUsdChange": -3.3280653196549888, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.5534649282364557, + "volume7dUsd": 7.50119678698101, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "1970010584" + "amount": "2093489936" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "41503711" + "amount": "39244050" }, "weight": "536870912000000" } @@ -19686,34 +20081,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "569", + "id": "825", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/569", - "amount": "100745715741571430682" + "denom": "gamm/pool/825", + "amount": "183974857576205939643" }, - "liquidityUsd": 95.72940036534705, - "liquidity24hUsdChange": -4.178137931766183, - "volume24hUsd": 0.7810349040085063, - "volume24hUsdChange": null, - "volume7dUsd": 11.628396193646484, + "liquidityUsd": 69.79554967569166, + "liquidity24hUsdChange": -3.2697354770415084, + "volume24hUsd": 0.02321401118870382, + "volume24hUsdChange": -99.80434667409234, + "volume7dUsd": 36.333576266946615, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "uion", - "amount": "120709" + "denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", + "amount": "117377841793726100000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "37313690" + "amount": "38672718" }, "weight": "536870912000000" } @@ -19722,34 +20117,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "825", + "id": "1071", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/825", - "amount": "183974857576205939643" + "denom": "gamm/pool/1071", + "amount": "254846029966068023683641" }, - "liquidityUsd": 92.55629995096112, - "liquidity24hUsdChange": -4.999359961105001, - "volume24hUsd": 0.3788824910661155, - "volume24hUsdChange": 34.34316632400727, - "volume7dUsd": 55.09737145368452, + "liquidityUsd": 68.49155332111003, + "liquidity24hUsdChange": -3.3934440512774575, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 38.79438702372435, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", - "amount": "127561965708982800000" + "denom": "ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E", + "amount": "6997286180065" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "35507661" + "amount": "75905878" }, "weight": "536870912000000" } @@ -19758,34 +20153,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1394", + "id": "569", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1394", - "amount": "132170749963339611281771" + "denom": "gamm/pool/569", + "amount": "100745715741571430682" }, - "liquidityUsd": 91.34728038378115, - "liquidity24hUsdChange": -4.625215344977829, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.2590585348501084, + "liquidityUsd": 66.5187784431456, + "liquidity24hUsdChange": -6.048277990335185, + "volume24hUsd": 1.0400332401677825, + "volume24hUsdChange": 156.78875553132414, + "volume7dUsd": 25.009811491072778, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", - "amount": "8620390891445804000000" + "denom": "uion", + "amount": "121651" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "37060897" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "397", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/397", + "amount": "100000000000000000000" + }, + "liquidityUsd": 66.15180983367651, + "liquidity24hUsdChange": -3.412082850692834, + "volume24hUsd": 2.083721505498005, + "volume24hUsdChange": -29.2825529611348, + "volume7dUsd": 23.551694917027437, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "8887100" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "71192838" + "amount": "36354832" }, "weight": "536870912000000" } @@ -19799,50 +20230,50 @@ "tokens": [ { "denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", - "amount": "79802522580" + "amount": "8202118315" }, { "denom": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", - "amount": "20197477420" + "amount": "91797881685" } ], - "liquidityUsd": 87.64878421525245, - "liquidity24hUsdChange": -2.042703960937325, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 64.42635137261176, + "liquidity24hUsdChange": -3.5871798358211047, + "volume24hUsd": 39.809575425801185, + "volume24hUsdChange": -87.39331404544303, + "volume7dUsd": 1462.8403333743659, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "397", + "id": "282", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/397", + "denom": "gamm/pool/282", "amount": "100000000000000000000" }, - "liquidityUsd": 82.96255955424635, - "liquidity24hUsdChange": -5.929061976265183, - "volume24hUsd": 2.597062945841693, - "volume24hUsdChange": 14.144870117254179, - "volume7dUsd": 16.476039897877094, + "liquidityUsd": 61.60862473120889, + "liquidity24hUsdChange": -4.3053112737515224, + "volume24hUsd": 0.33204362163559964, + "volume24hUsdChange": 78.1832234864009, + "volume7dUsd": 13.275418770814909, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "10046656" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "25373306714" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "32158826" + "amount": "34295618" }, "weight": "536870912000000" } @@ -19851,34 +20282,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "282", + "id": "827", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/282", + "denom": "gamm/pool/827", "amount": "100000000000000000000" }, - "liquidityUsd": 81.61732648033225, - "liquidity24hUsdChange": -2.2016415132620173, - "volume24hUsd": 1.8832716085582182, - "volume24hUsdChange": null, - "volume7dUsd": 7.191816312711783, + "liquidityUsd": 61.25416941887012, + "liquidity24hUsdChange": -1.5251191296057696, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 77.42357070946541, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "27578948145" + "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "amount": "31634351" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "31552804" + "amount": "32784602" }, "weight": "536870912000000" } @@ -19897,24 +20328,24 @@ "denom": "gamm/pool/624", "amount": "2321256264551810302" }, - "liquidityUsd": 81.53795318089112, - "liquidity24hUsdChange": -4.540367446490987, + "liquidityUsd": 60.877244550050584, + "liquidity24hUsdChange": -2.2911604447601985, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.961922906886334, + "volume7dUsd": 3.090814480398359, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "amount": "242160175" + "amount": "228599727" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "31696952" + "amount": "33584433" }, "weight": "536870912000000" } @@ -19923,106 +20354,106 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "968", + "id": "738", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/968", - "amount": "8473311702068763810241545" + "denom": "gamm/pool/738", + "amount": "146126240150663065" }, - "liquidityUsd": 78.57198649766694, - "liquidity24hUsdChange": -4.625215344977828, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 59.573597567059785, + "liquidity24hUsdChange": -2.231566980857729, + "volume24hUsd": 1.0371676000814465, + "volume24hUsdChange": -21.580426650364917, + "volume7dUsd": 37.01964851687528, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo130w50f7ta00dxkzpxemuxw7vnj6ks5mhe0fr8v/oDOGE", - "amount": "90000998124" + "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "amount": "21856180260" }, - "weight": "5368709120" + "weight": "719407022080000" }, { "token": { - "denom": "uosmo", - "amount": "61236226" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "19598588" }, - "weight": "5368709120" + "weight": "354334801920000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "738", + "id": "875", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/738", - "amount": "146126240150663065" + "denom": "gamm/pool/875", + "amount": "171767546709024084032" }, - "liquidityUsd": 77.9833335784607, - "liquidity24hUsdChange": -1.6486525137147336, - "volume24hUsd": 0.7596106447588927, - "volume24hUsdChange": 108.56074957645619, - "volume7dUsd": 10.603934729678187, + "liquidityUsd": 59.467176427705866, + "liquidity24hUsdChange": -1.6808754563702142, + "volume24hUsd": 0.4002818716827904, + "volume24hUsdChange": -31.196512063609166, + "volume7dUsd": 10.004210916970377, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "amount": "18880686345" + "denom": "ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06", + "amount": "151073048206502220000000" }, - "weight": "719407022080000" + "weight": "5368709120" }, { "token": { "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "26191910" + "amount": "29773973" }, - "weight": "354334801920000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "579", + "id": "737", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/579", - "amount": "5527931073648401909" + "denom": "gamm/pool/737", + "amount": "8232712992381212357" }, - "liquidityUsd": 77.41929841991026, - "liquidity24hUsdChange": -5.755257673122635, - "volume24hUsd": 3.654998786519664, - "volume24hUsdChange": -46.70557166160386, - "volume7dUsd": 19.753339114909018, + "liquidityUsd": 58.724282339381716, + "liquidity24hUsdChange": -1.928939920233702, + "volume24hUsd": 1.182223539480158, + "volume24hUsdChange": 61.64666740213676, + "volume7dUsd": 34.23636700961432, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "138738127" + "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", + "amount": "4310082906" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", - "amount": "4310208601" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "29387982" }, "weight": "536870912000000" } @@ -20031,70 +20462,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "875", + "id": "1414", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/875", - "amount": "171767546709024084032" + "denom": "gamm/pool/1414", + "amount": "383633410829792773341" }, - "liquidityUsd": 76.68246757031301, - "liquidity24hUsdChange": -7.936460885567152, + "liquidityUsd": 58.47817250315482, + "liquidity24hUsdChange": -11.045462663242953, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 3.6166051770527363, + "volume24hUsdChange": -100, + "volume7dUsd": 39.64204803216826, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BB936517F7E5D77A63E0ADB05217A6608B0C4CF8FBA7EA2F4BAE4107A7238F06", - "amount": "114732481806644940000000" + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "amount": "2961331" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "38973996" + "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", + "amount": "481787873782" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1143", + "id": "579", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1143", - "amount": "8049550912759857351198" + "denom": "gamm/pool/579", + "amount": "5527931073648401909" }, - "liquidityUsd": 75.80549446206145, - "liquidity24hUsdChange": -12.888538968532206, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 915.067626467941, + "liquidityUsd": 57.31753817086849, + "liquidity24hUsdChange": -2.8677955795520345, + "volume24hUsd": 0.35950462983203824, + "volume24hUsdChange": 6.548267885148454, + "volume7dUsd": 7.639154965623251, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9", - "amount": "3107279848477" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "141400429" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "59080120" + "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", + "amount": "4231072764" }, "weight": "536870912000000" } @@ -20111,26 +20542,26 @@ }, "total_shares": { "denom": "gamm/pool/771", - "amount": "32645740993483764418134" + "amount": "32645741690917276989671" }, - "liquidityUsd": 75.79322136439448, - "liquidity24hUsdChange": -4.726422270392425, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 4.377520871750976, + "liquidityUsd": 56.008219873160755, + "liquidity24hUsdChange": -1.1177284121152724, + "volume24hUsd": 0.18003104804391015, + "volume24hUsdChange": null, + "volume7dUsd": 1.626069103096623, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "7001466" + "amount": "6950947" }, "weight": "322122547200000" }, { "token": { "denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", - "amount": "12439756491" + "amount": "12479950524" }, "weight": "751619276800000" } @@ -20139,70 +20570,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1414", + "id": "968", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1414", - "amount": "383633410829792773341" + "denom": "gamm/pool/968", + "amount": "8473311702068763810241545" }, - "liquidityUsd": 75.36646316405165, - "liquidity24hUsdChange": -6.633740706901517, - "volume24hUsd": 0.7467212232372712, - "volume24hUsdChange": -43.66978801907575, - "volume7dUsd": 15.952805114112486, + "liquidityUsd": 55.25480171986871, + "liquidity24hUsdChange": -3.393444051277475, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "amount": "3190038" + "denom": "factory/osmo130w50f7ta00dxkzpxemuxw7vnj6ks5mhe0fr8v/oDOGE", + "amount": "90000998124" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", - "amount": "441685956698" + "denom": "uosmo", + "amount": "61236226" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "827", + "id": "846", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/827", - "amount": "100000000000000000000" + "denom": "gamm/pool/846", + "amount": "3042820544575360588" }, - "liquidityUsd": 72.6457163358065, - "liquidity24hUsdChange": -2.3534878913273056, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 139.39230173241268, + "liquidityUsd": 55.117244516186844, + "liquidity24hUsdChange": 31.932522108717965, + "volume24hUsd": 14.979629080057055, + "volume24hUsdChange": null, + "volume7dUsd": 14.979629080057055, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "amount": "37524319" + "denom": "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", + "amount": "677006426" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "27584753" + "amount": "61083778" }, "weight": "536870912000000" } @@ -20221,20 +20652,20 @@ "denom": "gamm/pool/1396", "amount": "110231361733909070154" }, - "liquidityUsd": 71.59765987295908, - "liquidity24hUsdChange": -2.4877114034216836, - "volume24hUsd": 4.770995855897757, - "volume24hUsdChange": null, - "volume7dUsd": 12.372391708093867, + "liquidityUsd": 53.26749690539066, + "liquidity24hUsdChange": -2.3231451660922278, + "volume24hUsd": 0.35952334322910984, + "volume24hUsdChange": -6.664058420798498, + "volume7dUsd": 35.21886426693424, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "24791232" + "amount": "14703263" }, { "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "1849478742" + "amount": "2320942044" } ], "scaling_factors": [ @@ -20243,72 +20674,148 @@ ], "scaling_factor_controller": "" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1lhnrzjtgxavrf23wx5lug770afhucnv8nq9psxdhdll5ln6d46mqxfhtwc", + "id": "1303", + "current_tick_liquidity": "9270715.705104435227310533", + "token0": "ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424", + "token0Amount": "1654105", + "token1": "uosmo", + "token1Amount": "58963225", + "current_sqrt_price": "6.360140471179860871842264208211437216", + "current_tick": "12045138", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 53.20382262190693, + "liquidity24hUsdChange": -3.3934440512774744, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "663", + "id": "1257", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003690000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/663", - "amount": "244205872381695201543" + "denom": "gamm/pool/1257", + "amount": "2000000000000000000" }, - "liquidityUsd": 69.36539425696952, - "liquidity24hUsdChange": -1.029775842733389, - "volume24hUsd": 3.121531668830664, - "volume24hUsdChange": 503.9416533276138, - "volume7dUsd": 16.16050238650026, + "liquidityUsd": 48.65775714379919, + "liquidity24hUsdChange": 0.30649312172702287, + "volume24hUsd": 4.177509444385806, + "volume24hUsdChange": -18.37508084461064, + "volume7dUsd": 368.55743382123984, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "196894353955" + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "amount": "952464644983492400" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "1367974032" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "24305434" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1401", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1401", + "amount": "100000000000000000000" + }, + "liquidityUsd": 47.80156803855057, + "liquidity24hUsdChange": -5.360327013484362, + "volume24hUsd": 1.1429072688783866, + "volume24hUsdChange": -72.45507716456035, + "volume7dUsd": 16.58572114298252, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "amount": "1253477" + }, + { + "denom": "uosmo", + "amount": "39480555" + } + ], + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1jaewd00sqexxkyj94cfvs6nm49eqlex0yxu38n6nnjxsxqnuzyxsumqm3a", + "id": "1359", + "current_tick_liquidity": "99593255.498855656116358262", + "token0": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", + "token0Amount": "214015399", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "46346336", + "current_sqrt_price": "0.465355881863217457942195922524681855", + "current_tick": "-7834440", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 46.39296392164833, + "liquidity24hUsdChange": 0.18695092696517457, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 4.589650366744885, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "737", + "id": "694", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/737", - "amount": "8232712992381212357" + "denom": "gamm/pool/694", + "amount": "100000000000000000000" }, - "liquidityUsd": 67.80697398198592, - "liquidity24hUsdChange": -2.674563388952734, + "liquidityUsd": 46.09060414405766, + "liquidity24hUsdChange": -1.1734790346351875, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 15.010559266533177, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", - "amount": "3668076144" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "5720113" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "34488710" + "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", + "amount": "97439" }, "weight": "536870912000000" } @@ -20316,69 +20823,71 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1401", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1455", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1401", - "amount": "100000000000000000000" + "denom": "gamm/pool/1455", + "amount": "1000000000000000000" }, - "liquidityUsd": 65.21341938219018, - "liquidity24hUsdChange": -5.191751005674602, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 1.8908934315045236, + "liquidityUsd": 45.84183308582684, + "liquidity24hUsdChange": -2.1754407515152394, + "volume24hUsd": 1.9643637172344057, + "volume24hUsdChange": 96.79019293891591, + "volume7dUsd": 49.144343008983476, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "amount": "1374595" + "token": { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "22907159" + }, + "weight": "536870912000000" }, { - "denom": "uosmo", - "amount": "38281521" + "token": { + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "6464161103654516000" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "691", + "id": "663", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003690000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/691", - "amount": "11172761169089850047868" + "denom": "gamm/pool/663", + "amount": "244205872381695201543" }, - "liquidityUsd": 63.69964205431831, - "liquidity24hUsdChange": -4.625215344977828, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 17.758009189663515, + "liquidityUsd": 45.82161128973327, + "liquidity24hUsdChange": -3.6596546107482246, + "volume24hUsd": 1.2516899299798516, + "volume24hUsdChange": 225.16319073616066, + "volume7dUsd": 31.13174479464581, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", - "amount": "4978656243899" + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "amount": "197380556359" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "49645247" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "1367171609" }, "weight": "536870912000000" } @@ -20387,91 +20896,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "523", + "id": "1693", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/523", - "amount": "100000000000000000000" + "denom": "gamm/pool/1693", + "amount": "118780337624617383200" }, - "liquidityUsd": 60.6270286914218, - "liquidity24hUsdChange": -4.540504708206709, + "liquidityUsd": 44.68534033625631, + "liquidity24hUsdChange": -2.65779040030469, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.3950665824354265, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2802482" + "amount": "2808725" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "23606346" + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "amount": "35906452743" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1jaewd00sqexxkyj94cfvs6nm49eqlex0yxu38n6nnjxsxqnuzyxsumqm3a", - "id": "1359", - "current_tick_liquidity": "99593255.498855656116358262", - "token0": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", - "token0Amount": "164286668", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "60375131", - "current_sqrt_price": "0.606216831103158142696655840430019718", - "current_tick": "-6325012", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 60.31051876352765, - "liquidity24hUsdChange": -0.23153556257091276, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.5498975168458937, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "969", + "id": "523", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/969", - "amount": "29336536124619759832" + "denom": "gamm/pool/523", + "amount": "100000000000000000000" }, - "liquidityUsd": 56.68355754734601, - "liquidity24hUsdChange": -4.625215344977818, + "liquidityUsd": 43.86349388628962, + "liquidity24hUsdChange": -2.29229733277649, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 3.4646002219853402, + "volume24hUsdChange": 0, + "volume7dUsd": 2.4856407764132715, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54", - "amount": "151421420862" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2731110" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "44177159" + "amount": "24223274" }, "weight": "536870912000000" } @@ -20480,34 +20968,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "653", + "id": "691", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/653", - "amount": "2276197931650232229527" + "denom": "gamm/pool/691", + "amount": "11172761169089850047868" }, - "liquidityUsd": 56.56631588888329, - "liquidity24hUsdChange": -4.625215344977829, + "liquidityUsd": 42.14921076074793, + "liquidity24hUsdChange": -3.3934440512774673, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 25.552728820510268, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", - "amount": "346846638" + "denom": "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", + "amount": "5291295589385" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "44085785" + "amount": "46711933" }, "weight": "536870912000000" } @@ -20516,34 +21004,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1257", + "id": "1356", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1257", - "amount": "2000000000000000000" + "denom": "gamm/pool/1356", + "amount": "4679898267147163948" }, - "liquidityUsd": 55.130063627728845, - "liquidity24hUsdChange": -3.289478644808335, - "volume24hUsd": 0.5286094674659493, - "volume24hUsdChange": 26.52882202138863, - "volume7dUsd": 2.8765211339474335, + "liquidityUsd": 40.68942335498694, + "liquidity24hUsdChange": -67.30222059881585, + "volume24hUsd": 17.10741132098514, + "volume24hUsdChange": 0.36413532178327984, + "volume7dUsd": 164.4814159557731, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "amount": "812489240531081500" + "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "amount": "587707747206" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "28086284" + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "amount": "171425049756" }, "weight": "536870912000000" } @@ -20552,34 +21040,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1455", + "id": "1143", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1455", - "amount": "1000000000000000000" + "denom": "gamm/pool/1143", + "amount": "7867880284602040094090" }, - "liquidityUsd": 54.99560477541401, - "liquidity24hUsdChange": -3.6156606882429796, - "volume24hUsd": 1.8932856008192998, - "volume24hUsdChange": 78.20929271666162, - "volume7dUsd": 11.039626817276103, + "liquidityUsd": 40.46651082980663, + "liquidity24hUsdChange": -3.393444051277459, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.6138954485307299, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "27439158" + "denom": "ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9", + "amount": "3912940130486" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "5343325117720321000" + "denom": "uosmo", + "amount": "44847078" }, "weight": "536870912000000" } @@ -20588,34 +21076,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1006", + "id": "653", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1006", - "amount": "745339167738949902" + "denom": "gamm/pool/653", + "amount": "2276197931650232229527" }, - "liquidityUsd": 54.840571776645675, - "liquidity24hUsdChange": -4.153140034469741, + "liquidityUsd": 39.87696152373233, + "liquidity24hUsdChange": -3.3934440512774633, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 12.877046768391878, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", - "amount": "3079245674303512000" + "denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", + "amount": "346004250" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "21113920" + "amount": "44193709" }, "weight": "536870912000000" } @@ -20624,34 +21112,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1380", + "id": "969", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1380", - "amount": "6662483041860146309601" + "denom": "gamm/pool/969", + "amount": "29336536124619759832" }, - "liquidityUsd": 52.587066682708425, - "liquidity24hUsdChange": -3.238243404511118, - "volume24hUsd": 0.09803101312659965, - "volume24hUsdChange": -90.8777006543642, - "volume7dUsd": 13.959279420035092, + "liquidityUsd": 39.862028092523424, + "liquidity24hUsdChange": -3.3934440512774713, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", - "amount": "719790015277" + "denom": "ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54", + "amount": "151421420862" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "20245220" + "amount": "44177159" }, "weight": "536870912000000" } @@ -20670,38 +21158,38 @@ "denom": "gamm/pool/1611", "amount": "995701784921712512837" }, - "liquidityUsd": 50.67597853782903, - "liquidity24hUsdChange": -4.9079274012720875, + "liquidityUsd": 38.069461974073356, + "liquidity24hUsdChange": -3.3267023324901577, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 26.62225144768529, + "volume7dUsd": 7.804197830599043, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "amount": "18524" + "amount": "14767" }, "weight": "268435456000000" }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1167309" + "amount": "1241003" }, "weight": "268435456000000" }, { "token": { "denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "amount": "148307430" + "amount": "165234987" }, "weight": "268435456000000" }, { "token": { "denom": "uosmo", - "amount": "10122282" + "amount": "10787402" }, "weight": "268435456000000" } @@ -20710,34 +21198,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "846", + "id": "1602", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/846", - "amount": "3042820544575360588" + "denom": "gamm/pool/1602", + "amount": "214086712583288790102" }, - "liquidityUsd": 50.46667278344455, - "liquidity24hUsdChange": -29.271023617946373, + "liquidityUsd": 37.00930884621992, + "liquidity24hUsdChange": -1.5548010728129487, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 833.7832625936148, + "volume24hUsdChange": -100, + "volume7dUsd": 62.7084925240088, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", - "amount": "1049452369" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2334257" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "39331939" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "369596649412394500000" }, "weight": "536870912000000" } @@ -20746,34 +21234,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "694", + "id": "957", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/694", - "amount": "100000000000000000000" + "denom": "gamm/pool/957", + "amount": "416454913564630510650" }, - "liquidityUsd": 49.180767637141095, - "liquidity24hUsdChange": -4.4557794953701535, + "liquidityUsd": 35.926618, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.676766, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4543117" + "denom": "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", + "amount": "350434983289" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", - "amount": "122631" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "35926618" }, "weight": "536870912000000" } @@ -20782,34 +21270,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "975", + "id": "1006", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/975", - "amount": "35670607751267145513" + "denom": "gamm/pool/1006", + "amount": "745339167738949902" }, - "liquidityUsd": 48.46067973464934, - "liquidity24hUsdChange": -4.625215344977838, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 10.857413800181101, + "liquidityUsd": 35.85987930751336, + "liquidity24hUsdChange": -5.176813280215762, + "volume24hUsd": 1.011125690121565, + "volume24hUsdChange": 204.7547702345937, + "volume7dUsd": 18.13872288258538, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156", - "amount": "1042962312" + "denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", + "amount": "3256111536402406700" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "20012813" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1380", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1380", + "amount": "6639565188583943434753" + }, + "liquidityUsd": 35.66301993076695, + "liquidity24hUsdChange": -3.0873620067879726, + "volume24hUsd": 0.7186712379008159, + "volume24hUsdChange": 85.7416955733539, + "volume7dUsd": 23.02996990555055, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", + "amount": "726304834060" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "37768539" + "amount": "19961703" }, "weight": "536870912000000" } @@ -20822,51 +21346,51 @@ "id": "1589", "current_tick_liquidity": "30095650.842241297950528495", "token0": "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", - "token0Amount": "2115535", + "token0Amount": "2124462", "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "1780606", - "current_sqrt_price": "1.092447974824720769504269852232870748", - "current_tick": "193442", + "token1Amount": "1769957", + "current_sqrt_price": "1.092094107896608052745017022804954169", + "current_tick": "192669", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 47.51994486972482, - "liquidity24hUsdChange": -4.455779495370147, + "liquidityUsd": 35.3734990329704, + "liquidity24hUsdChange": -1.1734790346351787, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 22.24732240908535, + "volume7dUsd": 0.09019861944855577, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1028", + "id": "975", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1028", - "amount": "301182937956140937825308" + "denom": "gamm/pool/975", + "amount": "35494802409086197929" }, - "liquidityUsd": 47.17797202523306, - "liquidity24hUsdChange": 12.244713426187062, - "volume24hUsd": 18.07375135612532, - "volume24hUsdChange": null, - "volume7dUsd": 10384.401985531502, + "liquidityUsd": 33.91142570784789, + "liquidity24hUsdChange": -3.3934440512774713, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE", - "amount": "444294974800612730" + "denom": "ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156", + "amount": "1037821992" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "36768842" + "amount": "37582394" }, "weight": "536870912000000" } @@ -20875,34 +21399,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "388", + "id": "849", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/388", - "amount": "5995656610780702770887" + "denom": "gamm/pool/849", + "amount": "101868863975262580100" }, - "liquidityUsd": 45.64493932952057, - "liquidity24hUsdChange": -4.5461019795123185, - "volume24hUsd": 0.32784694697763284, - "volume24hUsdChange": 361.52283184387767, - "volume7dUsd": 0.6079507095995742, + "liquidityUsd": 33.148098, + "liquidity24hUsdChange": -1.1946181569882024, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 9.748424000000002, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2097898" + "denom": "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", + "amount": "942266214384779600000000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "17874329" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "33148098" }, "weight": "536870912000000" } @@ -20911,34 +21435,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "661", + "id": "388", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/661", - "amount": "70523557639308345685" + "denom": "gamm/pool/388", + "amount": "5995656610780702770887" }, - "liquidityUsd": 45.470938638797364, - "liquidity24hUsdChange": -6.18229960158871, + "liquidityUsd": 33.02529795335613, + "liquidity24hUsdChange": -2.2909081954376123, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.2153160814159163, + "volume7dUsd": 2.2831350134734425, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "1657800895250" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2058847" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "17963416" + "amount": "18215061" }, "weight": "536870912000000" } @@ -20947,34 +21471,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1602", + "id": "1357", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1602", - "amount": "214086712583288790102" + "denom": "gamm/pool/1357", + "amount": "874936731778517321" }, - "liquidityUsd": 45.17425731671827, - "liquidity24hUsdChange": -0.9478930726186786, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.9869596654259448, + "liquidityUsd": 32.17081642549124, + "liquidity24hUsdChange": -5.27436007708124, + "volume24hUsd": 6.871911623191645, + "volume24hUsdChange": 53.70467524667758, + "volume7dUsd": 46.524257466274406, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2048912" + "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "amount": "466764564991" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "418662501525875700000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "15782135" }, "weight": "536870912000000" } @@ -20983,70 +21507,91 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1071", + "id": "661", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1071", - "amount": "254846029966068023683641" + "denom": "gamm/pool/661", + "amount": "70523557639308345685" }, - "liquidityUsd": 43.48795846167511, - "liquidity24hUsdChange": -4.625215344977828, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.04525455590853582, + "liquidityUsd": 31.886299338581225, + "liquidity24hUsdChange": -2.394324764501166, + "volume24hUsd": 0.28415777382079316, + "volume24hUsdChange": null, + "volume7dUsd": 2.7434298719554207, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E", - "amount": "15447482225500" + "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "amount": "1698299330929" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "33892976" + "amount": "17557185" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1qq7nes5a42d72nxndyymjy76m5knt35434sggrdntalx8x2234sqx2n9zc", + "id": "1276", + "current_tick_liquidity": "300022153042980998.379394587095886443", + "token0": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token0Amount": "3938520", + "token1": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "token1Amount": "27043895648716113000", + "current_sqrt_price": "1000590.014725063952066603599339930934090227", + "current_tick": "108001180", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 31.004865731534068, + "liquidity24hUsdChange": 0.0859691755242462, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 123.90575884984024, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1357", + "id": "1606", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1357", - "amount": "874936731778517321" + "denom": "gamm/pool/1606", + "amount": "2202802140345834058793" }, - "liquidityUsd": 43.25059821121009, - "liquidity24hUsdChange": -2.5797362518418123, - "volume24hUsd": 0.9208445799708189, - "volume24hUsdChange": -16.550298321950276, - "volume7dUsd": 27.83200898365906, + "liquidityUsd": 30.101305658651114, + "liquidity24hUsdChange": -1.4086000389528075, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 8.607614344571774, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", - "amount": "337938080165" + "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "amount": "24090798" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "21631710" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "295791653183178940000" }, "weight": "536870912000000" } @@ -21055,70 +21600,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "849", + "id": "123", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/849", - "amount": "101868863975262580100" + "denom": "gamm/pool/123", + "amount": "108501367378214592297" }, - "liquidityUsd": 42.618872, - "liquidity24hUsdChange": -1.491778009290294, - "volume24hUsd": 0.013446, - "volume24hUsdChange": -98.87572054723964, - "volume7dUsd": 2.9281074680950714, + "liquidityUsd": 29.520306170735978, + "liquidity24hUsdChange": -1.613201056458811, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 1.880186232674076, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", - "amount": "731774907600108500000000" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2951093" }, - "weight": "536870912000000" + "weight": "858993459200000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "42618872" + "denom": "uosmo", + "amount": "6362988" }, - "weight": "536870912000000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "957", + "id": "983", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/957", - "amount": "418104577467682463758" + "denom": "gamm/pool/983", + "amount": "931905306817834344213" }, - "liquidityUsd": 41.6504, - "liquidity24hUsdChange": -1.292498918138263, + "liquidityUsd": 28.173669850220534, + "liquidity24hUsdChange": -3.517677970842117, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 2.575889213415757, + "volume7dUsd": 5.406816581001948, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", - "amount": "303110443397" + "denom": "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", + "amount": "5875009" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "41650400" + "denom": "uosmo", + "amount": "15675953" }, "weight": "536870912000000" } @@ -21127,36 +21672,36 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "123", + "id": "1369", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/123", - "amount": "108501367378214592297" + "denom": "gamm/pool/1369", + "amount": "19343592474281067467" }, - "liquidityUsd": 40.10933420171264, - "liquidity24hUsdChange": -4.489740685168294, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.5155806376952772, + "liquidityUsd": 28.07718086893714, + "liquidity24hUsdChange": -1.5992994326555654, + "volume24hUsd": 1.9182251767573748, + "volume24hUsdChange": 150.58603452450728, + "volume7dUsd": 24.107088336335508, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2963543" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "13981204" }, - "weight": "858993459200000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "6256728" + "amount": "15606301" }, - "weight": "214748364800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -21173,11 +21718,11 @@ "denom": "gamm/pool/982", "amount": "1985303737847333850229" }, - "liquidityUsd": 39.70536050485767, - "liquidity24hUsdChange": -4.625215344977811, + "liquidityUsd": 27.922315824062316, + "liquidity24hUsdChange": -3.393444051277475, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.09054498996972912, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -21199,34 +21744,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1606", + "id": "916", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1606", - "amount": "2202802140345834058793" + "denom": "gamm/pool/916", + "amount": "1603113802277341060" }, - "liquidityUsd": 38.97840382464953, - "liquidity24hUsdChange": 0.25528144993366747, + "liquidityUsd": 26.078789444295012, + "liquidity24hUsdChange": -2.0204151169331634, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.06326123401189453, + "volume24hUsdChange": -100, + "volume7dUsd": 29.353002355014414, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", - "amount": "20388944" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "1685173639" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "349216825798296270000" + "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "amount": "214120538" }, "weight": "536870912000000" } @@ -21237,21 +21782,21 @@ "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1vlt5he5h9ewmj7huftppc7yp4wtgl87el09f8jdaz28x9avz3dkqznxazn", "id": "1304", - "current_tick_liquidity": "1045780.354578862745543768", + "current_tick_liquidity": "1038442.375421753470715741", "token0": "ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA", - "token0Amount": "36018", + "token0Amount": "38020", "token1": "uosmo", - "token1Amount": "30343771", - "current_sqrt_price": "29.102202466868146492935261460003159833", - "current_tick": "25469381", + "token1Amount": "28472994", + "current_sqrt_price": "27.436264587765510805963552830894343299", + "current_tick": "24527486", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 38.933985992218034, - "liquidity24hUsdChange": -4.625215344977824, + "liquidityUsd": 25.69181252027209, + "liquidity24hUsdChange": -3.3934440512774664, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.9710307376535245, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000" }, { @@ -21266,11 +21811,11 @@ "denom": "gamm/pool/1067", "amount": "2965590776707150435063805" }, - "liquidityUsd": 36.51727632391838, - "liquidity24hUsdChange": -4.625215344977835, + "liquidityUsd": 25.680334080489104, + "liquidity24hUsdChange": -3.393444051277473, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 25.88071451012058, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { @@ -21284,112 +21829,110 @@ ], "scaling_factors": [ "10000", - "10862" + "10892" ], "scaling_factor_controller": "" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "983", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "863", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/983", - "amount": "931905306817834344213" + "denom": "gamm/pool/863", + "amount": "23423378990782909021" }, - "liquidityUsd": 35.619001283417475, - "liquidity24hUsdChange": -4.025174846575312, + "liquidityUsd": 24.478375858767, + "liquidity24hUsdChange": -0.08001043633974518, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.04589666702755318, + "volume7dUsd": 11.33331822884954, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", - "amount": "6681973" - }, - "weight": "536870912000000" + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "11146870" }, { - "token": { - "denom": "uosmo", - "amount": "13778248" - }, - "weight": "536870912000000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "13332889" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "916", + "id": "1310", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/916", - "amount": "1603113802277341060" + "denom": "gamm/pool/1310", + "amount": "344949058206433874348" }, - "liquidityUsd": 33.60416017886074, - "liquidity24hUsdChange": -2.119591296811903, + "liquidityUsd": 23.179774857713994, + "liquidity24hUsdChange": -3.2797145519430937, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 7.028292336227165, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "1462056790" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "3558786285" }, - "weight": "536870912000000" + "weight": "1073741824000000" }, { "token": { - "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "amount": "245576041" + "denom": "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", + "amount": "977099086" }, - "weight": "536870912000000" + "weight": "1073741824000000" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1369", + "id": "962", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1369", - "amount": "19343592474281067467" + "denom": "gamm/pool/962", + "amount": "11355005014986714650902" }, - "liquidityUsd": 33.41440079198221, - "liquidity24hUsdChange": -2.4508376357603936, - "volume24hUsd": 0.8615574084941615, - "volume24hUsdChange": 62.3431966562496, - "volume7dUsd": 47.795198576131405, + "liquidityUsd": 22.825175725934937, + "liquidity24hUsdChange": -3.3940130847158807, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 12.959502121612086, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "16736911" + "denom": "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", + "amount": "4745205233387686000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "13011805" + "amount": "25296039" }, "weight": "536870912000000" } @@ -21398,18 +21941,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1310", + "id": "541", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1310", - "amount": "344949058206433874348" + "denom": "gamm/pool/541", + "amount": "3181630567040106997193714" }, - "liquidityUsd": 32.992757856481106, - "liquidity24hUsdChange": -5.75011453373047, + "liquidityUsd": 22.480765905410845, + "liquidity24hUsdChange": -1.173479034635161, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -21417,20 +21960,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "3558786285" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1369493" }, - "weight": "1073741824000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", - "amount": "977099086" + "denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", + "amount": "85582165" }, - "weight": "1073741824000000" + "weight": "5368709120" } ], - "total_weight": "2147483648000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -21444,24 +21987,24 @@ "denom": "gamm/pool/432", "amount": "100000000000000000000" }, - "liquidityUsd": 30.881634749543913, - "liquidity24hUsdChange": -4.54119726415096, + "liquidityUsd": 22.343799136401646, + "liquidity24hUsdChange": -2.2821936388605977, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.6759865454353825, + "volume7dUsd": 0.7212987886806514, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1415842" + "amount": "1403831" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "12122759" + "amount": "12226494" }, "weight": "536870912000000" } @@ -21480,24 +22023,24 @@ "denom": "gamm/pool/576", "amount": "100000000000000000000" }, - "liquidityUsd": 30.229078304591706, - "liquidity24hUsdChange": -4.541723866664906, + "liquidityUsd": 21.870110054294546, + "liquidity24hUsdChange": -2.2959107214390793, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1.0474529019020187, + "volume24hUsdChange": 0, + "volume7dUsd": 0.7365160241888751, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1377245" + "amount": "1357299" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "11939818" + "amount": "12117053" }, "weight": "536870912000000" } @@ -21506,34 +22049,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1327", + "id": "1599", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1327", - "amount": "807620179466261247" + "denom": "gamm/pool/1599", + "amount": "1064020356001703894481" }, - "liquidityUsd": 30.18081321011374, - "liquidity24hUsdChange": -4.0502122630450685, + "liquidityUsd": 21.277130794614067, + "liquidity24hUsdChange": -2.676397631418368, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 0.36856119592266945, + "volume7dUsd": 2.0352684239657304, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "1097431701341" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "215615629089151240000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "15354226" + "denom": "uosmo", + "amount": "11813059" }, "weight": "536870912000000" } @@ -21542,39 +22085,75 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "541", + "id": "1063", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/541", - "amount": "3181630567040106997193714" + "denom": "gamm/pool/1063", + "amount": "1825416620339125121844" }, - "liquidityUsd": 29.268334493653917, - "liquidity24hUsdChange": -4.455779495370138, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 21.073544664295493, + "liquidity24hUsdChange": 0.11202528306375878, + "volume24hUsd": 0.5877349955716311, + "volume24hUsdChange": null, + "volume7dUsd": 16.170591063568867, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1369493" + "denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "amount": "73364800442145650000" }, - "weight": "5368709120" + "weight": "53687091200" }, { "token": { - "denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "amount": "85582165" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "10381582" }, - "weight": "5368709120" + "weight": "53687091200" } ], - "total_weight": "10737418240" + "total_weight": "107374182400" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1607", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1607", + "amount": "1138995255030447325434" + }, + "liquidityUsd": 20.91612681747499, + "liquidity24hUsdChange": -1.061923959613433, + "volume24hUsd": 0.6219122041556827, + "volume24hUsdChange": null, + "volume7dUsd": 4.6141803135944395, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "10538197" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "210526386650234880000" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", @@ -21588,20 +22167,20 @@ "denom": "gamm/pool/1582", "amount": "20000000000000000" }, - "liquidityUsd": 27.046683436655144, - "liquidity24hUsdChange": -6.82055840480207, + "liquidityUsd": 19.44581848791566, + "liquidity24hUsdChange": -6.080491400364874, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.3800183314192362, + "volume24hUsdChange": 0, + "volume7dUsd": 4.731921230526018, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "3937525407273094300" + "amount": "4230379263049594000" }, { "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "578044" + "amount": "466309" } ], "scaling_factors": [ @@ -21612,34 +22191,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1599", + "id": "14", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1599", - "amount": "1064020356001703894481" + "denom": "gamm/pool/14", + "amount": "5932569595219933564" }, - "liquidityUsd": 26.790545867198027, - "liquidity24hUsdChange": -1.0344806027334617, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.15808638198823466, + "liquidityUsd": 17.699086150691215, + "liquidity24hUsdChange": -4.991261999114582, + "volume24hUsd": 0.4603445033526023, + "volume24hUsdChange": null, + "volume7dUsd": 4.280461641843283, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "248480946412703870000" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1104255" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "10243414" + "denom": "uion", + "amount": "32369" }, "weight": "536870912000000" } @@ -21648,18 +22227,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1404", + "id": "974", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.200000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1404", - "amount": "21003631415615226465" + "denom": "gamm/pool/974", + "amount": "24683118390827432846111" }, - "liquidityUsd": 26.299594515495436, - "liquidity24hUsdChange": -8.551650981417062, + "liquidityUsd": 17.67110271085548, + "liquidity24hUsdChange": -3.393444051277457, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -21667,15 +22246,15 @@ "pool_assets": [ { "token": { - "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "amount": "6399619132" + "denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", + "amount": "9192291276953826000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "11353294" + "amount": "19584029" }, "weight": "536870912000000" } @@ -21684,34 +22263,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "974", + "id": "1618", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/974", - "amount": "24683118390827432846111" + "denom": "gamm/pool/1618", + "amount": "6899764692332232190856" }, - "liquidityUsd": 25.128253997124794, - "liquidity24hUsdChange": -4.6252153449778195, + "liquidityUsd": 16.886582135103268, + "liquidity24hUsdChange": -2.480484685906746, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.6983664691463829, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", - "amount": "9192270855948475000" + "denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", + "amount": "697785863" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "19584072" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "172380495694278320000" }, "weight": "536870912000000" } @@ -21720,34 +22299,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "14", + "id": "559", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/14", - "amount": "5932569595219933564" + "denom": "gamm/pool/559", + "amount": "100000000000000000000" }, - "liquidityUsd": 24.76980491332104, - "liquidity24hUsdChange": -4.098344258398382, - "volume24hUsd": 0.5230984313935119, - "volume24hUsdChange": null, - "volume7dUsd": 1.833101131674564, + "liquidityUsd": 16.846950809944495, + "liquidity24hUsdChange": -2.5437599798651394, + "volume24hUsd": 0.3609356644975938, + "volume24hUsdChange": -6.427308832658858, + "volume7dUsd": 2.9196968124278966, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1146714" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "2290576" }, "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "31169" + "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "amount": "5787904384637" }, "weight": "536870912000000" } @@ -21755,69 +22334,128 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "863", + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1xutn63cnn34tatfldlc9vlh5aqwk2lpwfn9j3qks6ypz8d0cluks0ek7pm", + "id": "1129", + "current_tick_liquidity": "1216824106.455154535703930303", + "token0": "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", + "token0Amount": "87761351178", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "16806580", + "current_sqrt_price": "0.014138196566428701964189270350536662", + "current_tick": "-35001114", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 16.832700889547095, + "liquidity24hUsdChange": 0.2832663986139061, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "890", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/863", - "amount": "23423378990782909021" + "denom": "gamm/pool/890", + "amount": "120796673913043478260" }, - "liquidityUsd": 24.388688383601547, - "liquidity24hUsdChange": -0.10848422744824883, + "liquidityUsd": 16.613477349645187, + "liquidity24hUsdChange": -1.6360129868901025, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 34.88191443372262, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "84592263891" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "8554425" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "700", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/700", + "amount": "11159274569056986856362" + }, + "liquidityUsd": 16.48611103289266, + "liquidity24hUsdChange": -3.40488483585432, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 3.9761327957086983, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "13405778" + "token": { + "denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", + "amount": "317725669377" + }, + "weight": "536870912000000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "11066740" + "token": { + "denom": "uosmo", + "amount": "18270760" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1415", + "id": "733", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1415", - "amount": "151929455028725681415" + "denom": "gamm/pool/733", + "amount": "4632059779996685727" }, - "liquidityUsd": 23.222181475734224, - "liquidity24hUsdChange": -7.571713661867058, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1.9640682329327452, + "liquidityUsd": 16.3446886067434, + "liquidity24hUsdChange": -0.8926069832252495, + "volume24hUsd": 0.7123422891457213, + "volume24hUsdChange": 900.2268878517959, + "volume7dUsd": 17.629570124225246, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "amount": "98592236" + "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", + "amount": "2709539827064908" }, "weight": "536870912000000" }, { "token": { - "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "amount": "6182275472" + "denom": "uosmo", + "amount": "8653785" }, "weight": "536870912000000" } @@ -21834,26 +22472,26 @@ }, "total_shares": { "denom": "gamm/pool/981", - "amount": "6220562841361129957980" + "amount": "6220314653310023472716" }, - "liquidityUsd": 22.958011766945248, - "liquidity24hUsdChange": -4.625215344977824, + "liquidityUsd": 16.246832348819666, + "liquidity24hUsdChange": -8.381758240860778, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 5.100398549350951, + "volume7dUsd": 0.9962292681711576, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835", - "amount": "245514480388541870" + "amount": "244035435144786700" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "17892662" + "amount": "18005579" }, "weight": "536870912000000" } @@ -21862,39 +22500,39 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1063", + "id": "1404", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.200000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1063", - "amount": "1825416620339125121844" + "denom": "gamm/pool/1404", + "amount": "21003631415615226465" }, - "liquidityUsd": 22.864741685790996, - "liquidity24hUsdChange": -1.2265080636045902, - "volume24hUsd": 0.170262, + "liquidityUsd": 16.097886312440497, + "liquidity24hUsdChange": -8.42993358315091, + "volume24hUsd": 0.4280584657932219, "volume24hUsdChange": null, - "volume7dUsd": 2.746666602084009, + "volume7dUsd": 1.7604026644675606, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", - "amount": "65130076707406900000" + "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "amount": "7314716366" }, - "weight": "53687091200" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "11655586" + "denom": "uosmo", + "amount": "10198429" }, - "weight": "53687091200" + "weight": "536870912000000" } ], - "total_weight": "107374182400" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -21908,8 +22546,8 @@ "denom": "gamm/pool/997", "amount": "1469420329655147649774" }, - "liquidityUsd": 22.29813064050365, - "liquidity24hUsdChange": -4.625215344977833, + "liquidityUsd": 15.680891398887345, + "liquidity24hUsdChange": -3.393444051277471, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -21934,34 +22572,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1607", + "id": "43", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1607", - "amount": "1138995255030447325434" + "denom": "gamm/pool/43", + "amount": "100000000000000000000" }, - "liquidityUsd": 22.056657201133685, - "liquidity24hUsdChange": 1.2119429636429413, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 1.0004466203912155, + "liquidityUsd": 15.663099441776035, + "liquidity24hUsdChange": -3.404041337344299, + "volume24hUsd": 0.18094892330985277, + "volume24hUsdChange": -6.646197084121209, + "volume7dUsd": 4.094798460831213, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "11007263" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "2120187" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "201395115707368660000" + "denom": "uosmo", + "amount": "8541616" }, "weight": "536870912000000" } @@ -21970,34 +22608,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "700", + "id": "791", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/700", - "amount": "11187233265734740431706" + "denom": "gamm/pool/791", + "amount": "12500000000000000000" }, - "liquidityUsd": 21.948907703266418, - "liquidity24hUsdChange": -6.1476022074660825, + "liquidityUsd": 15.575588403393077, + "liquidity24hUsdChange": -1.6988603510107958, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 4.013066153643685, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", - "amount": "340856050594" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "7780832194088949000" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "17106202" + "amount": "8633345" }, "weight": "536870912000000" } @@ -22006,34 +22644,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "962", + "id": "112", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/962", - "amount": "4257683143353681165266" + "denom": "gamm/pool/112", + "amount": "2435781578469284472243" }, - "liquidityUsd": 21.77264104017873, - "liquidity24hUsdChange": -4.625215344977828, + "liquidityUsd": 15.206059621224677, + "liquidity24hUsdChange": -2.2509000212510375, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.2936748407856506, + "volume7dUsd": 5.501456259679669, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", - "amount": "988128085687478100" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "981966" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "16968826" + "amount": "8083291" }, "weight": "536870912000000" } @@ -22042,72 +22680,50 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "733", + "id": "1269", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/733", - "amount": "4632059779996685727" + "denom": "gamm/pool/1269", + "amount": "388016666035966890" }, - "liquidityUsd": 21.541839541098582, - "liquidity24hUsdChange": -1.3311295036845263, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 2.144477394733899, + "liquidityUsd": 15.034242176810832, + "liquidity24hUsdChange": -4.853499135634508, + "volume24hUsd": 0.3192989940826563, + "volume24hUsdChange": null, + "volume7dUsd": 6.247501599899513, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", - "amount": "2905086611136798" + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "amount": "3597117" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { - "denom": "uosmo", - "amount": "8046694" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "478218" }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "112", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/112", - "amount": "2435781578469284472243" - }, - "liquidityUsd": 20.77313615738085, - "liquidity24hUsdChange": -4.542152421059844, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ + "weight": "268435456000000" + }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "941576" + "denom": "uion", + "amount": "14024" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { "denom": "uosmo", - "amount": "8245880" + "amount": "4197934" }, - "weight": "536870912000000" + "weight": "268435456000000" } ], "total_weight": "1073741824000000" @@ -22124,24 +22740,24 @@ "denom": "gamm/pool/835", "amount": "139494843300570967" }, - "liquidityUsd": 20.631338767580402, - "liquidity24hUsdChange": -4.590581756918292, + "liquidityUsd": 14.933761247824506, + "liquidity24hUsdChange": -2.2955579110436526, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 0.4882773116913097, + "volume7dUsd": 0.3665980819133651, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "719564" + "amount": "703335" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", - "amount": "6540977" + "amount": "6692407" }, "weight": "536870912000000" } @@ -22150,70 +22766,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1070", + "id": "885", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001500000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1070", - "amount": "5742531105860714642" + "denom": "gamm/pool/885", + "amount": "4967074080511091048" }, - "liquidityUsd": 20.222267280650392, - "liquidity24hUsdChange": -6.787756712546543, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1.1820560450999542, + "liquidityUsd": 14.785273563822944, + "liquidity24hUsdChange": 6.880184725616825, + "volume24hUsd": 1.1858687323061032, + "volume24hUsdChange": 29.098937303475147, + "volume7dUsd": 20.503445932930873, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "5591991067" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "940626" }, - "weight": "536870912000000" + "weight": "53687091200" }, { "token": { - "denom": "uosmo", - "amount": "7926036" + "denom": "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", + "amount": "23793356973745880000" }, - "weight": "536870912000000" + "weight": "53687091200" } ], - "total_weight": "1073741824000000" + "total_weight": "107374182400" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "428", + "id": "1070", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.001500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/428", - "amount": "113264265522506727713" + "denom": "gamm/pool/1070", + "amount": "5742531105860714642" }, - "liquidityUsd": 20.09119683014451, - "liquidity24hUsdChange": -4.539681484867829, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.972104878610299, + "liquidityUsd": 14.653610283340214, + "liquidity24hUsdChange": -3.38705526275088, + "volume24hUsd": 0.2246435347266222, + "volume24hUsdChange": 15.310462339261147, + "volume7dUsd": 2.6517140419977734, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "937732" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "5508420059" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "7746832" + "amount": "8047820" }, "weight": "536870912000000" } @@ -22222,34 +22838,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "229", + "id": "428", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/229", - "amount": "100000000000000000000" + "denom": "gamm/pool/428", + "amount": "113264265522506727713" }, - "liquidityUsd": 20.013298683346285, - "liquidity24hUsdChange": -4.540752337885085, + "liquidityUsd": 14.535446048526488, + "liquidity24hUsdChange": -2.299997367325593, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.8513175075036932, + "volume7dUsd": 1.348235293458777, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "922412" + "amount": "898775" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "7815374" + "amount": "8082969" }, "weight": "536870912000000" } @@ -22258,34 +22874,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1618", + "id": "1415", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1618", - "amount": "6899764692332232190856" + "denom": "gamm/pool/1415", + "amount": "151929455028725681415" }, - "liquidityUsd": 19.91993017140816, - "liquidity24hUsdChange": -1.3144354513324408, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 3.078112872688214, + "liquidityUsd": 14.534248420803776, + "liquidity24hUsdChange": -7.235210938542827, + "volume24hUsd": 0.6568207219931943, + "volume24hUsdChange": 202.8799984145003, + "volume7dUsd": 1.5124690710542072, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/3BCCC93AD5DF58D11A6F8A05FA8BC801CBA0BA61A981F57E91B8B598BF8061CB", - "amount": "666539897" + "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "amount": "80087578" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "180420920815280430000" + "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "amount": "7642477802" }, "weight": "536870912000000" } @@ -22294,34 +22910,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "559", + "id": "229", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/559", + "denom": "gamm/pool/229", "amount": "100000000000000000000" }, - "liquidityUsd": 19.82681462820736, - "liquidity24hUsdChange": -4.796238783753686, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 2.812203863640396, + "liquidityUsd": 14.479536569952963, + "liquidity24hUsdChange": -2.3016352077373554, + "volume24hUsd": 0.05643826751177762, + "volume24hUsdChange": -34.039970735709005, + "volume7dUsd": 0.9743108202899065, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "2336720" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "901382" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "amount": "5670355886071" + "denom": "uosmo", + "amount": "7997727" }, "weight": "536870912000000" } @@ -22330,120 +22946,127 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "43", + "id": "1666", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/43", - "amount": "100000000000000000000" + "denom": "gamm/pool/1666", + "amount": "1000000000000000000" }, - "liquidityUsd": 19.641835558773153, - "liquidity24hUsdChange": -5.931608985407317, - "volume24hUsd": 0.3458257615904302, - "volume24hUsdChange": 4.344587887426187, - "volume7dUsd": 2.4328602414946223, + "liquidityUsd": 13.747774504878818, + "liquidity24hUsdChange": -1.3414318109700123, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.27864234572395863, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "2382118" + "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "amount": "7783481" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "7602397" + "amount": "6599700" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1qjuuzezjfhcu54v5qn2cyu74lvc9u8869qcxkkmxu08wdc0xqnrse283q8", + "id": "1125", + "current_tick_liquidity": "21516871.634947215402385923", + "token0": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", + "token0Amount": "26976281", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "11142479", + "current_sqrt_price": "0.286558744653387000244943563582283231", + "current_tick": "-10788409", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 13.640090654698053, + "liquidity24hUsdChange": -0.11013131353819082, + "volume24hUsd": 1.1384413855689408, + "volume24hUsdChange": null, + "volume7dUsd": 25.31660935502657, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1269", + "id": "440", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1269", - "amount": "388016666035966890" + "denom": "gamm/pool/440", + "amount": "24414062500000000" }, - "liquidityUsd": 19.414047905719613, - "liquidity24hUsdChange": -3.5640622509014244, + "liquidityUsd": 13.413390751738042, + "liquidity24hUsdChange": -4.29146432153876, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.9701699163326197, + "volume24hUsdChange": -100, + "volume7dUsd": 2.7923583494177513, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "amount": "4829174" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "441270" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "uion", - "amount": "12490" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "5442502255" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3793139" + "amount": "7576318" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "890", + "id": "1515", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/890", - "amount": "120796673913043478260" + "denom": "gamm/pool/1515", + "amount": "100000000000000000000" }, - "liquidityUsd": 19.15152092234716, - "liquidity24hUsdChange": -4.072010561682132, + "liquidityUsd": 12.364398017660909, + "liquidity24hUsdChange": 0.18695092696516452, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.17745960007705008, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "72776147425" + "denom": "ibc/25311F95D4A78931F91AEDF869DF8C443184208A1A036B3F3FAC6E99BAD23283", + "amount": "6112965" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "9915092" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "12351971" }, "weight": "536870912000000" } @@ -22452,148 +23075,106 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "885", + "id": "697", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/885", - "amount": "4967074080511091048" + "denom": "gamm/pool/697", + "amount": "1021569348624145976996" }, - "liquidityUsd": 19.012779889460408, - "liquidity24hUsdChange": -3.640475352291666, + "liquidityUsd": 11.276486556038208, + "liquidity24hUsdChange": -3.393444051277484, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 5.339095101415682, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "870222" + "denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", + "amount": "65769317853" }, - "weight": "53687091200" + "weight": "5368709120" }, { "token": { - "denom": "ibc/B9606D347599F0F2FDF82BA3EE339000673B7D274EA50F59494DC51EFCD42163", - "amount": "25492758044754440000" + "denom": "uosmo", + "amount": "12497185" }, - "weight": "53687091200" + "weight": "5368709120" } ], - "total_weight": "107374182400" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1xutn63cnn34tatfldlc9vlh5aqwk2lpwfn9j3qks6ypz8d0cluks0ek7pm", - "id": "1129", - "current_tick_liquidity": "1216824106.455154535703930303", - "token0": "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", - "token0Amount": "77890578211", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "19035233", - "current_sqrt_price": "0.015969730458446693429703712087063247", - "current_tick": "-34449678", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 19.009798483861704, - "liquidity24hUsdChange": -0.22345418412879373, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.5009013561995369, - "taker_fee": "0.001000000000000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "791", + "id": "1222", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/791", - "amount": "12500000000000000000" + "denom": "gamm/pool/1222", + "amount": "901405707824502459" }, - "liquidityUsd": 18.574006592806164, - "liquidity24hUsdChange": -2.2654066482515143, + "liquidityUsd": 11.054421471190121, + "liquidity24hUsdChange": -3.3934440512774744, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 2.0558624759950197, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "9476189740632359000" + "denom": "factory/osmo19pw5d0jset8jlhawvkscj2gsfuyd5v524tfgek/TURKEY", + "amount": "181932872563429" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "7088778" + "amount": "12251081" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1n78cf5ya9sqxpyytu0vqr770vs70y4vleghk2u5jd5ewdzsun67sggclpv", - "id": "1439", - "current_tick_liquidity": "0.000000000000000000", - "token0": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token0Amount": "1907", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "16625204", - "current_sqrt_price": "27.164499167222656427876774499700867442", - "current_tick": "24379100", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 17.928086671955715, - "liquidity24hUsdChange": -0.46670324895204074, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "440", + "id": "337", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/440", - "amount": "24414062500000000" + "denom": "gamm/pool/337", + "amount": "100000000000000000000" }, - "liquidityUsd": 17.766888253474328, - "liquidity24hUsdChange": -2.20940249947679, + "liquidityUsd": 11.050855574877252, + "liquidity24hUsdChange": -2.2755223724465665, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.6292637717081938, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "6016402348" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "698431" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "6853618" + "amount": "6010216" }, "weight": "536870912000000" } @@ -22601,53 +23182,55 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "873", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1614", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/873", - "amount": "1329177533943151287" + "denom": "gamm/pool/1614", + "amount": "2870802962544363638067" }, - "liquidityUsd": 16.5800790092933, - "liquidity24hUsdChange": -5.642447789236243, + "liquidityUsd": 11.029253267188412, + "liquidity24hUsdChange": -4.759082650516917, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 5.023305493273974, + "volume7dUsd": 6.572883475051866, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", - "amount": "11757188" + "token": { + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "114518611919363980000" + }, + "weight": "536870912000000" }, { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "16559169" + "token": { + "denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", + "amount": "35530391956585490000" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1666", + "id": "979", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1666", - "amount": "1000000000000000000" + "denom": "gamm/pool/979", + "amount": "5868448696953664445" }, - "liquidityUsd": 16.174322410037924, - "liquidity24hUsdChange": -2.4104302150963677, + "liquidityUsd": 11.002465763092925, + "liquidity24hUsdChange": -3.393444051277459, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -22655,15 +23238,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "amount": "8150000" + "denom": "ibc/00BC6883C29D45EAA021A55CFDD5884CA8EFF9D39F698A9FEF79E13819FF94F8", + "amount": "1890035310" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "6300000" + "amount": "12193501" }, "weight": "536870912000000" } @@ -22672,34 +23255,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "697", + "id": "1586", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/697", - "amount": "1021569348624145976996" + "denom": "gamm/pool/1586", + "amount": "100000000000000000000" }, - "liquidityUsd": 16.102211673210434, - "liquidity24hUsdChange": -4.6252153449778355, + "liquidityUsd": 10.714000512267702, + "liquidity24hUsdChange": -1.1734790346351833, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.26322415569106067, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", - "amount": "65494341613" + "denom": "factory/osmo1mp5dhclt05938jzl386rqhndc4rexfmgrcm8za/uzucho", + "amount": "75412902066" }, "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "12549494" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1329670" }, "weight": "5368709120" } @@ -22708,70 +23291,77 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1222", + "id": "828", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1222", - "amount": "901405707824502459" + "denom": "gamm/pool/828", + "amount": "110448792083979585900" }, - "liquidityUsd": 15.719319001040724, - "liquidity24hUsdChange": -4.625215344977826, + "liquidityUsd": 10.407280359290507, + "liquidity24hUsdChange": 0.11726021712923668, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 2.8183223078593542, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo19pw5d0jset8jlhawvkscj2gsfuyd5v524tfgek/TURKEY", - "amount": "181932872563429" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "3284153471358649000" }, - "weight": "1073741824" + "weight": "354334801920000" }, { "token": { - "denom": "uosmo", - "amount": "12251081" + "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "amount": "3605170" }, - "weight": "1073741824" + "weight": "354334801920000" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "3511695" + }, + "weight": "365072220160000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "979", + "id": "630", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/979", - "amount": "5868448696953664445" + "denom": "gamm/pool/630", + "amount": "41440843242455894120" }, - "liquidityUsd": 15.645438305281719, - "liquidity24hUsdChange": -4.6252153449778275, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 9.963166903696926, + "liquidity24hUsdChange": -6.280952011898229, + "volume24hUsd": 0.18191286779749086, + "volume24hUsdChange": null, + "volume7dUsd": 15.267680910049036, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/00BC6883C29D45EAA021A55CFDD5884CA8EFF9D39F698A9FEF79E13819FF94F8", - "amount": "1890035310" + "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "amount": "514276" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "12193501" + "denom": "uion", + "amount": "18251" }, "weight": "536870912000000" } @@ -22780,96 +23370,80 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "337", + "id": "398", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/337", - "amount": "100000000000000000000" + "denom": "gamm/pool/398", + "amount": "171271568627450980392157" }, - "liquidityUsd": 15.272437229769656, - "liquidity24hUsdChange": -4.541409860872078, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.5379771677499915, + "liquidityUsd": 9.83598751024612, + "liquidity24hUsdChange": -3.298499267260447, + "volume24hUsd": 0.2677470478454548, + "volume24hUsdChange": 84.50542433629806, + "volume7dUsd": 1.9599016638499802, "taker_fee": "0.001000000000000000", "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "875259" + }, + "weight": "354334801920000" + }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "698431" + "amount": "404798" }, - "weight": "536870912000000" + "weight": "365072220160000" }, { "token": { - "denom": "uosmo", - "amount": "6010216" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "2722397524" }, - "weight": "536870912000000" + "weight": "354334801920000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1586", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "873", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1586", - "amount": "100000000000000000000" + "denom": "gamm/pool/873", + "amount": "1329177533943151287" }, - "liquidityUsd": 14.394124409315763, - "liquidity24hUsdChange": -4.45577949537015, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 9.679934778842036, + "liquidity24hUsdChange": -7.5923610027937665, + "volume24hUsd": 0.48853587661787706, + "volume24hUsdChange": -95.74988647034523, + "volume7dUsd": 49.403007092916866, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "factory/osmo1mp5dhclt05938jzl386rqhndc4rexfmgrcm8za/uzucho", - "amount": "75412902066" - }, - "weight": "5368709120" + "denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", + "amount": "18746568" }, { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1329670" - }, - "weight": "5368709120" + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "9663086" } ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1qjuuzezjfhcu54v5qn2cyu74lvc9u8869qcxkkmxu08wdc0xqnrse283q8", - "id": "1125", - "current_tick_liquidity": "21516871.634947215402385923", - "token0": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", - "token0Amount": "7291532", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "13375866", - "current_sqrt_price": "0.388374504878972940154787417687164534", - "current_tick": "-8491653", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 14.343283590735403, - "liquidity24hUsdChange": -0.37447655960045445, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 9.369101323114922, - "taker_fee": "0.001000000000000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -22883,24 +23457,24 @@ "denom": "gamm/pool/850", "amount": "1049022829027510367115" }, - "liquidityUsd": 14.301038, - "liquidity24hUsdChange": -2.8107602562374856, + "liquidityUsd": 9.595016, + "liquidity24hUsdChange": -2.737190854047139, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 4.936164032331447, + "volume7dUsd": 5.102154, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/47EE224A9B33CF0ABEAC82106E52F0F6E8D8CEC5BA80B9D9A6F55172CBB0177D", - "amount": "982885684827374300000000" + "amount": "1086550923740581100000000" }, "weight": "858993459200000" }, { "token": { "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "14301038" + "amount": "9595016" }, "weight": "214748364800000" } @@ -22909,75 +23483,75 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "630", + "id": "1451", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/630", - "amount": "41440843242455894120" + "denom": "gamm/pool/1451", + "amount": "3036359929445894804" }, - "liquidityUsd": 14.220104020503072, - "liquidity24hUsdChange": -8.211904142775813, - "volume24hUsd": 1.8107856509541953, - "volume24hUsdChange": null, - "volume7dUsd": 5.0705339290196925, + "liquidityUsd": 9.322149559179152, + "liquidity24hUsdChange": -3.379191538564933, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 4.458202482374445, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "amount": "527597" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "2407020" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { - "denom": "uion", - "amount": "17638" + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "1950313531258310400" }, - "weight": "536870912000000" + "weight": "805306368000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1614", + "id": "1045", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1614", - "amount": "2870802962544363638067" + "denom": "gamm/pool/1045", + "amount": "75006211624677550352" }, - "liquidityUsd": 13.816291357325127, - "liquidity24hUsdChange": -0.8024963216540318, - "volume24hUsd": 0.2769076792602791, - "volume24hUsdChange": null, - "volume7dUsd": 0.7795000024376462, + "liquidityUsd": 9.277964601233197, + "liquidity24hUsdChange": -3.0776946956451345, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 1.34428305945355, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "125733604885723470000" + "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "amount": "66070" }, - "weight": "536870912000000" + "weight": "53687091200" }, { "token": { - "denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", - "amount": "32281164094853520000" + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "amount": "440481" }, - "weight": "536870912000000" + "weight": "53687091200" } ], - "total_weight": "1073741824000000" + "total_weight": "107374182400" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -22991,24 +23565,24 @@ "denom": "gamm/pool/845", "amount": "1396920640681353514430" }, - "liquidityUsd": 13.057009267846617, - "liquidity24hUsdChange": -4.625215344977827, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 9.192965210550812, + "liquidity24hUsdChange": -3.2800167975024124, + "volume24hUsd": 0.010948226876341921, + "volume24hUsdChange": null, + "volume7dUsd": 0.010948226876341921, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/A6383B6CF5EA23E067666C06BC34E2A96869927BD9744DC0C1643E589C710AA3", - "amount": "246028573" + "amount": "245740623" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "10176171" + "amount": "10188119" }, "weight": "536870912000000" } @@ -23017,54 +23591,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1045", + "id": "253", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1045", - "amount": "75006211624677550352" + "denom": "gamm/pool/253", + "amount": "6400000000000000000" }, - "liquidityUsd": 12.582589577499917, - "liquidity24hUsdChange": -4.887582411882392, + "liquidityUsd": 9.040968514790123, + "liquidity24hUsdChange": -3.4133657833894917, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.17950261433801568, + "volume7dUsd": 0.5345510590461556, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "amount": "65926" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "1216904" }, - "weight": "53687091200" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "441322" + "denom": "uosmo", + "amount": "4959034" }, - "weight": "53687091200" + "weight": "536870912000000" } ], - "total_weight": "107374182400" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1515", + "id": "1488", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1515", + "denom": "gamm/pool/1488", "amount": "100000000000000000000" }, - "liquidityUsd": 12.33875217201681, - "liquidity24hUsdChange": -0.23153556257090677, + "liquidityUsd": 8.933648893466296, + "liquidity24hUsdChange": 0.18695092696514864, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -23072,53 +23646,53 @@ "pool_assets": [ { "token": { - "denom": "ibc/25311F95D4A78931F91AEDF869DF8C443184208A1A036B3F3FAC6E99BAD23283", - "amount": "6112965" + "denom": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", + "amount": "1099867594630924900" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "12351971" + "amount": "8924670" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1451", + "id": "632", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1451", - "amount": "3036359929445894804" + "denom": "gamm/pool/632", + "amount": "450002030212091687097" }, - "liquidityUsd": 12.296081416041027, - "liquidity24hUsdChange": -5.26568351239445, - "volume24hUsd": 0.11721499464573308, - "volume24hUsdChange": -48.087773795577924, - "volume7dUsd": 0.5695651221923569, + "liquidityUsd": 8.583490759455085, + "liquidity24hUsdChange": -3.4590156659968776, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 3.9769673204446034, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "3160574" + "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "amount": "699807" }, - "weight": "268435456000000" + "weight": "858993459200000" }, { "token": { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "1770187519113580000" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "8820024" }, - "weight": "805306368000000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" @@ -23135,11 +23709,11 @@ "denom": "gamm/pool/607", "amount": "717805848502957463" }, - "liquidityUsd": 12.138871489495198, - "liquidity24hUsdChange": -4.007303243534868, - "volume24hUsd": 0.1391109978214223, - "volume24hUsdChange": null, - "volume7dUsd": 0.1391109978214223, + "liquidityUsd": 8.487813775433493, + "liquidity24hUsdChange": -3.4603665069514564, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -23161,113 +23735,106 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "398", + "id": "748", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/398", - "amount": "171271568627450980392157" + "denom": "gamm/pool/748", + "amount": "20032303861978356476" }, - "liquidityUsd": 12.049397902222196, - "liquidity24hUsdChange": -3.8651932388197032, + "liquidityUsd": 8.245606, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.7866702527498411, + "volume7dUsd": 1.0764099999999999, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "964448" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "366398" + "denom": "ibc/49C2B2C444B7C5F0066657A4DBF19D676E0D185FF721CFD3E14FA253BCB9BC04", + "amount": "44014291317390410000000" }, - "weight": "365072220160000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "2735615531" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "8245606" }, - "weight": "354334801920000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "632", + "id": "1031", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "exit_fee": "0.001000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/632", - "amount": "450002030212091687097" + "denom": "gamm/pool/1031", + "amount": "100000000000000000000" }, - "liquidityUsd": 12.00829504560711, - "liquidity24hUsdChange": -11.298070844369274, - "volume24hUsd": 0.5691482684158053, - "volume24hUsdChange": null, - "volume7dUsd": 0.5691482684158053, + "liquidityUsd": 8.126215628810172, + "liquidity24hUsdChange": -3.5747334353243865, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 5.4011376286463815, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "amount": "707673" + "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "amount": "113920" }, - "weight": "858993459200000" + "weight": "1073741824000000" }, { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "8386959" + "denom": "uosmo", + "amount": "9005892" }, - "weight": "214748364800000" + "weight": "1073741824000000" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "253", + "id": "1005", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/253", - "amount": "6400000000000000000" + "denom": "gamm/pool/1005", + "amount": "700421406426032173" }, - "liquidityUsd": 11.33174255009903, - "liquidity24hUsdChange": -5.932360380813406, + "liquidityUsd": 8.118524941133687, + "liquidity24hUsdChange": -1.8160686165115358, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.6451666348567855, + "volume7dUsd": 7.278976914830482, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "1363930" + "denom": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", + "amount": "3637382" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "4419473" + "amount": "4496822" }, "weight": "536870912000000" } @@ -23276,70 +23843,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1031", - "pool_params": { - "exit_fee": "0.001000000000000000", - "swap_fee": "0.001000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1031", - "amount": "100000000000000000000" - }, - "liquidityUsd": 11.202230423217689, - "liquidity24hUsdChange": -4.686864248983288, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1.0737141983248464, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "amount": "117440" - }, - "weight": "1073741824000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "8730622" - }, - "weight": "1073741824000000" - } - ], - "total_weight": "2147483648000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "610", + "id": "699", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/610", - "amount": "629938031008637991" + "denom": "gamm/pool/699", + "amount": "40260458091387934010" }, - "liquidityUsd": 10.543970845018361, - "liquidity24hUsdChange": -2.0267379238237817, + "liquidityUsd": 7.758711006870005, + "liquidity24hUsdChange": 0.05727344499819185, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.5683750632960731, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "202055314" + "denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", + "amount": "148702560826" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", - "amount": "156111222" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "7754029208122080500" }, "weight": "536870912000000" } @@ -23348,34 +23879,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "976", + "id": "373", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/976", - "amount": "14273168062329652613551" + "denom": "gamm/pool/373", + "amount": "114580554012480880" }, - "liquidityUsd": 10.535801, - "liquidity24hUsdChange": 0, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.439848, + "liquidityUsd": 7.587251493721315, + "liquidity24hUsdChange": 69697.53556447384, + "volume24hUsd": 1.846554425412121, + "volume24hUsdChange": null, + "volume7dUsd": 1.846554425412121, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", - "amount": "465533811456482100" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "1014019" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "10535801" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "138772834" }, "weight": "536870912000000" } @@ -23384,77 +23915,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "828", + "id": "1142", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.004000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/828", - "amount": "110448792083979585900" + "denom": "gamm/pool/1142", + "amount": "1000000000000000000" }, - "liquidityUsd": 10.369888689547402, - "liquidity24hUsdChange": 0.006387210496399752, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 13.179912210658335, + "liquidityUsd": 7.285195771658529, + "liquidity24hUsdChange": -4.340708286826117, + "volume24hUsd": 0.087899194689877, + "volume24hUsdChange": null, + "volume7dUsd": 3.4569609248393154, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "3398096010754964000" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "amount": "3400739" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "3814015" }, - "weight": "354334801920000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "3594950" + "denom": "uion", + "amount": "12766" }, - "weight": "365072220160000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "748", + "id": "502", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/748", - "amount": "20032303861978356476" + "denom": "gamm/pool/502", + "amount": "52594511044666778279" }, - "liquidityUsd": 9.95459, - "liquidity24hUsdChange": 0, + "liquidityUsd": 7.224322849331224, + "liquidity24hUsdChange": -1.5372165080251263, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 0.257208, + "volume7dUsd": 0.14684644083944035, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/49C2B2C444B7C5F0066657A4DBF19D676E0D185FF721CFD3E14FA253BCB9BC04", - "amount": "36426908747584198000000" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "454834" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "9954590" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "17648071" }, "weight": "536870912000000" } @@ -23473,11 +23997,11 @@ "denom": "gamm/pool/48", "amount": "100000000000000000000" }, - "liquidityUsd": 9.805822318519409, - "liquidity24hUsdChange": -4.49174663850362, + "liquidityUsd": 7.1929827257388075, + "liquidity24hUsdChange": -1.7807560089948111, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.017067664656992835, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -23506,34 +24030,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "502", + "id": "1024", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/502", - "amount": "52594511044666778279" + "denom": "gamm/pool/1024", + "amount": "13340388073793762" }, - "liquidityUsd": 9.791765915862921, - "liquidity24hUsdChange": -5.357225086545613, - "volume24hUsd": 0.017166146554849326, - "volume24hUsdChange": null, - "volume7dUsd": 0.017166146554849326, + "liquidityUsd": 7.1566313989934125, + "liquidity24hUsdChange": -2.8669856348572353, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "455853" + "denom": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", + "amount": "236926407817516" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "17608590" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "2390440938505966" }, "weight": "536870912000000" } @@ -23542,97 +24066,97 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1005", + "id": "610", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1005", - "amount": "700421406426032173" + "denom": "gamm/pool/610", + "amount": "629938031008637991" }, - "liquidityUsd": 9.643167647983288, - "liquidity24hUsdChange": -2.317425925094892, + "liquidityUsd": 7.0911506735609375, + "liquidity24hUsdChange": -3.4426634129534337, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 3.9414624551168824, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", - "amount": "4482096" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "202055314" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "3640209" + "denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", + "amount": "156111222" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ww5567k7ya8g2rzfft30mgdqwy6jyfqfl60805kclwc3x44qzp6qgd3d3r", - "id": "1590", - "current_tick_liquidity": "3534595.711596772230092627", - "token0": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", - "token0Amount": "3270409", - "token1": "uosmo", - "token1Amount": "3820130", - "current_sqrt_price": "1.080782241957313566143992216821567678", - "current_tick": "168090", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 9.635025613883116, - "liquidity24hUsdChange": -4.625215344977828, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.07599320844749177, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "829", + "id": "911", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/829", - "amount": "10904173635305832890" + "denom": "gamm/pool/911", + "amount": "101137369623558284" }, - "liquidityUsd": 9.321425, - "liquidity24hUsdChange": 0, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 6.851679625903846, + "liquidity24hUsdChange": -6.070339542711083, + "volume24hUsd": 0.2242714047768297, + "volume24hUsdChange": null, + "volume7dUsd": 0.6126742584703079, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", - "amount": "3105196569" + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "1111722984514889" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "9321425" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "145599271" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1m847usrwruawx2c6twl506tx68kjqegyhqaxzp8q53lazhtmn6tq7jzjh6", + "id": "1162", + "current_tick_liquidity": "9275527964.273019640501328624", + "token0": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "token0Amount": "67781468960", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "304635", + "current_sqrt_price": "0.011914106736092963995279707325121679", + "current_tick": "-35580541", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 6.7626068414191565, + "liquidity24hUsdChange": -3.1582477971536003, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "534", @@ -23645,60 +24169,24 @@ "denom": "gamm/pool/534", "amount": "5814316743274408192" }, - "liquidityUsd": 9.295892161562367, - "liquidity24hUsdChange": -5.438877248497153, + "liquidityUsd": 6.666971056447107, + "liquidity24hUsdChange": -2.6421200942634178, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.047272843652853294, + "volume24hUsdChange": 0, + "volume7dUsd": 0.020891251729144973, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "16692101" + "amount": "16855818" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3656533" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "911", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/911", - "amount": "101137369623558284" - }, - "liquidityUsd": 9.208107067792305, - "liquidity24hUsdChange": -3.5352391196335486, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.5152158237746196, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "1313504589285714" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "123131945" + "amount": "3621019" }, "weight": "536870912000000" } @@ -23707,34 +24195,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1488", + "id": "1682", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1488", - "amount": "100000000000000000000" + "denom": "gamm/pool/1682", + "amount": "104081297350816657500" }, - "liquidityUsd": 9.159238468223645, - "liquidity24hUsdChange": -0.23153556257091437, + "liquidityUsd": 6.5035364737128125, + "liquidity24hUsdChange": 0.18695092696516252, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 2.994703849181038, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", - "amount": "1069966902884211400" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "6497000" }, "weight": "5368709120" }, { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "9169051" + "denom": "ibc/5EC896BED3EBCB2CB6F1C167582E4EFA3F6FA3385F28BA5EA92D4A489DA010C5", + "amount": "1502251875561466600" }, "weight": "5368709120" } @@ -23753,11 +24241,11 @@ "denom": "gamm/pool/307", "amount": "100000000000000000000" }, - "liquidityUsd": 8.980308489027108, - "liquidity24hUsdChange": -4.5416781754117075, + "liquidityUsd": 6.497402173615361, + "liquidity24hUsdChange": -2.279038283275617, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.2935539979880243, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -23779,75 +24267,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "988", + "id": "829", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/988", - "amount": "6000000000000000000" + "denom": "gamm/pool/829", + "amount": "10904173635305832890" }, - "liquidityUsd": 8.968478766188827, - "liquidity24hUsdChange": -4.6252153449778275, + "liquidityUsd": 6.355447, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.2531964845403405, + "volume7dUsd": 2.3275469999999996, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA", - "amount": "8744" + "denom": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", + "amount": "4556896900" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "6989715" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "6355447" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1m847usrwruawx2c6twl506tx68kjqegyhqaxzp8q53lazhtmn6tq7jzjh6", - "id": "1162", - "current_tick_liquidity": "9275527964.273019640501328624", - "token0": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "token0Amount": "67781468960", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "304635", - "current_sqrt_price": "0.011914106736092963995279707325121679", - "current_tick": "-35580541", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 8.906754225922219, - "liquidity24hUsdChange": -7.841435846754259, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.7436635768664313, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "699", + "id": "988", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/699", - "amount": "41018083989032973760" + "denom": "gamm/pool/988", + "amount": "6000000000000000000" }, - "liquidityUsd": 8.776655791469043, - "liquidity24hUsdChange": 0.11155490148981517, + "liquidityUsd": 6.1345524805390115, + "liquidity24hUsdChange": -3.393444051277477, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -23855,15 +24322,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", - "amount": "136273322656" + "denom": "ibc/D3A1900B2B520E45608B5671ADA461E1109628E89B4289099557C6D3996F7DAA", + "amount": "8991" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "8774590249624374000" + "denom": "uosmo", + "amount": "6798628" }, "weight": "536870912000000" } @@ -23872,34 +24339,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1142", + "id": "1028", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.004000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1142", - "amount": "1000000000000000000" + "denom": "gamm/pool/1028", + "amount": "45855795062238470314532" }, - "liquidityUsd": 8.775936999261472, - "liquidity24hUsdChange": -1.8942373575564844, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.182862, + "liquidityUsd": 6.126635506192975, + "liquidity24hUsdChange": 2.8689879601181794, + "volume24hUsd": 0.3758551755368412, + "volume24hUsdChange": null, + "volume7dUsd": 6.466693953235079, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "4392641" + "denom": "ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE", + "amount": "56107773183176230" }, "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "11057" + "denom": "uosmo", + "amount": "6789854" }, "weight": "536870912000000" } @@ -23907,40 +24374,25 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1024", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1024", - "amount": "13340388073793762" - }, - "liquidityUsd": 8.411801617208843, - "liquidity24hUsdChange": -3.1697509287582735, + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo12lmlcm2phju6ek4fexvr5pgkfr0ksdc49qytxyu6fqkvufxdt6ushqdmay", + "id": "1280", + "current_tick_liquidity": "56124860801.610000000000315000", + "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token0Amount": "996840173325782", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "3129027", + "current_sqrt_price": "0.000056302767790730115015902481468313", + "current_tick": "-78829999", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 6.118284190560557, + "liquidity24hUsdChange": -1.2785022040949245, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.6596439319642272, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", - "amount": "236926407817516" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "2390440938505966" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" + "volume7dUsd": 0.009981857284677733, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -23954,8 +24406,8 @@ "denom": "gamm/pool/86", "amount": "3343584803595206391" }, - "liquidityUsd": 8.319421278834952, - "liquidity24hUsdChange": -4.499001942630377, + "liquidityUsd": 6.1053117675869455, + "liquidity24hUsdChange": -1.7247952406536653, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -23980,34 +24432,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "977", + "id": "1468", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/977", - "amount": "86036935741874969545" + "denom": "gamm/pool/1468", + "amount": "8113660304372130582" }, - "liquidityUsd": 8.04983685417893, - "liquidity24hUsdChange": -4.625215344977823, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 319.7061897297582, + "liquidityUsd": 6.096760304001908, + "liquidity24hUsdChange": 5.019501255289431, + "volume24hUsd": 0.6572628540459534, + "volume24hUsdChange": 241.65741320456073, + "volume7dUsd": 8.045106305515779, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D", - "amount": "68722631943357" + "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "amount": "102300716" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "6273758" + "amount": "3486002" }, "weight": "536870912000000" } @@ -24016,39 +24468,39 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1468", + "id": "1122", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1468", - "amount": "8113660304372130582" + "denom": "gamm/pool/1122", + "amount": "100000000000000000000" }, - "liquidityUsd": 7.738144996677214, - "liquidity24hUsdChange": 11461.566684165373, - "volume24hUsd": 6.634490017096828, - "volume24hUsdChange": 9972.468001702495, - "volume7dUsd": 8.236814130057944, + "liquidityUsd": 5.755370701493593, + "liquidity24hUsdChange": 1.881332775638341, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", - "amount": "111280794" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "3032049" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "3073289" + "denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", + "amount": "3026279538279299500" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -24062,8 +24514,8 @@ "denom": "gamm/pool/216", "amount": "100000000000000000000" }, - "liquidityUsd": 7.608585431304997, - "liquidity24hUsdChange": -4.542090333843512, + "liquidityUsd": 5.504177197351433, + "liquidity24hUsdChange": -2.284439857728586, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -24098,8 +24550,8 @@ "denom": "gamm/pool/166", "amount": "100000000000000000000" }, - "liquidityUsd": 7.547297357247713, - "liquidity24hUsdChange": -4.54294039483765, + "liquidityUsd": 5.458284318684662, + "liquidity24hUsdChange": -2.2955833745571192, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -24124,18 +24576,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1000", + "id": "1140", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.100000000000000000", + "swap_fee": "0.015000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1000", - "amount": "416726916378489163" + "denom": "gamm/pool/1140", + "amount": "23741450636816076317" }, - "liquidityUsd": 7.534165508177523, - "liquidity24hUsdChange": -4.625215344977822, + "liquidityUsd": 5.438392932515667, + "liquidity24hUsdChange": -1.4978604013165202, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -24143,15 +24595,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF", - "amount": "2955664785008" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "2943716" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "5871862" + "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "amount": "204519" }, "weight": "536870912000000" } @@ -24160,18 +24612,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "221", + "id": "1000", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.100000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/221", - "amount": "100000000000000000000" + "denom": "gamm/pool/1000", + "amount": "416726916378489163" }, - "liquidityUsd": 6.5515943131471435, - "liquidity24hUsdChange": -4.559453904248444, + "liquidityUsd": 5.298311011792786, + "liquidity24hUsdChange": -3.39344405127746, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -24179,123 +24631,123 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "235149" + "denom": "ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF", + "amount": "2955664785008" }, - "weight": "429496729600000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3122156" + "amount": "5871862" }, - "weight": "644245094400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "741", + "id": "977", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/741", - "amount": "466710269590194650293" + "denom": "gamm/pool/977", + "amount": "80368237803241468851" }, - "liquidityUsd": 6.421117236822894, - "liquidity24hUsdChange": -4.424787919315541, + "liquidityUsd": 5.2662027812104535, + "liquidity24hUsdChange": -3.3934440512774713, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1.2946479692422517, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", - "amount": "39191633" + "denom": "ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D", + "amount": "64460855682272" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2542772" + "amount": "5836278" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "830", + "id": "1353", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/830", - "amount": "669939758888670761" + "denom": "gamm/pool/1353", + "amount": "18880242414765624" }, - "liquidityUsd": 6.3219952232034675, - "liquidity24hUsdChange": -0.12616273892126414, + "liquidityUsd": 5.078970247475267, + "liquidity24hUsdChange": 0.1885649366261986, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.499430010639925, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", - "amount": "23297127241" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "2721442" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2343970" + "denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", + "amount": "1045096974" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "232", + "id": "1596", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/232", - "amount": "100000000000000000000" + "denom": "gamm/pool/1596", + "amount": "1000000000000000000" }, - "liquidityUsd": 6.301729146483353, - "liquidity24hUsdChange": -4.54214312702239, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.07276161040599972, + "liquidityUsd": 4.964088913365783, + "liquidity24hUsdChange": -1.4448831914448343, + "volume24hUsd": 2.094457879151921, + "volume24hUsdChange": null, + "volume7dUsd": 13.79969583173455, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "285668" + "denom": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", + "amount": "4752162" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2501197" + "amount": "2451549" }, "weight": "536870912000000" } @@ -24304,70 +24756,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1122", + "id": "976", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1122", - "amount": "100000000000000000000" + "denom": "gamm/pool/976", + "amount": "14273168062329652613551" }, - "liquidityUsd": 6.085433118944186, - "liquidity24hUsdChange": -2.5624904041678036, + "liquidityUsd": 4.896529, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "3032049" - }, - "weight": "5368709120" - }, - { - "token": { - "denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", - "amount": "3026279538279299500" - }, - "weight": "5368709120" - } - ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1596", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1596", - "amount": "1000000000000000000" - }, - "liquidityUsd": 6.07527338401229, - "liquidity24hUsdChange": -1.6158112198367263, - "volume24hUsd": 2.809531687110408, - "volume24hUsdChange": -45.35315648156551, - "volume7dUsd": 107.42244802396407, + "volume24hUsdChange": -100, + "volume7dUsd": 1.3193580000000003, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", - "amount": "5049489" + "denom": "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", + "amount": "1005681942766413800" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2307183" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "4896529" }, "weight": "536870912000000" } @@ -24376,106 +24792,127 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "520", + "id": "221", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/520", + "denom": "gamm/pool/221", "amount": "100000000000000000000" }, - "liquidityUsd": 5.771465389295056, - "liquidity24hUsdChange": -4.539952918776444, + "liquidityUsd": 4.7119361377140265, + "liquidity24hUsdChange": -2.5128586274440106, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.20775405494012147, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "268522" + "amount": "235149" }, - "weight": "536870912000000" + "weight": "429496729600000" }, { "token": { "denom": "uosmo", - "amount": "2232587" + "amount": "3122156" }, - "weight": "536870912000000" + "weight": "644245094400000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1nd6t8vug665vnw83209pkydtmpa0k25h2r4jt5zcs77nc5dnc2rsya242p", + "id": "1127", + "current_tick_liquidity": "435613796.802919122036857089", + "token0": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", + "token0Amount": "1135003", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "4676682", + "current_sqrt_price": "0.030792984718685854258937688167322364", + "current_tick": "-27517921", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 4.697973938033338, + "liquidity24hUsdChange": 0.2923465776488789, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "11", + "id": "830", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/11", - "amount": "17249645360434800527" + "denom": "gamm/pool/830", + "amount": "669939758888670761" }, - "liquidityUsd": 5.49735161922078, - "liquidity24hUsdChange": -4.176033704958262, + "liquidityUsd": 4.681798777925005, + "liquidity24hUsdChange": -2.610072182147194, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.7298245503680412, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "uion", - "amount": "6928" + "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", + "amount": "21745773809" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "2143957" + "amount": "2511525" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "412", + "id": "232", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/412", - "amount": "2600000000000000000" + "denom": "gamm/pool/232", + "amount": "100000000000000000000" }, - "liquidityUsd": 5.29361425467525, - "liquidity24hUsdChange": -5.922455210785219, + "liquidityUsd": 4.558694943631986, + "liquidity24hUsdChange": -2.2851318109247054, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.5364974723026331, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "632264" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "285668" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2080387" + "amount": "2501197" }, "weight": "536870912000000" } @@ -24494,24 +24931,24 @@ "denom": "gamm/pool/792", "amount": "4151903711495116452" }, - "liquidityUsd": 5.122429, + "liquidityUsd": 4.543902, "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": -100, - "volume7dUsd": 0.07561354794211574, + "volume7dUsd": 0.438799, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", - "amount": "5859809" + "amount": "6611790" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "5122429" + "amount": "4543902" }, "weight": "536870912000000" } @@ -24520,113 +24957,106 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "717", + "id": "741", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/717", - "amount": "4204684852046281224925" + "denom": "gamm/pool/741", + "amount": "466710269590194650293" }, - "liquidityUsd": 5.100086294886631, - "liquidity24hUsdChange": -1.6058526111149374, + "liquidityUsd": 4.444696208301938, + "liquidity24hUsdChange": -4.997050437544931, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.5351844955227443, + "volume7dUsd": 1.8007108985562246, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "5063117" + "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "amount": "40184930" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { - "denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", - "amount": "349201098" + "denom": "uosmo", + "amount": "2494147" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1010", + "id": "880", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1010", - "amount": "244062385730698581841" + "denom": "gamm/pool/880", + "amount": "123104216998241393" }, - "liquidityUsd": 4.9958078465887095, - "liquidity24hUsdChange": -5.4860859151034, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.25265669836406207, + "liquidityUsd": 4.34527206455039, + "liquidity24hUsdChange": -2.390360180991289, + "volume24hUsd": 0.04612914782967119, + "volume24hUsdChange": -57.126775292885135, + "volume7dUsd": 2.7302891632752457, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "236804" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "2432325" + "denom": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", + "amount": "248861419651546750000000" }, - "weight": "354334801920000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", - "amount": "263534257445" + "denom": "uosmo", + "amount": "4815655" }, - "weight": "365072220160000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "993", + "id": "412", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/993", - "amount": "407546830487070880857" + "denom": "gamm/pool/412", + "amount": "2600000000000000000" }, - "liquidityUsd": 4.93399742097689, - "liquidity24hUsdChange": -4.625215344977822, + "liquidityUsd": 4.221813670452473, + "liquidity24hUsdChange": -3.413612670261616, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.09249846147784738, + "volume7dUsd": 0.5988615527703399, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C", - "amount": "28076763773313" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "575295" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3845383" + "amount": "2286402" }, "weight": "536870912000000" } @@ -24635,18 +25065,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1353", + "id": "520", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1353", - "amount": "18880242414765624" + "denom": "gamm/pool/520", + "amount": "100000000000000000000" }, - "liquidityUsd": 4.845049437212205, - "liquidity24hUsdChange": -2.0683859928655868, + "liquidityUsd": 4.178165923033863, + "liquidity24hUsdChange": -2.2564380202371623, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -24654,15 +25084,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "2721442" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "268522" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", - "amount": "1045096974" + "denom": "uosmo", + "amount": "2232587" }, "weight": "536870912000000" } @@ -24671,91 +25101,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "880", + "id": "707", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/880", - "amount": "123104216998241393" + "denom": "gamm/pool/707", + "amount": "100057848186764456452" }, - "liquidityUsd": 4.737587426129553, - "liquidity24hUsdChange": -5.7930342349598245, - "volume24hUsd": 0.00045550889248877264, - "volume24hUsdChange": -99.47259519800417, - "volume7dUsd": 0.8807094766742753, + "liquidityUsd": 4.068595892698295, + "liquidity24hUsdChange": -0.47877152936636813, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.21592236271524629, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", - "amount": "324339796530000000000000" + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "2085991" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "3692308" + "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "amount": "1048337574" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1nd6t8vug665vnw83209pkydtmpa0k25h2r4jt5zcs77nc5dnc2rsya242p", - "id": "1127", - "current_tick_liquidity": "435613796.802919122036857089", - "token0": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", - "token0Amount": "1135003", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "4676682", - "current_sqrt_price": "0.030792984718685854258937688167322364", - "current_tick": "-27517921", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 4.688503152060544, - "liquidity24hUsdChange": -0.24455232903096408, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "707", + "id": "11", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/707", - "amount": "100057848186764456452" + "denom": "gamm/pool/11", + "amount": "17249645360434800527" }, - "liquidityUsd": 4.589676721580254, - "liquidity24hUsdChange": -1.909476345667206, + "liquidityUsd": 3.8183202256561843, + "liquidity24hUsdChange": -6.052077834899808, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.5737552886722054, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "2317217" + "denom": "uion", + "amount": "6928" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "amount": "943533821" + "denom": "uosmo", + "amount": "2143957" }, "weight": "536870912000000" } @@ -24764,70 +25173,77 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "891", + "id": "1010", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/891", - "amount": "439538009397301931278" + "denom": "gamm/pool/1010", + "amount": "244062385730698581841" }, - "liquidityUsd": 4.482393422158614, - "liquidity24hUsdChange": -1.805237394627339, + "liquidityUsd": 3.684159224786644, + "liquidity24hUsdChange": -0.5962695726056384, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 19.351802735094008, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "85357526" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "230977" }, - "weight": "536870912000000" + "weight": "354334801920000" }, { "token": { "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "2320949" + "amount": "1823030" }, - "weight": "536870912000000" + "weight": "354334801920000" + }, + { + "token": { + "denom": "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", + "amount": "359366924816" + }, + "weight": "365072220160000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1140", + "id": "891", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.015000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1140", - "amount": "18257977181319481747" + "denom": "gamm/pool/891", + "amount": "439538009397301931278" }, - "liquidityUsd": 4.375336651383274, - "liquidity24hUsdChange": -3.28311230264335, + "liquidityUsd": 3.629477596126157, + "liquidity24hUsdChange": -1.6354867639459383, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.9459558430886366, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "2263817" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "107769409" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", - "amount": "157282" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1839493" }, "weight": "536870912000000" } @@ -24846,24 +25262,24 @@ "denom": "gamm/pool/970", "amount": "100000000000000000000" }, - "liquidityUsd": 4.362316816597904, - "liquidity24hUsdChange": -4.846257122087114, + "liquidityUsd": 3.548574146704526, + "liquidity24hUsdChange": -5.160300384103396, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.24973050899504196, + "volume7dUsd": 0.30941451054492347, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", - "amount": "1933714" + "amount": "1718062" }, "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "1747063" + "amount": "1970965" }, "weight": "1073741824" } @@ -24872,34 +25288,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "301", + "id": "717", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/301", - "amount": "100000000000000000000" + "denom": "gamm/pool/717", + "amount": "4204684852046275548481" }, - "liquidityUsd": 4.28224394626265, - "liquidity24hUsdChange": -5.726193077366953, + "liquidityUsd": 3.4708449072823777, + "liquidity24hUsdChange": -2.6118358159993798, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.5048790383273152, + "volume7dUsd": 0.5634064994811769, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "504800" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "5235955" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "56277754" + "denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", + "amount": "337674075" }, "weight": "536870912000000" } @@ -24908,34 +25324,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "987", + "id": "993", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/987", - "amount": "5137901181304122439" + "denom": "gamm/pool/993", + "amount": "407546830487070880857" }, - "liquidityUsd": 4.064005395392809, - "liquidity24hUsdChange": -4.625215344977822, + "liquidityUsd": 3.4697741693283626, + "liquidity24hUsdChange": -3.393444051277477, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 3.3379648031178464, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424", - "amount": "29551" + "denom": "ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C", + "amount": "28076763773313" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3167342" + "amount": "3845383" }, "weight": "536870912000000" } @@ -24944,40 +25360,61 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1364", + "id": "301", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001600000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1364", - "amount": "500000000000000000" + "denom": "gamm/pool/301", + "amount": "100000000000000000000" }, - "liquidityUsd": 4.063768765154434, - "liquidity24hUsdChange": -3.668809509043337, - "volume24hUsd": 0.005624182155804691, - "volume24hUsdChange": -67.09526288833295, - "volume7dUsd": 0.21487405413728083, + "liquidityUsd": 3.409191776744061, + "liquidity24hUsdChange": -2.1695152714833634, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.19392895537252638, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "amount": "669063387932468800" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "450408" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1570814" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "63074081" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1kk76r6y2jwkqv6cpxyxst8ce3wv3dv69jtrmkn8u9h2a237d8sesa6vq7a", + "id": "1697", + "current_tick_liquidity": "10000000.000000000000200000", + "token0": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", + "token0Amount": "50000000", + "token1": "uosmo", + "token1Amount": "1999991", + "current_sqrt_price": "0.200000000000000000000000000000000000", + "current_tick": "-15000000", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.025000000000000000", + "liquidityUsd": 3.256790673966971, + "liquidity24hUsdChange": null, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "499", @@ -24990,24 +25427,24 @@ "denom": "gamm/pool/499", "amount": "33342371465295629820" }, - "liquidityUsd": 4.0328041428396375, - "liquidity24hUsdChange": -5.679409726607934, + "liquidityUsd": 3.137685807125049, + "liquidity24hUsdChange": -3.4092252632784903, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.1340034144348283, + "volume24hUsdChange": -100, + "volume7dUsd": 0.5914004400340762, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "390421" + "amount": "334538" }, "weight": "429496729600000" }, { "token": { "denom": "uosmo", - "amount": "1880078" + "amount": "2086131" }, "weight": "644245094400000" } @@ -25016,39 +25453,39 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1003", + "id": "1048", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1003", - "amount": "216879223551396669770684" + "denom": "gamm/pool/1048", + "amount": "1948286490766023209" }, - "liquidityUsd": 3.9932041312041693, - "liquidity24hUsdChange": -4.6252153449778355, + "liquidityUsd": 3.113759933954861, + "liquidity24hUsdChange": -1.3109123966916214, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.26091850280917805, + "volume7dUsd": 1.2598657423378756, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960", - "amount": "113533505177586140000" + "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "amount": "2199706" }, - "weight": "536870912000000" + "weight": "53687091200" }, { "token": { - "denom": "uosmo", - "amount": "3112162" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1609159" }, - "weight": "536870912000000" + "weight": "53687091200" } ], - "total_weight": "1073741824000000" + "total_weight": "107374182400" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -25062,24 +25499,24 @@ "denom": "gamm/pool/1456", "amount": "1000000000000000000" }, - "liquidityUsd": 3.959330405538979, - "liquidity24hUsdChange": -5.9577689065289325, - "volume24hUsd": 0.08668534686355256, - "volume24hUsdChange": 0.20928900887327803, - "volume7dUsd": 0.537823586656195, + "liquidityUsd": 2.877581048701744, + "liquidity24hUsdChange": -3.846338046028281, + "volume24hUsd": 0.0008843695517339624, + "volume24hUsdChange": null, + "volume7dUsd": 1.0108520524277746, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "597501" + "amount": "452205" }, "weight": "161061273600000" }, { "token": { "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "651304535197476800" + "amount": "684153950155939500" }, "weight": "912680550400000" } @@ -25088,54 +25525,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1048", + "id": "1364", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.001600000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1048", - "amount": "1948286490766023209" + "denom": "gamm/pool/1364", + "amount": "500000000000000000" }, - "liquidityUsd": 3.921765683962316, - "liquidity24hUsdChange": -3.862128677105169, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 2.843088619013778, + "liquidity24hUsdChange": -1.756659308936143, + "volume24hUsd": 0.048595317538393, + "volume24hUsdChange": null, + "volume7dUsd": 1.1504441926673983, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", - "amount": "1840209" + "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "amount": "658278808935218200" }, - "weight": "53687091200" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1921835" + "denom": "uosmo", + "amount": "1597332" }, - "weight": "53687091200" + "weight": "536870912000000" } ], - "total_weight": "107374182400" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1072", + "id": "1003", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.004000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1072", - "amount": "14445436996356294361" + "denom": "gamm/pool/1003", + "amount": "216879223551396669770684" }, - "liquidityUsd": 3.881008180442752, - "liquidity24hUsdChange": -3.2032091191617442, + "liquidityUsd": 2.8088593038738026, + "liquidity24hUsdChange": -3.3934440512774664, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -25143,15 +25580,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3", - "amount": "53208311959379" + "denom": "ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960", + "amount": "113533872227838610000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "4373117" + "denom": "uosmo", + "amount": "3112923" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1454", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.075000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1454", + "amount": "70641554716561" + }, + "liquidityUsd": 2.7935672778906655, + "liquidity24hUsdChange": 1.111872308071809, + "volume24hUsd": 0.41270678407574535, + "volume24hUsdChange": 47.10243887681316, + "volume7dUsd": 1.1264626634519264, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", + "amount": "142975" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "1587997" }, "weight": "536870912000000" } @@ -25170,20 +25643,20 @@ "denom": "gamm/pool/892", "amount": "100000000000000000000" }, - "liquidityUsd": 3.6323339122897, - "liquidity24hUsdChange": -2.0851768177961394, + "liquidityUsd": 2.724318550499931, + "liquidity24hUsdChange": -2.279232829970787, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.3485312733819614, + "volume7dUsd": 2.764358405734219, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "2633919" + "amount": "3368351" }, { "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1294811" + "amount": "737965" } ], "scaling_factors": [ @@ -25194,54 +25667,89 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "853", + "id": "702", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/853", - "amount": "100000000000000000000" + "denom": "gamm/pool/702", + "amount": "976557859572452297" }, - "liquidityUsd": 3.4955051177053047, - "liquidity24hUsdChange": -4.625215344977822, + "liquidityUsd": 2.6778079844159226, + "liquidity24hUsdChange": -0.5939447690946883, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.4149831632143835, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213", - "amount": "153106458778192060000" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "583167265058979000" }, - "weight": "719407022080000" + "weight": "150323855360000" }, { "token": { - "denom": "uosmo", - "amount": "2724273" + "denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", + "amount": "623058082746328700" }, - "weight": "354334801920000" + "weight": "150323855360000" + }, + { + "token": { + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "552802" + }, + "weight": "150323855360000" + }, + { + "token": { + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "551784" + }, + "weight": "150323855360000" + }, + { + "token": { + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "33013095" + }, + "weight": "171798691840000" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "439791" + }, + "weight": "150323855360000" + }, + { + "token": { + "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "amount": "680874212183080000" + }, + "weight": "150323855360000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "151", + "id": "724", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003330000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/151", - "amount": "63350845221992991" + "denom": "gamm/pool/724", + "amount": "1000000000000000000" }, - "liquidityUsd": 3.4141317474907913, - "liquidity24hUsdChange": -4.085377909652918, + "liquidityUsd": 2.6219334471771307, + "liquidity24hUsdChange": -2.552971842118378, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -25250,14 +25758,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "155609" + "amount": "140046" }, "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "4363" + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "503107907286129" }, "weight": "536870912000000" } @@ -25266,18 +25774,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "724", + "id": "853", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/724", - "amount": "1000000000000000000" + "denom": "gamm/pool/853", + "amount": "100000000000000000000" }, - "liquidityUsd": 3.2844720856209797, - "liquidity24hUsdChange": -3.304039233668949, + "liquidityUsd": 2.4581718090496283, + "liquidity24hUsdChange": -3.3934440512774833, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -25285,123 +25793,165 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "140046" + "denom": "ibc/9A8A93D04917A149C8AC7C16D3DA8F470D59E8D867499C4DA97450E1D7363213", + "amount": "153106458778192060000" }, - "weight": "536870912000000" + "weight": "719407022080000" }, { "token": { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "503107907286129" + "denom": "uosmo", + "amount": "2724273" }, - "weight": "536870912000000" + "weight": "354334801920000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1047", + "id": "151", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.003330000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1047", - "amount": "3546367125054764262" + "denom": "gamm/pool/151", + "amount": "63350845221992991" }, - "liquidityUsd": 3.2790533394050363, - "liquidity24hUsdChange": -5.874140178537225, - "volume24hUsd": 0.006031849168270346, - "volume24hUsdChange": -74.7227523441035, - "volume7dUsd": 0.20391918567525905, + "liquidityUsd": 2.4433033323528157, + "liquidity24hUsdChange": -4.942788654170219, + "volume24hUsd": 0.2224217998334993, + "volume24hUsdChange": null, + "volume7dUsd": 0.8452627573102762, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", - "amount": "1479998" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "156132" }, - "weight": "53687091200" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "154323" + "denom": "uion", + "amount": "4359" }, - "weight": "53687091200" + "weight": "536870912000000" } ], - "total_weight": "107374182400" + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1daj4ztx6s9rr3s32y4sqm67wq7p4c8653u0zrmfkzfqhl5d5m30qufad2z", + "id": "1157", + "current_tick_liquidity": "17294485.225772099957857137", + "token0": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "token0Amount": "30055920", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1108817", + "current_sqrt_price": "0.248927139291226744258948790742619886", + "current_tick": "-12803528", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 2.3859809070278946, + "liquidity24hUsdChange": -0.768304586690828, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "815", + "id": "1009", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.200000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/815", - "amount": "65124217311868409420" + "denom": "gamm/pool/1009", + "amount": "33298561820658994437" }, - "liquidityUsd": 3.2322180987223366, - "liquidity24hUsdChange": -6.1730300038356765, + "liquidityUsd": 2.3818137013383174, + "liquidity24hUsdChange": -3.39344405127747, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.4576783204218513, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", - "amount": "114581396" + "denom": "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", + "amount": "20316643854872" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1235674" + "amount": "2639649" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo15g9y5fc44dq7y56q25pagfgsdhynswy492dxrkl5j8rjchh8440sl687sn", + "id": "1398", + "current_tick_liquidity": "1889303885.632355225987126376", + "token0": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "token0Amount": "2427", + "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token1Amount": "295123842510295", + "current_sqrt_price": "430903.910608382127344820868496785983446507", + "current_tick": "99856781", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 2.3752526245660617, + "liquidity24hUsdChange": -3.355543743370376, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "716", + "id": "1412", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/716", - "amount": "62740054234438375375" + "denom": "gamm/pool/1412", + "amount": "307655752622375700" }, - "liquidityUsd": 3.0533321148184305, - "liquidity24hUsdChange": 3.8855226823166027, - "volume24hUsd": 0.4153720623758974, - "volume24hUsdChange": null, - "volume7dUsd": 5.107040407753263, + "liquidityUsd": 2.2677206253990203, + "liquidity24hUsdChange": -11.042000781465967, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.41717344326840555, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", - "amount": "63851740545750710000000" + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "amount": "128393" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", - "amount": "198075446" + "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", + "amount": "16547579008" }, "weight": "536870912000000" } @@ -25410,70 +25960,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "289", + "id": "1047", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/289", - "amount": "100000000000000000000" + "denom": "gamm/pool/1047", + "amount": "3546367125054764262" }, - "liquidityUsd": 2.945028909377829, - "liquidity24hUsdChange": -4.542804603049517, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.03498944530473027, + "liquidityUsd": 2.244716073025281, + "liquidity24hUsdChange": -1.9194616094185712, + "volume24hUsd": 0.001984967014661337, + "volume24hUsdChange": -89.37384092777478, + "volume7dUsd": 0.419308293633475, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "132441" + "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "amount": "1614793" }, - "weight": "536870912000000" + "weight": "53687091200" }, { "token": { - "denom": "uosmo", - "amount": "1177862" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "141505" }, - "weight": "536870912000000" + "weight": "53687091200" } ], - "total_weight": "1073741824000000" + "total_weight": "107374182400" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1639", + "id": "1072", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.004000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1639", - "amount": "2250000000000000000" + "denom": "gamm/pool/1072", + "amount": "14445436996356294361" }, - "liquidityUsd": 2.936281481185949, - "liquidity24hUsdChange": -4.57385535821612, - "volume24hUsd": 0.13811879471108213, - "volume24hUsdChange": null, - "volume7dUsd": 30.2480953906299, + "liquidityUsd": 2.2380292207537917, + "liquidity24hUsdChange": -3.0997596101034066, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "amount": "45805958321066040" + "denom": "ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3", + "amount": "61344344190389" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", - "amount": "1615229864" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "3795129" }, "weight": "536870912000000" } @@ -25482,34 +26032,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1412", + "id": "1639", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1412", - "amount": "307655752622375700" + "denom": "gamm/pool/1639", + "amount": "2250000000000000000" }, - "liquidityUsd": 2.9283353537010317, - "liquidity24hUsdChange": -6.613418877938685, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.1242950949610176, + "liquidityUsd": 2.2070246868639334, + "liquidity24hUsdChange": -1.6508789702543971, + "volume24hUsd": 0.09476748652518781, + "volume24hUsdChange": null, + "volume7dUsd": 0.09476748652518781, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "amount": "118403" + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "amount": "42058924507537655" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", - "amount": "17915822278" + "denom": "ibc/6B2B19D874851F631FF0AF82C38A20D4B82F438C7A22F41EDA33568345397244", + "amount": "1759130855" }, "weight": "536870912000000" } @@ -25528,8 +26078,8 @@ "denom": "gamm/pool/946", "amount": "1139150732023647585" }, - "liquidityUsd": 2.9279388394836583, - "liquidity24hUsdChange": -4.117585283417349, + "liquidityUsd": 2.133788988027243, + "liquidity24hUsdChange": -4.32179288986532, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -25561,89 +26111,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "702", + "id": "289", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/702", - "amount": "976557859572452297" - }, - "liquidityUsd": 2.924856012498867, - "liquidity24hUsdChange": -0.6972991488509468, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.10638760320141916, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "583167265058979000" - }, - "weight": "150323855360000" - }, - { - "token": { - "denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", - "amount": "623058082746328700" - }, - "weight": "150323855360000" - }, - { - "token": { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "552802" - }, - "weight": "150323855360000" - }, - { - "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "551784" - }, - "weight": "150323855360000" - }, - { - "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "23862379" - }, - "weight": "171798691840000" - }, - { - "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "633078" - }, - "weight": "150323855360000" - }, - { - "token": { - "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", - "amount": "680874212183080000" - }, - "weight": "150323855360000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "654", - "pool_params": { - "exit_fee": "0.010000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/654", - "amount": "727347074742537610" + "denom": "gamm/pool/289", + "amount": "100000000000000000000" }, - "liquidityUsd": 2.7291291807474156, - "liquidity24hUsdChange": 1.669896703172942, + "liquidityUsd": 2.1299726789004523, + "liquidity24hUsdChange": -2.293803000160078, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -25651,113 +26130,69 @@ "pool_assets": [ { "token": { - "denom": "ibc/6F4EFBEAF2659742F33499C9B4D272CFD824DD785156DF4C5C453F95CEF27D98", - "amount": "1196572653" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "132441" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "15474349052" + "denom": "uosmo", + "amount": "1177862" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo15g9y5fc44dq7y56q25pagfgsdhynswy492dxrkl5j8rjchh8440sl687sn", - "id": "1398", - "current_tick_liquidity": "1889303885.632355225987126376", - "token0": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "token0Amount": "2427", - "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "295123842510295", - "current_sqrt_price": "430903.910608382127344820868496785983446507", - "current_tick": "99856781", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 2.7153271750135497, - "liquidity24hUsdChange": -3.328428350767687, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "124", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1029", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/124", - "amount": "25000000000000000000" + "denom": "gamm/pool/1029", + "amount": "4200962677980172385" }, - "liquidityUsd": 2.6856274629083257, - "liquidity24hUsdChange": -4.471065249224528, + "liquidityUsd": 2.097212139029601, + "liquidity24hUsdChange": -8.07770140547398, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 3.3034634136808303, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "225742" - }, - "weight": "966367641600000" + "denom": "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", + "amount": "176742419073381440" }, { - "token": { - "denom": "uosmo", - "amount": "188524" - }, - "weight": "107374182400000" + "denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", + "amount": "429594535345534270000000" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1daj4ztx6s9rr3s32y4sqm67wq7p4c8653u0zrmfkzfqhl5d5m30qufad2z", - "id": "1157", - "current_tick_liquidity": "17294485.225772099957857137", - "token0": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", - "token0Amount": "30055920", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1108817", - "current_sqrt_price": "0.248927139291226744258948790742619886", - "current_tick": "-12803528", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 2.6800957754608774, - "liquidity24hUsdChange": -0.9836727542404975, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.32305766631577654, - "taker_fee": "0.001000000000000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "279", + "id": "815", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.200000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/279", - "amount": "466194470452465491" + "denom": "gamm/pool/815", + "amount": "65124217311868409420" }, - "liquidityUsd": 2.6702643878914483, - "liquidity24hUsdChange": -4.544353841003599, + "liquidityUsd": 2.0845637425615564, + "liquidity24hUsdChange": -3.1327469990110908, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -25765,20 +26200,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "117829" + "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", + "amount": "114581396" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "1087000" + "amount": "1235674" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -25792,24 +26227,24 @@ "denom": "gamm/pool/383", "amount": "1200000000000000000" }, - "liquidityUsd": 2.6557357917601063, - "liquidity24hUsdChange": -5.954818194999664, + "liquidityUsd": 2.0823358864661654, + "liquidity24hUsdChange": -3.4139055044675968, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.8379297943504229, + "volume24hUsdChange": 0, + "volume7dUsd": 0.36526412398280345, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "322873" + "amount": "287875" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "809938121" + "amount": "908703451" }, "weight": "536870912000000" } @@ -25818,36 +26253,36 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1009", + "id": "124", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1009", - "amount": "40302854297438156882" + "denom": "gamm/pool/124", + "amount": "25000000000000000000" }, - "liquidityUsd": 2.6254887132879574, - "liquidity24hUsdChange": -2.2387710270105337, - "volume24hUsd": 0.06668241382420306, - "volume24hUsdChange": -74.79749184066293, - "volume7dUsd": 70.75201189940142, + "liquidityUsd": 1.989056862698782, + "liquidity24hUsdChange": -1.367318153720213, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", - "amount": "38361787081783" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "225742" }, - "weight": "536870912000000" + "weight": "966367641600000" }, { "token": { "denom": "uosmo", - "amount": "2046213" + "amount": "188524" }, - "weight": "536870912000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" @@ -25864,11 +26299,11 @@ "denom": "gamm/pool/531", "amount": "12500000000000000000" }, - "liquidityUsd": 2.4746692115749043, - "liquidity24hUsdChange": -5.872127043722058, + "liquidityUsd": 1.976969747350481, + "liquidity24hUsdChange": -3.414702235316837, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.05280850027444777, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -25900,11 +26335,11 @@ "denom": "gamm/pool/834", "amount": "82162401186875550371" }, - "liquidityUsd": 2.4449024177685224, - "liquidity24hUsdChange": 2.768937414750339, + "liquidityUsd": 1.9427057832489156, + "liquidity24hUsdChange": -2.0770208228484526, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.1304063621227719, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -25926,34 +26361,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1002", + "id": "1382", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1002", - "amount": "11236276519781664725" + "denom": "gamm/pool/1382", + "amount": "78840976385966159" }, - "liquidityUsd": 2.288642524770616, - "liquidity24hUsdChange": -2.9953159392521647, - "volume24hUsd": 0.04049690654150173, - "volume24hUsdChange": null, - "volume7dUsd": 1.7096740235375238, + "liquidityUsd": 1.9323716755368106, + "liquidity24hUsdChange": -4.6752743777900125, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.3680940582857654, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A", - "amount": "71875062278" + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "amount": "1596778318" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1783687" + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "amount": "46526377" }, "weight": "536870912000000" } @@ -25962,40 +26397,76 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "772", + "id": "279", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/772", - "amount": "48698858708169913" + "denom": "gamm/pool/279", + "amount": "466194470452465491" }, - "liquidityUsd": 2.2558867164486993, - "liquidity24hUsdChange": 0.6435279767586182, - "volume24hUsd": 0.1384083169509039, - "volume24hUsdChange": -81.79184857646686, - "volume7dUsd": 1.0501458249938314, + "liquidityUsd": 1.9302476683921017, + "liquidity24hUsdChange": -2.314121231631113, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", - "amount": "793657997" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "117829" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", - "amount": "248355204" + "denom": "uosmo", + "amount": "1087000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "654", + "pool_params": { + "exit_fee": "0.010000000000000000", + "swap_fee": "0.010000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/654", + "amount": "727347074742537610" + }, + "liquidityUsd": 1.812082020237288, + "liquidity24hUsdChange": -4.07866800247122, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/6F4EFBEAF2659742F33499C9B4D272CFD824DD785156DF4C5C453F95CEF27D98", + "amount": "1196572653" + }, + "weight": "5368709120" + }, + { + "token": { + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "amount": "15474349052" + }, + "weight": "5368709120" + } + ], + "total_weight": "10737418240" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1487", @@ -26008,24 +26479,24 @@ "denom": "gamm/pool/1487", "amount": "100000000000000000000" }, - "liquidityUsd": 2.217864356318754, - "liquidity24hUsdChange": -4.625215344977831, + "liquidityUsd": 1.7700600523523164, + "liquidity24hUsdChange": -3.3934440512774735, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.4922502780755135, + "volume7dUsd": 0.44577463488430924, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", - "amount": "256255251278006360" + "amount": "226354559531292800" }, "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "1728525" + "amount": "1961672" }, "weight": "5368709120" } @@ -26034,34 +26505,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1382", + "id": "739", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1382", - "amount": "74569834773706312" + "denom": "gamm/pool/739", + "amount": "100000000000000000000" }, - "liquidityUsd": 2.2120396235615796, - "liquidity24hUsdChange": -4.79786111619604, + "liquidityUsd": 1.7655967662221497, + "liquidity24hUsdChange": 0.02862058920576409, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 5.002132007241523, + "volume24hUsdChange": 0, + "volume7dUsd": 0.000129, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "amount": "1637670163" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "882021211379726100" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "40558832" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "883043" }, "weight": "536870912000000" } @@ -26069,55 +26540,53 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1300", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1040", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1300", - "amount": "6189722999109348" + "denom": "gamm/pool/1040", + "amount": "784124084166814963" }, - "liquidityUsd": 2.1913809757604894, - "liquidity24hUsdChange": -2.736787155803231, - "volume24hUsd": 10.411401619314761, - "volume24hUsdChange": 1727.4004325367048, - "volume7dUsd": 54.95136191389366, + "liquidityUsd": 1.7586362185302862, + "liquidity24hUsdChange": -2.9226128847485007, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.36276929585312245, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", - "amount": "21505623" - }, - "weight": "536870912000000" + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "436910170495910" }, { - "token": { - "denom": "uosmo", - "amount": "830833" - }, - "weight": "536870912000000" + "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "amount": "244396336" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1627", + "id": "987", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1627", - "amount": "100000000000000000000" + "denom": "gamm/pool/987", + "amount": "5137901181304122439" }, - "liquidityUsd": 2.1758816940654895, - "liquidity24hUsdChange": -4.4557794953701375, + "liquidityUsd": 1.7364792320580247, + "liquidity24hUsdChange": -3.3934440512774793, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26125,15 +26594,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "200999" + "denom": "ibc/020F5162B7BC40656FC5432622647091F00D53E82EE8D21757B43D3282F25424", + "amount": "48795" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/961E7EF7011001130D1539FDBFA5248D228BEB18880920B913D9FB0BB0726C9F", - "amount": "3980140" + "denom": "uosmo", + "amount": "1924456" }, "weight": "536870912000000" } @@ -26142,34 +26611,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "727", + "id": "1300", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.012000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/727", - "amount": "1000000000000000000" + "denom": "gamm/pool/1300", + "amount": "6189722999109348" }, - "liquidityUsd": 2.1429732920419715, - "liquidity24hUsdChange": -3.934069898564061, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.08022094044383112, + "liquidityUsd": 1.722038179891301, + "liquidity24hUsdChange": -4.106320257953395, + "volume24hUsd": 0.7102509473427707, + "volume24hUsdChange": -91.62590994046487, + "volume7dUsd": 50.964524776285565, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "1182559" + "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "amount": "21810924" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "852226" + "amount": "882699" }, "weight": "536870912000000" } @@ -26178,30 +26647,30 @@ }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1040", + "id": "1688", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1040", - "amount": "784124084166814963" + "denom": "gamm/pool/1688", + "amount": "1009411425938266897" }, - "liquidityUsd": 2.130417786210567, - "liquidity24hUsdChange": -2.6063993007603115, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.03070314774460238, + "liquidityUsd": 1.6729134416214673, + "liquidity24hUsdChange": -2.1758604169243236, + "volume24hUsd": 0.1476927488290176, + "volume24hUsdChange": 67.31471169213297, + "volume7dUsd": 1995.5888346795523, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "479364589219070" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "565411" }, { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "amount": "184590458" + "denom": "uosmo", + "amount": "1226761" } ], "scaling_factors": [ @@ -26222,11 +26691,11 @@ "denom": "gamm/pool/1395", "amount": "12036979370548495" }, - "liquidityUsd": 2.1098372939429964, - "liquidity24hUsdChange": -4.0203275949701, + "liquidityUsd": 1.6673705523077964, + "liquidity24hUsdChange": -2.925503625325423, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.014477440498017621, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -26246,6 +26715,114 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "716", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/716", + "amount": "62740054234438375375" + }, + "liquidityUsd": 1.6604385928495131, + "liquidity24hUsdChange": -15.39727868664849, + "volume24hUsd": 0.14152064759950825, + "volume24hUsdChange": null, + "volume7dUsd": 1.2750741508289425, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", + "amount": "74943391121128530000000" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", + "amount": "169072658" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1627", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1627", + "amount": "100000000000000000000" + }, + "liquidityUsd": 1.6195773304393544, + "liquidity24hUsdChange": -1.173479034635177, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "200999" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/961E7EF7011001130D1539FDBFA5248D228BEB18880920B913D9FB0BB0726C9F", + "amount": "3980140" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1002", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1002", + "amount": "11236276519781664725" + }, + "liquidityUsd": 1.5141948829329743, + "liquidity24hUsdChange": -9.11167093971374, + "volume24hUsd": 0.01504500323449968, + "volume24hUsdChange": null, + "volume7dUsd": 0.01504500323449968, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A", + "amount": "76403099880" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "1678109" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1587", @@ -26258,8 +26835,8 @@ "denom": "gamm/pool/1587", "amount": "1413112176479856054" }, - "liquidityUsd": 2.085837151316348, - "liquidity24hUsdChange": -4.541071662960151, + "liquidityUsd": 1.5094446117114795, + "liquidity24hUsdChange": -2.2710913001617383, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26294,8 +26871,8 @@ "denom": "gamm/pool/278", "amount": "747186797005785714" }, - "liquidityUsd": 2.080348842167161, - "liquidity24hUsdChange": -4.543951988746774, + "liquidityUsd": 1.504019590864146, + "liquidity24hUsdChange": -2.308849665438835, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26318,32 +26895,68 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "727", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.012000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/727", + "amount": "1000000000000000000" + }, + "liquidityUsd": 1.4663503976026036, + "liquidity24hUsdChange": -3.253995698570004, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "1182559" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "852226" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1062", + "id": "1485", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1062", - "amount": "100678073501324515493" + "denom": "gamm/pool/1485", + "amount": "10000000000000000" }, - "liquidityUsd": 2.021422810867541, - "liquidity24hUsdChange": -0.11286802653411922, + "liquidityUsd": 1.464359827902665, + "liquidity24hUsdChange": -3.1533441725440605, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "1156070" + "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", + "amount": "29462602" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "872582" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "408772" } ], "scaling_factors": [ @@ -26354,34 +26967,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "985", + "id": "703", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/985", - "amount": "6648876809926710073" + "denom": "gamm/pool/703", + "amount": "79396547720411797" }, - "liquidityUsd": 1.9223621028265372, - "liquidity24hUsdChange": -4.6252153449778275, + "liquidityUsd": 1.4187126375045442, + "liquidity24hUsdChange": -3.098547896859666, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.04270820302376628, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8", - "amount": "484190117" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "266075828550054" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1498221" + "amount": "689466" }, "weight": "536870912000000" } @@ -26390,18 +27003,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "462", + "id": "1001", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/462", - "amount": "179417573199467" + "denom": "gamm/pool/1001", + "amount": "29075104661848182627" }, - "liquidityUsd": 1.8952269940264008, - "liquidity24hUsdChange": -2.9773444364782566, + "liquidityUsd": 1.403272, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26409,15 +27022,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "82968" + "denom": "ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A", + "amount": "46885301825" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "989843" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1403272" }, "weight": "536870912000000" } @@ -26426,34 +27039,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "134", + "id": "1132", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/134", - "amount": "100000000000000000000" + "denom": "gamm/pool/1132", + "amount": "1134193617804243243" }, - "liquidityUsd": 1.8267002876166656, - "liquidity24hUsdChange": -4.539956612108342, + "liquidityUsd": 1.3684869988753552, + "liquidity24hUsdChange": -0.6382995317371711, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.07271269596179873, + "volume24hUsdChange": 0, + "volume7dUsd": 0.14499246268202776, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "84985" + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "718094" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "706657" + "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "amount": "455316255515" }, "weight": "536870912000000" } @@ -26462,34 +27075,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "703", + "id": "985", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/703", - "amount": "79396547720411797" + "denom": "gamm/pool/985", + "amount": "6648876809926710073" }, - "liquidityUsd": 1.8209544292483857, - "liquidity24hUsdChange": -3.8823483827350507, + "liquidityUsd": 1.3518779600745385, + "liquidity24hUsdChange": -3.3934440512774744, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.02759666560495235, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "266075828550054" + "denom": "ibc/1FBA9E763B8679BEF7BAAAF2D16BCA78C3B297D226C3F31312C769D7B8F992D8", + "amount": "484190117" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "689466" + "amount": "1498221" }, "weight": "536870912000000" } @@ -26498,34 +27111,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1174", + "id": "794", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.100000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1174", - "amount": "1000000000000000000" + "denom": "gamm/pool/794", + "amount": "548200903392272495" }, - "liquidityUsd": 1.7928720052926925, - "liquidity24hUsdChange": -4.625215344977828, + "liquidityUsd": 1.3356061967487998, + "liquidity24hUsdChange": -3.699544121314909, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.03278867914927992, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/F2F19568D75125D7B88303ADC021653267443679780D6A0FD3E1EC318E0C51FD", - "amount": "7214" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "78554" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1397301" + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "12680764133204756000" }, "weight": "536870912000000" } @@ -26533,69 +27146,71 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1485", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "772", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1485", - "amount": "10000000000000000" + "denom": "gamm/pool/772", + "amount": "48698858708169913" }, - "liquidityUsd": 1.792131248995057, - "liquidity24hUsdChange": -0.2215886067549675, + "liquidityUsd": 1.334388751527937, + "liquidity24hUsdChange": -3.8227898497135335, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.146293344544754, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", - "amount": "29462602" + "token": { + "denom": "ibc/AD185F62399F770CCCE8A36A180A77879FF6C26A0398BD3D2A74E087B0BFA121", + "amount": "1006086694" + }, + "weight": "536870912000000" }, { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "408772" + "token": { + "denom": "ibc/B547DC9B897E7C3AA5B824696110B8E3D2C31E3ED3F02FF363DCBAD82457E07E", + "amount": "196048107" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "794", + "id": "462", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.100000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/794", - "amount": "548200903392272495" + "denom": "gamm/pool/462", + "amount": "179417573199467" }, - "liquidityUsd": 1.7711944776892674, - "liquidity24hUsdChange": -4.412404193596299, - "volume24hUsd": 0.14367979355594757, - "volume24hUsdChange": null, - "volume7dUsd": 1.0518016368604197, + "liquidityUsd": 1.3246799267805738, + "liquidity24hUsdChange": -1.8912122069940913, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "76556" + "amount": "82968" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "12978618645775017000" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "989843" }, "weight": "536870912000000" } @@ -26604,18 +27219,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "739", + "id": "134", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/739", + "denom": "gamm/pool/134", "amount": "100000000000000000000" }, - "liquidityUsd": 1.7652717393977815, - "liquidity24hUsdChange": 0.055728780640184404, + "liquidityUsd": 1.3224106764852468, + "liquidity24hUsdChange": -2.2564863839850275, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26623,15 +27238,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "882150080936974000" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "84985" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "882914" + "denom": "uosmo", + "amount": "706657" }, "weight": "536870912000000" } @@ -26640,18 +27255,61 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1424", + "id": "1601", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1424", - "amount": "8322236203090507726" + "denom": "gamm/pool/1601", + "amount": "280163570966004442" + }, + "liquidityUsd": 1.272640446033533, + "liquidity24hUsdChange": -2.869587114541374, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.17170777163155035, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "56845" + }, + "weight": "365072220160000" + }, + { + "token": { + "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "amount": "208413920535230300" + }, + "weight": "354334801920000" + }, + { + "token": { + "denom": "uosmo", + "amount": "454438" + }, + "weight": "354334801920000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1174", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1174", + "amount": "1000000000000000000" }, - "liquidityUsd": 1.7301965911603532, - "liquidity24hUsdChange": -4.62521534497782, + "liquidityUsd": 1.260815610974691, + "liquidity24hUsdChange": -3.393444051277465, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26659,15 +27317,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", - "amount": "515" + "denom": "ibc/F2F19568D75125D7B88303ADC021653267443679780D6A0FD3E1EC318E0C51FD", + "amount": "7214" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1348454" + "amount": "1397301" }, "weight": "536870912000000" } @@ -26676,34 +27334,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1454", + "id": "1424", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.075000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1454", - "amount": "70641554716561" + "denom": "gamm/pool/1424", + "amount": "8322236203090507726" }, - "liquidityUsd": 1.7111221868780742, - "liquidity24hUsdChange": 2.3490909917971194, - "volume24hUsd": 0.0932233139506912, - "volume24hUsdChange": -36.397834787526854, - "volume7dUsd": 67.43663264549902, + "liquidityUsd": 1.2167398820163058, + "liquidity24hUsdChange": -3.3934440512774793, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", - "amount": "73018" + "denom": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", + "amount": "515" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "678439" + "amount": "1348454" }, "weight": "536870912000000" } @@ -26722,8 +27380,8 @@ "denom": "gamm/pool/667", "amount": "690570304342031621" }, - "liquidityUsd": 1.67978164683013, - "liquidity24hUsdChange": -6.103172476440295, + "liquidityUsd": 1.2122449733329512, + "liquidity24hUsdChange": -1.2760602760249184, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26748,34 +27406,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "568", + "id": "174", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/568", - "amount": "867959748278724298" + "denom": "gamm/pool/174", + "amount": "79121343116969192411" }, - "liquidityUsd": 1.6718428531574703, - "liquidity24hUsdChange": -4.166240465201822, + "liquidityUsd": 1.2047856340638239, + "liquidity24hUsdChange": -4.492333660546133, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.10014625584765453, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "31970698" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "164766" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "672025" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "8058863" }, "weight": "536870912000000" } @@ -26794,8 +27452,8 @@ "denom": "gamm/pool/409", "amount": "100000000000000000000" }, - "liquidityUsd": 1.6520084059647906, - "liquidity24hUsdChange": -4.543349200850972, + "liquidityUsd": 1.1945859397770935, + "liquidity24hUsdChange": -2.300943872935735, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26830,11 +27488,11 @@ "denom": "gamm/pool/128", "amount": "100000000000000000000" }, - "liquidityUsd": 1.6423934064986319, - "liquidity24hUsdChange": -4.539647645994474, + "liquidityUsd": 1.1891077049567151, + "liquidity24hUsdChange": -2.2524407701858924, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.07250645822545763, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -26856,43 +27514,36 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1601", + "id": "1026", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1601", - "amount": "261182373246640336" + "denom": "gamm/pool/1026", + "amount": "1841596418725519" }, - "liquidityUsd": 1.6146857713422984, - "liquidity24hUsdChange": -5.151825897607807, + "liquidityUsd": 1.1620644989875109, + "liquidity24hUsdChange": -2.8669856348572385, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.07210849339058895, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "49775" - }, - "weight": "365072220160000" - }, - { - "token": { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "208413920535230300" + "denom": "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", + "amount": "7147379538314" }, - "weight": "354334801920000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "420745" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "388150010346331" }, - "weight": "354334801920000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -26909,8 +27560,8 @@ "denom": "gamm/pool/372", "amount": "5200000000000000000" }, - "liquidityUsd": 1.5754343657517373, - "liquidity24hUsdChange": -4.53693892938184, + "liquidityUsd": 1.1416636857776545, + "liquidity24hUsdChange": -2.216995358678349, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -26935,70 +27586,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "715", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/715", - "amount": "100000000000000000000" - }, - "liquidityUsd": 1.549914019363692, - "liquidity24hUsdChange": -1.8176593979590847, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.6925063636116974, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", - "amount": "275631290" - }, - "weight": "5368709120" - }, - { - "token": { - "denom": "uosmo", - "amount": "461136" - }, - "weight": "5368709120" - } - ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1132", + "id": "568", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1132", - "amount": "1134193617804243243" + "denom": "gamm/pool/568", + "amount": "867959748278724298" }, - "liquidityUsd": 1.5308202458641071, - "liquidity24hUsdChange": -0.9689728624911671, + "liquidityUsd": 1.1373969534201425, + "liquidity24hUsdChange": -3.331838936079216, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.050262143961871106, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "799629" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "31970698" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "amount": "408805499862" + "denom": "uosmo", + "amount": "672025" }, "weight": "536870912000000" } @@ -27007,18 +27622,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1025", + "id": "294", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1025", - "amount": "840300108740289" + "denom": "gamm/pool/294", + "amount": "10000000000000000000" }, - "liquidityUsd": 1.5260654946208154, - "liquidity24hUsdChange": -3.1697509287582553, + "liquidityUsd": 1.103599861071066, + "liquidity24hUsdChange": -2.4032310364068827, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27026,15 +27641,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46", - "amount": "1374594627318" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "158387" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "433672784878800" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "63203" }, "weight": "536870912000000" } @@ -27043,91 +27658,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1014", + "id": "709", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1014", - "amount": "283531516867264363" + "denom": "gamm/pool/709", + "amount": "57291109640740058" }, - "liquidityUsd": 1.522166874520839, - "liquidity24hUsdChange": -4.625215344977829, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 1.0874169867080339, + "liquidity24hUsdChange": -0.6393658566937289, + "volume24hUsd": 0.00798810334832088, + "volume24hUsdChange": 113.73303155025079, + "volume7dUsd": 0.0937200312299041, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/72D0C53912C461FC9251E3135459746380E9030C0BFDA13D45D3BAC47AE2910E", - "amount": "190808360" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "64158" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1186323" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "570455" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1xm0q78veey05g3zyd9rz440x2qez3jfushp2uru2cxpf70ctn8msr0y2rj", - "id": "1418", - "current_tick_liquidity": "64100748.128791642750689769", - "token0": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "token0Amount": "818396445", - "token1": "uosmo", - "token1Amount": "959", - "current_sqrt_price": "0.045302568523673245928517142792388273", - "current_tick": "-25947678", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 1.5015712571919266, - "liquidity24hUsdChange": -12.992631329196353, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1017", + "id": "1327", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1017", - "amount": "17029025643820135" + "denom": "gamm/pool/1327", + "amount": "34482750712345068" }, - "liquidityUsd": 1.4909658172306044, - "liquidity24hUsdChange": -4.6252153449778195, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 1.0811855616018173, + "liquidity24hUsdChange": -0.5202900093135671, + "volume24hUsd": 0.048809131548615006, + "volume24hUsdChange": -85.66230476709576, + "volume7dUsd": 7.717913925318041, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0E30775281643124D79B8670ACD3F478AC5FAB2B1CA1E32903D0775D8A8BB064", - "amount": "650439" + "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "amount": "57746842123" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1162006" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "535105" }, "weight": "536870912000000" } @@ -27146,8 +27740,8 @@ "denom": "gamm/pool/64", "amount": "900000000000000000" }, - "liquidityUsd": 1.4667104652105263, - "liquidity24hUsdChange": -5.205523892632047, + "liquidityUsd": 1.0784274983329805, + "liquidity24hUsdChange": -1.5015153188790398, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27179,18 +27773,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "220", + "id": "1014", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/220", - "amount": "48034824972441257672" + "denom": "gamm/pool/1014", + "amount": "283531516867264363" }, - "liquidityUsd": 1.4640356252555968, - "liquidity24hUsdChange": -4.623690818969017, + "liquidityUsd": 1.0704454931745762, + "liquidity24hUsdChange": -3.3934440512774806, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27198,51 +27792,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1219" + "denom": "ibc/72D0C53912C461FC9251E3135459746380E9030C0BFDA13D45D3BAC47AE2910E", + "amount": "190808360" }, - "weight": "10737418240000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1130733" + "amount": "1186323" }, - "weight": "1063004405760000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1001", + "id": "1017", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1001", - "amount": "29075104661848182627" + "denom": "gamm/pool/1017", + "amount": "17029025643820135" }, - "liquidityUsd": 1.403272, - "liquidity24hUsdChange": 0, + "liquidityUsd": 1.0485037260019545, + "liquidity24hUsdChange": -3.393444051277476, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.355177, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A", - "amount": "46885301825" + "denom": "ibc/0E30775281643124D79B8670ACD3F478AC5FAB2B1CA1E32903D0775D8A8BB064", + "amount": "650439" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1403272" + "denom": "uosmo", + "amount": "1162006" }, "weight": "536870912000000" } @@ -27251,54 +27845,61 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1026", + "id": "635", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1026", - "amount": "1841596418725519" + "denom": "gamm/pool/635", + "amount": "22670358564367874419512" }, - "liquidityUsd": 1.36587389889313, - "liquidity24hUsdChange": -3.16975092875827, + "liquidityUsd": 1.0345698136462453, + "liquidity24hUsdChange": -1.733851650928326, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 1.3371108310408824, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", - "amount": "7147379538314" + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "481814" }, - "weight": "536870912000000" + "weight": "357556027392000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "388150010346331" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "33247103" }, - "weight": "536870912000000" + "weight": "358629769216000" + }, + { + "token": { + "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "amount": "810250221446511700" + }, + "weight": "357556027392000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "294", + "id": "220", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/294", - "amount": "10000000000000000000" + "denom": "gamm/pool/220", + "amount": "48034824972441257672" }, - "liquidityUsd": 1.3415953001308032, - "liquidity24hUsdChange": -5.823637798914786, + "liquidityUsd": 1.0301076677431316, + "liquidity24hUsdChange": -3.372747349897382, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27306,35 +27907,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "158387" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1219" }, - "weight": "536870912000000" + "weight": "10737418240000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "63203" + "denom": "uosmo", + "amount": "1130733" }, - "weight": "536870912000000" + "weight": "1063004405760000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "203", + "id": "720", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.040000000000000000", + "swap_fee": "0.000161803988749894", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/203", - "amount": "100000000000000000000" + "denom": "gamm/pool/720", + "amount": "501326649197408008" }, - "liquidityUsd": 1.3296710177324083, - "liquidity24hUsdChange": -4.538360996967701, + "liquidityUsd": 1.0008235333645437, + "liquidity24hUsdChange": 0.02867320464617855, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27342,15 +27943,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "63018" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "500890101353208500" + }, + "weight": "1073741824" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "499631" + }, + "weight": "1073741824" + } + ], + "total_weight": "2147483648" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "155", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/155", + "amount": "697702475814880878" + }, + "liquidityUsd": 1.0004380217459103, + "liquidity24hUsdChange": -3.414294991070192, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "140940" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "504623" + "amount": "522622" }, "weight": "536870912000000" } @@ -27359,18 +27996,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "174", + "id": "203", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.040000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/174", - "amount": "79121343116969192411" + "denom": "gamm/pool/203", + "amount": "100000000000000000000" }, - "liquidityUsd": 1.3135307346401477, - "liquidity24hUsdChange": -5.269780197814472, + "liquidityUsd": 0.9631087774450122, + "liquidity24hUsdChange": -2.235599024051755, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27378,15 +28015,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "136994" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "63018" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "9687688" + "denom": "uosmo", + "amount": "504623" }, "weight": "536870912000000" } @@ -27405,8 +28042,8 @@ "denom": "gamm/pool/1585", "amount": "305876907020073213" }, - "liquidityUsd": 1.2946983100382314, - "liquidity24hUsdChange": -3.1463362135887936, + "liquidityUsd": 0.9479470599532316, + "liquidity24hUsdChange": -4.070910008809596, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27431,61 +28068,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "635", + "id": "1027", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/635", - "amount": "22670358564367874419512" + "denom": "gamm/pool/1027", + "amount": "6568482301878443" }, - "liquidityUsd": 1.2791352440483008, - "liquidity24hUsdChange": -2.0592599224513197, + "liquidityUsd": 0.9476634251888902, + "liquidity24hUsdChange": -2.8669856348572442, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.11193883215982908, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "575900" - }, - "weight": "357556027392000" - }, - { - "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "27815114" + "denom": "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", + "amount": "114953738535916" }, - "weight": "358629769216000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", - "amount": "810250221446511700" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "316536275406741" }, - "weight": "357556027392000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "709", + "id": "234", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/709", - "amount": "57291109640740058" + "denom": "gamm/pool/234", + "amount": "900000000000000000" }, - "liquidityUsd": 1.2588560321379325, - "liquidity24hUsdChange": -2.2473582246770136, + "liquidityUsd": 0.9428400007451128, + "liquidity24hUsdChange": -3.4148688304389454, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27493,85 +28123,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "57327" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "136482" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "638272" + "denom": "uosmo", + "amount": "477328" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1029", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1029", - "amount": "1719339499556693487" - }, - "liquidityUsd": 1.2581857517735267, - "liquidity24hUsdChange": -6.85675931900245, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 2.1410230799267778, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", - "amount": "69282859481065630" - }, - { - "denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", - "amount": "177823096814613610000000" - } - ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "155", + "id": "734", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/155", - "amount": "697702475814880878" + "denom": "gamm/pool/734", + "amount": "269886251471895673" }, - "liquidityUsd": 1.2555604721192037, - "liquidity24hUsdChange": -5.845402120565068, + "liquidityUsd": 0.9240193135034666, + "liquidity24hUsdChange": 0.8027634329517018, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.02771269108958251, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "140940" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "462386869398225150" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "522622" + "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", + "amount": "146441853315875" }, "weight": "536870912000000" } @@ -27590,8 +28186,8 @@ "denom": "gamm/pool/381", "amount": "1562500000000000000" }, - "liquidityUsd": 1.2254525032694992, - "liquidity24hUsdChange": -4.4910854911434805, + "liquidityUsd": 0.9016643240713613, + "liquidity24hUsdChange": -1.6230719898906578, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27626,8 +28222,8 @@ "denom": "gamm/pool/70", "amount": "1600151422474148101" }, - "liquidityUsd": 1.2172674073145733, - "liquidity24hUsdChange": -4.542965486995714, + "liquidityUsd": 0.8803331012872135, + "liquidity24hUsdChange": -2.295912370570802, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27652,18 +28248,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "234", + "id": "1296", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.500000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/234", - "amount": "900000000000000000" + "denom": "gamm/pool/1296", + "amount": "1350000000000000000000" }, - "liquidityUsd": 1.1789405105982416, - "liquidity24hUsdChange": -5.883095513052929, + "liquidityUsd": 0.8319094631919342, + "liquidity24hUsdChange": -3.655707844297682, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27671,35 +28267,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "136482" + "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "amount": "21732" }, - "weight": "536870912000000" + "weight": "1063004405760000" }, { "token": { - "denom": "uosmo", - "amount": "477328" + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "1350" }, - "weight": "536870912000000" + "weight": "10737418240000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "989", + "id": "477", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/989", - "amount": "481898499527379504" + "denom": "gamm/pool/477", + "amount": "1009815060437005232" }, - "liquidityUsd": 1.1595727887857843, - "liquidity24hUsdChange": -4.62521534497782, + "liquidityUsd": 0.8293926480902065, + "liquidity24hUsdChange": -3.4068532524279167, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27707,15 +28303,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1271ACDB6421652A2230DECCAA365312A32770579C2B22D2B60A89FE39106611", - "amount": "53676184288" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "75136" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "903730" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "496423232" }, "weight": "536870912000000" } @@ -27734,8 +28330,8 @@ "denom": "gamm/pool/69", "amount": "69818827813013860" }, - "liquidityUsd": 1.1562525179430974, - "liquidity24hUsdChange": -4.099871353674206, + "liquidityUsd": 0.8277408428672831, + "liquidity24hUsdChange": -4.799698373123881, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27760,54 +28356,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "685", + "id": "1681", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/685", - "amount": "88563751760885279275" + "denom": "gamm/pool/1681", + "amount": "105971873845005921500" }, - "liquidityUsd": 1.1338656575209052, - "liquidity24hUsdChange": -3.505832724946438, + "liquidityUsd": 0.823071174974314, + "liquidity24hUsdChange": -3.393444051277471, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.20797876153350586, + "volume24hUsdChange": 0, + "volume7dUsd": 0.9801355474294966, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "amount": "216299562" + "denom": "ibc/5EC896BED3EBCB2CB6F1C167582E4EFA3F6FA3385F28BA5EA92D4A489DA010C5", + "amount": "493389414473976400" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "421275" + "amount": "912170" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "477", + "id": "989", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/477", - "amount": "1009815060437005232" + "denom": "gamm/pool/989", + "amount": "481898499527379504" }, - "liquidityUsd": 1.1182217904204537, - "liquidity24hUsdChange": -5.373334234898918, + "liquidityUsd": 0.8154555762188374, + "liquidity24hUsdChange": -3.3934440512774744, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27815,15 +28411,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "75136" + "denom": "ibc/1271ACDB6421652A2230DECCAA365312A32770579C2B22D2B60A89FE39106611", + "amount": "53676184288" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "496423232" + "denom": "uosmo", + "amount": "903730" }, "weight": "536870912000000" } @@ -27832,18 +28428,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1027", + "id": "685", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1027", - "amount": "6568482301878443" + "denom": "gamm/pool/685", + "amount": "89607687401420816161" }, - "liquidityUsd": 1.1138699603412279, - "liquidity24hUsdChange": -3.169750928758266, + "liquidityUsd": 0.7847614273358878, + "liquidity24hUsdChange": -3.3513775859738297, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27851,15 +28447,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", - "amount": "114953738535916" + "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "amount": "216299562" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "316536275406741" + "denom": "uosmo", + "amount": "431275" }, "weight": "536870912000000" } @@ -27868,54 +28464,75 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "647", + "id": "1473", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/647", - "amount": "1914705769737226880" + "denom": "gamm/pool/1473", + "amount": "90000000000000000" }, - "liquidityUsd": 1.0579657137858183, - "liquidity24hUsdChange": -5.219253737878479, + "liquidityUsd": 0.7804688460692899, + "liquidity24hUsdChange": -1.5223421267618236, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.1621139125845374, + "volume24hUsdChange": 0, + "volume7dUsd": 0.36065777981377256, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "59926167" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "4036001957" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "391555" + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "amount": "395347" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1xm0q78veey05g3zyd9rz440x2qez3jfushp2uru2cxpf70ctn8msr0y2rj", + "id": "1418", + "current_tick_liquidity": "64100748.128791642750689769", + "token0": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "token0Amount": "818396445", + "token1": "uosmo", + "token1Amount": "959", + "current_sqrt_price": "0.045302568523673245928517142792388273", + "current_tick": "-25947678", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 0.7723715763041556, + "liquidity24hUsdChange": -14.383097394477346, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "973", + "id": "235", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/973", - "amount": "7787930868882437282" + "denom": "gamm/pool/235", + "amount": "1716406250000000000" }, - "liquidityUsd": 1.043901640423952, - "liquidity24hUsdChange": -4.625215344977844, + "liquidityUsd": 0.7592547511994605, + "liquidity24hUsdChange": -3.4138115495736585, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27923,15 +28540,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/5BBB6F9C8ECA31508EE5B68F2E27B57532E1595C57D0AE5C8D64E1FBCB756247", - "amount": "54329668091222" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "104482" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "813580" + "amount": "406945" }, "weight": "536870912000000" } @@ -27940,18 +28557,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "734", + "id": "647", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/734", - "amount": "269886251471895673" + "denom": "gamm/pool/647", + "amount": "1914705769737226880" }, - "liquidityUsd": 1.0279387289675945, - "liquidity24hUsdChange": 1.0876237870884928, + "liquidityUsd": 0.7436314371373228, + "liquidity24hUsdChange": -3.3337822518030142, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -27959,15 +28576,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "462386869398225150" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "59926167" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", - "amount": "146441853315875" + "denom": "uosmo", + "amount": "391555" }, "weight": "536870912000000" } @@ -27986,8 +28603,8 @@ "denom": "gamm/pool/430", "amount": "100000000000000000000" }, - "liquidityUsd": 1.0250361525842107, - "liquidity24hUsdChange": -4.543169509828046, + "liquidityUsd": 0.7412598953855207, + "liquidity24hUsdChange": -2.298587547153291, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28012,18 +28629,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "720", + "id": "137", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000161803988749894", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/720", - "amount": "501326649197408008" + "denom": "gamm/pool/137", + "amount": "100000000000000000000" }, - "liquidityUsd": 1.0006390110714396, - "liquidity24hUsdChange": 0.055823114001771854, + "liquidityUsd": 0.73461838782815, + "liquidity24hUsdChange": -3.414309940475288, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28031,35 +28648,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "500890101353208500" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "103566" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "499631" + "denom": "uosmo", + "amount": "383451" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1015", + "id": "973", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.270000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1015", - "amount": "230007240283315382668669" + "denom": "gamm/pool/973", + "amount": "7787930868882437282" }, - "liquidityUsd": 0.988854234910704, - "liquidity24hUsdChange": -4.625215344977821, + "liquidityUsd": 0.7341112364313696, + "liquidity24hUsdChange": -3.393444051277468, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28067,15 +28684,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", - "amount": "300938389039272900" + "denom": "ibc/5BBB6F9C8ECA31508EE5B68F2E27B57532E1595C57D0AE5C8D64E1FBCB756247", + "amount": "54329668091222" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "770678" + "amount": "813580" }, "weight": "536870912000000" } @@ -28094,8 +28711,8 @@ "denom": "gamm/pool/65", "amount": "65000000000000000000" }, - "liquidityUsd": 0.9857512018949666, - "liquidity24hUsdChange": -4.623839752762872, + "liquidityUsd": 0.704107229443222, + "liquidity24hUsdChange": -3.3145009716071225, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28127,18 +28744,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "689", + "id": "1015", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.270000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/689", - "amount": "37810858091393882451105" + "denom": "gamm/pool/1015", + "amount": "230007240283315382668669" }, - "liquidityUsd": 0.9681347149962541, - "liquidity24hUsdChange": -5.23979441120999, + "liquidityUsd": 0.6953998125205327, + "liquidity24hUsdChange": -3.3934440512774713, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28146,51 +28763,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "3651423568" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "amount": "183993985" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1285", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.029000000000000004", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1285", - "amount": "5000105000000000000" - }, - "liquidityUsd": 0.9594312712270312, - "liquidity24hUsdChange": -3.6557612245779256, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.05812416705716171, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", - "amount": "160146586801721970" + "denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", + "amount": "300938389039272900" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "365647" + "amount": "770678" }, "weight": "536870912000000" } @@ -28199,34 +28780,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "235", + "id": "689", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/235", - "amount": "1716406250000000000" + "denom": "gamm/pool/689", + "amount": "37810858091393882451105" }, - "liquidityUsd": 0.9558130270766902, - "liquidity24hUsdChange": -5.8138373969542325, + "liquidityUsd": 0.6843943204099625, + "liquidity24hUsdChange": -3.312533480487781, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.03303920059385811, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "104482" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "3651423568" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "406945" + "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "amount": "183993985" }, "weight": "536870912000000" } @@ -28235,70 +28816,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1296", + "id": "476", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.500000000000000000", + "swap_fee": "0.040000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1296", - "amount": "1350000000000000000000" + "denom": "gamm/pool/476", + "amount": "1171619178619259466" }, - "liquidityUsd": 0.936159552797916, - "liquidity24hUsdChange": -3.416737734784022, + "liquidityUsd": 0.6753558057766048, + "liquidity24hUsdChange": -7.081963950426985, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.48380470989645086, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", - "amount": "21732" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "258248754" }, - "weight": "1063004405760000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "1350" + "denom": "uion", + "amount": "1336" }, - "weight": "10737418240000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "745", + "id": "1285", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.029000000000000004", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/745", - "amount": "395726774653072399" + "denom": "gamm/pool/1285", + "amount": "5000105000000000000" }, - "liquidityUsd": 0.9223851252301882, - "liquidity24hUsdChange": -4.192940051377754, + "liquidityUsd": 0.6712777974253589, + "liquidity24hUsdChange": -1.8087786154867054, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.07541862544889974, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "6172382104832111000" + "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "amount": "155018911713617920" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "12717119" + "denom": "uosmo", + "amount": "378103" }, "weight": "536870912000000" } @@ -28307,34 +28888,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "137", + "id": "745", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/137", - "amount": "100000000000000000000" + "denom": "gamm/pool/745", + "amount": "395726774653072399" }, - "liquidityUsd": 0.9218660056350767, - "liquidity24hUsdChange": -5.8463809647212335, + "liquidityUsd": 0.6522131877738311, + "liquidity24hUsdChange": -7.214247919947097, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.03837395546888337, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "103566" + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "6172382104832111000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "383451" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "12717119" }, "weight": "536870912000000" } @@ -28343,34 +28924,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "967", + "id": "342", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/967", - "amount": "776543273753725355" + "denom": "gamm/pool/342", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.9204100189698808, - "liquidity24hUsdChange": 2.207064043320979, - "volume24hUsd": 0.06357185773925263, - "volume24hUsdChange": null, - "volume7dUsd": 0.4702993601546887, + "liquidityUsd": 0.6478579461441922, + "liquidity24hUsdChange": -2.257114312271149, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.028368937680153444, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", - "amount": "820116213" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "41612" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "717335" + "amount": "346399" }, "weight": "536870912000000" } @@ -28389,8 +28970,8 @@ "denom": "gamm/pool/595", "amount": "0" }, - "liquidityUsd": 0.918462540756642, - "liquidity24hUsdChange": -4.592076880497988, + "liquidityUsd": 0.6455764755816515, + "liquidity24hUsdChange": -4.520014440548594, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28415,18 +28996,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "476", + "id": "330", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.040000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/476", - "amount": "1171619178619259466" + "denom": "gamm/pool/330", + "amount": "100000000000000000" }, - "liquidityUsd": 0.9182116663299615, - "liquidity24hUsdChange": -1.338305184618059, + "liquidityUsd": 0.6360599981856065, + "liquidity24hUsdChange": -2.27588712097489, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28434,15 +29015,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "372714547" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "40187" }, "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "914" + "denom": "uosmo", + "amount": "346049" }, "weight": "536870912000000" } @@ -28451,34 +29032,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1473", + "id": "384", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1473", - "amount": "90000000000000000" + "denom": "gamm/pool/384", + "amount": "25000000000000000000" }, - "liquidityUsd": 0.9011879316778281, - "liquidity24hUsdChange": -4.060423245493198, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.07050504885333081, + "liquidityUsd": 0.6081616360340215, + "liquidity24hUsdChange": -2.5067982208962833, + "volume24hUsd": 0.009948321988233134, + "volume24hUsdChange": null, + "volume7dUsd": 0.009948321988233134, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "3318128122" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "36741" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "amount": "480708" + "denom": "uosmo", + "amount": "345903" }, "weight": "536870912000000" } @@ -28486,71 +29067,69 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "342", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "884", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/342", - "amount": "100000000000000000000" + "denom": "gamm/pool/884", + "amount": "94111563370620000" }, - "liquidityUsd": 0.897101770087305, - "liquidity24hUsdChange": -4.534259100900445, + "liquidityUsd": 0.6066931062435648, + "liquidity24hUsdChange": -3.2327214520217193, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "44523" - }, - "weight": "536870912000000" + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "105953027022872" }, { - "token": { - "denom": "uosmo", - "amount": "323534" - }, - "weight": "536870912000000" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "97589207869123" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1393", + "id": "254", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1393", - "amount": "109785368621709459" + "denom": "gamm/pool/254", + "amount": "16723764103848087106756" }, - "liquidityUsd": 0.8856393872509981, - "liquidity24hUsdChange": 10.583463424995642, - "volume24hUsd": 0.2800511617843982, - "volume24hUsdChange": 6117.528151987117, - "volume7dUsd": 3.167589669471069, + "liquidityUsd": 0.6021245725994755, + "liquidity24hUsdChange": -6.753771765657363, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", - "amount": "142469" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "5164908" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "690236" + "denom": "uion", + "amount": "832" }, "weight": "536870912000000" } @@ -28559,18 +29138,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "330", + "id": "927", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/330", - "amount": "100000000000000000" + "denom": "gamm/pool/927", + "amount": "10000000000000000" }, - "liquidityUsd": 0.8790520309688581, - "liquidity24hUsdChange": -4.541437697844662, + "liquidityUsd": 0.5813008317383704, + "liquidity24hUsdChange": -3.4703159225812574, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28578,15 +29157,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "40187" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "25361239" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "346049" + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "629" }, "weight": "536870912000000" } @@ -28595,54 +29174,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1073", + "id": "1413", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.004000000000000000", + "swap_fee": "0.060000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1073", - "amount": "2660000000000000000" + "denom": "gamm/pool/1413", + "amount": "297818181818181818" }, - "liquidityUsd": 0.8443687047822799, - "liquidity24hUsdChange": -3.203209119161749, + "liquidityUsd": 0.5798753873375151, + "liquidity24hUsdChange": 7.880155793003675, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.14744692126102626, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "951434" + "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "amount": "12048062" }, - "weight": "536870912000000" + "weight": "719407022080000" }, { "token": { - "denom": "ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E", - "amount": "33383411" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "232302" }, - "weight": "536870912000000" + "weight": "354334801920000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "384", + "id": "598", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/384", - "amount": "25000000000000000000" + "denom": "gamm/pool/598", + "amount": "378402000000000000000" }, - "liquidityUsd": 0.8436129127959586, - "liquidity24hUsdChange": -4.548076862595843, + "liquidityUsd": 0.5798679427387136, + "liquidity24hUsdChange": -8.175039316320637, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28650,35 +29229,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "35513" + "denom": "uion", + "amount": "1936" }, - "weight": "536870912000000" + "weight": "9663676416" }, { "token": { "denom": "uosmo", - "amount": "357863" + "amount": "59240" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "598", + "id": "91", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/598", - "amount": "378402000000000000000" + "denom": "gamm/pool/91", + "amount": "104241110457839912" }, - "liquidityUsd": 0.8434937737208745, - "liquidity24hUsdChange": -3.803967729350863, + "liquidityUsd": 0.5730909615921125, + "liquidity24hUsdChange": -2.215078036684269, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28686,35 +29265,35 @@ "pool_assets": [ { "token": { - "denom": "uion", - "amount": "1936" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "38155" }, - "weight": "9663676416" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "59240" + "amount": "294409" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "91", + "id": "1073", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.004000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/91", - "amount": "104241110457839912" + "denom": "gamm/pool/1073", + "amount": "2660000000000000000" }, - "liquidityUsd": 0.790795845762309, - "liquidity24hUsdChange": -4.536792320324715, + "liquidityUsd": 0.5610710712649459, + "liquidity24hUsdChange": -3.0997596101033897, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28722,15 +29301,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "38155" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "951434" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "294409" + "denom": "ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E", + "amount": "33383411" }, "weight": "536870912000000" } @@ -28749,44 +29328,65 @@ "denom": "gamm/pool/860", "amount": "1000000000000000000" }, - "liquidityUsd": 0.7815267239541794, - "liquidity24hUsdChange": -1.384157215194637, + "liquidityUsd": 0.5441634935540538, + "liquidity24hUsdChange": -3.667639939891449, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.019680373702342855, + "volume24hUsdChange": -100, + "volume7dUsd": 0.020263093084464043, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", - "amount": "115727" + "amount": "125687" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "329177" + "amount": "303092" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo13dsn64pk8cheuumhmkaeundctkcs3zma87rvthvnj9ultfeycuxq8lv79g", + "id": "1360", + "current_tick_liquidity": "6454968.964072321470852605", + "token0": "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", + "token0Amount": "77063726", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "540849", + "current_sqrt_price": "0.083761609965785028573620113197439331", + "current_tick": "-20983993", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.541393135027105, + "liquidity24hUsdChange": 0.18695092696515153, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "254", + "id": "125", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/254", - "amount": "16723764103848087106756" + "denom": "gamm/pool/125", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.7269767879930267, - "liquidity24hUsdChange": -3.729788895934113, + "liquidityUsd": 0.5148625832784397, + "liquidity24hUsdChange": -1.3874849848381752, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28794,35 +29394,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "5164908" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "57863" }, - "weight": "536870912000000" + "weight": "966367641600000" }, { "token": { - "denom": "uion", - "amount": "832" + "denom": "uosmo", + "amount": "53887" }, - "weight": "536870912000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "927", + "id": "1489", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.200000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/927", - "amount": "10000000000000000" + "denom": "gamm/pool/1489", + "amount": "21164963172017621125" }, - "liquidityUsd": 0.7178643222871435, - "liquidity24hUsdChange": -4.052000798284647, + "liquidityUsd": 0.5054347535822985, + "liquidity24hUsdChange": -7.4968602107960445, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28830,15 +29430,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "25361239" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "28063" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "629" + "denom": "uosmo", + "amount": "263244" }, "weight": "536870912000000" } @@ -28846,53 +29446,76 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "884", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "94", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/884", - "amount": "94111563370620000" + "denom": "gamm/pool/94", + "amount": "1293571916344036236285" }, - "liquidityUsd": 0.7158353678303095, - "liquidity24hUsdChange": -2.7162670183197912, + "liquidityUsd": 0.5050318973437232, + "liquidity24hUsdChange": -4.011059944878456, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0692239145627565, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "105953027022872" + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "30233" + }, + "weight": "214748364800000" }, { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "97589207869123" + "token": { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "64978492" + }, + "weight": "214748364800000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "279595" + }, + "weight": "214748364800000" + }, + { + "token": { + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "115837226" + }, + "weight": "214748364800000" + }, + { + "token": { + "denom": "uosmo", + "amount": "90883" + }, + "weight": "214748364800000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "125", + "id": "215", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.100000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/125", - "amount": "100000000000000000000" + "denom": "gamm/pool/215", + "amount": "9100000000000000000" }, - "liquidityUsd": 0.6955286326197755, - "liquidity24hUsdChange": -4.472649988362632, + "liquidityUsd": 0.49533895834992714, + "liquidity24hUsdChange": -1.5676749950254587, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28901,34 +29524,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "57863" + "amount": "50761" }, - "weight": "966367641600000" + "weight": "858993459200000" }, { "token": { "denom": "uosmo", - "amount": "53887" + "amount": "95670" }, - "weight": "107374182400000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1085", + "id": "425", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1085", - "amount": "64604420364241428" + "denom": "gamm/pool/425", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.6938638210991543, - "liquidity24hUsdChange": -2.9645025989412934, + "liquidityUsd": 0.47468401013152484, + "liquidity24hUsdChange": -3.3675354135580537, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28936,35 +29559,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", - "amount": "156227384325220800" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "177816096" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "240855" + "amount": "261623" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "215", + "id": "844", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.100000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/215", - "amount": "9100000000000000000" + "denom": "gamm/pool/844", + "amount": "123842336431539531" }, - "liquidityUsd": 0.6722587174778247, - "liquidity24hUsdChange": -4.486763242853355, + "liquidityUsd": 0.47282110579428027, + "liquidity24hUsdChange": -2.184122891745016, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -28973,50 +29596,50 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "50761" + "amount": "32296" }, - "weight": "858993459200000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "95670" + "amount": "235605" }, - "weight": "214748364800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1489", + "id": "1393", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.200000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1489", - "amount": "21164963172017621125" + "denom": "gamm/pool/1393", + "amount": "109785368621709459" }, - "liquidityUsd": 0.6639409372104161, - "liquidity24hUsdChange": -5.562662651591566, + "liquidityUsd": 0.4712756285776603, + "liquidity24hUsdChange": -3.393444051277468, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.3029382276697469, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "28063" + "denom": "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", + "amount": "188517" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "263244" + "amount": "522292" }, "weight": "536870912000000" } @@ -29025,108 +29648,149 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "425", + "id": "1085", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/425", - "amount": "100000000000000000000" + "denom": "gamm/pool/1085", + "amount": "64604420364241428" }, - "liquidityUsd": 0.6553372450858617, - "liquidity24hUsdChange": -6.748063450175929, + "liquidityUsd": 0.46581891885401383, + "liquidity24hUsdChange": -6.241386974545676, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.012729856397223323, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "177816096" + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "amount": "156227384325220800" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "261623" + "amount": "240855" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "844", + "id": "341", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/844", - "amount": "123842336431539531" + "denom": "gamm/pool/341", + "amount": "2100000000000000000" }, - "liquidityUsd": 0.6519189967622547, - "liquidity24hUsdChange": -4.534424060219701, + "liquidityUsd": 0.45580818781391647, + "liquidity24hUsdChange": -2.2001779172004214, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "30697" + }, + "weight": "268435456000000" + }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "32296" + "amount": "30711" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "235605" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "69424411" }, - "weight": "536870912000000" + "weight": "268435456000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1457", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.040000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1457", + "amount": "29444724763517496" + }, + "liquidityUsd": 0.4513822170536791, + "liquidity24hUsdChange": -2.7849877420746734, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "amount": "6379098979232787" + }, + { + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "81334691996163970" + } + ], + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1413", + "id": "162", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.060000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1413", - "amount": "297818181818181818" + "denom": "gamm/pool/162", + "amount": "3942161444485405612" }, - "liquidityUsd": 0.6431564613549376, - "liquidity24hUsdChange": -10.895005123696624, + "liquidityUsd": 0.4495423275505319, + "liquidity24hUsdChange": -3.3855425920627438, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.18314165353881195, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", - "amount": "12048062" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "57447" }, - "weight": "719407022080000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "232302" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "174359760" }, - "weight": "354334801920000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -29143,8 +29807,8 @@ "denom": "gamm/pool/380", "amount": "413600000000000000" }, - "liquidityUsd": 0.6418120222993697, - "liquidity24hUsdChange": -4.144688190861953, + "liquidityUsd": 0.44540018865659525, + "liquidity24hUsdChange": -6.233641732863105, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29168,53 +29832,55 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1457", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "190", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.040000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1457", - "amount": "29444724763517496" + "denom": "gamm/pool/190", + "amount": "622860538515416083208" }, - "liquidityUsd": 0.6322328816780136, - "liquidity24hUsdChange": -6.782341342141199, + "liquidityUsd": 0.43886059464554905, + "liquidity24hUsdChange": -4.450340538985813, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.1374866482647331, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "amount": "6379098979232787" + "token": { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "134252131" + }, + "weight": "536870912000000" }, { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "81334691996163970" + "token": { + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "214075601" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1495", + "id": "47", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1495", - "amount": "63649231058806322540" + "denom": "gamm/pool/47", + "amount": "755393300431926335" }, - "liquidityUsd": 0.626821341014874, - "liquidity24hUsdChange": -4.216866560727817, + "liquidityUsd": 0.4334617945161309, + "liquidity24hUsdChange": -2.840249391575262, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29222,35 +29888,49 @@ "pool_assets": [ { "token": { - "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", - "amount": "52686024" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "37296" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { - "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", - "amount": "7777802" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "13662" }, - "weight": "536870912000000" + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "73076666" + }, + "weight": "268435456000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "94606" + }, + "weight": "268435456000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "94", + "id": "980", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/94", - "amount": "1293571916344036236285" + "denom": "gamm/pool/980", + "amount": "1061040318117376719698" }, - "liquidityUsd": 0.6203318997493106, - "liquidity24hUsdChange": -4.726231679626101, + "liquidityUsd": 0.431498, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29258,38 +29938,60 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "30233" + "denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", + "amount": "126279690370373580" }, - "weight": "214748364800000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "64978492" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "431498" }, - "weight": "214748364800000" - }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "149", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.007000000000000001", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/149", + "amount": "6697864386871285967" + }, + "liquidityUsd": 0.43031888708015253, + "liquidity24hUsdChange": -4.074892469110105, + "volume24hUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.008153492251485261, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "279595" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "12181" }, - "weight": "214748364800000" + "weight": "300647710720000" }, { "token": { "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "115837226" + "amount": "227538003" }, - "weight": "214748364800000" + "weight": "612032839680000" }, { "token": { "denom": "uosmo", - "amount": "90883" + "amount": "63387" }, - "weight": "214748364800000" + "weight": "161061273600000" } ], "total_weight": "1073741824000000" @@ -29306,8 +30008,8 @@ "denom": "gamm/pool/66", "amount": "25000000000000000000" }, - "liquidityUsd": 0.590402963422892, - "liquidity24hUsdChange": -4.537019969223452, + "liquidityUsd": 0.4278333376802991, + "liquidity24hUsdChange": -2.2180552314510966, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29332,18 +30034,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "341", + "id": "705", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/341", - "amount": "2100000000000000000" + "denom": "gamm/pool/705", + "amount": "20000000000000000" }, - "liquidityUsd": 0.5846681998206684, - "liquidity24hUsdChange": -6.036110441823867, + "liquidityUsd": 0.4263683494077769, + "liquidity24hUsdChange": 0.03776133133193102, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29351,79 +30053,87 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "30697" + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "213828" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "30711" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "212300" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1495", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1495", + "amount": "63649231058806322540" + }, + "liquidityUsd": 0.4246825060757911, + "liquidity24hUsdChange": -6.58746118753937, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", + "amount": "52686024" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "69424411" + "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "amount": "7777802" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo13dsn64pk8cheuumhmkaeundctkcs3zma87rvthvnj9ultfeycuxq8lv79g", - "id": "1360", - "current_tick_liquidity": "6454968.964072321470852605", - "token0": "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", - "token0Amount": "71812187", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "580388", - "current_sqrt_price": "0.089887008790427658587959472599173874", - "current_tick": "-19920326", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.5797668805741603, - "liquidity24hUsdChange": -0.23153556257092364, - "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.5344551536465655, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "256", + "id": "257", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/256", - "amount": "293750000000000000" + "denom": "gamm/pool/257", + "amount": "1525878906250000" }, - "liquidityUsd": 0.5702032639758661, - "liquidity24hUsdChange": -4.735874257542915, - "volume24hUsd": 0.007162966341068183, - "volume24hUsdChange": null, - "volume7dUsd": 0.009049752949326802, + "liquidityUsd": 0.4217432375902535, + "liquidity24hUsdChange": -3.41529407953413, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "28301" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "62262" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "205624" + "amount": "208474" }, "weight": "536870912000000" } @@ -29432,18 +30142,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "190", + "id": "715", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/190", - "amount": "622860538515416083208" + "denom": "gamm/pool/715", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.5606157700889467, - "liquidity24hUsdChange": -3.8787277252847927, + "liquidityUsd": 0.41609321655278647, + "liquidity24hUsdChange": -3.393444051277473, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29451,35 +30161,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "134252131" + "denom": "ibc/2716E3F2E146664BEFA9217F1A03BFCEDBCD5178B3C71CACB1A0D7584451D219", + "amount": "275631290" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "214075601" + "denom": "uosmo", + "amount": "461136" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "581", + "id": "256", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/581", - "amount": "4409567951294343805464" + "denom": "gamm/pool/256", + "amount": "293750000000000000" }, - "liquidityUsd": 0.557496531331287, - "liquidity24hUsdChange": -3.6725030998617743, + "liquidityUsd": 0.4135783192990212, + "liquidity24hUsdChange": -2.1818874388931704, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29487,15 +30197,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", - "amount": "104304721518" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "28301" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "22016076" + "denom": "uosmo", + "amount": "205624" }, "weight": "536870912000000" } @@ -29514,8 +30224,8 @@ "denom": "gamm/pool/33", "amount": "760193450325730329" }, - "liquidityUsd": 0.5571283146776705, - "liquidity24hUsdChange": -4.113954470754795, + "liquidityUsd": 0.4089673255333055, + "liquidity24hUsdChange": -6.571833500425683, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29547,18 +30257,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "149", + "id": "546", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.007000000000000001", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/149", - "amount": "6697864386871285967" + "denom": "gamm/pool/546", + "amount": "1255225592526819348" }, - "liquidityUsd": 0.5562064726341723, - "liquidity24hUsdChange": -1.522939602200187, + "liquidityUsd": 0.40890818661554656, + "liquidity24hUsdChange": -2.3255545175655654, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29566,144 +30276,123 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "11182" - }, - "weight": "300647710720000" - }, - { - "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "237239589" + "denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", + "amount": "1488101" }, - "weight": "612032839680000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "63387" + "amount": "232608" }, - "weight": "161061273600000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "47", + "id": "804", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/47", - "amount": "755393300431926335" + "denom": "gamm/pool/804", + "amount": "1077900000000000000000000" }, - "liquidityUsd": 0.5554509519980908, - "liquidity24hUsdChange": -6.340825696293578, + "liquidityUsd": 0.3999945143080915, + "liquidity24hUsdChange": -1.199189590504964, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ - { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "37296" - }, - "weight": "268435456000000" - }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "13662" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "73076666" + "amount": "24804" }, - "weight": "268435456000000" + "weight": "1073741824" }, { "token": { - "denom": "uosmo", - "amount": "94606" + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "amount": "18753" }, - "weight": "268435456000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1138", + "id": "419", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.990000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1138", - "amount": "100000000000000000000" + "denom": "gamm/pool/419", + "amount": "25000000000000000000" }, - "liquidityUsd": 0.5549215852353949, - "liquidity24hUsdChange": -4.940419481034022, + "liquidityUsd": 0.3991619544342516, + "liquidity24hUsdChange": -3.317537812133537, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.02290889032196634, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "amount": "443684" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "100824" }, - "weight": "536870912000000" + "weight": "1063004405760000" }, { "token": { - "denom": "uosmo", - "amount": "225392" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2585" }, - "weight": "536870912000000" + "weight": "10737418240000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "162", + "id": "814", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/162", - "amount": "3942161444485405612" + "denom": "gamm/pool/814", + "amount": "142890565506262426" }, - "liquidityUsd": 0.551876141619415, - "liquidity24hUsdChange": -8.163176299304114, + "liquidityUsd": 0.3869334436015056, + "liquidity24hUsdChange": -1.384573448367288, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.006472399788158969, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "57447" + "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "amount": "475152" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "174359760" + "denom": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", + "amount": "11232267948631197000" }, "weight": "536870912000000" } @@ -29712,18 +30401,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "546", + "id": "1138", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/546", - "amount": "1255225592526819348" + "denom": "gamm/pool/1138", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.5495950676162765, - "liquidity24hUsdChange": -4.547866534849611, + "liquidityUsd": 0.38544609444153505, + "liquidity24hUsdChange": -1.6514749867020326, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29731,15 +30420,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/655BCEF3CDEBE32863FF281DBBE3B06160339E9897DC9C9C9821932A5F8BA6F8", - "amount": "1488101" + "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "amount": "443684" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "232608" + "amount": "225392" }, "weight": "536870912000000" } @@ -29748,18 +30437,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "945", + "id": "819", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/945", - "amount": "200000000000000000000" + "denom": "gamm/pool/819", + "amount": "97773234729063498" }, - "liquidityUsd": 0.5461363371091932, - "liquidity24hUsdChange": -3.2032091191617327, + "liquidityUsd": 0.3851251593889807, + "liquidity24hUsdChange": -0.9382914033498607, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29767,15 +30456,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "615386" + "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "amount": "259819" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D967900F9EA38CC47468B3470D640A7003D7174CCFEE557857BC7C85EB4AE262", - "amount": "7" + "denom": "uosmo", + "amount": "138529" }, "weight": "536870912000000" } @@ -29784,54 +30473,68 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "804", + "id": "1484", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.200000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/804", - "amount": "1077900000000000000000000" + "denom": "gamm/pool/1484", + "amount": "105974655113405713" }, - "liquidityUsd": 0.5378852413528616, - "liquidity24hUsdChange": -4.521095984613999, + "liquidityUsd": 0.3799074592093695, + "liquidity24hUsdChange": -3.6730306977889295, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.01312831921142783, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "24804" + "amount": "10010" }, - "weight": "1073741824" + "weight": "268435456000000" }, { "token": { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "18753" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "129896" }, - "weight": "1073741824" + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "9464" + }, + "weight": "268435456000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "87414" + }, + "weight": "268435456000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "814", + "id": "581", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/814", - "amount": "142890565506262426" + "denom": "gamm/pool/581", + "amount": "4409567951294343805464" }, - "liquidityUsd": 0.529494497265218, - "liquidity24hUsdChange": -5.183768680439677, + "liquidityUsd": 0.36567368488717217, + "liquidity24hUsdChange": -3.261393781429109, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -29839,15 +30542,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "amount": "475152" + "denom": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", + "amount": "104304721518" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", - "amount": "11232267948631197000" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "22016076" }, "weight": "536870912000000" } @@ -29856,34 +30559,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "257", + "id": "1290", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/257", - "amount": "1525878906250000" + "denom": "gamm/pool/1290", + "amount": "1341417161065117729" }, - "liquidityUsd": 0.5259171156114439, - "liquidity24hUsdChange": -5.91118847272808, + "liquidityUsd": 0.36541808085670574, + "liquidity24hUsdChange": -2.185587066767441, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.034191299031409696, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "62262" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "24930" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "208474" + "amount": "182353" }, "weight": "536870912000000" } @@ -29892,126 +30595,140 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "692", + "id": "945", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/692", - "amount": "10000000000000000" + "denom": "gamm/pool/945", + "amount": "200000000000000000000" }, - "liquidityUsd": 0.5203551122188511, - "liquidity24hUsdChange": 12.110926547170548, + "liquidityUsd": 0.3628998777229424, + "liquidity24hUsdChange": -3.0997596101033986, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0461402293012153, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", - "amount": "15952020935" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "615386" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "174144" + "denom": "ibc/D967900F9EA38CC47468B3470D640A7003D7174CCFEE557857BC7C85EB4AE262", + "amount": "7" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "847", + "id": "93", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/847", - "amount": "281438078102044251955" + "denom": "gamm/pool/93", + "amount": "1562500000000000000" }, - "liquidityUsd": 0.5130666792230743, - "liquidity24hUsdChange": -3.1873670991054066, + "liquidityUsd": 0.3552513411217181, + "liquidity24hUsdChange": -1.9844152188241524, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.014856151197309667, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "1457122736" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "28215" }, - "weight": "536870912000000" + "weight": "644245094400000" }, { "token": { - "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", - "amount": "17818469" + "denom": "uosmo", + "amount": "141751" }, - "weight": "536870912000000" + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1290", + "id": "1044", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.001500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1290", - "amount": "1341417161065117729" + "denom": "gamm/pool/1044", + "amount": "101862507283464759" }, - "liquidityUsd": 0.5038521182340927, - "liquidity24hUsdChange": -4.782199866279974, - "volume24hUsd": 0.007452133441047166, - "volume24hUsdChange": null, - "volume7dUsd": 0.007452133441047166, + "liquidityUsd": 0.3551843440553868, + "liquidity24hUsdChange": -2.7834561776392515, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "24930" + "amount": "10956" + }, + "weight": "45171244793856" + }, + { + "token": { + "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "amount": "6389" + }, + "weight": "45171244793856" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "134629" }, - "weight": "536870912000000" + "weight": "45171244793856" }, { "token": { - "denom": "uosmo", - "amount": "182353" + "denom": "uion", + "amount": "258" }, - "weight": "536870912000000" + "weight": "45171244793856" } ], - "total_weight": "1073741824000000" + "total_weight": "180684979175424" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "776", + "id": "1578", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/776", - "amount": "324750233431547178" + "denom": "gamm/pool/1578", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.5008054650894364, - "liquidity24hUsdChange": -3.903196946261025, + "liquidityUsd": 0.3520726122901588, + "liquidity24hUsdChange": -0.6752457755678597, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30019,15 +30736,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "288612" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "205594" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "190688" + "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", + "amount": "1316774486" }, "weight": "536870912000000" } @@ -30036,18 +30753,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1084", + "id": "518", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1084", - "amount": "47856311422702582" + "denom": "gamm/pool/518", + "amount": "14936372638033185144" }, - "liquidityUsd": 0.49263103009216735, - "liquidity24hUsdChange": -2.903240566434299, + "liquidityUsd": 0.34496229821697055, + "liquidity24hUsdChange": -4.245628925303809, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30055,35 +30772,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", - "amount": "109751763986667360" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "196112" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "20534" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "177879396" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "93", + "id": "692", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/93", - "amount": "1562500000000000000" + "denom": "gamm/pool/692", + "amount": "10000000000000000" }, - "liquidityUsd": 0.48731706313116874, - "liquidity24hUsdChange": -4.519088009720619, + "liquidityUsd": 0.34367934214957285, + "liquidity24hUsdChange": -5.0554628575543745, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30091,20 +30808,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "28215" + "denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", + "amount": "15952020935" }, - "weight": "644245094400000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "141751" + "amount": "174144" }, - "weight": "429496729600000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -30118,24 +30835,24 @@ "denom": "gamm/pool/1411", "amount": "371675309578984676" }, - "liquidityUsd": 0.4770836508715559, - "liquidity24hUsdChange": -7.111237936263167, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.0012947981401003025, + "liquidityUsd": 0.34294728322330503, + "liquidity24hUsdChange": -15.354029439422865, + "volume24hUsd": 0.04027582577758201, + "volume24hUsdChange": null, + "volume7dUsd": 0.04027582577758201, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "amount": "120259192" + "amount": "161221021" }, "weight": "536870912000000" }, { "token": { "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "amount": "257168" + "amount": "191887" }, "weight": "536870912000000" } @@ -30144,18 +30861,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "943", + "id": "776", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/943", - "amount": "537310979872801798" + "denom": "gamm/pool/776", + "amount": "324750233431547178" }, - "liquidityUsd": 0.47105879211673085, - "liquidity24hUsdChange": -3.425959513610365, + "liquidityUsd": 0.3422596655926273, + "liquidity24hUsdChange": -3.2476245549379716, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30164,14 +30881,14 @@ { "token": { "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "279493" + "amount": "288612" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "8807167" + "denom": "uosmo", + "amount": "190688" }, "weight": "536870912000000" } @@ -30190,8 +30907,8 @@ "denom": "gamm/pool/159", "amount": "1086088753629893233" }, - "liquidityUsd": 0.47003254665920646, - "liquidity24hUsdChange": -4.5357485056834985, + "liquidityUsd": 0.3407522890396257, + "liquidity24hUsdChange": -2.2014306855014363, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30216,54 +30933,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "518", + "id": "1084", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/518", - "amount": "14936372638033185144" + "denom": "gamm/pool/1084", + "amount": "47856311422702582" }, - "liquidityUsd": 0.4628383828967221, - "liquidity24hUsdChange": -0.5337084164873842, + "liquidityUsd": 0.3400230886091158, + "liquidity24hUsdChange": -5.129854148505944, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.01977655238312498, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "196112" + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "amount": "109751763986667360" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "177879396" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "20534" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1484", + "id": "782", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.200000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1484", - "amount": "105974655113405713" + "denom": "gamm/pool/782", + "amount": "50070120127848854" }, - "liquidityUsd": 0.46027833685460484, - "liquidity24hUsdChange": -3.8557236720979193, + "liquidityUsd": 0.3395616492162673, + "liquidity24hUsdChange": -1.3210779665936265, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30271,151 +30988,123 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "10010" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "129896" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "9464" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "206651151220139520" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "87414" + "amount": "147160" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "419", + "id": "1676", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.990000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/419", - "amount": "25000000000000000000" + "denom": "gamm/pool/1676", + "amount": "4192768671722217" }, - "liquidityUsd": 0.4464639136321867, - "liquidity24hUsdChange": -7.038525860302053, + "liquidityUsd": 0.33130148198148834, + "liquidity24hUsdChange": -5.092272268128512, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.01031641917120853, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "100824" + "denom": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", + "amount": "24313385" }, - "weight": "1063004405760000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2585" + "denom": "uosmo", + "amount": "78947" }, - "weight": "10737418240000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1044", + "id": "847", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001500000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1044", - "amount": "101862507283464759" + "denom": "gamm/pool/847", + "amount": "281438078102044251955" }, - "liquidityUsd": 0.4430369884150356, - "liquidity24hUsdChange": -4.7263130666538595, + "liquidityUsd": 0.3214123195069974, + "liquidity24hUsdChange": -3.497479166881299, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.017091675758814085, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "10956" - }, - "weight": "45171244793856" - }, - { - "token": { - "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "amount": "6389" - }, - "weight": "45171244793856" - }, - { - "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "134629" + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "amount": "1457122736" }, - "weight": "45171244793856" + "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "258" + "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", + "amount": "17818469" }, - "weight": "45171244793856" + "weight": "536870912000000" } ], - "total_weight": "180684979175424" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "819", + "id": "999", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/819", - "amount": "97773234729063498" + "denom": "gamm/pool/999", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.4356782625900314, - "liquidity24hUsdChange": -1.9927672023481442, + "liquidityUsd": 0.31324382252900373, + "liquidity24hUsdChange": -2.220054088434632, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.06204914433455928, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "amount": "259819" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "20768" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "138529" + "amount": "161697" }, "weight": "536870912000000" } @@ -30424,18 +31113,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "395", + "id": "943", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/395", - "amount": "100000000000000000000" + "denom": "gamm/pool/943", + "amount": "537310979872801798" }, - "liquidityUsd": 0.43409899717593203, - "liquidity24hUsdChange": -4.144733977578017, + "liquidityUsd": 0.3111017978166108, + "liquidity24hUsdChange": -3.175828074560062, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30443,15 +31132,15 @@ "pool_assets": [ { "token": { - "denom": "uion", - "amount": "585" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "279493" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "157579" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "8807167" }, "weight": "536870912000000" } @@ -30460,18 +31149,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "999", + "id": "258", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/999", - "amount": "100000000000000000000" + "denom": "gamm/pool/258", + "amount": "1089515686035156" }, - "liquidityUsd": 0.4322934290968502, - "liquidity24hUsdChange": -4.537172797986953, + "liquidityUsd": 0.3050231771463396, + "liquidity24hUsdChange": -3.416917928651622, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30479,15 +31168,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "20768" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "48378" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "161697" + "amount": "136857" }, "weight": "536870912000000" } @@ -30496,18 +31185,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "980", + "id": "395", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/980", - "amount": "1061040318117376719698" + "denom": "gamm/pool/395", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.431498, - "liquidity24hUsdChange": 0, + "liquidityUsd": 0.30125334715784235, + "liquidity24hUsdChange": -6.233376889805644, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30515,15 +31204,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", - "amount": "126279690370373580" + "denom": "uion", + "amount": "585" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "431498" + "denom": "uosmo", + "amount": "157579" }, "weight": "536870912000000" } @@ -30532,34 +31221,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "705", + "id": "1033", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/705", - "amount": "20000000000000000" + "denom": "gamm/pool/1033", + "amount": "121261118517496023786704" }, - "liquidityUsd": 0.4257173624922477, - "liquidity24hUsdChange": -0.0036117595200814245, + "liquidityUsd": 0.29652567642099215, + "liquidity24hUsdChange": -3.0452378973529934, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.0015024436115134332, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "213828" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "1234872779" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "212300" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "59749109087338" }, "weight": "536870912000000" } @@ -30568,18 +31257,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "854", + "id": "391", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/854", - "amount": "6000000000000000000" + "denom": "gamm/pool/391", + "amount": "1007820000000000000" }, - "liquidityUsd": 0.42050734694416503, - "liquidity24hUsdChange": -5.2811141825747905, + "liquidityUsd": 0.2947366407848913, + "liquidity24hUsdChange": -6.821053490923297, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30587,15 +31276,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "amount": "702134" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "2439497" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4", - "amount": "602170" + "denom": "uion", + "amount": "431" }, "weight": "536870912000000" } @@ -30604,18 +31293,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "312", + "id": "1405", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/312", - "amount": "235625000000000000" + "denom": "gamm/pool/1405", + "amount": "98354642980302576" }, - "liquidityUsd": 0.40343429653621715, - "liquidity24hUsdChange": -4.591437671233085, + "liquidityUsd": 0.2905363144806913, + "liquidity24hUsdChange": -3.0995985217592827, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30623,35 +31312,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "7440" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "54295782489617" }, - "weight": "214748364800000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "251652" + "amount": "141837" }, - "weight": "858993459200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "782", + "id": "854", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/782", - "amount": "50070120127848854" + "denom": "gamm/pool/854", + "amount": "6000000000000000000" }, - "liquidityUsd": 0.39552027610172835, - "liquidity24hUsdChange": -2.207101579944116, + "liquidityUsd": 0.28812729561133515, + "liquidity24hUsdChange": 0.3701488268096259, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30659,15 +31348,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "206651151220139520" + "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "amount": "702134" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "147160" + "denom": "ibc/D0E5BF2940FB58D9B283A339032DE88111407AAD7D94A7F1F3EB78874F8616D4", + "amount": "602170" }, "weight": "536870912000000" } @@ -30676,70 +31365,70 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1578", + "id": "312", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1578", - "amount": "100000000000000000000" + "denom": "gamm/pool/312", + "amount": "235625000000000000" }, - "liquidityUsd": 0.39270997204000563, - "liquidity24hUsdChange": 1.8982214613801733, + "liquidityUsd": 0.28702000028617597, + "liquidity24hUsdChange": -2.938046997298506, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.04624670619928346, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "205594" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "7440" }, - "weight": "536870912000000" + "weight": "214748364800000" }, { "token": { - "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", - "amount": "1316774486" + "denom": "uosmo", + "amount": "251652" }, - "weight": "536870912000000" + "weight": "858993459200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "258", + "id": "387", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/258", - "amount": "1089515686035156" + "denom": "gamm/pool/387", + "amount": "2900000000000000000" }, - "liquidityUsd": 0.37639861917908257, - "liquidity24hUsdChange": -6.427704226804076, - "volume24hUsd": 0.007748200307112812, - "volume24hUsdChange": null, - "volume7dUsd": 0.007748200307112812, + "liquidityUsd": 0.27343735846052747, + "liquidity24hUsdChange": -3.6892133838912913, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "48378" + "amount": "43117" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "136857" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "378839" }, "weight": "536870912000000" } @@ -30747,71 +31436,69 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1405", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1518", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1405", - "amount": "98354642980302576" + "denom": "gamm/pool/1518", + "amount": "94574819594317421" }, - "liquidityUsd": 0.3730537798753913, - "liquidity24hUsdChange": -3.88529316785364, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "liquidityUsd": 0.26031229592166927, + "liquidity24hUsdChange": -6.827311690664575, + "volume24hUsd": 0.00029562237308080594, + "volume24hUsdChange": null, + "volume7dUsd": 0.00029562237308080594, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "54295782489617" - }, - "weight": "536870912000000" + "denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", + "amount": "2308552617873670600" }, { - "token": { - "denom": "uosmo", - "amount": "141837" - }, - "weight": "536870912000000" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "6891" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "10", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1340", + "id": "967", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1340", - "amount": "1000000000000000000" + "denom": "gamm/pool/967", + "amount": "776543273753725355" }, - "liquidityUsd": 0.37139960529391375, - "liquidity24hUsdChange": -2.570520527245305, + "liquidityUsd": 0.2584322758718696, + "liquidity24hUsdChange": -3.3934440512774846, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.01453351908442441, + "volume7dUsd": 0.07446887643713067, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", - "amount": "3691230" + "denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", + "amount": "2108834366" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "141369" + "amount": "286408" }, "weight": "536870912000000" } @@ -30820,18 +31507,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1033", + "id": "512", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1033", - "amount": "121261118517496023786704" + "denom": "gamm/pool/512", + "amount": "2539453771961160004" }, - "liquidityUsd": 0.367687340907085, - "liquidity24hUsdChange": -5.3031059416478605, + "liquidityUsd": 0.25788028031474874, + "liquidity24hUsdChange": -2.6768761192725443, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30839,15 +31526,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "1219279808" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "622049" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "60513144506074" + "denom": "uosmo", + "amount": "146754" }, "weight": "536870912000000" } @@ -30866,8 +31553,8 @@ "denom": "gamm/pool/320", "amount": "3125000000000000000" }, - "liquidityUsd": 0.3668476031011368, - "liquidity24hUsdChange": -4.425589552707857, + "liquidityUsd": 0.2565650210276536, + "liquidity24hUsdChange": -4.588277356805108, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30892,18 +31579,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "889", + "id": "1340", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/889", - "amount": "100000000000000000000" + "denom": "gamm/pool/1340", + "amount": "1000000000000000000" }, - "liquidityUsd": 0.3649436709208014, - "liquidity24hUsdChange": -4.181128300357146, + "liquidityUsd": 0.25273337146585195, + "liquidity24hUsdChange": -4.533524326392743, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30911,15 +31598,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "6753504" + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "amount": "3691230" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "151142" + "amount": "141369" }, "weight": "536870912000000" } @@ -30928,18 +31615,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "512", + "id": "889", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/512", - "amount": "2539453771961160004" + "denom": "gamm/pool/889", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.3598802602063067, - "liquidity24hUsdChange": -5.408697682979364, + "liquidityUsd": 0.24855038110961947, + "liquidity24hUsdChange": -3.3338939901137064, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -30947,15 +31634,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "622049" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "6753504" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "146754" + "amount": "151142" }, "weight": "536870912000000" } @@ -30963,91 +31650,87 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "391", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "888", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/391", - "amount": "1007820000000000000" + "denom": "gamm/pool/888", + "amount": "580403087275564887" }, - "liquidityUsd": 0.35844229782413295, - "liquidity24hUsdChange": -3.729455526566011, + "liquidityUsd": 0.2483085040525449, + "liquidity24hUsdChange": -3.6426147216724205, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "2439497" - }, - "weight": "536870912000000" + "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", + "amount": "2411" }, { - "token": { - "denom": "uion", - "amount": "431" - }, - "weight": "536870912000000" + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "404" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "878", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1510", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/878", - "amount": "145883389474861260136" + "denom": "gamm/pool/1510", + "amount": "112501573278306539" }, - "liquidityUsd": 0.3439292179768793, - "liquidity24hUsdChange": -5.558624311155175, + "liquidityUsd": 0.24679458434752255, + "liquidity24hUsdChange": -4.07050454357468, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.003086375026398392, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "1271262151" - }, - "weight": "536870912000000" + "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "amount": "101" }, { - "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "205738" - }, - "weight": "536870912000000" + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "amount": "300479527" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "582", + "id": "338", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/582", - "amount": "1473593960195846174953" + "denom": "gamm/pool/338", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.33972879629341646, - "liquidity24hUsdChange": -3.6725030998617783, + "liquidityUsd": 0.24345610230977105, + "liquidity24hUsdChange": -2.2140267832784537, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31055,15 +31738,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", - "amount": "19624963880" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "16223" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "13416218" + "denom": "uosmo", + "amount": "124941" }, "weight": "536870912000000" } @@ -31072,18 +31755,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "338", + "id": "878", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/338", - "amount": "100000000000000000000" + "denom": "gamm/pool/878", + "amount": "145883389474861260136" }, - "liquidityUsd": 0.33593078285203803, - "liquidity24hUsdChange": -4.536711931810675, + "liquidityUsd": 0.24243831063877297, + "liquidity24hUsdChange": -3.2074148377706795, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31091,15 +31774,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "16223" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "1271262151" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "124941" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "205738" }, "weight": "536870912000000" } @@ -31118,8 +31801,8 @@ "denom": "gamm/pool/336", "amount": "100000000000000000000" }, - "liquidityUsd": 0.3348079075436605, - "liquidity24hUsdChange": -4.540266301417422, + "liquidityUsd": 0.24235372294713767, + "liquidity24hUsdChange": -2.260541998000987, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31142,40 +31825,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1518", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1518", - "amount": "94574819594317421" - }, - "liquidityUsd": 0.33366768832502486, - "liquidity24hUsdChange": -4.315018109528516, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", - "amount": "2305042677645034600" - }, - { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "6921" - } - ], - "scaling_factors": [ - "10", - "1" - ], - "scaling_factor_controller": "" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "266", @@ -31188,8 +31837,8 @@ "denom": "gamm/pool/266", "amount": "14432762421604915666" }, - "liquidityUsd": 0.3308950808347326, - "liquidity24hUsdChange": -4.536843937944305, + "liquidityUsd": 0.23979603016735707, + "liquidity24hUsdChange": -2.215753067354678, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31224,8 +31873,8 @@ "denom": "gamm/pool/210", "amount": "253906250000000000" }, - "liquidityUsd": 0.32346778817367833, - "liquidity24hUsdChange": -4.537052912107185, + "liquidityUsd": 0.2343971597174688, + "liquidity24hUsdChange": -2.2184860825745703, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31248,6 +31897,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1563", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.037500000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1563", + "amount": "88594764151531796" + }, + "liquidityUsd": 0.23166567725042922, + "liquidity24hUsdChange": -5.121700499286354, + "volume24hUsd": 0.027931147562035373, + "volume24hUsdChange": null, + "volume7dUsd": 0.07096857684521876, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "amount": "8473" + }, + "weight": "375809638400000" + }, + { + "token": { + "denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", + "amount": "1676183168383269500" + }, + "weight": "697932185600000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "329", @@ -31260,8 +31945,8 @@ "denom": "gamm/pool/329", "amount": "106250000000000000" }, - "liquidityUsd": 0.31916867584319153, - "liquidity24hUsdChange": -4.539818301052686, + "liquidityUsd": 0.23106780276047242, + "liquidity24hUsdChange": -2.2546752685011855, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31286,18 +31971,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "698", + "id": "404", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/698", - "amount": "176176731585487076060" + "denom": "gamm/pool/404", + "amount": "9900000000000000000" }, - "liquidityUsd": 0.31346175502988266, - "liquidity24hUsdChange": -4.625215344977828, + "liquidityUsd": 0.22677557884382438, + "liquidity24hUsdChange": -4.339470567072083, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31305,35 +31990,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", - "amount": "757590080" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "79441185" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "244301" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "99440868" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "953", + "id": "314", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.004000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/953", - "amount": "461220549559054824" + "denom": "gamm/pool/314", + "amount": "2400000000000000000" }, - "liquidityUsd": 0.31297320117142324, - "liquidity24hUsdChange": -7.1605644750754465, + "liquidityUsd": 0.22335946661555628, + "liquidity24hUsdChange": -4.57228225146215, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31341,15 +32026,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "20011" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "119318724" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", - "amount": "2342358" + "denom": "uosmo", + "amount": "87736" }, "weight": "536870912000000" } @@ -31358,54 +32043,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1563", + "id": "582", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.037500000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1563", - "amount": "88594764151531796" + "denom": "gamm/pool/582", + "amount": "1473593960195846174953" }, - "liquidityUsd": 0.3024505800998136, - "liquidity24hUsdChange": -3.9328304719127716, + "liquidityUsd": 0.22283525335348622, + "liquidity24hUsdChange": -3.2613937814290903, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.10902758301708698, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "7134" + "denom": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", + "amount": "19624963880" }, - "weight": "375809638400000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", - "amount": "1820323691245901300" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "13416218" }, - "weight": "697932185600000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "387", + "id": "698", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/387", - "amount": "2900000000000000000" + "denom": "gamm/pool/698", + "amount": "176176731585487076060" }, - "liquidityUsd": 0.2990974324970923, - "liquidity24hUsdChange": -6.256029450083263, + "liquidityUsd": 0.2204381980523366, + "liquidity24hUsdChange": -3.393444051277473, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31413,51 +32098,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "43117" + "denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", + "amount": "757590080" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "378839" + "denom": "uosmo", + "amount": "244301" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "650", + "id": "953", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.004000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/650", - "amount": "559521329752761872136" + "denom": "gamm/pool/953", + "amount": "461220549559054824" }, - "liquidityUsd": 0.29347219245349376, - "liquidity24hUsdChange": -7.493213246653912, + "liquidityUsd": 0.21859319487730677, + "liquidity24hUsdChange": -3.3566359856894437, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.010857658856857433, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "6692588" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "17431" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", - "amount": "7880087" + "denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", + "amount": "2690502" }, "weight": "536870912000000" } @@ -31466,54 +32151,61 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "404", + "id": "202", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/404", - "amount": "9900000000000000000" + "denom": "gamm/pool/202", + "amount": "21137343747056946" }, - "liquidityUsd": 0.2911157787192375, - "liquidity24hUsdChange": -4.4317050536433715, + "liquidityUsd": 0.21215438199946704, + "liquidity24hUsdChange": -2.411167914358409, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.00758352796104485, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "79441185" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "29658" }, - "weight": "536870912000000" + "weight": "526133493760000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "99440868" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "12049" }, - "weight": "536870912000000" + "weight": "526133493760000" + }, + { + "token": { + "denom": "uosmo", + "amount": "4188" + }, + "weight": "21474836480000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "314", + "id": "328", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/314", - "amount": "2400000000000000000" + "denom": "gamm/pool/328", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.2905291216203367, - "liquidity24hUsdChange": -1.6794096874477238, + "liquidityUsd": 0.20879621849440838, + "liquidity24hUsdChange": -2.370302129500698, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31521,15 +32213,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "119318724" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "31996" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "87736" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "3255715" }, "weight": "536870912000000" } @@ -31548,8 +32240,8 @@ "denom": "gamm/pool/510", "amount": "4062500000000000000" }, - "liquidityUsd": 0.2882533544015806, - "liquidity24hUsdChange": -5.383768042173929, + "liquidityUsd": 0.20643112894501683, + "liquidity24hUsdChange": -2.6996072776617117, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31573,71 +32265,80 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "888", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "650", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001400000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/888", - "amount": "580403087275564887" + "denom": "gamm/pool/650", + "amount": "559521329752761872136" }, - "liquidityUsd": 0.2791222404200494, - "liquidity24hUsdChange": -3.426443850363186, + "liquidityUsd": 0.19519726402459103, + "liquidity24hUsdChange": -15.582116844370214, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", - "amount": "2411" + "token": { + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "6692588" + }, + "weight": "536870912000000" }, { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "404" + "token": { + "denom": "ibc/E7B35499CFBEB0FF5778127ABA4FB2C4B79A6B8D3D831D4379C4048C238796BD", + "amount": "7880087" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "951", + "id": "455", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/951", - "amount": "100394030521432095836" + "denom": "gamm/pool/455", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.272181974829141, - "liquidity24hUsdChange": -10.942363215809774, - "volume24hUsd": 0.068653823358259, - "volume24hUsdChange": null, - "volume7dUsd": 74.93735769154824, + "liquidityUsd": 0.18856530196939927, + "liquidity24hUsdChange": -3.7319012646526644, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", - "amount": "271019058" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "1132428" }, - "weight": "536870912000000" + "weight": "375809638400000" + }, + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6903" + }, + "weight": "322122547200000" }, { "token": { "denom": "uosmo", - "amount": "212129" + "amount": "55996" }, - "weight": "536870912000000" + "weight": "375809638400000" } ], "total_weight": "1073741824000000" @@ -31654,24 +32355,24 @@ "denom": "gamm/pool/1059", "amount": "138049787284505095" }, - "liquidityUsd": 0.2658805638075181, - "liquidity24hUsdChange": -5.188001665448574, - "volume24hUsd": 0.016969374324751683, - "volume24hUsdChange": 941.1357747199842, - "volume7dUsd": 0.037588317452156086, + "liquidityUsd": 0.18687626082121916, + "liquidity24hUsdChange": -3.4882853927850954, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.04898067188736148, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "amount": "574796" + "amount": "513221" }, "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "92653" + "amount": "103793" }, "weight": "1073741824" } @@ -31690,8 +32391,8 @@ "denom": "gamm/pool/526", "amount": "100000000000000000000" }, - "liquidityUsd": 0.2612962314618854, - "liquidity24hUsdChange": -3.3841312611801175, + "liquidityUsd": 0.17904735560001767, + "liquidity24hUsdChange": -2.334602521170816, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31716,18 +32417,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "328", + "id": "19", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/328", - "amount": "100000000000000000000" + "denom": "gamm/pool/19", + "amount": "220161401685494759" }, - "liquidityUsd": 0.2593235991094407, - "liquidity24hUsdChange": -5.793362056573894, + "liquidityUsd": 0.1788886978828273, + "liquidity24hUsdChange": -5.277088667871607, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31736,14 +32437,14 @@ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "31996" + "amount": "31369" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "3255715" + "denom": "uion", + "amount": "225" }, "weight": "536870912000000" } @@ -31752,61 +32453,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "202", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/202", - "amount": "21137343747056946" - }, - "liquidityUsd": 0.2589066712205506, - "liquidity24hUsdChange": -5.786986186264908, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "29658" - }, - "weight": "526133493760000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "12049" - }, - "weight": "526133493760000" - }, - { - "token": { - "denom": "uosmo", - "amount": "4188" - }, - "weight": "21474836480000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1043", + "id": "191", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1043", - "amount": "4892105088386872463" + "denom": "gamm/pool/191", + "amount": "1000000000000000000" }, - "liquidityUsd": 0.25220159632342337, - "liquidity24hUsdChange": -4.625215344977822, + "liquidityUsd": 0.1779772025378725, + "liquidity24hUsdChange": -4.5204369963975, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31814,15 +32472,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", - "amount": "51935524181" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "90844727" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "196557" + "amount": "75576" }, "weight": "536870912000000" } @@ -31831,72 +32489,43 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1083", + "id": "132", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1083", - "amount": "10000000000000000" + "denom": "gamm/pool/132", + "amount": "895465688768811833" }, - "liquidityUsd": 0.24637834632023056, - "liquidity24hUsdChange": -1.6170394341087517, + "liquidityUsd": 0.17736663561342392, + "liquidity24hUsdChange": -1.9445857894432756, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ - { - "token": { - "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", - "amount": "99051317756892380" - }, - "weight": "28991029248" - }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "221" + "amount": "15883" }, - "weight": "1073741824" - } - ], - "total_weight": "30064771072" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "454", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.040000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/454", - "amount": "100000000000000000000" - }, - "liquidityUsd": 0.24394588548005175, - "liquidity24hUsdChange": -4.8589463996566575, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0.017417423819564334, - "taker_fee": "0.001000000000000000", - "pool_assets": [ + "weight": "751619276800000" + }, { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "16274253" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "10987456" }, - "weight": "858993459200000" + "weight": "53687091200000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5742" + "denom": "uosmo", + "amount": "40018" }, - "weight": "214748364800000" + "weight": "268435456000000" } ], "total_weight": "1073741824000000" @@ -31913,8 +32542,8 @@ "denom": "gamm/pool/415", "amount": "11400000000000000" }, - "liquidityUsd": 0.24327185920708055, - "liquidity24hUsdChange": -4.534798550447676, + "liquidityUsd": 0.17641711232995144, + "liquidity24hUsdChange": -2.1890157309419647, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31949,8 +32578,8 @@ "denom": "gamm/pool/532", "amount": "900000000000000000" }, - "liquidityUsd": 0.24221636881354075, - "liquidity24hUsdChange": -5.372788592230972, + "liquidityUsd": 0.17341637562577394, + "liquidity24hUsdChange": -2.7096199186417342, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31975,18 +32604,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "132", + "id": "454", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.040000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/132", - "amount": "895465688768811833" + "denom": "gamm/pool/454", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.23967277272332427, - "liquidity24hUsdChange": -4.182865082553103, + "liquidityUsd": 0.17120662777411202, + "liquidity24hUsdChange": -2.60626893665616, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -31994,42 +32623,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "15883" - }, - "weight": "751619276800000" - }, - { - "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "10987456" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "16274253" }, - "weight": "53687091200000" + "weight": "858993459200000" }, { "token": { - "denom": "uosmo", - "amount": "40018" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "5742" }, - "weight": "268435456000000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "455", + "id": "1043", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/455", - "amount": "100000000000000000000" + "denom": "gamm/pool/1043", + "amount": "4892105088386872463" }, - "liquidityUsd": 0.23365223959621995, - "liquidity24hUsdChange": -4.241390875629896, + "liquidityUsd": 0.16679604989897923, + "liquidity24hUsdChange": -3.3934440512774793, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32037,42 +32659,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "1132428" - }, - "weight": "375809638400000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6903" + "denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", + "amount": "55234199688" }, - "weight": "322122547200000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "55996" + "amount": "184852" }, - "weight": "375809638400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "191", + "id": "226", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/191", - "amount": "1000000000000000000" + "denom": "gamm/pool/226", + "amount": "6250000000000000000" }, - "liquidityUsd": 0.2324597322971912, - "liquidity24hUsdChange": -1.826312789730252, + "liquidityUsd": 0.16278411977546178, + "liquidity24hUsdChange": -3.392684656524503, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32080,35 +32695,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "90844727" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "1787782" }, - "weight": "536870912000000" + "weight": "10737418240000" }, { "token": { "denom": "uosmo", - "amount": "75576" + "amount": "177747" }, - "weight": "536870912000000" + "weight": "1063004405760000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "226", + "id": "1083", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/226", - "amount": "6250000000000000000" + "denom": "gamm/pool/1083", + "amount": "10000000000000000" }, - "liquidityUsd": 0.2312803435037994, - "liquidity24hUsdChange": -4.687028752629583, + "liquidityUsd": 0.15932849603177832, + "liquidity24hUsdChange": -8.52119055073637, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32116,35 +32731,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "1787782" + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "amount": "99051317756892380" }, - "weight": "10737418240000" + "weight": "28991029248" }, { "token": { - "denom": "uosmo", - "amount": "177747" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "221" }, - "weight": "1063004405760000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "30064771072" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "19", + "id": "54", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/19", - "amount": "220161401685494759" + "denom": "gamm/pool/54", + "amount": "4195810024297903599" }, - "liquidityUsd": 0.21939640192553167, - "liquidity24hUsdChange": -5.82054906686811, + "liquidityUsd": 0.15808484454187416, + "liquidity24hUsdChange": -3.415908032159867, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32153,14 +32768,14 @@ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "31369" + "amount": "23994" }, "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "225" + "denom": "uosmo", + "amount": "75416" }, "weight": "536870912000000" } @@ -32179,8 +32794,8 @@ "denom": "gamm/pool/350", "amount": "24255000000000000" }, - "liquidityUsd": 0.21330961475869198, - "liquidity24hUsdChange": -4.541091385993045, + "liquidityUsd": 0.1543634027681715, + "liquidity24hUsdChange": -2.2713496941163003, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32205,18 +32820,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1074", + "id": "921", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1074", - "amount": "33701427425176696" + "denom": "gamm/pool/921", + "amount": "19166706333308509" }, - "liquidityUsd": 0.20157789297510784, - "liquidity24hUsdChange": -2.4953069638192558, + "liquidityUsd": 0.1540652501163159, + "liquidity24hUsdChange": -3.751319723970919, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32224,35 +32839,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", - "amount": "57929174534493310" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "27210" }, - "weight": "2147483648" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "45893" + "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", + "amount": "3990177988383106" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "3221225472" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "472", + "id": "89", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/472", - "amount": "222838075929727" + "denom": "gamm/pool/89", + "amount": "13230540450000000000" }, - "liquidityUsd": 0.2003375404980102, - "liquidity24hUsdChange": -3.058894055938909, + "liquidityUsd": 0.1530327660469984, + "liquidity24hUsdChange": -4.716607550276696, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32260,15 +32875,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "104720" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "1258381" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "73925" + "amount": "68101" }, "weight": "536870912000000" } @@ -32277,18 +32892,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "54", + "id": "675", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/54", - "amount": "4195810024297903599" + "denom": "gamm/pool/675", + "amount": "32494510805786446" }, - "liquidityUsd": 0.19635557866672648, - "liquidity24hUsdChange": -5.951990006669098, + "liquidityUsd": 0.14616938330622103, + "liquidity24hUsdChange": -0.9676453924561462, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32296,17 +32911,24 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "23994" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "102011210429098110" }, - "weight": "536870912000000" + "weight": "357878149939200" }, { "token": { - "denom": "uosmo", - "amount": "75416" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "2654918" }, - "weight": "536870912000000" + "weight": "357985524121600" + }, + { + "token": { + "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "amount": "132259976144721260" + }, + "weight": "357878149939200" } ], "total_weight": "1073741824000000" @@ -32323,8 +32945,8 @@ "denom": "gamm/pool/556", "amount": "865794868953288635" }, - "liquidityUsd": 0.19527064463536992, - "liquidity24hUsdChange": -4.540019812210604, + "liquidityUsd": 0.14136009040918912, + "liquidity24hUsdChange": -2.257313993622393, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32349,18 +32971,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "89", + "id": "472", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/89", - "amount": "13230540450000000000" + "denom": "gamm/pool/472", + "amount": "222838075929727" }, - "liquidityUsd": 0.1841418316073362, - "liquidity24hUsdChange": -4.160207571140957, + "liquidityUsd": 0.13612165801365178, + "liquidity24hUsdChange": -2.9964240398022377, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32368,15 +32990,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "1258381" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "104720" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "68101" + "amount": "73925" }, "weight": "536870912000000" } @@ -32385,18 +33007,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "921", + "id": "1074", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/921", - "amount": "19166706333308509" + "denom": "gamm/pool/1074", + "amount": "33701427425176696" }, - "liquidityUsd": 0.18313802152024727, - "liquidity24hUsdChange": -6.311701618427831, + "liquidityUsd": 0.1335505030604997, + "liquidity24hUsdChange": -7.04521582267861, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32404,15 +33026,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "27210" + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "amount": "57929174534493310" + }, + "weight": "2147483648" + }, + { + "token": { + "denom": "uosmo", + "amount": "45893" + }, + "weight": "1073741824" + } + ], + "total_weight": "3221225472" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "743", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/743", + "amount": "7080530966891149323" + }, + "liquidityUsd": 0.13147760359481042, + "liquidity24hUsdChange": -2.36833356485477, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "923501488262017800" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", - "amount": "3990177988383106" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "80306" }, "weight": "536870912000000" } @@ -32431,8 +33089,8 @@ "denom": "gamm/pool/374", "amount": "1000000000000000000" }, - "liquidityUsd": 0.1794466611085093, - "liquidity24hUsdChange": -4.529964381244025, + "liquidityUsd": 0.13034238813023785, + "liquidity24hUsdChange": -2.125915158407482, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32455,66 +33113,38 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", - "pool_id": "1654", - "code_id": "580", - "tokens": [ - { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "2995148" - }, - { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "87481" - } - ], - "liquidityUsd": 0.17154987810812392, - "liquidity24hUsdChange": -3.2101465213093787, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "675", + "id": "1374", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.009900000000000001", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/675", - "amount": "32494510805786446" + "denom": "gamm/pool/1374", + "amount": "6357562328258858205" }, - "liquidityUsd": 0.16926371530372858, - "liquidity24hUsdChange": -1.4264488973729843, + "liquidityUsd": 0.12649973764161304, + "liquidity24hUsdChange": -1.1370961990921566, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0014228037303272174, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "102011210429098110" - }, - "weight": "357878149939200" - }, - { - "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "2654918" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "80706" }, - "weight": "357985524121600" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", - "amount": "132259976144721260" + "denom": "uosmo", + "amount": "50661" }, - "weight": "357878149939200" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -32531,8 +33161,8 @@ "denom": "gamm/pool/36", "amount": "13626758674126858" }, - "liquidityUsd": 0.16777260289702467, - "liquidity24hUsdChange": -4.502731435035546, + "liquidityUsd": 0.12297040353645097, + "liquidity24hUsdChange": -1.772834860595589, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32567,8 +33197,8 @@ "denom": "gamm/pool/268", "amount": "1700000000000000000" }, - "liquidityUsd": 0.16513800485687707, - "liquidity24hUsdChange": -4.18224845273519, + "liquidityUsd": 0.11930367655797827, + "liquidity24hUsdChange": -3.961761343415674, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32591,6 +33221,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1042", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1042", + "amount": "577160641567066" + }, + "liquidityUsd": 0.1174035931892063, + "liquidity24hUsdChange": -3.2086224506025163, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "amount": "1049" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "amount": "9625" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "385", @@ -32603,8 +33269,8 @@ "denom": "gamm/pool/385", "amount": "57790109919032317" }, - "liquidityUsd": 0.15829679175458858, - "liquidity24hUsdChange": -4.536788150195995, + "liquidityUsd": 0.11471808771619103, + "liquidity24hUsdChange": -2.215023502368016, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32629,34 +33295,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "855", + "id": "750", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/855", - "amount": "4000000000000000000" + "denom": "gamm/pool/750", + "amount": "2251416340128547" }, - "liquidityUsd": 0.1579242748863519, - "liquidity24hUsdChange": -5.281114182574801, + "liquidityUsd": 0.11414844982329961, + "liquidity24hUsdChange": -4.736732561080087, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.14632307744823156, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "amount": "263691" + "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "amount": "32367390" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", - "amount": "1884493" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "2173150" }, "weight": "536870912000000" } @@ -32665,18 +33331,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "750", + "id": "1025", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/750", - "amount": "2231509120424372" + "denom": "gamm/pool/1025", + "amount": "840300108740289" }, - "liquidityUsd": 0.15776124330978897, - "liquidity24hUsdChange": -4.276279202718517, + "liquidityUsd": 0.11384108002238312, + "liquidity24hUsdChange": -2.866985634857242, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32684,15 +33350,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "amount": "31797390" + "denom": "ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46", + "amount": "15720234627318" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "2173150" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "38024925834173" }, "weight": "536870912000000" } @@ -32701,39 +33367,39 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1054", + "id": "105", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1054", - "amount": "297294216829176" + "denom": "gamm/pool/105", + "amount": "1000000000000000000" }, - "liquidityUsd": 0.1519796826657442, - "liquidity24hUsdChange": -12.535742017455817, - "volume24hUsd": 0.010772349642187536, - "volume24hUsdChange": 719.1499100193602, - "volume7dUsd": 0.034584487466153876, + "liquidityUsd": 0.11118573710045064, + "liquidity24hUsdChange": -1.3169140494153182, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "amount": "6190105597927" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "12926" }, - "weight": "5368709120" + "weight": "1020054732800000" }, { "token": { "denom": "uosmo", - "amount": "63369" + "amount": "7794" }, - "weight": "5368709120" + "weight": "53687091200000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -32747,8 +33413,8 @@ "denom": "gamm/pool/396", "amount": "781250000000000000" }, - "liquidityUsd": 0.15173096912429798, - "liquidity24hUsdChange": -4.551694430574073, + "liquidityUsd": 0.10941123179318453, + "liquidity24hUsdChange": -2.4105744252430887, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32783,8 +33449,8 @@ "denom": "gamm/pool/348", "amount": "50000000000000000" }, - "liquidityUsd": 0.15078486782651723, - "liquidity24hUsdChange": -4.540468513669602, + "liquidityUsd": 0.109139591350572, + "liquidity24hUsdChange": -2.26319040602457, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32807,6 +33473,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "687", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/687", + "amount": "100000000000000000000" + }, + "liquidityUsd": 0.10911891614742278, + "liquidity24hUsdChange": -3.8587598435904447, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "270982" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "amount": "15997741" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "376", @@ -32819,8 +33521,8 @@ "denom": "gamm/pool/376", "amount": "57600000000000000" }, - "liquidityUsd": 0.15014639074196395, - "liquidity24hUsdChange": -4.53428034074612, + "liquidityUsd": 0.10890278437250642, + "liquidity24hUsdChange": -2.1822453546674487, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32845,18 +33547,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "105", + "id": "285", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/105", - "amount": "1000000000000000000" + "denom": "gamm/pool/285", + "amount": "799999828357424" }, - "liquidityUsd": 0.14992874609333012, - "liquidity24hUsdChange": -4.467099836266099, + "liquidityUsd": 0.10828116620378586, + "liquidity24hUsdChange": -4.5423916693035125, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32864,35 +33566,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "12926" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "56359506" }, - "weight": "1020054732800000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "7794" + "amount": "44521" }, - "weight": "53687091200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "309", + "id": "855", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/309", - "amount": "6250000000000000000" + "denom": "gamm/pool/855", + "amount": "4000000000000000000" }, - "liquidityUsd": 0.147428488585013, - "liquidity24hUsdChange": -4.540440959541948, + "liquidityUsd": 0.10820808379461552, + "liquidity24hUsdChange": 0.37014882680961897, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32900,15 +33602,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6820" + "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "amount": "263691" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "57361" + "denom": "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", + "amount": "1884493" }, "weight": "536870912000000" } @@ -32917,18 +33619,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "743", + "id": "309", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/743", - "amount": "7080530966891149323" + "denom": "gamm/pool/309", + "amount": "6250000000000000000" }, - "liquidityUsd": 0.14736660620787165, - "liquidity24hUsdChange": -1.6684326064400203, + "liquidityUsd": 0.1067111958034938, + "liquidity24hUsdChange": -2.2628295116267045, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32936,15 +33638,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "923501488262017800" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6820" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "80306" + "denom": "uosmo", + "amount": "57361" }, "weight": "536870912000000" } @@ -32963,8 +33665,8 @@ "denom": "gamm/pool/417", "amount": "850000000000000000" }, - "liquidityUsd": 0.1467146314963234, - "liquidity24hUsdChange": -4.5328264431444545, + "liquidityUsd": 0.1064654190794283, + "liquidity24hUsdChange": -2.1632581880531556, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -32989,18 +33691,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1374", + "id": "458", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.009900000000000001", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1374", - "amount": "6357562328258858205" + "denom": "gamm/pool/458", + "amount": "9804078789893617021" }, - "liquidityUsd": 0.14562258124222766, - "liquidity24hUsdChange": -2.2417963138377495, + "liquidityUsd": 0.10240666843752506, + "liquidity24hUsdChange": -2.3281310605670886, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33008,15 +33710,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "80706" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6171" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "50661" + "amount": "58386" }, "weight": "536870912000000" } @@ -33025,18 +33727,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "458", + "id": "749", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/458", - "amount": "9804078789893617021" + "denom": "gamm/pool/749", + "amount": "1016620412909867372" }, - "liquidityUsd": 0.14171801947445084, - "liquidity24hUsdChange": -4.5454214800662305, + "liquidityUsd": 0.10223532041758679, + "liquidity24hUsdChange": -1.1734790346351787, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33045,34 +33747,55 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6171" + "amount": "12688" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "58386" + "denom": "ibc/49C2B2C444B7C5F0066657A4DBF19D676E0D185FF721CFD3E14FA253BCB9BC04", + "amount": "508018994228768600000" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo183snxykhzqr4qntr7ety7d85px9wmqs6c5a6nsjju5kfevhdevwsspl7r5", + "id": "1089", + "current_tick_liquidity": "63898.356786383795113390", + "token0": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "token0Amount": "81205", + "token1": "uosmo", + "token1Amount": "50391", + "current_sqrt_price": "0.787749955293976346622903062906641009", + "current_tick": "-3794501", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.10162148580189267, + "liquidity24hUsdChange": -2.654507356698313, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "285", + "id": "227", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/285", - "amount": "799999828357424" + "denom": "gamm/pool/227", + "amount": "812500000000000000" }, - "liquidityUsd": 0.14118092290666662, - "liquidity24hUsdChange": -1.7643258952697298, + "liquidityUsd": 0.09908598670267063, + "liquidity24hUsdChange": -2.2736056898585386, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33080,15 +33803,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "56359506" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6273" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "44521" + "amount": "53795" }, "weight": "536870912000000" } @@ -33107,8 +33830,8 @@ "denom": "gamm/pool/194", "amount": "100000000000000000" }, - "liquidityUsd": 0.13894890696938328, - "liquidity24hUsdChange": -4.284436554689427, + "liquidityUsd": 0.0967998447564406, + "liquidity24hUsdChange": -5.4202444273162245, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33133,96 +33856,39 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "749", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/749", - "amount": "1016620412909867372" - }, - "liquidityUsd": 0.13735186212022413, - "liquidity24hUsdChange": -4.455779495370142, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "12688" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/49C2B2C444B7C5F0066657A4DBF19D676E0D185FF721CFD3E14FA253BCB9BC04", - "amount": "508018994228768600000" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "227", + "id": "1054", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/227", - "amount": "812500000000000000" + "denom": "gamm/pool/1054", + "amount": "297294216829176" }, - "liquidityUsd": 0.1369315077632171, - "liquidity24hUsdChange": -4.541263577605231, + "liquidityUsd": 0.09475906019004335, + "liquidity24hUsdChange": -6.081763583613734, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume7dUsd": 0.007284359863301357, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6273" + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "amount": "7190104597927" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "53795" + "amount": "54708" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1dqspvcst7wa8het9zat6qvev0jjt5r63dckk0pxcarm6kkzf3vxqsxcshd", - "id": "1214", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", - "token0Amount": "55", - "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token1Amount": "38877354929393", - "current_sqrt_price": "1000047.762079042090624254942110019392248823", - "current_tick": "108000095", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.13680680907023968, - "liquidity24hUsdChange": -3.1697509287582624, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -33236,8 +33902,8 @@ "denom": "gamm/pool/131", "amount": "100000000000000000000" }, - "liquidityUsd": 0.1325827561680962, - "liquidity24hUsdChange": -4.622329000105182, + "liquidityUsd": 0.09333019801434345, + "liquidity24hUsdChange": -3.35427101982486, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33262,20 +33928,20 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo183snxykhzqr4qntr7ety7d85px9wmqs6c5a6nsjju5kfevhdevwsspl7r5", - "id": "1089", - "current_tick_liquidity": "63898.356786383795113390", - "token0": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", - "token0Amount": "81205", - "token1": "uosmo", - "token1Amount": "50391", - "current_sqrt_price": "0.787749955293976346622903062906641009", - "current_tick": "-3794501", + "address": "osmo1z85xnxpxn9rmrjgxv6xmuy9l9w5fa57260cpphlkdyqhtj5ul54q2fg3xg", + "id": "1609", + "current_tick_liquidity": "67526.249292051140834937", + "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "token0Amount": "734456", + "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "token1Amount": "6414", + "current_sqrt_price": "0.091969852403899136059843539226729362", + "current_tick": "-19541547", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.13103000660392594, - "liquidity24hUsdChange": -2.7348818174488514, + "spread_factor": "0.005000000000000000", + "liquidityUsd": 0.09273536645397004, + "liquidity24hUsdChange": -2.8875292195120554, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33283,18 +33949,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "35", + "id": "798", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/35", - "amount": "2638218570427470217" + "denom": "gamm/pool/798", + "amount": "5000000000000000" }, - "liquidityUsd": 0.13002680807449177, - "liquidity24hUsdChange": -3.791308525585245, + "liquidityUsd": 0.0921042603514755, + "liquidity24hUsdChange": -2.2417334179604045, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33302,35 +33968,35 @@ "pool_assets": [ { "token": { - "denom": "uion", - "amount": "303" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "5995" }, - "weight": "1020054732800000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "7723" + "amount": "48540" }, - "weight": "53687091200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "687", + "id": "951", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/687", - "amount": "100000000000000000000" + "denom": "gamm/pool/951", + "amount": "100394030521432095836" }, - "liquidityUsd": 0.12981594737388638, - "liquidity24hUsdChange": -4.025202925808424, + "liquidityUsd": 0.09163712829501781, + "liquidity24hUsdChange": -3.393444051277477, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33338,56 +34004,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "270982" + "denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", + "amount": "566697597" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "amount": "15997741" + "denom": "uosmo", + "amount": "101557" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1z85xnxpxn9rmrjgxv6xmuy9l9w5fa57260cpphlkdyqhtj5ul54q2fg3xg", - "id": "1609", - "current_tick_liquidity": "67526.249292051140834937", - "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "token0Amount": "734456", - "token1": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "token1Amount": "6414", - "current_sqrt_price": "0.091969852403899136059843539226729362", - "current_tick": "-19541547", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 0.12975228052850107, - "liquidity24hUsdChange": -5.7377285648795295, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 16.40839957975712, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1042", + "id": "35", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1042", - "amount": "577160641567066" + "denom": "gamm/pool/35", + "amount": "2638218570427470217" }, - "liquidityUsd": 0.1292161636078128, - "liquidity24hUsdChange": -6.571706924333531, + "liquidityUsd": 0.08935683477809073, + "liquidity24hUsdChange": -8.246054286668013, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33395,35 +34040,35 @@ "pool_assets": [ { "token": { - "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "amount": "1049" + "denom": "uion", + "amount": "303" }, - "weight": "536870912000000" + "weight": "1020054732800000" }, { "token": { - "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", - "amount": "9625" + "denom": "uosmo", + "amount": "7723" }, - "weight": "536870912000000" + "weight": "53687091200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "798", + "id": "1345", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/798", - "amount": "5000000000000000" + "denom": "gamm/pool/1345", + "amount": "134809670179857824" }, - "liquidityUsd": 0.12717939233556286, - "liquidity24hUsdChange": -4.538829723743607, + "liquidityUsd": 0.0875576510428164, + "liquidity24hUsdChange": -2.2495627333248445, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33432,14 +34077,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5995" + "amount": "5565" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "48540" + "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "amount": "38488" }, "weight": "536870912000000" } @@ -33448,54 +34093,68 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1345", + "id": "809", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1345", - "amount": "134809670179857824" + "denom": "gamm/pool/809", + "amount": "1000000000000000000" }, - "liquidityUsd": 0.12082200000437232, - "liquidity24hUsdChange": -4.518784750223697, - "volume24hUsd": 5.453810706856814e-05, - "volume24hUsdChange": null, - "volume7dUsd": 0.0013332439414374365, + "liquidityUsd": 0.08745567415413306, + "liquidity24hUsdChange": -2.8084454341449323, + "volume24hUsd": 0.000004380591281724306, + "volume24hUsdChange": -99.08037575063034, + "volume7dUsd": 0.0004807263688889333, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5565" + "amount": "3299" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { - "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", - "amount": "38488" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "97061" }, - "weight": "536870912000000" + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "amount": "928225" + }, + "weight": "268435456000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "24727" + }, + "weight": "268435456000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "809", + "id": "245", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/809", - "amount": "1000000000000000000" + "denom": "gamm/pool/245", + "amount": "390625000000000000" }, - "liquidityUsd": 0.12044374095885796, - "liquidity24hUsdChange": -5.243705517240151, + "liquidityUsd": 0.08574178870247562, + "liquidity24hUsdChange": -2.348092863896043, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33504,30 +34163,16 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "3299" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "97061" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "amount": "906298" + "amount": "5071" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "25323" + "amount": "49740" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -33544,8 +34189,8 @@ "denom": "gamm/pool/525", "amount": "132300000000000000" }, - "liquidityUsd": 0.11873102609520289, - "liquidity24hUsdChange": -5.299244349668198, + "liquidityUsd": 0.08485663058916146, + "liquidity24hUsdChange": -2.7767108648052186, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33570,18 +34215,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "245", + "id": "517", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/245", - "amount": "390625000000000000" + "denom": "gamm/pool/517", + "amount": "195212786331296654" }, - "liquidityUsd": 0.11871649773304929, - "liquidity24hUsdChange": -4.546941864341765, + "liquidityUsd": 0.08441443426450122, + "liquidity24hUsdChange": -2.189202269839355, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33590,14 +34235,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5071" + "amount": "5742" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "49740" + "amount": "42277" }, "weight": "536870912000000" } @@ -33606,18 +34251,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "517", + "id": "449", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/517", - "amount": "195212786331296654" + "denom": "gamm/pool/449", + "amount": "32400000000000000" }, - "liquidityUsd": 0.11640454904629084, - "liquidity24hUsdChange": -4.534812826669245, + "liquidityUsd": 0.08396413540135336, + "liquidity24hUsdChange": -4.458501968801185, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33625,15 +34270,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5742" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "40476185" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "42277" + "amount": "38844" }, "weight": "536870912000000" } @@ -33642,18 +34287,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "449", + "id": "991", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/449", - "amount": "32400000000000000" + "denom": "gamm/pool/991", + "amount": "2751836319408357739" }, - "liquidityUsd": 0.11020794352078866, - "liquidity24hUsdChange": -1.9994502496446191, + "liquidityUsd": 0.08011328053895858, + "liquidity24hUsdChange": -0.970622507855832, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33661,15 +34306,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "40476185" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "4843534" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "38844" + "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", + "amount": "445563" }, "weight": "536870912000000" } @@ -33688,8 +34333,8 @@ "denom": "gamm/pool/115", "amount": "16250000000000000000" }, - "liquidityUsd": 0.10954015978511214, - "liquidity24hUsdChange": -4.549872191986713, + "liquidityUsd": 0.07903640873537583, + "liquidity24hUsdChange": -2.3866027381258452, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33713,40 +34358,59 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "991", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1236", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/991", - "amount": "2751836319408357739" + "denom": "gamm/pool/1236", + "amount": "117025453291684876" }, - "liquidityUsd": 0.10949534257486515, - "liquidity24hUsdChange": -9.23041942121467, + "liquidityUsd": 0.07856507500939494, + "liquidity24hUsdChange": -2.539493412841448, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "4843534" - }, - "weight": "536870912000000" + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "amount": "32665" }, { - "token": { - "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", - "amount": "445563" - }, - "weight": "536870912000000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "46011" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo19tfxl29ycvmzzttpyujavwwnrsnhfmul56aref5z2t0qrdr76gfqsff847", + "id": "1600", + "current_tick_liquidity": "163825.580721402206258427", + "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "token0Amount": "617216", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "43905", + "current_sqrt_price": "0.265609019744399679123344697555430277", + "current_tick": "-11945185", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 0.07844951340553943, + "liquidity24hUsdChange": -2.144843043940068, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 3348.572611104495, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -33760,11 +34424,11 @@ "denom": "gamm/pool/283", "amount": "200000000000000000" }, - "liquidityUsd": 0.10800726965383127, - "liquidity24hUsdChange": -6.913305391279735, + "liquidityUsd": 0.07841522843899168, + "liquidity24hUsdChange": -3.3655333759648687, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0053369283104514375, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -33786,18 +34450,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "97", + "id": "17", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/97", - "amount": "200000000000000000" + "denom": "gamm/pool/17", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.10535411442434173, - "liquidity24hUsdChange": -4.548129442858946, + "liquidityUsd": 0.0780527803958611, + "liquidity24hUsdChange": -2.043889257604621, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33806,14 +34470,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4432" + "amount": "5850" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "44717" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "23038250" }, "weight": "536870912000000" } @@ -33822,18 +34486,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "17", + "id": "97", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/17", - "amount": "100000000000000000000" + "denom": "gamm/pool/97", + "amount": "200000000000000000" }, - "liquidityUsd": 0.10474274225157992, - "liquidity24hUsdChange": -6.254638497701275, + "liquidityUsd": 0.07606059349730007, + "liquidity24hUsdChange": -2.3636940584425665, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33842,14 +34506,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5850" + "amount": "4432" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "23038250" + "denom": "uosmo", + "amount": "44717" }, "weight": "536870912000000" } @@ -33858,18 +34522,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "515", + "id": "740", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/515", - "amount": "2791522022838499184" + "denom": "gamm/pool/740", + "amount": "10000000000000000" }, - "liquidityUsd": 0.1047390527235155, - "liquidity24hUsdChange": -5.406902342665908, + "liquidityUsd": 0.07516469857298697, + "liquidity24hUsdChange": -2.226107936539587, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33877,15 +34541,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "180622" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "4958" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "42801" + "amount": "39027" }, "weight": "536870912000000" } @@ -33894,18 +34558,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "740", + "id": "515", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/740", - "amount": "10000000000000000" + "denom": "gamm/pool/515", + "amount": "2791522022838499184" }, - "liquidityUsd": 0.10374742210216446, - "liquidity24hUsdChange": -4.537635603342517, + "liquidityUsd": 0.07504989294068795, + "liquidity24hUsdChange": -2.6785129812333, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33913,15 +34577,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4958" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "180622" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "39027" + "amount": "42801" }, "weight": "536870912000000" } @@ -33940,8 +34604,8 @@ "denom": "gamm/pool/122", "amount": "507812500000000000" }, - "liquidityUsd": 0.10241583658638032, - "liquidity24hUsdChange": -4.15601050059176, + "liquidityUsd": 0.07377584150068883, + "liquidity24hUsdChange": -4.2287425154595, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -33976,8 +34640,8 @@ "denom": "gamm/pool/212", "amount": "100000000000000000000" }, - "liquidityUsd": 0.09857219777134217, - "liquidity24hUsdChange": -7.102370768038889, + "liquidityUsd": 0.07175568855083266, + "liquidity24hUsdChange": -3.3632452796111845, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34002,18 +34666,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "942", + "id": "1032", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.006000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/942", - "amount": "10767525927057555" + "denom": "gamm/pool/1032", + "amount": "1397541623940404001" }, - "liquidityUsd": 0.09549538397936105, - "liquidity24hUsdChange": -4.465491983209199, + "liquidityUsd": 0.07033852783943711, + "liquidity24hUsdChange": -2.4377653893844475, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34021,42 +34685,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "2823954770099856" - }, - "weight": "107374182400000" - }, - { - "token": { - "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", - "amount": "4226446256808866" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "465154062" }, - "weight": "858993459200000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", - "amount": "6354" + "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "amount": "424015" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "193", + "id": "942", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.006000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/193", - "amount": "25000000000000000000" + "denom": "gamm/pool/942", + "amount": "10767525927057555" }, - "liquidityUsd": 0.09459122582956365, - "liquidity24hUsdChange": -5.964338155886936, + "liquidityUsd": 0.0696419624009669, + "liquidity24hUsdChange": -3.8632004616525384, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34064,107 +34721,78 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "16055500" + "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "amount": "2823954770099856" }, - "weight": "322122547200000" + "weight": "107374182400000" }, { "token": { - "denom": "uosmo", - "amount": "51227" - }, - "weight": "751619276800000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "527", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/527", - "amount": "100000000000000000000" - }, - "liquidityUsd": 0.09291249035928381, - "liquidity24hUsdChange": -4.608472169657851, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "213850" + "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", + "amount": "4226446256808866" }, - "weight": "805306368000000" + "weight": "858993459200000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "33680" + "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", + "amount": "6354" }, - "weight": "268435456000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1459", + "id": "63", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1459", - "amount": "20000000000000000" + "denom": "gamm/pool/63", + "amount": "181925888504990182" }, - "liquidityUsd": 0.09241638415524125, - "liquidity24hUsdChange": -5.390795013831597, + "liquidityUsd": 0.06848660028363439, + "liquidity24hUsdChange": -1.1699611995804193, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.00042725233419558194, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", - "amount": "15502818079565740" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "8392" }, - "weight": "536870912000000" + "weight": "1063004405760000" }, { "token": { - "denom": "uosmo", - "amount": "36180" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "31807" }, - "weight": "536870912000000" + "weight": "10737418240000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "63", + "id": "193", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/63", - "amount": "181925888504990182" + "denom": "gamm/pool/193", + "amount": "25000000000000000000" }, - "liquidityUsd": 0.0920822762923022, - "liquidity24hUsdChange": -4.4532005882662515, + "liquidityUsd": 0.06776852555746461, + "liquidity24hUsdChange": -3.3770596301762636, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34172,17 +34800,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "8392" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "16055500" }, - "weight": "1063004405760000" + "weight": "322122547200000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "31807" + "denom": "uosmo", + "amount": "51227" }, - "weight": "10737418240000" + "weight": "751619276800000" } ], "total_weight": "1073741824000000" @@ -34199,30 +34827,51 @@ "denom": "gamm/pool/1034", "amount": "100000000000000000000" }, - "liquidityUsd": 0.09113064493899897, - "liquidity24hUsdChange": -4.625215344977822, + "liquidityUsd": 0.06768408510036315, + "liquidity24hUsdChange": -3.393444051277491, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.0048049908278222, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "amount": "1438" + "amount": "1363" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "71024" + "amount": "75011" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1fjkl28kzugrtp498484emfw262fpv4sncvkdue2mlpvyhh8506mqxkyqhx", + "id": "1080", + "current_tick_liquidity": "17592.068915072767872775", + "token0": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "token0Amount": "31274", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "35811", + "current_sqrt_price": "1.000023126462396801099575347950356390", + "current_tick": "46", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.06714065767548014, + "liquidity24hUsdChange": 0.15112201151631408, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1467", @@ -34235,11 +34884,11 @@ "denom": "gamm/pool/1467", "amount": "26699460317460318" }, - "liquidityUsd": 0.08992884977607657, - "liquidity24hUsdChange": -5.509441567385658, + "liquidityUsd": 0.06609722268753573, + "liquidity24hUsdChange": -4.66710426100695, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.001402791495568222, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -34273,6 +34922,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "527", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/527", + "amount": "100000000000000000000" + }, + "liquidityUsd": 0.06545737402672727, + "liquidity24hUsdChange": -2.1498211852320774, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "213850" + }, + "weight": "805306368000000" + }, + { + "token": { + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "33680" + }, + "weight": "268435456000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "224", @@ -34285,8 +34970,8 @@ "denom": "gamm/pool/224", "amount": "3900000000000000000" }, - "liquidityUsd": 0.08947222317730408, - "liquidity24hUsdChange": -4.5395381120142195, + "liquidityUsd": 0.06478107694582386, + "liquidity24hUsdChange": -2.2510066551186063, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34321,8 +35006,8 @@ "denom": "gamm/pool/550", "amount": "23133093750000000000" }, - "liquidityUsd": 0.08943451930518995, - "liquidity24hUsdChange": -5.448503906102023, + "liquidityUsd": 0.06414743077386593, + "liquidity24hUsdChange": -2.640589723504807, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34347,18 +35032,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1032", + "id": "1371", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.001800000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1032", - "amount": "1397541623940404001" + "denom": "gamm/pool/1371", + "amount": "3996859440865934" + }, + "liquidityUsd": 0.0640751307315084, + "liquidity24hUsdChange": -1.9935884974178923, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0.02781853773586722, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "34889" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "amount": "59136" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "775", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/775", + "amount": "55000000000000000" }, - "liquidityUsd": 0.0888585596336517, - "liquidity24hUsdChange": -5.296533479603852, + "liquidityUsd": 0.06379987549180328, + "liquidity24hUsdChange": 0.028598844100007646, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34366,15 +35087,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "465154062" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "31847646228379800" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "amount": "424015" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "31933" }, "weight": "536870912000000" } @@ -34393,8 +35114,8 @@ "denom": "gamm/pool/72", "amount": "163350000000000000" }, - "liquidityUsd": 0.0872314230185816, - "liquidity24hUsdChange": -4.246799858664868, + "liquidityUsd": 0.06346970043942715, + "liquidity24hUsdChange": -3.3045692693823874, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34419,34 +35140,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1458", + "id": "158", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1458", - "amount": "62079033720646884" + "denom": "gamm/pool/158", + "amount": "475000000000000000" }, - "liquidityUsd": 0.08271225558640402, - "liquidity24hUsdChange": -6.721272511985735, + "liquidityUsd": 0.06325946512569172, + "liquidity24hUsdChange": -4.64697664475937, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.003761150880594817, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", - "amount": "8130290149767749" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "35962614" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "3505" + "denom": "uosmo", + "amount": "21943" }, "weight": "536870912000000" } @@ -34455,34 +35176,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "158", + "id": "1459", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/158", - "amount": "475000000000000000" + "denom": "gamm/pool/1459", + "amount": "20000000000000000" }, - "liquidityUsd": 0.08179066050104877, - "liquidity24hUsdChange": -1.4645333746180897, + "liquidityUsd": 0.062370228435960726, + "liquidity24hUsdChange": -3.5092669870371793, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0038625821162530825, + "volume7dUsd": 0.000474353987589016, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "35962614" + "denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", + "amount": "15723017643644952" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "21943" + "amount": "35676" }, "weight": "536870912000000" } @@ -34491,18 +35212,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "926", + "id": "1458", "pool_params": { - "exit_fee": "0.010000000000000000", - "swap_fee": "0.010000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/926", - "amount": "38266003695264" + "denom": "gamm/pool/1458", + "amount": "62079033720646884" }, - "liquidityUsd": 0.07967544965308097, - "liquidity24hUsdChange": -4.6252153449778275, + "liquidityUsd": 0.062277606953447896, + "liquidity24hUsdChange": -8.049528981502295, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34510,20 +35231,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", - "amount": "2598571" + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "amount": "8130290149767749" }, - "weight": "536870912000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "61763" + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "3505" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "542239621120" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -34537,8 +35258,8 @@ "denom": "gamm/pool/401", "amount": "1000000000000000000" }, - "liquidityUsd": 0.07913094187044087, - "liquidity24hUsdChange": -1.5881207250474019, + "liquidityUsd": 0.06099186967530181, + "liquidity24hUsdChange": -4.604179546284777, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34562,53 +35283,134 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1236", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1442", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.200000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1236", - "amount": "117025453291684876" + "denom": "gamm/pool/1442", + "amount": "9236732489495918" }, - "liquidityUsd": 0.07855667284483948, - "liquidity24hUsdChange": -0.7101445706612318, + "liquidityUsd": 0.0576983121781227, + "liquidity24hUsdChange": -7.1378908058969195, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.02454259734007444, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "amount": "32665" + "token": { + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "amount": "2796" + }, + "weight": "536870912000000" }, { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "46011" + "token": { + "denom": "uosmo", + "amount": "33841" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "711", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/711", + "amount": "28640720478423" + }, + "liquidityUsd": 0.05746766119350815, + "liquidity24hUsdChange": 0.02862237567563967, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "28710326209889416" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "28740" + }, + "weight": "536870912000000" + } ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "545", + "id": "53", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/545", - "amount": "12000000000000000" + "denom": "gamm/pool/53", + "amount": "11214636186952874020" + }, + "liquidityUsd": 0.056701736681092185, + "liquidity24hUsdChange": -3.603549974590823, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "6819" + }, + "weight": "354334801920000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "55401" + }, + "weight": "354334801920000" + }, + { + "token": { + "denom": "uosmo", + "amount": "16388" + }, + "weight": "365072220160000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "926", + "pool_params": { + "exit_fee": "0.010000000000000000", + "swap_fee": "0.010000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/926", + "amount": "38266003695264" }, - "liquidityUsd": 0.076248734900563, - "liquidity24hUsdChange": -4.3311988273647355, + "liquidityUsd": 0.056029458883048326, + "liquidity24hUsdChange": -3.3934440512774833, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34616,35 +35418,35 @@ "pool_assets": [ { "token": { - "denom": "uion", - "amount": "63" + "denom": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", + "amount": "2598571" }, - "weight": "536870912000000" + "weight": "536870912000" }, { "token": { "denom": "uosmo", - "amount": "39961" + "amount": "61763" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "542239621120" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1442", + "id": "435", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.200000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1442", - "amount": "9236732489495918" + "denom": "gamm/pool/435", + "amount": "19751688393236874" }, - "liquidityUsd": 0.07615841463399553, - "liquidity24hUsdChange": -5.607640453009796, + "liquidityUsd": 0.05484006533927831, + "liquidity24hUsdChange": -2.394459691872763, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34652,15 +35454,15 @@ "pool_assets": [ { "token": { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "amount": "2796" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "3101" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "33841" + "amount": "33085" }, "weight": "536870912000000" } @@ -34669,18 +35471,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "435", + "id": "244", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/435", - "amount": "19751688393236874" + "denom": "gamm/pool/244", + "amount": "37550000000000000" }, - "liquidityUsd": 0.07602061397388718, - "liquidity24hUsdChange": -4.550469603536538, + "liquidityUsd": 0.054106522795747805, + "liquidity24hUsdChange": -2.0456824324674305, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34689,34 +35491,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "3101" + "amount": "4113" }, - "weight": "536870912000000" + "weight": "644245094400000" }, { "token": { "denom": "uosmo", - "amount": "33085" + "amount": "23235" }, - "weight": "536870912000000" + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1371", + "id": "446", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001800000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1371", - "amount": "3996859440865934" + "denom": "gamm/pool/446", + "amount": "1100000000000000000" }, - "liquidityUsd": 0.07586364652078856, - "liquidity24hUsdChange": -3.2541093528220557, + "liquidityUsd": 0.05400376336785147, + "liquidity24hUsdChange": -2.2473914501923016, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34724,15 +35526,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "41967" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "3498" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", - "amount": "49146" + "denom": "uosmo", + "amount": "28613" }, "weight": "536870912000000" } @@ -34741,18 +35543,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "590", + "id": "893", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.003500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/590", - "amount": "621600000000000" + "denom": "gamm/pool/893", + "amount": "46081264034805102" }, - "liquidityUsd": 0.07490937648223099, - "liquidity24hUsdChange": -3.3526827227667284, + "liquidityUsd": 0.05323068619650189, + "liquidity24hUsdChange": -3.5700007536312626, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34760,15 +35562,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "25943" + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "17931635754823" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "1255159" + "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", + "amount": "85" }, "weight": "536870912000000" } @@ -34777,18 +35579,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "446", + "id": "545", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/446", - "amount": "1100000000000000000" + "denom": "gamm/pool/545", + "amount": "12000000000000000" }, - "liquidityUsd": 0.07458026484032294, - "liquidity24hUsdChange": -4.539261969537391, + "liquidityUsd": 0.05318791454147799, + "liquidity24hUsdChange": -5.145790627390342, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34796,15 +35598,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "3498" + "denom": "uion", + "amount": "63" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "28613" + "amount": "39961" }, "weight": "536870912000000" } @@ -34813,18 +35615,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "244", + "id": "126", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/244", - "amount": "37550000000000000" + "denom": "gamm/pool/126", + "amount": "6103515625000000" }, - "liquidityUsd": 0.0743373535189435, - "liquidity24hUsdChange": -4.5238034288667395, + "liquidityUsd": 0.05226870867611429, + "liquidity24hUsdChange": -3.7532097707109564, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34832,17 +35634,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4113" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "95672" }, - "weight": "644245094400000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "23235" + "amount": "26680" }, - "weight": "429496729600000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -34859,8 +35661,8 @@ "denom": "gamm/pool/354", "amount": "766800094490" }, - "liquidityUsd": 0.07416810937223892, - "liquidity24hUsdChange": -4.6252153449778275, + "liquidityUsd": 0.05215782825374135, + "liquidity24hUsdChange": -3.3934440512774686, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34885,18 +35687,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "594", + "id": "590", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/594", - "amount": "100000000000000000000" + "denom": "gamm/pool/590", + "amount": "621600000000000" }, - "liquidityUsd": 0.07370287923122043, - "liquidity24hUsdChange": -5.959919551461422, + "liquidityUsd": 0.05140647563112136, + "liquidity24hUsdChange": -1.4759012502005613, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34904,15 +35706,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "17457149" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "25943" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "1671304" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "1255159" }, "weight": "536870912000000" } @@ -34921,18 +35723,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "26", + "id": "594", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/26", - "amount": "3125000000000000000" + "denom": "gamm/pool/594", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.07111794076591334, - "liquidity24hUsdChange": -5.958328703578916, + "liquidityUsd": 0.05118552412147591, + "liquidity24hUsdChange": -3.2982511399394685, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34941,34 +35743,34 @@ { "token": { "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "16627063" + "amount": "17457149" }, - "weight": "322122547200000" + "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "104" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "1671304" }, - "weight": "751619276800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "238", + "id": "821", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003800000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/238", - "amount": "175485769020251778872" + "denom": "gamm/pool/821", + "amount": "13423941417426285357" }, - "liquidityUsd": 0.06906573495084381, - "liquidity24hUsdChange": -4.547822306541677, + "liquidityUsd": 0.050947530567026146, + "liquidity24hUsdChange": -3.736153226739161, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -34977,14 +35779,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2917" + "amount": "2947" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "29217" + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "490912541464071300" }, "weight": "536870912000000" } @@ -34993,54 +35795,75 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "821", + "id": "26", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003800000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/821", - "amount": "13423941417426285357" + "denom": "gamm/pool/26", + "amount": "3125000000000000000" }, - "liquidityUsd": 0.06755016919574607, - "liquidity24hUsdChange": -4.003232120425137, + "liquidityUsd": 0.05059072279380196, + "liquidity24hUsdChange": -6.373331059453169, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.007404464695142645, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2947" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "16627063" }, - "weight": "536870912000000" + "weight": "322122547200000" }, { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "490912541464071300" + "denom": "uion", + "amount": "104" }, - "weight": "536870912000000" + "weight": "751619276800000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1shfaq3rwe28n239g253uheuck6wnsc3mnfhfp5n2xtgrwuf9p5nss5h56u", + "id": "1610", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", + "token0Amount": "99", + "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "token1Amount": "81", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 0.049921461563788176, + "liquidity24hUsdChange": -3.877817198784371, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "668", + "id": "238", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/668", - "amount": "2182260677800813" + "denom": "gamm/pool/238", + "amount": "175485769020251778872" }, - "liquidityUsd": 0.06739631086016631, - "liquidity24hUsdChange": -4.0501501431812335, + "liquidityUsd": 0.04986727782100902, + "liquidity24hUsdChange": -2.3596584623007377, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35049,80 +35872,52 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2989" + "amount": "2917" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "1383739" + "denom": "uosmo", + "amount": "29217" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fjkl28kzugrtp498484emfw262fpv4sncvkdue2mlpvyhh8506mqxkyqhx", - "id": "1080", - "current_tick_liquidity": "17592.068915072767872775", - "token0": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "token0Amount": "31274", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "35811", - "current_sqrt_price": "1.000023126462396801099575347950356390", - "current_tick": "46", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.06703715002320021, - "liquidity24hUsdChange": -0.11933330823977077, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "53", + "id": "668", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/53", - "amount": "11214636186952874020" + "denom": "gamm/pool/668", + "amount": "2182260677800813" }, - "liquidityUsd": 0.0668988870206781, - "liquidity24hUsdChange": -5.780392756170018, + "liquidityUsd": 0.04706734872625097, + "liquidity24hUsdChange": -2.204153659102643, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.004534335527775358, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "6819" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "55401" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2989" }, - "weight": "354334801920000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "16388" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "1383739" }, - "weight": "365072220160000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -35139,8 +35934,8 @@ "denom": "gamm/pool/222", "amount": "3281000000000000000" }, - "liquidityUsd": 0.06628046507604543, - "liquidity24hUsdChange": -4.4100038027155675, + "liquidityUsd": 0.046536007681924, + "liquidity24hUsdChange": -1.9224815682021608, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35165,34 +35960,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1625", + "id": "88", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1625", - "amount": "1553560400700457" + "denom": "gamm/pool/88", + "amount": "86400000000000000" }, - "liquidityUsd": 0.0649670883540376, - "liquidity24hUsdChange": -3.0776458961279682, - "volume24hUsd": 0.1353202213260707, - "volume24hUsdChange": 105.72980326138793, - "volume7dUsd": 34.6174800706206, + "liquidityUsd": 0.04543170614303947, + "liquidity24hUsdChange": -3.3679349771960245, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "amount": "699644" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "16756273" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "50276" + "amount": "25430" }, "weight": "536870912000000" } @@ -35201,18 +35996,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "126", + "id": "62", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/126", - "amount": "6103515625000000" + "denom": "gamm/pool/62", + "amount": "550000000000000" }, - "liquidityUsd": 0.06457212730499724, - "liquidity24hUsdChange": -4.709235267864393, + "liquidityUsd": 0.04526281607226031, + "liquidity24hUsdChange": -3.468682840655821, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35220,35 +36015,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "95672" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "11376" }, - "weight": "536870912000000" + "weight": "966367641600000" }, { "token": { - "denom": "uosmo", - "amount": "26680" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "8739" }, - "weight": "536870912000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "775", + "id": "82", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/775", - "amount": "55000000000000000" + "denom": "gamm/pool/82", + "amount": "100000000000000000" }, - "liquidityUsd": 0.06378814317627908, - "liquidity24hUsdChange": 0.05567827756840015, + "liquidityUsd": 0.044763753554870715, + "liquidity24hUsdChange": -2.4650112450049955, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35256,15 +36051,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "31847646228379800" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "7307" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "31933" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "636396" }, "weight": "536870912000000" } @@ -35273,18 +36068,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "893", + "id": "241", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003500000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/893", - "amount": "46081264034805102" + "denom": "gamm/pool/241", + "amount": "47607761237530807" }, - "liquidityUsd": 0.06302979939019017, - "liquidity24hUsdChange": -2.294333529139847, + "liquidityUsd": 0.04426918396216015, + "liquidity24hUsdChange": -2.3881114117369284, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35292,15 +36087,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "17931635754823" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2519" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", - "amount": "85" + "denom": "uosmo", + "amount": "26567" }, "weight": "536870912000000" } @@ -35308,40 +36103,38 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "88", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1062", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/88", - "amount": "86400000000000000" + "denom": "gamm/pool/1062", + "amount": "2195167052307535079" }, - "liquidityUsd": 0.06275092475526992, - "liquidity24hUsdChange": -6.71510551318628, + "liquidityUsd": 0.04422704942146275, + "liquidity24hUsdChange": -0.09445373600894648, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "16756273" - }, - "weight": "536870912000000" + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "23779" }, { - "token": { - "denom": "uosmo", - "amount": "25430" - }, - "weight": "536870912000000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "20451" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -35355,8 +36148,8 @@ "denom": "gamm/pool/1004", "amount": "2122641303869900" }, - "liquidityUsd": 0.06257612918676289, - "liquidity24hUsdChange": -4.512103662880775, + "liquidityUsd": 0.044108086260662725, + "liquidity24hUsdChange": -3.074887064076861, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35391,8 +36184,8 @@ "denom": "gamm/pool/507", "amount": "50000000000000000" }, - "liquidityUsd": 0.06175987285743974, - "liquidity24hUsdChange": -5.228992382793026, + "liquidityUsd": 0.04406532734249891, + "liquidity24hUsdChange": -2.840835388109252, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35417,18 +36210,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "241", + "id": "676", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/241", - "amount": "47607761237530807" + "denom": "gamm/pool/676", + "amount": "3162042095490133" }, - "liquidityUsd": 0.061357045563432744, - "liquidity24hUsdChange": -4.549986917272652, + "liquidityUsd": 0.044058968446146554, + "liquidity24hUsdChange": -0.6096067678051389, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35436,15 +36229,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2519" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "20308902403461417" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "26567" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2946" }, "weight": "536870912000000" } @@ -35453,34 +36246,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "986", + "id": "721", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/986", - "amount": "4234531383693013191" + "denom": "gamm/pool/721", + "amount": "2529083663432655" }, - "liquidityUsd": 0.059806410385949554, - "liquidity24hUsdChange": 21.39248211559594, - "volume24hUsd": 0.013450819453416845, - "volume24hUsdChange": null, - "volume7dUsd": 0.013450819453416845, + "liquidityUsd": 0.04374184780145948, + "liquidity24hUsdChange": -3.2717824554594808, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", - "amount": "845653" + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "37" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "46611" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "7014611181830" }, "weight": "536870912000000" } @@ -35499,8 +36292,8 @@ "denom": "gamm/pool/460", "amount": "16000000000000000" }, - "liquidityUsd": 0.0592343611824555, - "liquidity24hUsdChange": -4.529947705387858, + "liquidityUsd": 0.04302554880943676, + "liquidity24hUsdChange": -2.1256977107661394, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35535,8 +36328,8 @@ "denom": "gamm/pool/375", "amount": "10937500000000000" }, - "liquidityUsd": 0.05902311585815153, - "liquidity24hUsdChange": -4.541602957763297, + "liquidityUsd": 0.04270528027122873, + "liquidity24hUsdChange": -2.2780526141793764, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35559,54 +36352,20 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1668", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1668", - "amount": "2750000000000000000" - }, - "liquidityUsd": 0.05838211026176952, - "liquidity24hUsdChange": -97.89737646363719, - "volume24hUsd": 0.01188595324578213, - "volume24hUsdChange": null, - "volume7dUsd": 0.01188595324578213, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "16722" - }, - { - "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "amount": "3650588516875" - } - ], - "scaling_factors": [ - "1", - "100" - ], - "scaling_factor_controller": "" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "239", + "id": "986", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/239", - "amount": "25000000000000000000" + "denom": "gamm/pool/986", + "amount": "4234531383693013191" }, - "liquidityUsd": 0.05759829538708369, - "liquidity24hUsdChange": -4.545105376220908, + "liquidityUsd": 0.04205813668146042, + "liquidity24hUsdChange": -3.3934440512774735, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35614,15 +36373,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2518" + "denom": "ibc/BCDB35B7390806F35E716D275E1E017999F8281A81B6F128F087EF34D1DFA761", + "amount": "845653" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "23646" + "amount": "46611" }, "weight": "536870912000000" } @@ -35631,18 +36390,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "711", + "id": "239", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/711", - "amount": "28640720478423" + "denom": "gamm/pool/239", + "amount": "25000000000000000000" }, - "liquidityUsd": 0.057457084631476474, - "liquidity24hUsdChange": 0.05572411137285771, + "liquidityUsd": 0.04162544338920169, + "liquidity24hUsdChange": -2.323982406118131, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35650,56 +36409,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "28710326209889416" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2518" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "28740" + "denom": "uosmo", + "amount": "23646" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1shfaq3rwe28n239g253uheuck6wnsc3mnfhfp5n2xtgrwuf9p5nss5h56u", - "id": "1610", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", - "token0Amount": "99", - "token1": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "token1Amount": "81", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 0.05629174524823925, - "liquidity24hUsdChange": -3.417540138277888, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 58.133150031664954, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "82", + "id": "533", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/82", - "amount": "100000000000000000" + "denom": "gamm/pool/533", + "amount": "59992680000000000" }, - "liquidityUsd": 0.05505955174397072, - "liquidity24hUsdChange": -5.907057783112421, + "liquidityUsd": 0.04076680432673344, + "liquidity24hUsdChange": -4.043669222113995, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35707,71 +36445,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "7307" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "358646" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "636396" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1820" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "735", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/735", - "amount": "25000000000000000000" - }, - "liquidityUsd": 0.05291067846581889, - "liquidity24hUsdChange": -4.334808289786804, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "1093264" - }, - "weight": "751619276800000" - }, - { - "token": { - "denom": "uosmo", - "amount": "8125" - }, - "weight": "322122547200000" - } - ], - "total_weight": "1073741824000000" + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo18qh3728wprwqmdp86lyldeq88wt057vyataql2elzq6e6fckjasqu00v43", + "id": "1128", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", + "token0Amount": "2832", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "40468", + "current_sqrt_price": "0.117404111164756841527410468768350016", + "current_tick": "-17621628", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.04056588609163995, + "liquidity24hUsdChange": 0.2858900874553622, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "676", + "id": "83", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/676", - "amount": "3162042095490133" + "denom": "gamm/pool/83", + "amount": "775000000000000000" }, - "liquidityUsd": 0.052205122739444, - "liquidity24hUsdChange": -2.7289973568136072, + "liquidityUsd": 0.040105068387641565, + "liquidity24hUsdChange": -3.430327918043034, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35779,71 +36502,69 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "20308902403461417" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "9996" }, - "weight": "536870912000000" + "weight": "966367641600000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2946" + "denom": "uosmo", + "amount": "2877" }, - "weight": "536870912000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "250", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1668", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.900000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/250", - "amount": "200000000000000000" + "denom": "gamm/pool/1668", + "amount": "2750000000000000000" }, - "liquidityUsd": 0.0521005403830005, - "liquidity24hUsdChange": -4.614812007474452, + "liquidityUsd": 0.039786862871213, + "liquidity24hUsdChange": -5.2484872902127515, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "296" - }, - "weight": "107374182400000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "16722" }, { - "token": { - "denom": "uosmo", - "amount": "38108" - }, - "weight": "966367641600000" + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "amount": "3650588516875" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "100" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "870", + "id": "427", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.008999999999999999", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/870", - "amount": "6599039862987675" + "denom": "gamm/pool/427", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.05168518983192895, - "liquidity24hUsdChange": -2.7250395828891985, + "liquidityUsd": 0.03975900611011027, + "liquidity24hUsdChange": -4.357294247967925, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35851,17 +36572,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "1491855" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "244204" }, - "weight": "408021893120000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "34767" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "16383991" }, - "weight": "665719930880000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -35878,8 +36599,8 @@ "denom": "gamm/pool/146", "amount": "70835643151968450" }, - "liquidityUsd": 0.051684794939631344, - "liquidity24hUsdChange": -2.4052181800951327, + "liquidityUsd": 0.038919455525186636, + "liquidity24hUsdChange": -4.3097161211720945, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35904,18 +36625,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "457", + "id": "441", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/457", - "amount": "41259765625000000" + "denom": "gamm/pool/441", + "amount": "520684377899292488" }, - "liquidityUsd": 0.05057106440421175, - "liquidity24hUsdChange": -4.5398389881238606, + "liquidityUsd": 0.03889447475424915, + "liquidity24hUsdChange": -4.798712440440743, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -35923,15 +36644,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2356" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "257169" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "19536" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "68469" }, "weight": "536870912000000" } @@ -35950,11 +36671,11 @@ "denom": "gamm/pool/297", "amount": "100000000000000000000" }, - "liquidityUsd": 0.05027610686191453, - "liquidity24hUsdChange": -5.7735209359175395, + "liquidityUsd": 0.03863410819105039, + "liquidity24hUsdChange": -4.039196458687709, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0004421715486848289, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -35990,18 +36711,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "721", + "id": "735", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/721", - "amount": "2529083663432655" + "denom": "gamm/pool/735", + "amount": "25000000000000000000" }, - "liquidityUsd": 0.05024712258888935, - "liquidity24hUsdChange": -3.300513496947443, + "liquidityUsd": 0.03712814481629708, + "liquidity24hUsdChange": -1.3983655006375637, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36009,35 +36730,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "37" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "1093264" }, - "weight": "536870912000000" + "weight": "751619276800000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "7014611181830" + "denom": "uosmo", + "amount": "8125" }, - "weight": "536870912000000" + "weight": "322122547200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "399", + "id": "519", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/399", - "amount": "100000000000000000000" + "denom": "gamm/pool/519", + "amount": "700000000000000000" }, - "liquidityUsd": 0.050084609888602194, - "liquidity24hUsdChange": -4.532470385967582, + "liquidityUsd": 0.03697232937917079, + "liquidity24hUsdChange": -4.303204917303452, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36045,42 +36766,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1372" - }, - "weight": "322122547200000" - }, - { - "token": { - "denom": "uion", - "amount": "6" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "15199568" }, - "weight": "107374182400000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "25605" + "amount": "20618" }, - "weight": "644245094400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "62", + "id": "250", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.900000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/62", - "amount": "550000000000000" + "denom": "gamm/pool/250", + "amount": "200000000000000000" }, - "liquidityUsd": 0.04998853827738283, - "liquidity24hUsdChange": -7.076254966314035, + "liquidityUsd": 0.03677075270096638, + "liquidity24hUsdChange": -3.2524796503396307, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36088,35 +36802,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "11376" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "296" }, - "weight": "966367641600000" + "weight": "107374182400000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "8739" + "denom": "uosmo", + "amount": "38108" }, - "weight": "107374182400000" + "weight": "966367641600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "306", + "id": "457", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/306", - "amount": "25000000000000000000" + "denom": "gamm/pool/457", + "amount": "41259765625000000" }, - "liquidityUsd": 0.04932743467349826, - "liquidity24hUsdChange": -3.7105143450177067, + "liquidityUsd": 0.036611561968521736, + "liquidity24hUsdChange": -2.254946148819675, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36124,35 +36838,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "6423151" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2356" }, - "weight": "214748364800000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "30978" + "amount": "19536" }, - "weight": "858993459200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "519", + "id": "422", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/519", - "amount": "700000000000000000" + "denom": "gamm/pool/422", + "amount": "200000000000000000" }, - "liquidityUsd": 0.0491239551670892, - "liquidity24hUsdChange": -2.4226561164647227, + "liquidityUsd": 0.03640966306096438, + "liquidity24hUsdChange": -3.419406092166489, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36160,15 +36874,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "15199568" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "6387" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "20618" + "amount": "13790" }, "weight": "536870912000000" } @@ -36177,18 +36891,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "540", + "id": "46", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002600000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/540", - "amount": "900000000000000000" + "denom": "gamm/pool/46", + "amount": "146250000000000000" }, - "liquidityUsd": 0.04893683578700957, - "liquidity24hUsdChange": -3.0137392581302525, + "liquidityUsd": 0.03585311235003462, + "liquidity24hUsdChange": -4.263178255449461, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36196,35 +36910,74 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2200" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "5128" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "24939" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "13745255" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1355", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1355", + "amount": "250000000000000000" + }, + "liquidityUsd": 0.03581825297537001, + "liquidity24hUsdChange": -3.3206623524873518, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "10871" + }, + { + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "amount": "453" + }, + { + "denom": "uosmo", + "amount": "22843" + } + ], + "scaling_factors": [ + "50", + "4", + "1" + ], + "scaling_factor_controller": "" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "427", + "id": "399", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/427", + "denom": "gamm/pool/399", "amount": "100000000000000000000" }, - "liquidityUsd": 0.04823032109598353, - "liquidity24hUsdChange": -6.942870299940508, + "liquidityUsd": 0.035790487957674776, + "liquidity24hUsdChange": -2.9739192262210685, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36232,35 +36985,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "244204" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1372" }, - "weight": "536870912000000" + "weight": "322122547200000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "16383991" + "denom": "uion", + "amount": "6" }, - "weight": "536870912000000" + "weight": "107374182400000" + }, + { + "token": { + "denom": "uosmo", + "amount": "25605" + }, + "weight": "644245094400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "200", + "id": "306", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/200", - "amount": "44100000000000000" + "denom": "gamm/pool/306", + "amount": "25000000000000000000" }, - "liquidityUsd": 0.04793470346247388, - "liquidity24hUsdChange": -4.5468477794364786, + "liquidityUsd": 0.03571433275180461, + "liquidity24hUsdChange": -3.793559357423752, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36268,35 +37028,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2050" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "6423151" }, - "weight": "536870912000000" + "weight": "214748364800000" }, { "token": { "denom": "uosmo", - "amount": "20063" + "amount": "30978" }, - "weight": "536870912000000" + "weight": "858993459200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "533", + "id": "200", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/533", - "amount": "59992680000000000" + "denom": "gamm/pool/200", + "amount": "44100000000000000" }, - "liquidityUsd": 0.04727975968211502, - "liquidity24hUsdChange": -4.037470788074807, + "liquidityUsd": 0.03462144827319821, + "liquidity24hUsdChange": -2.346857207992313, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36304,15 +37064,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "358646" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2050" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1820" + "denom": "uosmo", + "amount": "20063" }, "weight": "536870912000000" } @@ -36320,58 +37080,55 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1355", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "870", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.008999999999999999", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1355", - "amount": "250000000000000000" + "denom": "gamm/pool/870", + "amount": "6599039862987675" }, - "liquidityUsd": 0.045434313533992056, - "liquidity24hUsdChange": -3.8382068271785066, + "liquidityUsd": 0.034499756613627204, + "liquidity24hUsdChange": -2.7832540631550677, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "10871" - }, + "pool_assets": [ { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", - "amount": "453" + "token": { + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "1491855" + }, + "weight": "408021893120000" }, { - "denom": "uosmo", - "amount": "22843" + "token": { + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "34767" + }, + "weight": "665719930880000" } ], - "scaling_factors": [ - "50", - "4", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "83", + "id": "540", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.002600000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/83", - "amount": "775000000000000000" + "denom": "gamm/pool/540", + "amount": "900000000000000000" }, - "liquidityUsd": 0.045180898504276486, - "liquidity24hUsdChange": -7.00063057327783, + "liquidityUsd": 0.03425853653955642, + "liquidity24hUsdChange": -1.8728365111056466, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36379,17 +37136,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "9996" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2200" }, - "weight": "966367641600000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2877" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "24939" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -36406,8 +37163,8 @@ "denom": "gamm/pool/1049", "amount": "39382737649193146" }, - "liquidityUsd": 0.04436616486764016, - "liquidity24hUsdChange": -5.252050286374399, + "liquidityUsd": 0.03290365490008026, + "liquidity24hUsdChange": -2.78693562049174, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36432,18 +37189,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "422", + "id": "120", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/422", - "amount": "200000000000000000" + "denom": "gamm/pool/120", + "amount": "2851875000000000" }, - "liquidityUsd": 0.044203803408930306, - "liquidity24hUsdChange": -6.1900708206367705, + "liquidityUsd": 0.03217075097887663, + "liquidity24hUsdChange": -2.242226870179081, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36452,14 +37209,14 @@ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "6387" + "amount": "4006" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "13790" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2127" }, "weight": "536870912000000" } @@ -36468,34 +37225,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1178", + "id": "1394", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1178", - "amount": "452344133495909376967" + "denom": "gamm/pool/1394", + "amount": "94278265226403734599" }, - "liquidityUsd": 0.04349380742465585, - "liquidity24hUsdChange": -2.5751680352330832, + "liquidityUsd": 0.03186814862988139, + "liquidity24hUsdChange": -3.3940392855810435, "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, + "volume24hUsdChange": -100, + "volume7dUsd": 0.11721909706699828, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", - "amount": "11697924727116171" + "denom": "ibc/6FD2938076A4C1BB3A324A676E76B0150A4443DAE0E002FB62AC0E6B604B1519", + "amount": "9757995356970923000" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1356" + "denom": "uosmo", + "amount": "32117" }, "weight": "536870912000000" } @@ -36514,11 +37271,11 @@ "denom": "gamm/pool/723", "amount": "100022398924825087800" }, - "liquidityUsd": 0.04200230335958935, - "liquidity24hUsdChange": -4.455779495370141, + "liquidityUsd": 0.03126363833703001, + "liquidity24hUsdChange": -1.173479034635182, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 0.019769639158718787, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -36540,18 +37297,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "46", + "id": "1178", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/46", - "amount": "146250000000000000" + "denom": "gamm/pool/1178", + "amount": "452344133495909376967" }, - "liquidityUsd": 0.04178436102766531, - "liquidity24hUsdChange": -3.678392602473852, + "liquidityUsd": 0.02953249124345632, + "liquidity24hUsdChange": -5.984876672627671, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36559,35 +37316,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "5128" + "denom": "ibc/1CDF9C7D073DD59ED06F15DB08CC0901F2A24759BE70463570E8896F9A444ADF", + "amount": "11697924727116171" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "13745255" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1356" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo13fz056zc258h69y97d6ep9zaqx6gqm9hsm8mrprv0jcxg980p99s6qt338", + "id": "1124", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", + "token0Amount": "13374", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "11935", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.02950900228630427, + "liquidity24hUsdChange": -3.1732139956727647, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "441", + "id": "838", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/441", - "amount": "520684377899292488" + "denom": "gamm/pool/838", + "amount": "26615492604080307" }, - "liquidityUsd": 0.041487306728735046, - "liquidity24hUsdChange": -4.298016564253276, + "liquidityUsd": 0.029232574289606496, + "liquidity24hUsdChange": -0.577637151228119, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36595,56 +37373,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "257169" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1453" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "68469" + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "17527" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo18qh3728wprwqmdp86lyldeq88wt057vyataql2elzq6e6fckjasqu00v43", - "id": "1128", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", - "token0Amount": "2832", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "40468", - "current_sqrt_price": "0.117404111164756841527410468768350016", - "current_tick": "-17621628", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.04045901485904719, - "liquidity24hUsdChange": -0.22955551678006708, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "308", + "id": "347", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.100000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/308", - "amount": "31738281250000000" + "denom": "gamm/pool/347", + "amount": "50000000000000000" }, - "liquidityUsd": 0.03994236851446327, - "liquidity24hUsdChange": -4.619164117128892, + "liquidityUsd": 0.028958817365123325, + "liquidity24hUsdChange": -2.1959011348327064, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36653,34 +37410,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "132" + "amount": "1959" }, - "weight": "53687091200000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "30016" + "amount": "14600" }, - "weight": "1020054732800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "347", + "id": "133", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.100000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/347", - "amount": "50000000000000000" + "denom": "gamm/pool/133", + "amount": "145434529517013739" }, - "liquidityUsd": 0.03994004178194553, - "liquidity24hUsdChange": -4.535325448087769, + "liquidityUsd": 0.028652227092385164, + "liquidity24hUsdChange": -3.419394798670297, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36688,15 +37445,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1959" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "5024" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "14600" + "amount": "10861" }, "weight": "536870912000000" } @@ -36705,18 +37462,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "120", + "id": "99", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/120", - "amount": "2851875000000000" + "denom": "gamm/pool/99", + "amount": "48828125000000000" }, - "liquidityUsd": 0.039652806044637716, - "liquidity24hUsdChange": -5.628725539825672, + "liquidityUsd": 0.028353317178366127, + "liquidity24hUsdChange": -3.3388760523714476, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36724,17 +37481,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "4006" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "5" }, - "weight": "536870912000000" + "weight": "1073741824000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2127" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "21098823" }, - "weight": "536870912000000" + "weight": "1072668082176000" } ], "total_weight": "1073741824000000" @@ -36751,8 +37508,8 @@ "denom": "gamm/pool/923", "amount": "10000000000000000" }, - "liquidityUsd": 0.03815996573479866, - "liquidity24hUsdChange": -2.9147667224816822, + "liquidityUsd": 0.0283527938403203, + "liquidity24hUsdChange": -1.2484600354860325, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36791,18 +37548,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "99", + "id": "59", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.015000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/99", - "amount": "48828125000000000" + "denom": "gamm/pool/59", + "amount": "900000000000000000" }, - "liquidityUsd": 0.0379822582713169, - "liquidity24hUsdChange": -8.872003144438464, + "liquidityUsd": 0.028348863766513986, + "liquidity24hUsdChange": -4.181058240016712, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36810,35 +37567,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "5" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "4966" }, - "weight": "1073741824000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "21098823" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "133478" }, - "weight": "1072668082176000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "305", + "id": "308", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/305", - "amount": "3125000000000000000" + "denom": "gamm/pool/308", + "amount": "31738281250000000" }, - "liquidityUsd": 0.03790232477679602, - "liquidity24hUsdChange": -3.8232338796443983, + "liquidityUsd": 0.02814770929138216, + "liquidity24hUsdChange": -3.3113736265880913, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36846,17 +37603,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "4332308" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "132" }, - "weight": "214748364800000" + "weight": "53687091200000" }, { "token": { "denom": "uosmo", - "amount": "24504" + "amount": "30016" }, - "weight": "858993459200000" + "weight": "1020054732800000" } ], "total_weight": "1073741824000000" @@ -36873,11 +37630,11 @@ "denom": "gamm/pool/673", "amount": "5357939321680297" }, - "liquidityUsd": 0.037812898359547834, - "liquidity24hUsdChange": -4.455779495370131, + "liquidityUsd": 0.028145332142073664, + "liquidity24hUsdChange": -1.173479034635182, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.24549479492810863, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -36899,18 +37656,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "255", + "id": "305", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/255", - "amount": "10937500000000000" + "denom": "gamm/pool/305", + "amount": "3125000000000000000" }, - "liquidityUsd": 0.03746334967573907, - "liquidity24hUsdChange": -4.283095686767133, + "liquidityUsd": 0.02734597415731356, + "liquidity24hUsdChange": -3.746074494294207, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36918,17 +37675,17 @@ "pool_assets": [ { "token": { - "denom": "uion", - "amount": "36" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "4332308" }, - "weight": "536870912000000" + "weight": "214748364800000" }, { "token": { "denom": "uosmo", - "amount": "18075" + "amount": "24504" }, - "weight": "536870912000000" + "weight": "858993459200000" } ], "total_weight": "1073741824000000" @@ -36945,8 +37702,8 @@ "denom": "gamm/pool/130", "amount": "4800000000000000" }, - "liquidityUsd": 0.0366192779563394, - "liquidity24hUsdChange": -4.535431719239397, + "liquidityUsd": 0.026550129707523205, + "liquidity24hUsdChange": -2.197290052999413, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -36969,75 +37726,20 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1362", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1362", - "amount": "8214311544757653" - }, - "liquidityUsd": 0.03627728850188392, - "liquidity24hUsdChange": -9.053169758109368, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", - "amount": "261626089152" - }, - { - "denom": "uosmo", - "amount": "6135" - } - ], - "scaling_factors": [ - "1", - "300" - ], - "scaling_factor_controller": "" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo13fz056zc258h69y97d6ep9zaqx6gqm9hsm8mrprv0jcxg980p99s6qt338", - "id": "1124", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", - "token0Amount": "13374", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "11935", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.03498111559638552, - "liquidity24hUsdChange": -2.6120404244503166, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "133", + "id": "255", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/133", - "amount": "145434529517013739" + "denom": "gamm/pool/255", + "amount": "10937500000000000" }, - "liquidityUsd": 0.03478834159107745, - "liquidity24hUsdChange": -6.189286449277648, + "liquidityUsd": 0.02609816960031428, + "liquidity24hUsdChange": -5.428097212594076, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37045,15 +37747,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "5024" + "denom": "uion", + "amount": "36" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "10861" + "amount": "18075" }, "weight": "536870912000000" } @@ -37061,55 +37763,58 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "539", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "861", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001900000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/539", - "amount": "100000000000000000000" + "denom": "gamm/pool/861", + "amount": "20000000000000000" }, - "liquidityUsd": 0.0341210754340339, - "liquidity24hUsdChange": -0.37533554005705694, + "liquidityUsd": 0.025878055377942365, + "liquidity24hUsdChange": -0.0004976025493627928, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "11625" - }, - "weight": "536870912000000" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "15583285264581173" }, { - "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "15026661" - }, - "weight": "536870912000000" + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "5149" + }, + { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "5137" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "50", + "50", + "50" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "838", + "id": "539", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001900000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/838", - "amount": "26615492604080307" + "denom": "gamm/pool/539", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.033146612460086725, - "liquidity24hUsdChange": -2.265010106902745, + "liquidityUsd": 0.02586535632861887, + "liquidity24hUsdChange": -4.448650267571665, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37117,15 +37822,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1453" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "11625" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "17527" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "15026661" }, "weight": "536870912000000" } @@ -37134,18 +37839,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "366", + "id": "37", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/366", - "amount": "1716406250000000000" + "denom": "gamm/pool/37", + "amount": "101060131178420656" }, - "liquidityUsd": 0.032530298561404235, - "liquidity24hUsdChange": -4.636318262414865, + "liquidityUsd": 0.02553007918396552, + "liquidity24hUsdChange": -3.396140643338372, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37153,15 +37858,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "11303680" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "4055" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "11043" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "7686019" }, "weight": "536870912000000" } @@ -37170,18 +37875,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "319", + "id": "150", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/319", - "amount": "200000000000000000" + "denom": "gamm/pool/150", + "amount": "2025000000000000" }, - "liquidityUsd": 0.03201937063832938, - "liquidity24hUsdChange": -4.551106483707663, + "liquidityUsd": 0.024122545968312703, + "liquidity24hUsdChange": -2.3877826724973588, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37189,15 +37894,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1295" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "3418" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "14029" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1402" }, "weight": "536870912000000" } @@ -37216,8 +37921,8 @@ "denom": "gamm/pool/262", "amount": "3051757812500000" }, - "liquidityUsd": 0.03183436312390027, - "liquidity24hUsdChange": -4.527224567699782, + "liquidityUsd": 0.02314426970054131, + "liquidity24hUsdChange": -2.090209420091583, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37242,18 +37947,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "271", + "id": "319", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/271", + "denom": "gamm/pool/319", "amount": "200000000000000000" }, - "liquidityUsd": 0.0315730365865642, - "liquidity24hUsdChange": -4.534082712795097, + "liquidityUsd": 0.0230933193025826, + "liquidity24hUsdChange": -2.4028379154676176, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37262,14 +37967,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1570" + "amount": "1295" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "11361" + "amount": "14029" }, "weight": "536870912000000" } @@ -37278,18 +37983,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "59", + "id": "271", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.015000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/59", - "amount": "900000000000000000" + "denom": "gamm/pool/271", + "amount": "200000000000000000" }, - "liquidityUsd": 0.030875524247227844, - "liquidity24hUsdChange": -6.080894133481034, + "liquidityUsd": 0.02290177452194036, + "liquidity24hUsdChange": -2.179663748717052, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37297,15 +38002,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "4966" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1570" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "133478" + "denom": "uosmo", + "amount": "11361" }, "weight": "536870912000000" } @@ -37314,18 +38019,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "37", + "id": "366", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/37", - "amount": "101060131178420656" + "denom": "gamm/pool/366", + "amount": "1716406250000000000" }, - "liquidityUsd": 0.030647407116967503, - "liquidity24hUsdChange": -7.967464970201593, + "liquidityUsd": 0.022429951628879077, + "liquidity24hUsdChange": -3.3934440512774873, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37333,15 +38038,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "4055" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "11303680" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "7686019" + "denom": "uosmo", + "amount": "11043" }, "weight": "536870912000000" } @@ -37360,8 +38065,8 @@ "denom": "gamm/pool/1050", "amount": "15538427067890977" }, - "liquidityUsd": 0.029831065389000874, - "liquidity24hUsdChange": -5.191741220769033, + "liquidityUsd": 0.021822257660572626, + "liquidity24hUsdChange": -4.909624341707551, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37394,11 +38099,11 @@ "denom": "gamm/pool/67", "amount": "100000000000000000000" }, - "liquidityUsd": 0.029569217492280794, - "liquidity24hUsdChange": -6.039674371317429, + "liquidityUsd": 0.02161107649442224, + "liquidity24hUsdChange": -2.6631831264118473, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.008814707652871966, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -37427,18 +38132,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "150", + "id": "418", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.300000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/150", - "amount": "2025000000000000" + "denom": "gamm/pool/418", + "amount": "25000000000000000000" }, - "liquidityUsd": 0.029363882803961114, - "liquidity24hUsdChange": -5.804708112588464, + "liquidityUsd": 0.021475060752508407, + "liquidity24hUsdChange": -4.018959601141098, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37447,14 +38152,93 @@ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "3418" + "amount": "2571" }, - "weight": "536870912000000" + "weight": "322122547200000" }, + { + "token": { + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "82383" + }, + "weight": "429496729600000" + }, + { + "token": { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "4345894" + }, + "weight": "322122547200000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "852", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/852", + "amount": "40307660558352840" + }, + "liquidityUsd": 0.021417203788614888, + "liquidity24hUsdChange": -1.1734790346351847, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1402" + "amount": "2658" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", + "amount": "660027" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "436", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/436", + "amount": "36621093750000000" + }, + "liquidityUsd": 0.021343484337039604, + "liquidity24hUsdChange": -3.6409237123391893, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "3804" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "23988" }, "weight": "536870912000000" } @@ -37473,8 +38257,8 @@ "denom": "gamm/pool/240", "amount": "9574663848876953" }, - "liquidityUsd": 0.029142888544138774, - "liquidity24hUsdChange": -4.523012792796596, + "liquidityUsd": 0.021217269076535636, + "liquidity24hUsdChange": -2.0354012385447406, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37497,20 +38281,41 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1resgn24dhww3y96kwmhqzl6ex395mdurxt2rl9hkrts62xc3t70ssvyxxh", + "id": "1480", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "token0Amount": "4499", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "4208", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.02109432492642201, + "liquidity24hUsdChange": -2.7311046159426446, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "852", + "id": "451", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/852", - "amount": "40307660558352840" + "denom": "gamm/pool/451", + "amount": "2008906250000000" }, - "liquidityUsd": 0.02877374286850219, - "liquidity24hUsdChange": -4.455779495370143, + "liquidityUsd": 0.021074634236494288, + "liquidity24hUsdChange": -1.1903947163700408, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37519,34 +38324,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2658" + "amount": "2596" }, - "weight": "536870912000000" + "weight": "1063004405760000" }, { "token": { - "denom": "ibc/71055835C7639739EAE03AACD1324FE162DBA41D09F197CB72D966D014225B1C", - "amount": "660027" + "denom": "uosmo", + "amount": "174" }, - "weight": "536870912000000" + "weight": "10737418240000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "451", + "id": "779", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/451", - "amount": "2008906250000000" + "denom": "gamm/pool/779", + "amount": "240255538756566148" }, - "liquidityUsd": 0.028325830830473606, - "liquidity24hUsdChange": -4.457117310127074, + "liquidityUsd": 0.020641, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37554,35 +38359,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2596" + "denom": "ibc/49C2B2C444B7C5F0066657A4DBF19D676E0D185FF721CFD3E14FA253BCB9BC04", + "amount": "364528107970517140000" }, - "weight": "1063004405760000" + "weight": "858993459200000" }, { "token": { - "denom": "uosmo", - "amount": "174" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "20641" }, - "weight": "10737418240000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "230", + "id": "1177", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/230", - "amount": "700000000000000000" + "denom": "gamm/pool/1177", + "amount": "49833374238272365" }, - "liquidityUsd": 0.027880882368917198, - "liquidity24hUsdChange": -4.631205297649986, + "liquidityUsd": 0.020132365862469487, + "liquidity24hUsdChange": -3.007961731814629, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37590,15 +38395,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "5226384" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "432120" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "15113" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "4327236405228" }, "weight": "536870912000000" } @@ -37617,11 +38422,11 @@ "denom": "gamm/pool/736", "amount": "40000000000000000" }, - "liquidityUsd": 0.02756811965685215, - "liquidity24hUsdChange": -4.185389367255943, + "liquidityUsd": 0.02009514226045195, + "liquidity24hUsdChange": -4.521196262055323, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.004753378940454559, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -37643,18 +38448,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "363", + "id": "12", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/363", - "amount": "9600209871085329490" + "denom": "gamm/pool/12", + "amount": "690428475018949295" }, - "liquidityUsd": 0.027558917050174533, - "liquidity24hUsdChange": -4.3476287516790295, + "liquidityUsd": 0.019691665720536884, + "liquidity24hUsdChange": -2.866747020944651, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37662,17 +38467,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "15892583" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1027" }, - "weight": "966367641600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "1169279" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "38739" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -37689,8 +38494,8 @@ "denom": "gamm/pool/823", "amount": "21445192175572529588453973787" }, - "liquidityUsd": 0.027361250547443608, - "liquidity24hUsdChange": -4.045984775897658, + "liquidityUsd": 0.0194151971522636, + "liquidity24hUsdChange": -3.8162122742242093, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37715,34 +38520,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "506", + "id": "230", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/506", - "amount": "1000000000000000000" + "denom": "gamm/pool/230", + "amount": "700000000000000000" }, - "liquidityUsd": 0.02709227750322503, - "liquidity24hUsdChange": -5.176940741874905, + "liquidityUsd": 0.019400409007632766, + "liquidity24hUsdChange": -3.3934440512774646, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0024307738677205254, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "32896" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "5226384" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "14043" + "amount": "15113" }, "weight": "536870912000000" } @@ -37751,18 +38556,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "593", + "id": "506", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/593", - "amount": "25000000000000000000" + "denom": "gamm/pool/506", + "amount": "1000000000000000000" }, - "liquidityUsd": 0.026809452438057393, - "liquidity24hUsdChange": -6.822408628775846, + "liquidityUsd": 0.01930609520345528, + "liquidity24hUsdChange": -2.888370348374299, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37770,15 +38575,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "8825323" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "32896" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "432216" + "denom": "uosmo", + "amount": "14043" }, "weight": "536870912000000" } @@ -37787,18 +38592,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "199", + "id": "593", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/199", - "amount": "240100000000000000" + "denom": "gamm/pool/593", + "amount": "25000000000000000000" }, - "liquidityUsd": 0.026787660296200038, - "liquidity24hUsdChange": -4.637145952187971, + "liquidityUsd": 0.019021763693995733, + "liquidity24hUsdChange": -3.31152615265022, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37806,15 +38611,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "10002206" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "8825323" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "8215" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "432216" }, "weight": "536870912000000" } @@ -37823,18 +38628,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1177", + "id": "363", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1177", - "amount": "49833374238272365" + "denom": "gamm/pool/363", + "amount": "9600209871085329490" }, - "liquidityUsd": 0.026169504896912908, - "liquidity24hUsdChange": -3.3806036035264087, + "liquidityUsd": 0.018939254983085064, + "liquidity24hUsdChange": -3.5311706093761526, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37842,17 +38647,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "432120" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "15892583" }, - "weight": "536870912000000" + "weight": "966367641600000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "4327236405228" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "1169279" }, - "weight": "536870912000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" @@ -37869,11 +38674,11 @@ "denom": "gamm/pool/811", "amount": "57654480233084119" }, - "liquidityUsd": 0.025923545647730313, - "liquidity24hUsdChange": -5.525282812069784, + "liquidityUsd": 0.018916794976538042, + "liquidity24hUsdChange": -2.414845957632521, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0027978554282619226, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -37895,18 +38700,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "479", + "id": "551", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "exit_fee": "0.001000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/479", - "amount": "49564331477873" + "denom": "gamm/pool/551", + "amount": "770200000000000000000000" }, - "liquidityUsd": 0.025863208090845576, - "liquidity24hUsdChange": -3.2359386319338066, + "liquidityUsd": 0.01877487405890865, + "liquidity24hUsdChange": -2.3255599584360924, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -37914,59 +38719,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "12013" + "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "amount": "8230425234" }, - "weight": "536870912000000" + "weight": "1073741824000000" }, { "token": { "denom": "uosmo", - "amount": "10726" + "amount": "7803" }, - "weight": "536870912000000" + "weight": "7516192768" } ], - "total_weight": "1073741824000000" + "total_weight": "1073749340192768" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "861", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "139", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/861", - "amount": "20000000000000000" + "denom": "gamm/pool/139", + "amount": "54585504105067932687" }, - "liquidityUsd": 0.0258407556164626, - "liquidity24hUsdChange": 0.02785307740596294, + "liquidityUsd": 0.018691502030507526, + "liquidity24hUsdChange": -5.305813149523315, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "15583285264581173" - }, + "pool_assets": [ { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "5149" + "token": { + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "66897" + }, + "weight": "536870912000000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "5137" + "token": { + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "11438250" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "50", - "50", - "50" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -37980,8 +38782,8 @@ "denom": "gamm/pool/204", "amount": "17264673929010721" }, - "liquidityUsd": 0.02554064124396499, - "liquidity24hUsdChange": -7.288401247525954, + "liquidityUsd": 0.018641086590610444, + "liquidity24hUsdChange": -3.360996596101066, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38005,119 +38807,58 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12lmlcm2phju6ek4fexvr5pgkfr0ksdc49qytxyu6fqkvufxdt6ushqdmay", - "id": "1280", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "token0Amount": "28820", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "25165", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.02513137510724719, - "liquidity24hUsdChange": -0.22345419638011305, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "418", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1469", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.300000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/418", - "amount": "25000000000000000000" + "denom": "gamm/pool/1469", + "amount": "10000000000000000" }, - "liquidityUsd": 0.02481830340860207, - "liquidity24hUsdChange": -6.887314536884069, + "liquidityUsd": 0.018450684051013994, + "liquidity24hUsdChange": -3.8855781692757154, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "2571" - }, - "weight": "322122547200000" + "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "amount": "10" }, { - "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "82383" - }, - "weight": "429496729600000" + "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "amount": "10000000" }, { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "4345894" - }, - "weight": "322122547200000" + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "amount": "10" } ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "551", - "pool_params": { - "exit_fee": "0.001000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/551", - "amount": "770200000000000000000000" - }, - "liquidityUsd": 0.024712646565065437, - "liquidity24hUsdChange": -3.2952447433173546, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "amount": "8230425234" - }, - "weight": "1073741824000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "7803" - }, - "weight": "7516192768" - } + "scaling_factors": [ + "1", + "1", + "1" ], - "total_weight": "1073749340192768" + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1139", + "id": "199", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1139", - "amount": "11734340462622761841102" + "denom": "gamm/pool/199", + "amount": "240100000000000000" }, - "liquidityUsd": 0.02346693434935073, - "liquidity24hUsdChange": -4.388255193521302, + "liquidityUsd": 0.018442929479408673, + "liquidity24hUsdChange": -3.393444051277473, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38125,35 +38866,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", - "amount": "19841" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "10002206" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "10680" + "amount": "8215" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "12", + "id": "479", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/12", - "amount": "690428475018949295" + "denom": "gamm/pool/479", + "amount": "49564331477873" }, - "liquidityUsd": 0.02340237309224103, - "liquidity24hUsdChange": -4.638816990425843, + "liquidityUsd": 0.017641565010772048, + "liquidity24hUsdChange": -3.042191564220414, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38161,15 +38902,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1027" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "12013" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "38739" + "denom": "uosmo", + "amount": "10726" }, "weight": "536870912000000" } @@ -38178,18 +38919,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "436", + "id": "801", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/436", - "amount": "36621093750000000" + "denom": "gamm/pool/801", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.023395871062447306, - "liquidity24hUsdChange": -6.438553281009023, + "liquidityUsd": 0.017085879045966965, + "liquidity24hUsdChange": -1.3869952702444386, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38197,15 +38938,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "3804" + "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "amount": "5061255" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "23988" + "denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", + "amount": "203761" }, "weight": "536870912000000" } @@ -38213,76 +38954,72 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "996", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1362", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.006000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/996", - "amount": "44434193787737224" + "denom": "gamm/pool/1362", + "amount": "8214311544757653" }, - "liquidityUsd": 0.02324585906679213, - "liquidity24hUsdChange": -4.625215344977832, + "liquidityUsd": 0.016951423963943564, + "liquidity24hUsdChange": 6.936920000803509, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/DEA3B0BB0006C69E75D2247E8DC57878758790556487067F67748FDC237CE2AE", - "amount": "23062798425718" - }, - "weight": "536870912000000" + "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", + "amount": "261626089152" }, { - "token": { - "denom": "uosmo", - "amount": "18117" - }, - "weight": "536870912000000" + "denom": "uosmo", + "amount": "6135" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "300" + ], + "scaling_factor_controller": "" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "672", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1291", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/672", - "amount": "3587670441567564" + "denom": "gamm/pool/1291", + "amount": "10950942031084926" }, - "liquidityUsd": 0.023162457795094748, - "liquidity24hUsdChange": -4.6252153449778195, + "liquidityUsd": 0.01658967017061081, + "liquidity24hUsdChange": -0.001536910190783216, "volume24hUsd": 0, - "volume24hUsdChange": -100, - "volume7dUsd": 1.4120788581051744, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", - "amount": "10950181323933640" - }, - "weight": "536870912000000" + "denom": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", + "amount": "397" }, { - "token": { - "denom": "uosmo", - "amount": "18052" - }, - "weight": "536870912000000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "16557" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -38296,11 +39033,11 @@ "denom": "gamm/pool/1354", "amount": "61679889968829" }, - "liquidityUsd": 0.02307403547724158, - "liquidity24hUsdChange": -0.8568026915232573, + "liquidityUsd": 0.016570297493410883, + "liquidity24hUsdChange": -2.5836755768960042, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0040331138761394054, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -38320,62 +39057,20 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1resgn24dhww3y96kwmhqzl6ex395mdurxt2rl9hkrts62xc3t70ssvyxxh", - "id": "1480", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "token0Amount": "4499", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "4208", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.02287706062581054, - "liquidity24hUsdChange": -5.998786639089491, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1gny4qk6rgnvgddjjmqh55dj0cz6k5vts68f9tzpd37sw2jeyhpjqu2czm4", - "id": "1216", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", - "token0Amount": "22756", - "token1": "uosmo", - "token1Amount": "134", - "current_sqrt_price": "0.841489150986870021601897611987407862", - "current_tick": "-2918961", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.02284271718831076, - "liquidity24hUsdChange": -0.49604694894882656, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "416", + "id": "1139", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/416", - "amount": "10000000000000000" + "denom": "gamm/pool/1139", + "amount": "11734340462622761841102" }, - "liquidityUsd": 0.02232807444981988, - "liquidity24hUsdChange": -4.56178562526446, + "liquidityUsd": 0.016523684182915666, + "liquidity24hUsdChange": -3.254343739850902, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38383,35 +39078,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "773" + "denom": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", + "amount": "19841" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { "denom": "uosmo", - "amount": "10880" + "amount": "10680" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "801", + "id": "996", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.006000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/801", - "amount": "100000000000000000000" + "denom": "gamm/pool/996", + "amount": "44434193787737224" }, - "liquidityUsd": 0.022233477815067276, - "liquidity24hUsdChange": -0.3723345773103919, + "liquidityUsd": 0.016347369982579615, + "liquidity24hUsdChange": -3.3934440512774833, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38419,15 +39114,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "amount": "5061255" + "denom": "ibc/DEA3B0BB0006C69E75D2247E8DC57878758790556487067F67748FDC237CE2AE", + "amount": "23062798425718" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", - "amount": "203761" + "denom": "uosmo", + "amount": "18117" }, "weight": "536870912000000" } @@ -38436,18 +39131,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "139", + "id": "416", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/139", - "amount": "54585504105067932687" + "denom": "gamm/pool/416", + "amount": "10000000000000000" }, - "liquidityUsd": 0.02220329772477085, - "liquidity24hUsdChange": -0.6800880472775237, + "liquidityUsd": 0.016045819497562577, + "liquidity24hUsdChange": -2.543660929785202, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38455,15 +39150,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "66897" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "773" }, "weight": "536870912000000" }, { - "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "11438250" + "token": { + "denom": "uosmo", + "amount": "10880" }, "weight": "536870912000000" } @@ -38482,11 +39177,11 @@ "denom": "gamm/pool/925", "amount": "1873993787283417" }, - "liquidityUsd": 0.02174428183377626, - "liquidity24hUsdChange": -1.350083407587434, + "liquidityUsd": 0.015955858501055145, + "liquidity24hUsdChange": -3.05051720076175, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0029573411408074287, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { @@ -38527,6 +39222,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "672", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/672", + "amount": "3587670441567564" + }, + "liquidityUsd": 0.015947641280129828, + "liquidity24hUsdChange": -3.393444051277471, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "amount": "11185205672795568" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "17674" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "118", @@ -38539,8 +39270,8 @@ "denom": "gamm/pool/118", "amount": "26400000000000000" }, - "liquidityUsd": 0.021513515162495896, - "liquidity24hUsdChange": -5.0912349504931464, + "liquidityUsd": 0.01589181651320667, + "liquidity24hUsdChange": -3.401966895236867, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38564,40 +39295,72 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "233", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "862", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.004000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/233", - "amount": "2000000000000000000" + "denom": "gamm/pool/862", + "amount": "30000000000000000" }, - "liquidityUsd": 0.02132232704048492, - "liquidity24hUsdChange": -4.639720076915561, + "liquidityUsd": 0.01580280885609242, + "liquidity24hUsdChange": 0.04295147989800087, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "9679535" - }, - "weight": "644245094400000" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "11845656577110420" }, { - "token": { - "denom": "uosmo", - "amount": "4364" - }, - "weight": "429496729600000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "3950" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" + }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1052", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000500000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1052", + "amount": "30087539926290510" + }, + "liquidityUsd": 0.015246375600998459, + "liquidity24hUsdChange": -0.06435902606494331, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "7285963746502899" + }, + { + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "7957" + } + ], + "scaling_factors": [ + "1000000000000", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -38611,8 +39374,8 @@ "denom": "gamm/pool/1022", "amount": "9332932982553" }, - "liquidityUsd": 0.02109923864295026, - "liquidity24hUsdChange": -4.625215344977816, + "liquidityUsd": 0.014837785063395661, + "liquidity24hUsdChange": -3.3934440512774695, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38637,34 +39400,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "659", + "id": "171", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/659", - "amount": "177535222134600" + "denom": "gamm/pool/171", + "amount": "4400000000000000" }, - "liquidityUsd": 0.020922222079094457, - "liquidity24hUsdChange": -2.259605180300115, + "liquidityUsd": 0.01463170072781109, + "liquidity24hUsdChange": -2.578766164718199, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.004536469957520657, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "13796" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "676" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", - "amount": "146918062159462660000" + "denom": "uosmo", + "amount": "10179" }, "weight": "536870912000000" } @@ -38673,18 +39436,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "779", + "id": "233", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.004000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/779", - "amount": "240255538756566148" + "denom": "gamm/pool/233", + "amount": "2000000000000000000" }, - "liquidityUsd": 0.020641, - "liquidity24hUsdChange": 0, + "liquidityUsd": 0.01461224795495284, + "liquidity24hUsdChange": -3.393444051277482, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38692,74 +39455,71 @@ "pool_assets": [ { "token": { - "denom": "ibc/49C2B2C444B7C5F0066657A4DBF19D676E0D185FF721CFD3E14FA253BCB9BC04", - "amount": "364528107970517140000" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "9679535" }, - "weight": "858993459200000" + "weight": "644245094400000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "20641" + "denom": "uosmo", + "amount": "4364" }, - "weight": "214748364800000" + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1469", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "80", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1469", - "amount": "10000000000000000" + "denom": "gamm/pool/80", + "amount": "2630902015920852" }, - "liquidityUsd": 0.020405595765622547, - "liquidity24hUsdChange": -3.4267562312528206, + "liquidityUsd": 0.014310939035386107, + "liquidity24hUsdChange": -3.129870578899869, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "amount": "10" - }, + "pool_assets": [ { - "denom": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "amount": "10000000" + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "3292" + }, + "weight": "751619276800000" }, { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", - "amount": "10" + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "243" + }, + "weight": "322122547200000" } ], - "scaling_factors": [ - "1", - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "171", + "id": "820", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/171", - "amount": "4400000000000000" + "denom": "gamm/pool/820", + "amount": "4528466520787273" }, - "liquidityUsd": 0.02037856622798606, - "liquidity24hUsdChange": -4.564440261982009, + "liquidityUsd": 0.013952456511480549, + "liquidity24hUsdChange": -2.0685490862574833, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38767,15 +39527,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "676" + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "85335153068710340" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "10179" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "9224" }, "weight": "536870912000000" } @@ -38794,8 +39554,8 @@ "denom": "gamm/pool/263", "amount": "9600000000000000" }, - "liquidityUsd": 0.018746974958540878, - "liquidity24hUsdChange": -4.532635600556418, + "liquidityUsd": 0.013604858698772947, + "liquidity24hUsdChange": -2.160766746187217, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38820,18 +39580,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "324", + "id": "40", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/324", - "amount": "100000000000000000000" + "denom": "gamm/pool/40", + "amount": "9100000000000000000" }, - "liquidityUsd": 0.01801779395397399, - "liquidity24hUsdChange": -4.562271772187305, + "liquidityUsd": 0.013155390769778154, + "liquidity24hUsdChange": -3.9553347984450054, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38839,15 +39599,22 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "619" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "33117" }, - "weight": "536870912000000" + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "10301" + }, + "weight": "268435456000000" }, { "token": { "denom": "uosmo", - "amount": "8820" + "amount": "8544" }, "weight": "536870912000000" } @@ -38856,18 +39623,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "333", + "id": "324", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/333", - "amount": "11481230811528565514" + "denom": "gamm/pool/324", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.017946345160300428, - "liquidity24hUsdChange": -4.370688844068438, + "liquidityUsd": 0.012946159548079487, + "liquidity24hUsdChange": -2.5500868323563575, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38875,15 +39642,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "3100881" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "619" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "332194" + "denom": "uosmo", + "amount": "8820" }, "weight": "536870912000000" } @@ -38902,8 +39669,8 @@ "denom": "gamm/pool/273", "amount": "10083886718750000" }, - "liquidityUsd": 0.017727428203357976, - "liquidity24hUsdChange": -4.563205074463597, + "liquidityUsd": 0.012733511151482874, + "liquidity24hUsdChange": -2.5624269681176775, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38938,8 +39705,8 @@ "denom": "gamm/pool/286", "amount": "525000000000000000" }, - "liquidityUsd": 0.017174562007304293, - "liquidity24hUsdChange": -7.287100192098799, + "liquidityUsd": 0.012534792128315458, + "liquidity24hUsdChange": -3.361012313655029, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38964,18 +39731,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "40", + "id": "333", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/40", - "amount": "9100000000000000000" + "denom": "gamm/pool/333", + "amount": "11481230811528565514" }, - "liquidityUsd": 0.016775878812554323, - "liquidity24hUsdChange": -4.526288020042783, + "liquidityUsd": 0.012473534018584158, + "liquidity24hUsdChange": -1.5925661774359743, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -38983,22 +39750,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "33117" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "10301" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "3100881" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "8544" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "332194" }, "weight": "536870912000000" } @@ -39007,18 +39767,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "755", + "id": "659", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/755", - "amount": "700713" + "denom": "gamm/pool/659", + "amount": "177535222134600" }, - "liquidityUsd": 0.01676557130914361, - "liquidity24hUsdChange": -4.776425224018841, + "liquidityUsd": 0.012400287357918585, + "liquidity24hUsdChange": -5.8751118338503625, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39026,54 +39786,63 @@ "pool_assets": [ { "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "1279734" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "13796" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/7F1A862E98185A286F011DD093D8BD2FA1B7CD1A723EC5E6C59F76692F1728F7", - "amount": "1537193" + "denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", + "amount": "146918062159462660000" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1291", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "154", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1291", - "amount": "10950942031084926" + "denom": "gamm/pool/154", + "amount": "143398485495009962" }, - "liquidityUsd": 0.016610539554429052, - "liquidity24hUsdChange": -0.007875234205256135, + "liquidityUsd": 0.012209416280431649, + "liquidity24hUsdChange": -1.314300606408084, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/09FAF1E04435E14C68DE7AB0D03C521C92975C792DB12B2EA390BAA2E06B3F3D", - "amount": "397" + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "88" + }, + "weight": "10737418240000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "16557" + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1446" + }, + "weight": "1052266987520000" + }, + { + "token": { + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "188551" + }, + "weight": "10737418240000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -39087,8 +39856,8 @@ "denom": "gamm/pool/345", "amount": "1000000000000000" }, - "liquidityUsd": 0.016558252722538327, - "liquidity24hUsdChange": -4.554061859021519, + "liquidityUsd": 0.011930431227248215, + "liquidity24hUsdChange": -2.4417458083253485, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39113,18 +39882,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "154", + "id": "34", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/154", - "amount": "143398485495009962" + "denom": "gamm/pool/34", + "amount": "62633235546784698" }, - "liquidityUsd": 0.016299899191877045, - "liquidity24hUsdChange": -4.441394337728337, + "liquidityUsd": 0.011688264298767966, + "liquidity24hUsdChange": -4.718019275903086, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39132,97 +39901,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "88" - }, - "weight": "10737418240000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1446" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "96216" }, - "weight": "1052266987520000" + "weight": "697932185600000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "188551" + "denom": "uosmo", + "amount": "5193" }, - "weight": "10737418240000" + "weight": "375809638400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "80", + "id": "755", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/80", - "amount": "2630902015920852" + "denom": "gamm/pool/755", + "amount": "700713" }, - "liquidityUsd": 0.016294342468411303, - "liquidity24hUsdChange": -6.772992339283064, + "liquidityUsd": 0.011648322882960043, + "liquidity24hUsdChange": -3.321543305843261, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.00039568164962638637, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "3292" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "1279734" }, - "weight": "751619276800000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "243" + "denom": "ibc/7F1A862E98185A286F011DD093D8BD2FA1B7CD1A723EC5E6C59F76692F1728F7", + "amount": "1537193" }, - "weight": "322122547200000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "862", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/862", - "amount": "30000000000000000" - }, - "liquidityUsd": 0.015798445049123533, - "liquidity24hUsdChange": 0.08364010273471209, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "11845656577110420" - }, - { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "3950" + "weight": "5368709120" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", @@ -39236,8 +39964,8 @@ "denom": "gamm/pool/1051", "amount": "14892053377485490" }, - "liquidityUsd": 0.015625796156143314, - "liquidity24hUsdChange": -5.191741220769037, + "liquidityUsd": 0.01143070639363328, + "liquidity24hUsdChange": -4.909624341707547, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39260,18 +39988,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "820", + "id": "52", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/820", - "amount": "4528466520787273" + "denom": "gamm/pool/52", + "amount": "33271875000000000" }, - "liquidityUsd": 0.01542066255914641, - "liquidity24hUsdChange": -1.4761935707832115, + "liquidityUsd": 0.011099302524623711, + "liquidity24hUsdChange": -2.197069095709655, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39279,51 +40007,22 @@ "pool_assets": [ { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "85335153068710340" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "1167" }, - "weight": "536870912000000" + "weight": "214748364800000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "9224" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1235", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1235", - "amount": "6006465207941750" - }, - "liquidityUsd": 0.015322282446970899, - "liquidity24hUsdChange": -7.323571544620526, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", - "amount": "41149310445290785" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "760" }, - "weight": "1020054732800000" + "weight": "805306368000000" }, { "token": { "denom": "uosmo", - "amount": "9854" + "amount": "661" }, "weight": "53687091200000" } @@ -39342,8 +40041,8 @@ "denom": "gamm/pool/313", "amount": "41259765625000000" }, - "liquidityUsd": 0.015316153314994984, - "liquidity24hUsdChange": -4.5510407050412125, + "liquidityUsd": 0.011046708209447257, + "liquidity24hUsdChange": -2.4019724856269584, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39366,76 +40065,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1052", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1052", - "amount": "30087539926290510" - }, - "liquidityUsd": 0.015194921793368451, - "liquidity24hUsdChange": -0.049994511468834955, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "7285963746502899" - }, - { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "7957" - } - ], - "scaling_factors": [ - "1000000000000", - "1" - ], - "scaling_factor_controller": "" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "426", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/426", - "amount": "200000000000000000" - }, - "liquidityUsd": 0.014828250366902192, - "liquidity24hUsdChange": -4.385371862967532, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "uion", - "amount": "10" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "8467" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "529", @@ -39448,8 +40077,8 @@ "denom": "gamm/pool/529", "amount": "262500000000000000" }, - "liquidityUsd": 0.014730596349043223, - "liquidity24hUsdChange": -4.987120563543178, + "liquidityUsd": 0.010908074636975781, + "liquidity24hUsdChange": -1.3863523713632968, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39474,18 +40103,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "511", + "id": "1235", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/511", - "amount": "12369172274285161" + "denom": "gamm/pool/1235", + "amount": "6006465207941750" }, - "liquidityUsd": 0.014077068434504798, - "liquidity24hUsdChange": -5.21300888560351, + "liquidityUsd": 0.010736241969699852, + "liquidity24hUsdChange": -3.3177042347020964, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39493,35 +40122,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "18217" + "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", + "amount": "41149310445290785" }, - "weight": "536870912000000" + "weight": "1020054732800000" }, { "token": { "denom": "uosmo", - "amount": "7055" + "amount": "9854" }, - "weight": "536870912000000" + "weight": "53687091200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "34", + "id": "426", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/34", - "amount": "62633235546784698" + "denom": "gamm/pool/426", + "amount": "200000000000000000" }, - "liquidityUsd": 0.014061532450385363, - "liquidity24hUsdChange": -4.159610091786845, + "liquidityUsd": 0.010359043993774616, + "liquidity24hUsdChange": -4.826399312844264, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39529,78 +40158,71 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "96216" + "denom": "uion", + "amount": "10" }, - "weight": "697932185600000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "5193" + "amount": "8467" }, - "weight": "375809638400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "52", + "id": "90", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.000300000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/52", - "amount": "33271875000000000" + "denom": "gamm/pool/90", + "amount": "31117757031642383" }, - "liquidityUsd": 0.013919136047581446, - "liquidity24hUsdChange": -5.441366346269874, + "liquidityUsd": 0.010136014062642158, + "liquidity24hUsdChange": -3.492143050970441, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.000630951819674508, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "1167" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "71625" }, - "weight": "214748364800000" + "weight": "536870912000000" }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "760" - }, - "weight": "805306368000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "661" + "amount": "611" }, - "weight": "53687091200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "609", + "id": "511", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/609", - "amount": "131869688385269121813" + "denom": "gamm/pool/511", + "amount": "12369172274285161" }, - "liquidityUsd": 0.01382736426058766, - "liquidity24hUsdChange": -5.801336053439282, + "liquidityUsd": 0.010040064536655503, + "liquidity24hUsdChange": -2.8554298362904755, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39608,15 +40230,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "51232830" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "18217" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "289276" + "denom": "uosmo", + "amount": "7055" }, "weight": "536870912000000" } @@ -39625,18 +40247,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "622", + "id": "161", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/622", - "amount": "1525878906250000" + "denom": "gamm/pool/161", + "amount": "116257000000000000" }, - "liquidityUsd": 0.013609894242815229, - "liquidity24hUsdChange": -4.795945687001943, + "liquidityUsd": 0.009877800623072447, + "liquidity24hUsdChange": -1.136764771989582, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39644,35 +40266,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "amount": "15790" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1064" }, - "weight": "536870912000000" + "weight": "966367641600000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "164017" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "47862" }, - "weight": "536870912000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "161", + "id": "609", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/161", - "amount": "116257000000000000" + "denom": "gamm/pool/609", + "amount": "131869688385269121813" }, - "liquidityUsd": 0.013378130793547317, - "liquidity24hUsdChange": -4.429062098278033, + "liquidityUsd": 0.009685618953117207, + "liquidity24hUsdChange": -3.2884255103754945, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39680,35 +40302,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1064" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "51232830" }, - "weight": "966367641600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "47862" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "289276" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "84", + "id": "1341", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/84", - "amount": "7651325971041832" + "denom": "gamm/pool/1341", + "amount": "108992875187287" }, - "liquidityUsd": 0.013036853838922419, - "liquidity24hUsdChange": -4.573925735720791, + "liquidityUsd": 0.009489410617236863, + "liquidity24hUsdChange": -3.878478300527267, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39716,15 +40338,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "365" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "5431" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "7081" + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "amount": "641947899149" }, "weight": "536870912000000" } @@ -39733,18 +40355,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "781", + "id": "84", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000200000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/781", - "amount": "8885348899677151" + "denom": "gamm/pool/84", + "amount": "7651325971041832" }, - "liquidityUsd": 0.013029379861146474, - "liquidity24hUsdChange": -3.786180496507235, + "liquidityUsd": 0.009330381126834474, + "liquidity24hUsdChange": -2.7045276451472025, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39752,15 +40374,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", - "amount": "5390440092561474" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "365" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "6325" + "amount": "7081" }, "weight": "536870912000000" } @@ -39779,8 +40401,8 @@ "denom": "gamm/pool/323", "amount": "17013326410420020" }, - "liquidityUsd": 0.012814252425253306, - "liquidity24hUsdChange": -4.446955094500589, + "liquidityUsd": 0.009286226806677244, + "liquidity24hUsdChange": -2.623827454683218, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39812,18 +40434,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1341", + "id": "781", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000200000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1341", - "amount": "108992875187287" + "denom": "gamm/pool/781", + "amount": "8885348899677151" }, - "liquidityUsd": 0.012754172795828054, - "liquidity24hUsdChange": -11.778875055921429, + "liquidityUsd": 0.009276951001237306, + "liquidity24hUsdChange": -4.231713931234359, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39831,71 +40453,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "5431" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "amount": "641947899149" + "denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", + "amount": "5390440092561474" }, "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "343", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/343", - "amount": "100000000000000000000" - }, - "liquidityUsd": 0.012569780453444776, - "liquidity24hUsdChange": -4.529296202795707, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "85959" - }, - "weight": "322122547200000" }, { "token": { "denom": "uosmo", - "amount": "7193" + "amount": "6325" }, - "weight": "751619276800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "728", + "id": "622", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/728", - "amount": "199236279269114298" + "denom": "gamm/pool/622", + "amount": "1525878906250000" }, - "liquidityUsd": 0.012533385856093978, - "liquidity24hUsdChange": -4.102100109053431, + "liquidityUsd": 0.009203798128068492, + "liquidity24hUsdChange": -0.7328434513324213, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39903,15 +40489,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "5244" + "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "amount": "15790" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "6141" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "164017" }, "weight": "536870912000000" } @@ -39930,8 +40516,8 @@ "denom": "gamm/pool/467", "amount": "100000000000000000" }, - "liquidityUsd": 0.012494961974988308, - "liquidity24hUsdChange": -4.552331875645635, + "liquidityUsd": 0.009008022653666656, + "liquidity24hUsdChange": -2.4189644378473907, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39956,18 +40542,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "373", + "id": "343", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/373", - "amount": "126904393129015" + "denom": "gamm/pool/343", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.012335544836109942, - "liquidity24hUsdChange": -6.51490168291768, + "liquidityUsd": 0.008833205166902223, + "liquidity24hUsdChange": -2.743093405415998, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -39975,35 +40561,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "2257" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "85959" }, - "weight": "536870912000000" + "weight": "322122547200000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "76365" + "denom": "uosmo", + "amount": "7193" }, - "weight": "536870912000000" + "weight": "751619276800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "683", + "id": "443", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/683", - "amount": "1250000000000000000" + "denom": "gamm/pool/443", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.0122064390108742, - "liquidity24hUsdChange": -4.300574931676822, + "liquidityUsd": 0.008732308321600254, + "liquidity24hUsdChange": -2.371518477926066, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40011,15 +40597,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "38389884" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "505" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "7281" + "denom": "uosmo", + "amount": "5168" }, "weight": "536870912000000" } @@ -40028,18 +40614,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "90", + "id": "728", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000300000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/90", - "amount": "31117757031642383" + "denom": "gamm/pool/728", + "amount": "199236279269114298" }, - "liquidityUsd": 0.012121797575658566, - "liquidity24hUsdChange": -4.130255005025965, + "liquidityUsd": 0.008633604534540273, + "liquidity24hUsdChange": -3.2884549670960204, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40047,15 +40633,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "71625" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "5244" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "611" + "denom": "uosmo", + "amount": "6141" }, "weight": "536870912000000" } @@ -40064,18 +40650,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "443", + "id": "136", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/443", - "amount": "100000000000000000000" + "denom": "gamm/pool/136", + "amount": "36900000000000000" }, - "liquidityUsd": 0.012097837286482845, - "liquidity24hUsdChange": -4.548724820536865, + "liquidityUsd": 0.008625037994067115, + "liquidity24hUsdChange": -3.42424330952631, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40083,35 +40669,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "505" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "1795" }, - "weight": "536870912000000" + "weight": "751619276800000" }, { "token": { "denom": "uosmo", - "amount": "5168" + "amount": "2094" }, - "weight": "536870912000000" + "weight": "322122547200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1068", + "id": "683", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1068", - "amount": "188626755961057820601" + "denom": "gamm/pool/683", + "amount": "1250000000000000000" }, - "liquidityUsd": 0.011665913265732408, - "liquidity24hUsdChange": -4.625215344977825, + "liquidityUsd": 0.008483858392731056, + "liquidity24hUsdChange": -2.9162281178974228, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40119,15 +40705,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/4E2A6E691D0EB60A25AE582F29D19B20671F723DF6978258F4043DA5692120AE", - "amount": "9935722710" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "38389884" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "9092" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "7281" }, "weight": "536870912000000" } @@ -40136,18 +40722,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "303", + "id": "603", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/303", - "amount": "800000000000000" + "denom": "gamm/pool/603", + "amount": "800485844788080" }, - "liquidityUsd": 0.011431149229753258, - "liquidity24hUsdChange": -4.2532878811664485, + "liquidityUsd": 0.008360305234252593, + "liquidity24hUsdChange": -4.5789017415101725, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40155,15 +40741,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "763" + "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", + "amount": "82454999" }, "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "8" + "denom": "uosmo", + "amount": "3400" }, "weight": "536870912000000" } @@ -40172,18 +40758,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "445", + "id": "303", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/445", - "amount": "1200000000000000" + "denom": "gamm/pool/303", + "amount": "800000000000000" }, - "liquidityUsd": 0.011379877716843585, - "liquidity24hUsdChange": -4.562908920712087, + "liquidityUsd": 0.008323244396385359, + "liquidity24hUsdChange": -3.2384872099213, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40192,14 +40778,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "387" + "amount": "763" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "5604" + "denom": "uion", + "amount": "8" }, "weight": "536870912000000" } @@ -40208,18 +40794,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "603", + "id": "1068", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/603", - "amount": "800485844788080" + "denom": "gamm/pool/1068", + "amount": "188626755961057820601" }, - "liquidityUsd": 0.010810745462105451, - "liquidity24hUsdChange": -4.893584951905358, + "liquidityUsd": 0.008203912782558583, + "liquidity24hUsdChange": -3.393444051277473, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40227,15 +40813,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", - "amount": "82454999" + "denom": "ibc/4E2A6E691D0EB60A25AE582F29D19B20671F723DF6978258F4043DA5692120AE", + "amount": "9935722710" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3400" + "amount": "9092" }, "weight": "536870912000000" } @@ -40244,18 +40830,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "666", + "id": "445", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/666", - "amount": "4500000000000000" + "denom": "gamm/pool/445", + "amount": "1200000000000000" }, - "liquidityUsd": 0.010748409112205218, - "liquidity24hUsdChange": -5.6494094408567275, + "liquidityUsd": 0.008174919397052505, + "liquidity24hUsdChange": -2.5585106887744953, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40264,14 +40850,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "639" + "amount": "387" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "283249803" + "denom": "uosmo", + "amount": "5604" }, "weight": "536870912000000" } @@ -40280,18 +40866,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "665", + "id": "666", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/665", - "amount": "4171875000000000" + "denom": "gamm/pool/666", + "amount": "4500000000000000" }, - "liquidityUsd": 0.010629627963201197, - "liquidity24hUsdChange": -5.456837665235137, + "liquidityUsd": 0.00782473024809619, + "liquidity24hUsdChange": -1.246826936602188, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40300,14 +40886,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "689" + "amount": "639" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "234448576" + "amount": "283249803" }, "weight": "536870912000000" } @@ -40328,27 +40914,27 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.001000000000000000", - "liquidityUsd": 0.010557990355604724, - "liquidity24hUsdChange": -2.3850615686684433, + "liquidityUsd": 0.00782472162212833, + "liquidity24hUsdChange": -22.37917197075007, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1486.5969189090633, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "406", + "id": "665", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/406", - "amount": "2400000000000000" + "denom": "gamm/pool/665", + "amount": "4171875000000000" }, - "liquidityUsd": 0.010532224192717009, - "liquidity24hUsdChange": -4.556149929888641, + "liquidityUsd": 0.007766580412458975, + "liquidity24hUsdChange": -1.2346518896190632, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40357,14 +40943,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "397" + "amount": "689" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "4859" + "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "amount": "234448576" }, "weight": "536870912000000" } @@ -40372,55 +40958,63 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "136", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "955", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/136", - "amount": "36900000000000000" + "denom": "gamm/pool/955", + "amount": "38841458200131092904" }, - "liquidityUsd": 0.010137136846983748, - "liquidity24hUsdChange": -6.535870271557009, + "liquidityUsd": 0.007741185607648825, + "liquidity24hUsdChange": -1.0000973472366796, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "1795" - }, - "weight": "751619276800000" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "5387360326240654" }, { - "token": { - "denom": "uosmo", - "amount": "2094" - }, - "weight": "322122547200000" + "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "amount": "27718" + }, + { + "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "amount": "15685933451560084" + }, + { + "denom": "uosmo", + "amount": "2547" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1", + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "370", + "id": "406", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/370", - "amount": "10000000000000000" + "denom": "gamm/pool/406", + "amount": "2400000000000000" }, - "liquidityUsd": 0.010124822081156023, - "liquidity24hUsdChange": -4.5490219468227515, + "liquidityUsd": 0.007583265799586593, + "liquidity24hUsdChange": -2.4692649539110123, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40429,14 +41023,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "421" + "amount": "397" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "4339" + "amount": "4859" }, "weight": "536870912000000" } @@ -40445,18 +41039,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "688", + "id": "370", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/688", - "amount": "943789571156356901" + "denom": "gamm/pool/370", + "amount": "10000000000000000" }, - "liquidityUsd": 0.010091069842913278, - "liquidity24hUsdChange": -3.399866403779555, + "liquidityUsd": 0.007307441623244766, + "liquidity24hUsdChange": -2.375424033200268, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40464,15 +41058,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "307812" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "421" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", - "amount": "837223" + "denom": "uosmo", + "amount": "4339" }, "weight": "536870912000000" } @@ -40481,18 +41075,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "940", + "id": "261", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/940", - "amount": "46290694757856793" + "denom": "gamm/pool/261", + "amount": "1562500000000000000" }, - "liquidityUsd": 0.009770266988380117, - "liquidity24hUsdChange": -5.223513342071207, + "liquidityUsd": 0.006995192030123651, + "liquidity24hUsdChange": -3.3628507637536877, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40500,15 +41094,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", - "amount": "30866222" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "3094045" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", - "amount": "6595" + "denom": "uosmo", + "amount": "3151" }, "weight": "536870912000000" } @@ -40517,18 +41111,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "261", + "id": "1497", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/261", - "amount": "1562500000000000000" + "denom": "gamm/pool/1497", + "amount": "144264748840153" }, - "liquidityUsd": 0.009605022452855737, - "liquidity24hUsdChange": -7.134992605862661, + "liquidityUsd": 0.006914100635676662, + "liquidity24hUsdChange": -2.4248700099970644, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40536,15 +41130,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "3094045" + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "1253152510229" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "3151" + "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "amount": "1690923" }, "weight": "536870912000000" } @@ -40553,18 +41147,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "480", + "id": "940", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/480", - "amount": "3682578583967" + "denom": "gamm/pool/940", + "amount": "46290694757856793" }, - "liquidityUsd": 0.009580576840850754, - "liquidity24hUsdChange": -3.290994522294255, + "liquidityUsd": 0.006829749642225282, + "liquidity24hUsdChange": -3.1925593153208807, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40572,15 +41166,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "517" + "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "amount": "30866222" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "3955" + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "amount": "6595" }, "weight": "536870912000000" } @@ -40589,18 +41183,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "934", + "id": "480", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/934", - "amount": "3111270527261447" + "denom": "gamm/pool/480", + "amount": "3682578583967" }, - "liquidityUsd": 0.00936334779073585, - "liquidity24hUsdChange": -4.625215344977826, + "liquidityUsd": 0.006787516112381106, + "liquidity24hUsdChange": -1.7340600367175292, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40608,15 +41202,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", - "amount": "21074395" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "517" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "4595" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "3955" }, "weight": "536870912000000" } @@ -40625,18 +41219,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "589", + "id": "688", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/589", - "amount": "2400000000000000" + "denom": "gamm/pool/688", + "amount": "943789571156356901" }, - "liquidityUsd": 0.00927929251635817, - "liquidity24hUsdChange": -4.356058089838713, + "liquidityUsd": 0.006643853852831939, + "liquidity24hUsdChange": -3.272592314049102, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40645,14 +41239,14 @@ { "token": { "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "237708" + "amount": "307812" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", - "amount": "386668" + "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "amount": "837223" }, "weight": "536870912000000" } @@ -40661,18 +41255,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "496", + "id": "934", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/496", - "amount": "2000000000000000" + "denom": "gamm/pool/934", + "amount": "3111270527261447" }, - "liquidityUsd": 0.009098470154302084, - "liquidity24hUsdChange": -4.5519088388357245, + "liquidityUsd": 0.0065737940748866915, + "liquidity24hUsdChange": -3.393444051277475, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40680,15 +41274,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "364" + "denom": "ibc/8BE73A810E22F80E5E850531A688600D63AE7392E7C2770AE758CAA4FD921B7F", + "amount": "21074395" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "4020" + "amount": "4595" }, "weight": "536870912000000" } @@ -40697,18 +41291,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "639", + "id": "496", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/639", - "amount": "16085702412497259" + "denom": "gamm/pool/496", + "amount": "2000000000000000" }, - "liquidityUsd": 0.008800587583112605, - "liquidity24hUsdChange": -3.0751804732687193, + "liquidityUsd": 0.006560315456036363, + "liquidity24hUsdChange": -2.4133962003652547, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40716,79 +41310,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", - "amount": "1950" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "364" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3540" + "amount": "4020" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "955", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/955", - "amount": "38841458200131092904" - }, - "liquidityUsd": 0.008723563578163956, - "liquidity24hUsdChange": -1.746880486723426, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "5387360326240654" - }, - { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "amount": "27718" - }, - { - "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", - "amount": "15685933451560084" - }, - { - "denom": "uosmo", - "amount": "2547" - } - ], - "scaling_factors": [ - "1", - "1", - "1", - "1" - ], - "scaling_factor_controller": "" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1497", + "id": "589", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1497", - "amount": "144264748840153" + "denom": "gamm/pool/589", + "amount": "2400000000000000" }, - "liquidityUsd": 0.008485326673199858, - "liquidity24hUsdChange": -3.0090890999036812, + "liquidityUsd": 0.006536609265362351, + "liquidity24hUsdChange": -2.8449898833775022, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40796,15 +41346,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "1253152510229" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "237708" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", - "amount": "1690923" + "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "amount": "386668" }, "weight": "536870912000000" } @@ -40823,8 +41373,8 @@ "denom": "gamm/pool/368", "amount": "64516013234267" }, - "liquidityUsd": 0.008446412157315569, - "liquidity24hUsdChange": -4.698184430925612, + "liquidityUsd": 0.006442712921415822, + "liquidity24hUsdChange": -3.665818852404242, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40849,18 +41399,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "110", + "id": "98", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/110", - "amount": "49698358728859533" + "denom": "gamm/pool/98", + "amount": "200000000000000000" }, - "liquidityUsd": 0.008364228925884306, - "liquidity24hUsdChange": -4.570677554214115, + "liquidityUsd": 0.006421503407935493, + "liquidity24hUsdChange": -4.5642256330004285, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40868,15 +41418,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "249" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "821" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "4418" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "45903" }, "weight": "536870912000000" } @@ -40885,34 +41435,34 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "516", + "id": "639", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/516", - "amount": "1117187500000000000" + "denom": "gamm/pool/639", + "amount": "16085702412497259" }, - "liquidityUsd": 0.008129758933856935, - "liquidity24hUsdChange": -5.041810497388815, + "liquidityUsd": 0.0059935055182749036, + "liquidity24hUsdChange": -2.0456127512935662, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0002910120736560647, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "7443" + "denom": "ibc/F867AE2112EFE646EC71A25CD2DFABB8927126AC1E19F1BBF0FF693A4ECA05DE", + "amount": "1950" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "4736" + "amount": "3540" }, "weight": "536870912000000" } @@ -40921,18 +41471,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "444", + "id": "110", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.004000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/444", - "amount": "6250000000000000000" + "denom": "gamm/pool/110", + "amount": "49698358728859533" }, - "liquidityUsd": 0.007937415712064598, - "liquidity24hUsdChange": -4.427198553478495, + "liquidityUsd": 0.005992811206886391, + "liquidity24hUsdChange": -2.661405015565339, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -40941,57 +41491,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "726" - }, - "weight": "1063004405760000" - }, - { - "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "34381" - }, - "weight": "5368709120000" - }, - { - "token": { - "denom": "uosmo", - "amount": "21" - }, - "weight": "5368709120000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "18", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/18", - "amount": "200000000000000000" - }, - "liquidityUsd": 0.007739631375788335, - "liquidity24hUsdChange": -7.610851611289235, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "3202804" + "amount": "249" }, "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "5" + "denom": "uosmo", + "amount": "4418" }, "weight": "536870912000000" } @@ -41000,18 +41507,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "85", + "id": "444", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.004000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/85", - "amount": "6250000000000000" + "denom": "gamm/pool/444", + "amount": "6250000000000000000" }, - "liquidityUsd": 0.007668356577103767, - "liquidity24hUsdChange": -4.604199256148297, + "liquidityUsd": 0.005910342969259651, + "liquidity24hUsdChange": -1.2103101035386084, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41020,106 +41527,41 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "88" - }, - "weight": "214748364800000" - }, - { - "token": { - "denom": "uosmo", - "amount": "5234" - }, - "weight": "858993459200000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "752", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/752", - "amount": "755496382410806" - }, - "liquidityUsd": 0.007574779165674316, - "liquidity24hUsdChange": -4.776425224018846, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", - "amount": "578191" + "amount": "726" }, - "weight": "5368709120" + "weight": "1063004405760000" }, { "token": { - "denom": "ibc/F35C87A18804313088DAAF6FD430FCCCF1362BC3464D4FAD783C476F594C9CA7", - "amount": "11234891" - }, - "weight": "5368709120" - } - ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "145", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/145", - "amount": "4000000000000000" - }, - "liquidityUsd": 0.007521407904831088, - "liquidity24hUsdChange": -4.543839867540651, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "334" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "34381" }, - "weight": "536870912000000" + "weight": "5368709120000" }, { "token": { "denom": "uosmo", - "amount": "3044" + "amount": "21" }, - "weight": "536870912000000" + "weight": "5368709120000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1237", + "id": "129", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1237", - "amount": "100000000000000000000" + "denom": "gamm/pool/129", + "amount": "3600000000000000" }, - "liquidityUsd": 0.0072050580686355385, - "liquidity24hUsdChange": -11.182821407569175, + "liquidityUsd": 0.005794236233795085, + "liquidity24hUsdChange": -3.5366776189745694, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41127,15 +41569,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", - "amount": "49067614446705450" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "41750" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "3126" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "342" }, "weight": "536870912000000" } @@ -41144,18 +41586,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "167", + "id": "516", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/167", - "amount": "80208742057831950" + "denom": "gamm/pool/516", + "amount": "1117187500000000000" }, - "liquidityUsd": 0.006949084863842115, - "liquidity24hUsdChange": -4.543202496059641, + "liquidityUsd": 0.005774574303378667, + "liquidity24hUsdChange": -3.0118676506799833, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41163,15 +41605,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "311" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "7443" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2792" + "amount": "4736" }, "weight": "536870912000000" } @@ -41180,18 +41622,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "98", + "id": "18", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/98", + "denom": "gamm/pool/18", "amount": "200000000000000000" }, - "liquidityUsd": 0.006937300653365669, - "liquidity24hUsdChange": -5.472645359054556, + "liquidityUsd": 0.005657462651355862, + "liquidity24hUsdChange": -4.668887238047774, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41199,15 +41641,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "821" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "3202804" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "45903" + "denom": "uion", + "amount": "5" }, "weight": "536870912000000" } @@ -41216,18 +41658,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "129", + "id": "998", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, - "total_shares": { - "denom": "gamm/pool/129", - "amount": "3600000000000000" + "total_shares": { + "denom": "gamm/pool/998", + "amount": "83283044398134089" }, - "liquidityUsd": 0.006912580395552391, - "liquidity24hUsdChange": -4.1230164161255916, + "liquidityUsd": 0.005646, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41235,15 +41677,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "41750" + "denom": "ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A", + "amount": "1022011957" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "342" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "5646" }, "weight": "536870912000000" } @@ -41252,18 +41694,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "897", + "id": "272", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/897", - "amount": "57483891169824002" + "denom": "gamm/pool/272", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.006788863516166979, - "liquidity24hUsdChange": -4.625215344977832, + "liquidityUsd": 0.005568318449383765, + "liquidity24hUsdChange": -3.2042620518206446, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41271,35 +41713,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", - "amount": "134" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "961" }, - "weight": "858993459200000" + "weight": "322122547200000" }, { "token": { - "denom": "uosmo", - "amount": "5291" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "64" }, - "weight": "214748364800000" + "weight": "322122547200000" + }, + { + "token": { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "1077977" + }, + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "58", + "id": "145", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/58", - "amount": "50684701566915128" + "denom": "gamm/pool/145", + "amount": "4000000000000000" }, - "liquidityUsd": 0.006752996325458133, - "liquidity24hUsdChange": -4.563085878814708, + "liquidityUsd": 0.0054379198972687205, + "liquidity24hUsdChange": -2.3073790004361316, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41308,59 +41757,52 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "229" + "amount": "334" }, - "weight": "579820584960000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3331" + "amount": "3044" }, - "weight": "493921239040000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "272", + "id": "85", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/272", - "amount": "100000000000000000000" + "denom": "gamm/pool/85", + "amount": "6250000000000000" }, - "liquidityUsd": 0.006619367997261445, - "liquidity24hUsdChange": -7.424535676400006, + "liquidityUsd": 0.00543182622465432, + "liquidity24hUsdChange": -3.1093257568641657, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ - { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "961" - }, - "weight": "322122547200000" - }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "64" + "amount": "88" }, - "weight": "322122547200000" + "weight": "214748364800000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "1077977" + "denom": "uosmo", + "amount": "5234" }, - "weight": "429496729600000" + "weight": "858993459200000" } ], "total_weight": "1073741824000000" @@ -41377,8 +41819,8 @@ "denom": "gamm/pool/887", "amount": "925451142927503446" }, - "liquidityUsd": 0.006419591182309224, - "liquidity24hUsdChange": -2.5665257485117965, + "liquidityUsd": 0.0053209892293500614, + "liquidity24hUsdChange": -1.1888062507473576, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41417,18 +41859,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "431", + "id": "752", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.040000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/431", - "amount": "262500000000000000" + "denom": "gamm/pool/752", + "amount": "755496382410806" }, - "liquidityUsd": 0.0063525449580429955, - "liquidity24hUsdChange": -4.542712364015227, + "liquidityUsd": 0.005262777620991199, + "liquidity24hUsdChange": -3.3215433058432433, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41436,20 +41878,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "286" + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "amount": "578191" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "2538" + "denom": "ibc/F35C87A18804313088DAAF6FD430FCCCF1362BC3464D4FAD783C476F594C9CA7", + "amount": "11234891" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -41463,8 +41905,8 @@ "denom": "gamm/pool/424", "amount": "525000000000000000" }, - "liquidityUsd": 0.0063133675082273355, - "liquidity24hUsdChange": -5.895771803056631, + "liquidityUsd": 0.005127882188354385, + "liquidity24hUsdChange": -2.455689807275557, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41489,18 +41931,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "228", + "id": "167", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/228", - "amount": "1000000000000000" + "denom": "gamm/pool/167", + "amount": "80208742057831950" }, - "liquidityUsd": 0.006285201369172724, - "liquidity24hUsdChange": -4.548830779528927, + "liquidityUsd": 0.005025209029984214, + "liquidity24hUsdChange": -2.299020089042089, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41509,14 +41951,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "262" + "amount": "311" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2688" + "amount": "2792" }, "weight": "536870912000000" } @@ -41525,18 +41967,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "172", + "id": "1237", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1237", + "amount": "100000000000000000000" + }, + "liquidityUsd": 0.00502040321889481, + "liquidity24hUsdChange": -3.20006990381388, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", + "amount": "49067614446705450" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "3126" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "180", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/172", - "amount": "400000000000000" + "denom": "gamm/pool/180", + "amount": "489147920313274516" }, - "liquidityUsd": 0.006274450691905773, - "liquidity24hUsdChange": -4.546946094352553, + "liquidityUsd": 0.004889262520305698, + "liquidity24hUsdChange": -4.563337908361553, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41544,15 +42022,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "268" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "35490" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2629" + "amount": "2556" }, "weight": "536870912000000" } @@ -41561,18 +42039,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "414", + "id": "58", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/414", - "amount": "1400000000000000" + "denom": "gamm/pool/58", + "amount": "50684701566915128" }, - "liquidityUsd": 0.006172450846714589, - "liquidity24hUsdChange": -4.548028573636863, + "liquidityUsd": 0.004850834279441019, + "liquidity24hUsdChange": -2.560850688859157, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41581,14 +42059,50 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "260" + "amount": "229" }, - "weight": "536870912000000" + "weight": "579820584960000" }, { "token": { "denom": "uosmo", - "amount": "2617" + "amount": "3331" + }, + "weight": "493921239040000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "1256", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1256", + "amount": "775810910474791" + }, + "liquidityUsd": 0.004842714080655677, + "liquidity24hUsdChange": 0.33740877073765563, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "amount": "121783148116896" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1729" }, "weight": "536870912000000" } @@ -41597,18 +42111,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "344", + "id": "897", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/344", - "amount": "390625000000000000" + "denom": "gamm/pool/897", + "amount": "57483891169824002" }, - "liquidityUsd": 0.0061498318912270086, - "liquidity24hUsdChange": -4.567495312268734, + "liquidityUsd": 0.004774186376211775, + "liquidity24hUsdChange": -3.3934440512774895, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41616,17 +42130,17 @@ "pool_assets": [ { "token": { - "denom": "uion", - "amount": "1" + "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", + "amount": "134" }, - "weight": "268435456000000" + "weight": "858993459200000" }, { "token": { "denom": "uosmo", - "amount": "4484" + "amount": "5291" }, - "weight": "805306368000000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" @@ -41643,8 +42157,8 @@ "denom": "gamm/pool/201", "amount": "2600000000000000000" }, - "liquidityUsd": 0.00614358921620811, - "liquidity24hUsdChange": -1.8411988285523984, + "liquidityUsd": 0.004737966389732805, + "liquidity24hUsdChange": -4.170027644593528, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41686,8 +42200,8 @@ "denom": "gamm/pool/1118", "amount": "72794910670836044" }, - "liquidityUsd": 0.006124905412032659, - "liquidity24hUsdChange": -4.740859439630099, + "liquidityUsd": 0.004682611750739379, + "liquidity24hUsdChange": -0.6978389259789812, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41712,54 +42226,68 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "442", + "id": "31", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/442", - "amount": "24414062500000000" + "denom": "gamm/pool/31", + "amount": "100000000000000000" }, - "liquidityUsd": 0.006088414352350534, - "liquidity24hUsdChange": -4.549372014711611, + "liquidityUsd": 0.004681725416464789, + "liquidity24hUsdChange": -3.310181543417781, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ + { + "token": { + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "13692" + }, + "weight": "268435456000000" + }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "252" + "amount": "180" }, - "weight": "536870912000000" + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "2657" + }, + "weight": "268435456000000" }, { "token": { "denom": "uosmo", - "amount": "2619" + "amount": "1609" }, - "weight": "536870912000000" + "weight": "268435456000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "180", + "id": "431", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.040000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/180", - "amount": "489147920313274516" + "denom": "gamm/pool/431", + "amount": "262500000000000000" }, - "liquidityUsd": 0.006008555041925974, - "liquidity24hUsdChange": -4.223563946873523, + "liquidityUsd": 0.004594578240951541, + "liquidity24hUsdChange": -2.292593706932843, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41767,15 +42295,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "35490" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "286" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2556" + "amount": "2538" }, "weight": "536870912000000" } @@ -41794,8 +42322,8 @@ "denom": "gamm/pool/176", "amount": "46174863328060480310588" }, - "liquidityUsd": 0.005978505353295937, - "liquidity24hUsdChange": -7.43681871865583, + "liquidityUsd": 0.004591888791671533, + "liquidity24hUsdChange": -3.760375646743973, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41827,18 +42355,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "293", + "id": "228", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000200000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/293", - "amount": "76237770000000000" + "denom": "gamm/pool/228", + "amount": "1000000000000000" }, - "liquidityUsd": 0.005932284082746124, - "liquidity24hUsdChange": -4.4557794953701535, + "liquidityUsd": 0.00453654323014569, + "liquidity24hUsdChange": -2.372911191917094, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41847,14 +42375,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "548" + "amount": "262" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/CD942F878C80FBE9DEAB8F8E57F592C7252D06335F193635AF002ACBD69139CC", - "amount": "383" + "denom": "uosmo", + "amount": "2688" }, "weight": "536870912000000" } @@ -41863,68 +42391,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "31", + "id": "172", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/31", - "amount": "100000000000000000" + "denom": "gamm/pool/172", + "amount": "400000000000000" }, - "liquidityUsd": 0.005908469377853351, - "liquidity24hUsdChange": -4.4376708794696125, + "liquidityUsd": 0.004531652057107491, + "liquidity24hUsdChange": -2.348148419531141, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ - { - "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "13692" - }, - "weight": "268435456000000" - }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "180" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "2657" + "amount": "268" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1609" + "amount": "2629" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1256", + "id": "414", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1256", - "amount": "775810910474791" + "denom": "gamm/pool/414", + "amount": "1400000000000000" }, - "liquidityUsd": 0.00578256336521038, - "liquidity24hUsdChange": -4.651296338537284, + "liquidityUsd": 0.00445636308160512, + "liquidity24hUsdChange": -2.3623686364359924, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41932,15 +42446,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "amount": "121783148116896" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "260" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1729" + "denom": "uosmo", + "amount": "2617" }, "weight": "536870912000000" } @@ -41949,18 +42463,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "591", + "id": "293", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000200000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/591", - "amount": "700000000000000" + "denom": "gamm/pool/293", + "amount": "76237770000000000" }, - "liquidityUsd": 0.005768024072545954, - "liquidity24hUsdChange": -4.768907056062342, + "liquidityUsd": 0.004415586033168156, + "liquidity24hUsdChange": -1.1734790346351693, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -41968,63 +42482,107 @@ "pool_assets": [ { "token": { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "amount": "2673" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "548" }, - "weight": "161061273600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "62" + "denom": "ibc/CD942F878C80FBE9DEAB8F8E57F592C7252D06335F193635AF002ACBD69139CC", + "amount": "383" }, - "weight": "161061273600000" - }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "442", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/442", + "amount": "24414062500000000" + }, + "liquidityUsd": 0.004393706615886714, + "liquidity24hUsdChange": -2.3800261067641273, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "1541" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "252" }, - "weight": "161061273600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "62421" + "denom": "uosmo", + "amount": "2619" }, - "weight": "214748364800000" - }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "344", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.050000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/344", + "amount": "390625000000000000" + }, + "liquidityUsd": 0.004317920673464608, + "liquidity24hUsdChange": -3.7411417811994, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { "token": { - "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", - "amount": "81647" + "denom": "uion", + "amount": "1" }, - "weight": "161061273600000" + "weight": "268435456000000" }, { "token": { "denom": "uosmo", - "amount": "625" + "amount": "4484" }, - "weight": "214748364800000" + "weight": "805306368000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "225", + "id": "327", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/225", - "amount": "75600000000000000" + "denom": "gamm/pool/327", + "amount": "440000000000000" }, - "liquidityUsd": 0.00571934441523924, - "liquidity24hUsdChange": -4.5691592535039565, + "liquidityUsd": 0.004206339728659786, + "liquidity24hUsdChange": -3.1652547545638177, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42032,15 +42590,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "175" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "1000" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2981" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "16655" }, "weight": "536870912000000" } @@ -42049,18 +42607,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "998", + "id": "225", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/998", - "amount": "83283044398134089" + "denom": "gamm/pool/225", + "amount": "75600000000000000" }, - "liquidityUsd": 0.005646, - "liquidity24hUsdChange": 0, + "liquidityUsd": 0.004099909042522375, + "liquidity24hUsdChange": -2.6412686104098855, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42068,15 +42626,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A", - "amount": "1022011957" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "175" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "5646" + "denom": "uosmo", + "amount": "2981" }, "weight": "536870912000000" } @@ -42085,54 +42643,68 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "570", + "id": "1270", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/570", - "amount": "400000000000000" + "denom": "gamm/pool/1270", + "amount": "181357025851535" }, - "liquidityUsd": 0.005454240750539933, - "liquidity24hUsdChange": -4.539200582733273, + "liquidityUsd": 0.004077780427159917, + "liquidity24hUsdChange": -3.496378206673296, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ + { + "token": { + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "amount": "1313" + }, + "weight": "268435456000000" + }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "256" + "amount": "134" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { - "denom": "uosmo", - "amount": "2091" + "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "amount": "81" }, - "weight": "536870912000000" + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "4481" + }, + "weight": "268435456000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "640", + "id": "591", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/640", - "amount": "5404552061858" + "denom": "gamm/pool/591", + "amount": "700000000000000" }, - "liquidityUsd": 0.005410979342362832, - "liquidity24hUsdChange": -3.9235020013936284, + "liquidityUsd": 0.004054553853787405, + "liquidity24hUsdChange": -1.8164041021576014, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42140,35 +42712,63 @@ "pool_assets": [ { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "28168" + "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "amount": "2673" + }, + "weight": "161061273600000" + }, + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "62" + }, + "weight": "161061273600000" + }, + { + "token": { + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "1541" + }, + "weight": "161061273600000" + }, + { + "token": { + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "62421" + }, + "weight": "214748364800000" + }, + { + "token": { + "denom": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "amount": "81647" }, - "weight": "536870912000000" + "weight": "161061273600000" }, { "token": { - "denom": "uion", - "amount": "11" + "denom": "uosmo", + "amount": "625" }, - "weight": "536870912000000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "78", + "id": "570", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/78", - "amount": "419044494628906" + "denom": "gamm/pool/570", + "amount": "400000000000000" }, - "liquidityUsd": 0.0053691084304520855, - "liquidity24hUsdChange": -4.552182222839017, + "liquidityUsd": 0.003949511087592334, + "liquidity24hUsdChange": -2.2465878431643747, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42177,14 +42777,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "214" + "amount": "256" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2379" + "amount": "2091" }, "weight": "536870912000000" } @@ -42203,8 +42803,8 @@ "denom": "gamm/pool/1008", "amount": "99634001733088430" }, - "liquidityUsd": 0.005250287919948669, - "liquidity24hUsdChange": -4.455779495370141, + "liquidityUsd": 0.003907954792128751, + "liquidity24hUsdChange": -1.173479034635182, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42227,18 +42827,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "185", + "id": "78", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/185", - "amount": "275000000000000000" + "denom": "gamm/pool/78", + "amount": "419044494628906" }, - "liquidityUsd": 0.005229325571948481, - "liquidity24hUsdChange": -4.547773637567021, + "liquidityUsd": 0.0038709590329314624, + "liquidity24hUsdChange": -2.416994513106021, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42247,14 +42847,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "221" + "amount": "214" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2211" + "amount": "2379" }, "weight": "536870912000000" } @@ -42263,18 +42863,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1270", + "id": "1577", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1270", - "amount": "181357025851535" + "denom": "gamm/pool/1577", + "amount": "1000000000000000000" }, - "liquidityUsd": 0.005106454474685636, - "liquidity24hUsdChange": -6.0146227805082155, + "liquidityUsd": 0.0038135502693784234, + "liquidity24hUsdChange": -0.4191099171738594, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42282,49 +42882,35 @@ "pool_assets": [ { "token": { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "amount": "1313" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "134" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", - "amount": "81" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "2700" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "4481" + "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", + "amount": "10000000" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "251", + "id": "185", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/251", - "amount": "3150000000000000" + "denom": "gamm/pool/185", + "amount": "275000000000000000" }, - "liquidityUsd": 0.004909435950962163, - "liquidity24hUsdChange": -4.54384407373276, + "liquidityUsd": 0.0037757723867504695, + "liquidity24hUsdChange": -2.3590190279215686, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42333,14 +42919,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "218" + "amount": "221" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1987" + "amount": "2211" }, "weight": "536870912000000" } @@ -42349,54 +42935,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "947", + "id": "140", "pool_params": { - "exit_fee": "0.010000000000000000", - "swap_fee": "0.010000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/947", - "amount": "673510581989454088" + "denom": "gamm/pool/140", + "amount": "8099790679046512" }, - "liquidityUsd": 0.004891163810929602, - "liquidity24hUsdChange": 29.245886635245117, - "volume24hUsd": 0.0013244137029010967, - "volume24hUsdChange": null, - "volume7dUsd": 0.0013244137029010967, + "liquidityUsd": 0.003717516497175205, + "liquidity24hUsdChange": -2.9857916984133164, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", - "amount": "4279545" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "791" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "3812" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "93" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "400", + "id": "640", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/400", - "amount": "400000000000000000" + "denom": "gamm/pool/640", + "amount": "5404552061858" }, - "liquidityUsd": 0.004828452803214521, - "liquidity24hUsdChange": -4.586900801902435, + "liquidityUsd": 0.0036780711805087123, + "liquidity24hUsdChange": -8.638238819643817, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42404,35 +42990,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "101" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "28168" }, - "weight": "214748364800000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2911" + "denom": "uion", + "amount": "11" }, - "weight": "858993459200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "327", + "id": "490", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/327", - "amount": "440000000000000" + "denom": "gamm/pool/490", + "amount": "2647893830488345153194519" }, - "liquidityUsd": 0.004797836039059475, - "liquidity24hUsdChange": -6.819851063130754, + "liquidityUsd": 0.003566894344991367, + "liquidity24hUsdChange": -3.9036610855538925, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42440,15 +43026,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "1000" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "77710" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "16655" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "10079" }, "weight": "536870912000000" } @@ -42457,18 +43043,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "746", + "id": "251", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/746", - "amount": "606913053458670" + "denom": "gamm/pool/251", + "amount": "3150000000000000" }, - "liquidityUsd": 0.004774545720981669, - "liquidity24hUsdChange": -5.471276178283869, + "liquidityUsd": 0.00354947931396704, + "liquidity24hUsdChange": -2.3074341707153154, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42476,15 +43062,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "8223" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "218" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", - "amount": "67220" + "denom": "uosmo", + "amount": "1987" }, "weight": "536870912000000" } @@ -42493,18 +43079,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "119", + "id": "400", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/119", - "amount": "2000000000000000000" + "denom": "gamm/pool/400", + "amount": "400000000000000000" }, - "liquidityUsd": 0.004761753108015788, - "liquidity24hUsdChange": -4.38891055914621, + "liquidityUsd": 0.0034404812263499106, + "liquidity24hUsdChange": -2.877380741061504, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42512,35 +43098,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "80105" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "101" }, - "weight": "644245094400000" + "weight": "214748364800000" }, { "token": { "denom": "uosmo", - "amount": "1285" + "amount": "2911" }, - "weight": "429496729600000" + "weight": "858993459200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1313", + "id": "947", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "exit_fee": "0.010000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1313", - "amount": "100000000000000000000" + "denom": "gamm/pool/947", + "amount": "673510581989454088" }, - "liquidityUsd": 0.00474528078710118, - "liquidity24hUsdChange": -3.514952535976819, + "liquidityUsd": 0.0034396519497484953, + "liquidity24hUsdChange": -3.393444051277472, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42548,20 +43134,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867", - "amount": "2000999" + "denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", + "amount": "4279545" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", - "amount": "2498759" + "denom": "uosmo", + "amount": "3812" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -42575,8 +43161,8 @@ "denom": "gamm/pool/318", "amount": "34162672280929920" }, - "liquidityUsd": 0.004635750454685625, - "liquidity24hUsdChange": -4.546552996570725, + "liquidityUsd": 0.0033485611050269666, + "liquidity24hUsdChange": -2.3429860218033784, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42601,18 +43187,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "439", + "id": "119", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/439", - "amount": "10000000000000000" + "denom": "gamm/pool/119", + "amount": "2000000000000000000" }, - "liquidityUsd": 0.004547205102055341, - "liquidity24hUsdChange": -4.401372680545531, + "liquidityUsd": 0.003342735979101749, + "liquidity24hUsdChange": -1.7760000565109872, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42621,50 +43207,50 @@ { "token": { "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "72471" + "amount": "80105" }, - "weight": "536870912000000" + "weight": "644245094400000" }, { "token": { "denom": "uosmo", - "amount": "1349" + "amount": "1285" }, - "weight": "536870912000000" + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "513", + "id": "1313", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/513", - "amount": "700000000000000000" + "denom": "gamm/pool/1313", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.004361287813752956, - "liquidity24hUsdChange": -5.04213570614387, + "liquidityUsd": 0.003313440640311047, + "liquidity24hUsdChange": -2.4003829199714866, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0005466989823018556, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "3996" + "denom": "ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867", + "amount": "2000999" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2540" + "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", + "amount": "2498759" }, "weight": "536870912000000" } @@ -42673,18 +43259,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "140", + "id": "746", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/140", - "amount": "8099790679046512" + "denom": "gamm/pool/746", + "amount": "606913053458670" }, - "liquidityUsd": 0.004289883397008481, - "liquidity24hUsdChange": -6.575091377743589, + "liquidityUsd": 0.003298140524394707, + "liquidity24hUsdChange": -5.383185234971603, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42692,15 +43278,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "791" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "8223" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "93" + "denom": "ibc/FE2CD1E6828EC0FAB8AF39BAC45BC25B965BA67CCBC50C13A14BD610B0D1E2C4", + "amount": "67220" }, "weight": "536870912000000" } @@ -42708,91 +43294,58 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "332", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "874", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/332", - "amount": "2475000000000000" + "denom": "gamm/pool/874", + "amount": "63590602189226" }, - "liquidityUsd": 0.004148708615590642, - "liquidity24hUsdChange": -4.316387541351594, + "liquidityUsd": 0.0032706850000523164, + "liquidity24hUsdChange": 0.19205063100270942, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "310" - }, - "weight": "536870912000000" + "denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + "amount": "1987120000000015" }, { - "token": { - "denom": "uion", - "amount": "2" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1577", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/1577", - "amount": "1000000000000000000" - }, - "liquidityUsd": 0.00411979903562151, - "liquidity24hUsdChange": 1.3011831796491702, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "2700" - }, - "weight": "536870912000000" + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "652" }, { - "token": { - "denom": "ibc/608EF5C0CE64FEA097500DB39657BDD36CA708CC5DCC2E250A024B6981DD36BC", - "amount": "10000000" - }, - "weight": "536870912000000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "652" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "490", + "id": "439", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/490", - "amount": "2647893830488345153194519" + "denom": "gamm/pool/439", + "amount": "10000000000000000" }, - "liquidityUsd": 0.004064248160543569, - "liquidity24hUsdChange": -4.844968226280318, + "liquidityUsd": 0.003192420852491007, + "liquidity24hUsdChange": -1.8625935575405075, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42800,15 +43353,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "77710" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "72471" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "10079" + "denom": "uosmo", + "amount": "1349" }, "weight": "536870912000000" } @@ -42817,18 +43370,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "247", + "id": "513", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/247", - "amount": "2000000000000000" + "denom": "gamm/pool/513", + "amount": "700000000000000000" }, - "liquidityUsd": 0.003907362896414529, - "liquidity24hUsdChange": -4.537978070327223, + "liquidityUsd": 0.003097850390243387, + "liquidity24hUsdChange": -3.011570277303662, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42836,15 +43389,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "186" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "3996" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1476" + "amount": "2540" }, "weight": "536870912000000" } @@ -42853,18 +43406,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "206", + "id": "896", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.004000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/206", - "amount": "200000000000000000" + "denom": "gamm/pool/896", + "amount": "20010628657895515" }, - "liquidityUsd": 0.003897282898726421, - "liquidity24hUsdChange": -4.4567294834226745, + "liquidityUsd": 0.0030704474046132964, + "liquidity24hUsdChange": 0.07523890503363095, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42872,35 +43425,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "358" + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "3067" }, - "weight": "1063004405760000" + "weight": "214748364800000" }, { "token": { - "denom": "uosmo", - "amount": "17" + "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", + "amount": "56" }, - "weight": "10737418240000" + "weight": "858993459200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "269", + "id": "332", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/269", - "amount": "93458878241117429" + "denom": "gamm/pool/332", + "amount": "2475000000000000" }, - "liquidityUsd": 0.0038295925671877964, - "liquidity24hUsdChange": -4.546741614365803, + "liquidityUsd": 0.0030416845196352136, + "liquidity24hUsdChange": -2.5955343248898104, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42909,14 +43462,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "164" + "amount": "310" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1601" + "denom": "uion", + "amount": "2" }, "weight": "536870912000000" } @@ -42925,18 +43478,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "331", + "id": "206", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/331", - "amount": "4400000000000000" + "denom": "gamm/pool/206", + "amount": "200000000000000000" }, - "liquidityUsd": 0.0038117334564004043, - "liquidity24hUsdChange": -6.187366680548812, + "liquidityUsd": 0.0028999741474695284, + "liquidity24hUsdChange": -1.1854899651704307, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42945,41 +43498,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "75" - }, - "weight": "365072220160000" - }, - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "773697" + "amount": "358" }, - "weight": "354334801920000" + "weight": "1063004405760000" }, { "token": { "denom": "uosmo", - "amount": "1254" + "amount": "17" }, - "weight": "354334801920000" + "weight": "10737418240000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "170", + "id": "247", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/170", - "amount": "1400000000000000" + "denom": "gamm/pool/247", + "amount": "2000000000000000" }, - "liquidityUsd": 0.0037810095202665704, - "liquidity24hUsdChange": -4.554462651599943, + "liquidityUsd": 0.0028305482669592446, + "liquidity24hUsdChange": -2.2305884294063825, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -42988,14 +43534,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "146" + "amount": "186" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1715" + "amount": "1476" }, "weight": "536870912000000" } @@ -43003,55 +43549,40 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "677", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/677", - "amount": "1108042924144760552584" - }, - "liquidityUsd": 0.0036966009809255465, - "liquidity24hUsdChange": -4.625215344977832, + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo147jwrr6evfmxvuw2d6qpsdzdq5xcp2dyjx34e9c2qgy90dtw3m2qnu7q46", + "id": "1167", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", + "token0Amount": "2066", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "2067", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0027845010472531866, + "liquidity24hUsdChange": 0.1938284894295623, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", - "amount": "830133728" - }, - "weight": "751619276800000" - }, - { - "token": { - "denom": "uosmo", - "amount": "2881" - }, - "weight": "322122547200000" - } - ], - "total_weight": "1073741824000000" + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "186", + "id": "331", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/186", - "amount": "535265250000000000" + "denom": "gamm/pool/331", + "amount": "4400000000000000" }, - "liquidityUsd": 0.0034482842653478724, - "liquidity24hUsdChange": -7.109874412070508, + "liquidityUsd": 0.00277407786793155, + "liquidity24hUsdChange": -2.8988925499322074, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43060,70 +43591,41 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "131" + "amount": "75" }, - "weight": "536870912000000" + "weight": "365072220160000" }, { "token": { "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "1129349" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "322", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/322", - "amount": "1562500000000000000" - }, - "liquidityUsd": 0.003346039810952527, - "liquidity24hUsdChange": -4.545257417705407, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "146" + "amount": "773697" }, - "weight": "536870912000000" + "weight": "354334801920000" }, { "token": { "denom": "uosmo", - "amount": "1376" + "amount": "1254" }, - "weight": "536870912000000" + "weight": "354334801920000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1466", + "id": "269", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.300000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1466", - "amount": "48898420263292009833" + "denom": "gamm/pool/269", + "amount": "93458878241117429" }, - "liquidityUsd": 0.0033073189701904697, - "liquidity24hUsdChange": -3.4969289137163586, + "liquidityUsd": 0.002766070480461055, + "liquidity24hUsdChange": -2.345462957432588, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43131,74 +43633,71 @@ "pool_assets": [ { "token": { - "denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "amount": "33520402" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "164" }, - "weight": "1073741824000000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1875" + "amount": "1601" }, - "weight": "1073741824000000" + "weight": "536870912000000" } ], - "total_weight": "2147483648000000" + "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "874", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "170", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/874", - "amount": "63590602189226" + "denom": "gamm/pool/170", + "amount": "1400000000000000" }, - "liquidityUsd": 0.0032902988619892036, - "liquidity24hUsdChange": -0.5949172059401968, + "liquidityUsd": 0.0027238977055478062, + "liquidity24hUsdChange": -2.4470260509916897, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", - "amount": "1987120000000015" - }, + "pool_assets": [ { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "652" + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "146" + }, + "weight": "536870912000000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "652" + "token": { + "denom": "uosmo", + "amount": "1715" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1021", + "id": "169", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1021", - "amount": "215765492803128375" + "denom": "gamm/pool/169", + "amount": "82327358859998406" }, - "liquidityUsd": 0.0032262762073124993, - "liquidity24hUsdChange": -4.058845282411208, + "liquidityUsd": 0.0026721895162936903, + "liquidity24hUsdChange": -3.4246794251249777, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43206,15 +43705,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "160" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "564" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", - "amount": "20577157650681684" + "denom": "uosmo", + "amount": "616" }, "weight": "536870912000000" } @@ -43223,18 +43722,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "355", + "id": "677", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/355", - "amount": "1083456974425033" + "denom": "gamm/pool/677", + "amount": "1108042924144760552584" }, - "liquidityUsd": 0.0031656711190554843, - "liquidity24hUsdChange": -4.530846824666082, + "liquidityUsd": 0.0025995900491147467, + "liquidity24hUsdChange": -3.393444051277478, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43242,35 +43741,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "163" + "denom": "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", + "amount": "830133728" }, - "weight": "536870912000000" + "weight": "751619276800000" }, { "token": { "denom": "uosmo", - "amount": "1092" + "amount": "2881" }, - "weight": "536870912000000" + "weight": "322122547200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "223", + "id": "708", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/223", - "amount": "227500000000000000" + "denom": "gamm/pool/708", + "amount": "82106066394694" }, - "liquidityUsd": 0.003154793751223108, - "liquidity24hUsdChange": -7.569537065792338, + "liquidityUsd": 0.0025754225504397276, + "liquidity24hUsdChange": 0.11426458275465741, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43278,35 +43777,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "619336" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "1072484714791551" }, - "weight": "536870912000000" + "weight": "354334801920000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "1195332" + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "amount": "740" }, - "weight": "536870912000000" + "weight": "354334801920000" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "761" + }, + "weight": "365072220160000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "169", + "id": "186", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/169", - "amount": "82327358859998406" + "denom": "gamm/pool/186", + "amount": "535265250000000000" }, - "liquidityUsd": 0.0031313276593674575, - "liquidity24hUsdChange": -6.568042592323561, + "liquidityUsd": 0.002571051847169669, + "liquidity24hUsdChange": -2.463262786576014, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43314,42 +43820,21 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "564" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "131" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "616" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "1129349" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo147jwrr6evfmxvuw2d6qpsdzdq5xcp2dyjx34e9c2qgy90dtw3m2qnu7q46", - "id": "1167", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", - "token0Amount": "2066", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "2067", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.003117786830958185, - "liquidity24hUsdChange": -2.3438440175499764, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "108", @@ -43362,8 +43847,8 @@ "denom": "gamm/pool/108", "amount": "139009900990100" }, - "liquidityUsd": 0.0031007173057972424, - "liquidity24hUsdChange": -5.2843159214582744, + "liquidityUsd": 0.0025441147426052664, + "liquidity24hUsdChange": -4.102569314027601, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43400,7 +43885,7 @@ { "token": { "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "91345" + "amount": "92005" }, "weight": "134217728000000" }, @@ -43421,7 +43906,7 @@ { "token": { "denom": "uosmo", - "amount": "285" + "amount": "283" }, "weight": "134217728000000" } @@ -43429,55 +43914,53 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "896", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "906", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.004000000000000000", + "swap_fee": "0.000500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/896", - "amount": "20010628657895515" + "denom": "gamm/pool/906", + "amount": "12500000000000" }, - "liquidityUsd": 0.0030611101014073163, - "liquidity24hUsdChange": -0.007204350562760885, + "liquidityUsd": 0.0025015843959508618, + "liquidity24hUsdChange": 0.02761640275198435, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "3067" - }, - "weight": "214748364800000" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "1205856312985892" }, { - "token": { - "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", - "amount": "56" - }, - "weight": "858993459200000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "1295" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1000000000000", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "50", + "id": "1021", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/50", - "amount": "43408356813250459" + "denom": "gamm/pool/1021", + "amount": "215765492803128375" }, - "liquidityUsd": 0.003057569355985576, - "liquidity24hUsdChange": -4.509049249899879, + "liquidityUsd": 0.0024294111085163272, + "liquidity24hUsdChange": -3.4332335116789783, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43485,51 +43968,51 @@ "pool_assets": [ { "token": { - "denom": "uion", - "amount": "1" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "160" }, - "weight": "53687091200000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "2074" + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "amount": "20577157650681684" }, - "weight": "1020054732800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "535", + "id": "322", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/535", - "amount": "31250000000000000" + "denom": "gamm/pool/322", + "amount": "1562500000000000000" }, - "liquidityUsd": 0.0030199043413333252, - "liquidity24hUsdChange": -5.039890376012911, + "liquidityUsd": 0.0024180105043503405, + "liquidity24hUsdChange": -2.325977780982397, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0003759606847521992, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "2752" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "146" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1762" + "amount": "1376" }, "weight": "536870912000000" } @@ -43538,18 +44021,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "660", + "id": "508", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/660", - "amount": "32258044983703841" + "denom": "gamm/pool/508", + "amount": "2150400000000000" }, - "liquidityUsd": 0.0029701537566910003, - "liquidity24hUsdChange": -6.253840119384854, + "liquidityUsd": 0.0023671440265356724, + "liquidity24hUsdChange": -3.2832171107943733, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43557,35 +44040,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "10768" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "568" }, - "weight": "536870912000000" + "weight": "697932185600000" }, { "token": { - "denom": "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", - "amount": "3" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "1169" }, - "weight": "536870912000000" + "weight": "375809638400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "466", + "id": "1466", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.300000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/466", - "amount": "200000000000000000" + "denom": "gamm/pool/1466", + "amount": "48898420263292009833" }, - "liquidityUsd": 0.0029167408476856536, - "liquidity24hUsdChange": -4.805042881829004, + "liquidityUsd": 0.0023266914787472177, + "liquidity24hUsdChange": -3.769831521406918, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43593,35 +44076,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "126378" + "denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "amount": "33520402" }, - "weight": "536870912000000" + "weight": "1073741824000000" }, { "token": { "denom": "uosmo", - "amount": "1173" + "amount": "1875" }, - "weight": "536870912000000" + "weight": "1073741824000000" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "484", + "id": "325", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/484", - "amount": "274400000000000000" + "denom": "gamm/pool/325", + "amount": "96808638013923705" }, - "liquidityUsd": 0.0028929531308273517, - "liquidity24hUsdChange": -4.814861839425203, + "liquidityUsd": 0.0023130101086584814, + "liquidity24hUsdChange": -5.393041995408991, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43629,42 +44112,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "106066" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "1915" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "30342" }, - "weight": "365072220160000" + "weight": "1063004405760000" }, { "token": { - "denom": "uosmo", - "amount": "858" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "13" }, - "weight": "354334801920000" + "weight": "10737418240000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "423", + "id": "355", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/423", - "amount": "100000000000000000000" + "denom": "gamm/pool/355", + "amount": "1083456974425033" }, - "liquidityUsd": 0.0028787721134409627, - "liquidity24hUsdChange": -4.588308862385519, + "liquidityUsd": 0.002298730878854486, + "liquidity24hUsdChange": -2.137424112517233, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43673,41 +44149,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "132" - }, - "weight": "483183820800000" - }, - { - "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "2387" + "amount": "163" }, - "weight": "483183820800000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "540" + "amount": "1092" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "500", + "id": "218", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000100000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/500", - "amount": "1800000000000000" + "denom": "gamm/pool/218", + "amount": "236600000000000000" }, - "liquidityUsd": 0.0028329475746682255, - "liquidity24hUsdChange": -8.628733358829793, + "liquidityUsd": 0.0022890840556792896, + "liquidity24hUsdChange": -3.109493287858651, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43715,71 +44184,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "1001" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "465" }, "weight": "536870912000000" }, - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "1422330" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "248", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/248", - "amount": "10937500000000000" - }, - "liquidityUsd": 0.00268758733683562, - "liquidity24hUsdChange": -4.53998167177614, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "125" + "amount": "41" }, - "weight": "536870912000000" + "weight": "322122547200000" }, { "token": { "denom": "uosmo", - "amount": "1040" + "amount": "237" }, - "weight": "536870912000000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "508", + "id": "223", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/508", - "amount": "2150400000000000" + "denom": "gamm/pool/223", + "amount": "227500000000000000" }, - "liquidityUsd": 0.0026799896772819404, - "liquidity24hUsdChange": -7.092693988877996, + "liquidityUsd": 0.0022870441938392504, + "liquidity24hUsdChange": -3.35729156785589, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43787,35 +44227,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "568" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "619336" }, - "weight": "697932185600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "1169" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "1195332" }, - "weight": "375809638400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "218", + "id": "423", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000100000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/218", - "amount": "236600000000000000" + "denom": "gamm/pool/423", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.0026779631431714675, - "liquidity24hUsdChange": -6.472614137167658, + "liquidityUsd": 0.002254316550445657, + "liquidity24hUsdChange": -2.5715356518661405, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43823,42 +44263,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "465" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "132" }, - "weight": "536870912000000" + "weight": "483183820800000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "41" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "2387" }, - "weight": "322122547200000" + "weight": "483183820800000" }, { "token": { "denom": "uosmo", - "amount": "237" + "amount": "540" }, - "weight": "214748364800000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "708", + "id": "660", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/708", - "amount": "82106066394694" + "denom": "gamm/pool/660", + "amount": "32258044983703841" }, - "liquidityUsd": 0.0025746716094608487, - "liquidity24hUsdChange": 0.14482968567290672, + "liquidityUsd": 0.002171795081357297, + "liquidity24hUsdChange": -1.9089430968950736, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43866,112 +44306,78 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "1072484714791551" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", - "amount": "740" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "10768" }, - "weight": "354334801920000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "761" + "denom": "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", + "amount": "3" }, - "weight": "365072220160000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1064", + "id": "484", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1064", - "amount": "6112841008598592268" + "denom": "gamm/pool/484", + "amount": "274400000000000000" }, - "liquidityUsd": 0.002503667908098817, - "liquidity24hUsdChange": -4.489082060348621, + "liquidityUsd": 0.002152830395697928, + "liquidity24hUsdChange": -3.4681374208877678, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.0004988675454284579, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", - "amount": "93791" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "106066" }, - "weight": "5368709120" + "weight": "354334801920000" }, { "token": { - "denom": "uosmo", - "amount": "824" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "1915" }, - "weight": "5368709120" - } - ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "906", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000500000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/906", - "amount": "12500000000000" - }, - "liquidityUsd": 0.0025011401720154616, - "liquidity24hUsdChange": 0.05376475060607409, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "1205856312985892" + "weight": "365072220160000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1295" + "token": { + "denom": "uosmo", + "amount": "858" + }, + "weight": "354334801920000" } ], - "scaling_factors": [ - "1000000000000", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "537", + "id": "535", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/537", - "amount": "708185195922851" + "denom": "gamm/pool/535", + "amount": "31250000000000000" }, - "liquidityUsd": 0.0024887016894721316, - "liquidity24hUsdChange": -3.5191634509834744, + "liquidityUsd": 0.002144941743047103, + "liquidity24hUsdChange": -3.0136234401970947, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -43979,15 +44385,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "923" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "2752" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1215" + "amount": "1762" }, "weight": "536870912000000" } @@ -43996,18 +44402,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "160", + "id": "50", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/160", - "amount": "19600000000000000" + "denom": "gamm/pool/50", + "amount": "43408356813250459" }, - "liquidityUsd": 0.002483722120708403, - "liquidity24hUsdChange": -6.54013197263086, + "liquidityUsd": 0.002143324346367579, + "liquidity24hUsdChange": -4.0913640224596834, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44015,35 +44421,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "124" + "denom": "uion", + "amount": "1" }, - "weight": "429496729600000" + "weight": "53687091200000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "634932" + "denom": "uosmo", + "amount": "2074" }, - "weight": "644245094400000" + "weight": "1020054732800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "325", + "id": "311", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/325", - "amount": "96808638013923705" + "denom": "gamm/pool/311", + "amount": "6558005048486506" }, - "liquidityUsd": 0.0024738405827079445, - "liquidity24hUsdChange": -3.777586613076563, + "liquidityUsd": 0.0021144879907937526, + "liquidity24hUsdChange": -3.5914166078048733, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44051,35 +44457,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "30342" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "514" }, - "weight": "1063004405760000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "13" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "153706" }, - "weight": "10737418240000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "696", + "id": "500", "pool_params": { - "exit_fee": "0.010000000000000000", - "swap_fee": "0.030000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/696", - "amount": "0" + "denom": "gamm/pool/500", + "amount": "1800000000000000" }, - "liquidityUsd": 0.002435317133563585, - "liquidity24hUsdChange": -4.625215344977819, + "liquidityUsd": 0.002110550999958346, + "liquidity24hUsdChange": -3.2066300678883235, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44087,20 +44493,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", - "amount": "255313013" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "1001" }, - "weight": "69793218560" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1898" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "1422330" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "70866960384" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -44114,8 +44520,8 @@ "denom": "gamm/pool/295", "amount": "100000000000000000000" }, - "liquidityUsd": 0.0023885870207991564, - "liquidity24hUsdChange": -6.797517036281084, + "liquidityUsd": 0.002107211616646108, + "liquidity24hUsdChange": -3.3761220578769873, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44154,18 +44560,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "311", + "id": "466", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/311", - "amount": "6558005048486506" + "denom": "gamm/pool/466", + "amount": "200000000000000000" }, - "liquidityUsd": 0.002362651599525829, - "liquidity24hUsdChange": -6.529217010886647, + "liquidityUsd": 0.002028645046036362, + "liquidity24hUsdChange": -3.2658955673345877, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44173,15 +44579,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "514" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "126378" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "153706" + "denom": "uosmo", + "amount": "1173" }, "weight": "536870912000000" } @@ -44190,18 +44596,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "138", + "id": "248", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.990000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/138", - "amount": "134493964610908" + "denom": "gamm/pool/248", + "amount": "10937500000000000" }, - "liquidityUsd": 0.0022767737331109345, - "liquidity24hUsdChange": -4.624411153207009, + "liquidityUsd": 0.0019456198558553514, + "liquidity24hUsdChange": -2.2568145393918613, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44210,14 +44616,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1" + "amount": "125" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1766" + "amount": "1040" }, "weight": "536870912000000" } @@ -44226,18 +44632,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "521", + "id": "1064", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/521", - "amount": "3325000000000000" + "denom": "gamm/pool/1064", + "amount": "6112841008598592268" }, - "liquidityUsd": 0.0022374570967754657, - "liquidity24hUsdChange": -4.518715456327203, + "liquidityUsd": 0.0018759750385334607, + "liquidity24hUsdChange": -1.8914231288793908, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44245,97 +44651,128 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "130" + "denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", + "amount": "93791" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "647" + "amount": "824" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "242", + "id": "270", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.006660000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/242", - "amount": "3662109375000000" + "denom": "gamm/pool/270", + "amount": "101072213333333333" }, - "liquidityUsd": 0.0022342265422276245, - "liquidity24hUsdChange": -6.32174620106863, - "volume24hUsd": 0.00012956616337581482, - "volume24hUsdChange": null, - "volume7dUsd": 0.00012956616337581482, + "liquidityUsd": 0.0018626734404617066, + "liquidity24hUsdChange": -3.4122925862466422, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "134" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "384" }, - "weight": "751619276800000" + "weight": "536870912000000" }, { "token": { "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "157553" + "amount": "314286" }, - "weight": "107374182400000" + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "160", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/160", + "amount": "19600000000000000" + }, + "liquidityUsd": 0.001851178055750553, + "liquidity24hUsdChange": -2.18348180084945, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "124" + }, + "weight": "429496729600000" }, { "token": { - "denom": "uosmo", - "amount": "390" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "634932" }, - "weight": "214748364800000" + "weight": "644245094400000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1217", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "274", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1217", - "amount": "12000000000000" + "denom": "gamm/pool/274", + "amount": "4927086613281533" }, - "liquidityUsd": 0.0022074075915064087, - "liquidity24hUsdChange": -3.6688317860026256, + "liquidityUsd": 0.0017864439636796053, + "liquidity24hUsdChange": -3.4112830300263326, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "260" + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "363" + }, + "weight": "536870912000000" }, { - "denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", - "amount": "34150572583050450" + "token": { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "316202" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -44349,8 +44786,8 @@ "denom": "gamm/pool/109", "amount": "127659574468085106" }, - "liquidityUsd": 0.002205071797097173, - "liquidity24hUsdChange": -4.790046091742005, + "liquidityUsd": 0.0017834876672075995, + "liquidity24hUsdChange": -3.1795775446295007, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44415,20 +44852,41 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1znkpm97fksmahtxex7f8cmswp3zheuv0a2vx80e4ca38t5l3xcdstc0hse", + "id": "1201", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "token0Amount": "1139", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "989", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0017250286767258622, + "liquidity24hUsdChange": -0.22379330561478694, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "530", + "id": "696", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "exit_fee": "0.010000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/530", - "amount": "1939722078768431208" + "denom": "gamm/pool/696", + "amount": "0" }, - "liquidityUsd": 0.0021678295040008996, - "liquidity24hUsdChange": -5.189607496297442, + "liquidityUsd": 0.0017126073978548384, + "liquidity24hUsdChange": -3.3934440512774757, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44436,35 +44894,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "164539" + "denom": "ibc/F49DE040EBA5AB2FAD5F660C2A1DDF98A68470FAE82229818BE775EBF3EE79F2", + "amount": "255313013" }, - "weight": "697932185600000" + "weight": "69793218560" }, { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "1196" + "denom": "uosmo", + "amount": "1898" }, - "weight": "375809638400000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "70866960384" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "270", + "id": "537", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/270", - "amount": "101072213333333333" + "denom": "gamm/pool/537", + "amount": "708185195922851" }, - "liquidityUsd": 0.002158805372904485, - "liquidity24hUsdChange": -7.649667194249618, + "liquidityUsd": 0.001708165804689187, + "liquidity24hUsdChange": -3.1149276369923364, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44472,15 +44930,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "384" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "923" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "314286" + "denom": "uosmo", + "amount": "1215" }, "weight": "536870912000000" } @@ -44489,18 +44947,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1367", + "id": "242", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.006660000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1367", - "amount": "8137015242557482" + "denom": "gamm/pool/242", + "amount": "3662109375000000" }, - "liquidityUsd": 0.0021257240039938645, - "liquidity24hUsdChange": -0.29130914152591636, + "liquidityUsd": 0.001643053463546772, + "liquidity24hUsdChange": -1.9391789852048056, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44508,56 +44966,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "93" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "134" }, - "weight": "85899345920000" + "weight": "751619276800000" }, { "token": { - "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", - "amount": "12399" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "157553" }, - "weight": "987842478080000" + "weight": "107374182400000" + }, + { + "token": { + "denom": "uosmo", + "amount": "390" + }, + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1znkpm97fksmahtxex7f8cmswp3zheuv0a2vx80e4ca38t5l3xcdstc0hse", - "id": "1201", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", - "token0Amount": "1139", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "989", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.0020936916581766295, - "liquidity24hUsdChange": -1.16705373676657, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "274", + "id": "521", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003500000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/274", - "amount": "4927086613281533" + "denom": "gamm/pool/521", + "amount": "3325000000000000" }, - "liquidityUsd": 0.0020750869872102596, - "liquidity24hUsdChange": -7.670264932872647, + "liquidityUsd": 0.0016312954535101596, + "liquidity24hUsdChange": -1.979579836669024, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44565,15 +45009,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "363" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "130" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "316202" + "denom": "uosmo", + "amount": "647" }, "weight": "536870912000000" } @@ -44582,18 +45026,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "377", + "id": "1367", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/377", - "amount": "11425781250000000" + "denom": "gamm/pool/1367", + "amount": "8137015242557482" }, - "liquidityUsd": 0.00207327001991698, - "liquidity24hUsdChange": -7.317848455940272, + "liquidityUsd": 0.0016015845379856513, + "liquidity24hUsdChange": -1.735218116493958, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44601,35 +45045,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "717930" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "93" }, - "weight": "536870912000000" + "weight": "85899345920000" }, { "token": { - "denom": "uosmo", - "amount": "610" + "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "amount": "12399" }, - "weight": "536870912000000" + "weight": "987842478080000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "231", + "id": "138", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.990000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/231", - "amount": "562419207000000" + "denom": "gamm/pool/138", + "amount": "134493964610908" }, - "liquidityUsd": 0.002048929222895391, - "liquidity24hUsdChange": -4.516965597807624, + "liquidityUsd": 0.0016015585157812436, + "liquidity24hUsdChange": -3.382524789205436, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44638,14 +45082,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "121" + "amount": "1" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "576" + "amount": "1766" }, "weight": "536870912000000" } @@ -44654,54 +45098,82 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "407", + "id": "92", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/407", - "amount": "6103515625000000" + "denom": "gamm/pool/92", + "amount": "21125000000000000" }, - "liquidityUsd": 0.002025809432084415, - "liquidity24hUsdChange": -4.580003411810506, + "liquidityUsd": 0.0015918276600720624, + "liquidity24hUsdChange": -3.9299479805012005, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "242" + }, + "weight": "268435456000000" + }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "50" + "amount": "23" }, - "weight": "536870912000000" + "weight": "161061273600000" + }, + { + "token": { + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "4477" + }, + "weight": "161061273600000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "79" + }, + "weight": "214748364800000" + }, + { + "token": { + "denom": "uion", + "amount": "1" + }, + "weight": "161061273600000" }, { "token": { "denom": "uosmo", - "amount": "1157" + "amount": "90" }, - "weight": "536870912000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "469", + "id": "369", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/469", - "amount": "9055200000000000" + "denom": "gamm/pool/369", + "amount": "15511268832874413" }, - "liquidityUsd": 0.0019931955099101494, - "liquidity24hUsdChange": -4.514855922677709, + "liquidityUsd": 0.001589807355959766, + "liquidity24hUsdChange": -3.798554672093786, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44709,35 +45181,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "120" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "353" }, - "weight": "536870912000000" + "weight": "483183820800000" }, { "token": { - "denom": "uosmo", - "amount": "541" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "3644" }, - "weight": "536870912000000" + "weight": "590558003200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "92", + "id": "252", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/92", - "amount": "21125000000000000" + "denom": "gamm/pool/252", + "amount": "1900000000000000" }, - "liquidityUsd": 0.0019643682529993886, - "liquidity24hUsdChange": -5.736902417085514, + "liquidityUsd": 0.0015874542543669956, + "liquidity24hUsdChange": -2.5850409319635186, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44746,62 +45218,106 @@ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "242" + "amount": "262" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "23" + "amount": "75" }, - "weight": "161061273600000" - }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "377", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/377", + "amount": "11425781250000000" + }, + "liquidityUsd": 0.0015138244043670893, + "liquidity24hUsdChange": -3.3606408903804286, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "4477" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "717930" }, - "weight": "161061273600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "79" + "denom": "uosmo", + "amount": "610" }, - "weight": "214748364800000" - }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "530", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/530", + "amount": "1939722078768431208" + }, + "liquidityUsd": 0.0015044093315115003, + "liquidity24hUsdChange": -2.9332003752681404, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ { "token": { - "denom": "uion", - "amount": "1" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "164539" }, - "weight": "161061273600000" + "weight": "697932185600000" }, { "token": { - "denom": "uosmo", - "amount": "90" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "1196" }, - "weight": "107374182400000" + "weight": "375809638400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "495", + "id": "231", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/495", - "amount": "1800000000000000" + "denom": "gamm/pool/231", + "amount": "562419207000000" }, - "liquidityUsd": 0.0019217020816272561, - "liquidity24hUsdChange": -3.5987120444933547, + "liquidityUsd": 0.0014947118337429875, + "liquidity24hUsdChange": -1.9568785146815217, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44809,15 +45325,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "662" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "121" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "978" + "amount": "576" }, "weight": "536870912000000" } @@ -44825,55 +45341,53 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "252", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1217", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/252", - "amount": "1900000000000000" + "denom": "gamm/pool/1217", + "amount": "12000000000000" }, - "liquidityUsd": 0.0018993582406489325, - "liquidity24hUsdChange": -6.050158812650778, + "liquidityUsd": 0.0014693533285035968, + "liquidity24hUsdChange": 0.7079086242783657, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "262" - }, - "weight": "536870912000000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "260" }, { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "75" - }, - "weight": "536870912000000" + "denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", + "amount": "34150572583050450" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "207", + "id": "469", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/207", - "amount": "2632500000000000" + "denom": "gamm/pool/469", + "amount": "9055200000000000" }, - "liquidityUsd": 0.001878376556974249, - "liquidity24hUsdChange": -4.676163169643062, + "liquidityUsd": 0.001455072920536415, + "liquidity24hUsdChange": -1.9295314333380922, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44881,15 +45395,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "1687" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "120" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1047" + "amount": "541" }, "weight": "536870912000000" } @@ -44898,18 +45412,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "79", + "id": "407", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/79", - "amount": "10800710283559354" + "denom": "gamm/pool/407", + "amount": "6103515625000000" }, - "liquidityUsd": 0.0017534930938249305, - "liquidity24hUsdChange": -4.4945150607118975, + "liquidityUsd": 0.00144686863876492, + "liquidity24hUsdChange": -2.785374968087765, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44918,34 +45432,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "125" + "amount": "50" }, - "weight": "858993459200000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "312" + "amount": "1157" }, - "weight": "214748364800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "369", + "id": "207", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/369", - "amount": "15511268832874413" + "denom": "gamm/pool/207", + "amount": "2632500000000000" }, - "liquidityUsd": 0.001745363892471265, - "liquidity24hUsdChange": -6.666158046976017, + "liquidityUsd": 0.0014418939747040515, + "liquidity24hUsdChange": -3.623716707844487, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -44953,71 +45467,37 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "353" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "1687" }, - "weight": "483183820800000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "3644" + "denom": "uosmo", + "amount": "1047" }, - "weight": "590558003200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "868", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/868", - "amount": "361078305158072" - }, - "liquidityUsd": 0.0016324966549456498, - "liquidity24hUsdChange": -5.434716502595511, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", - "amount": "383885" - }, - { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "78" - } - ], - "scaling_factors": [ - "5", - "5" - ], - "scaling_factor_controller": "" - }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ngj5p3ypnw3pfgzwxm6ksz3xr8f7q77j7ljprghfxs2udwemtjus36r90l", - "id": "1164", + "address": "osmo1n5xd64m3rkcgqpqqdsjsfshz400ulrmkt43htklpc7dlqvdtjgpqt4c5a3", + "id": "1195", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", - "token0Amount": "753", + "token0": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "token0Amount": "1281", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "775", + "token1Amount": "1249", "current_sqrt_price": "0.000000000000000000000000000000000000", "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.0015923213991069387, - "liquidity24hUsdChange": -3.9915626667068027, + "liquidityUsd": 0.0013295615788659878, + "liquidity24hUsdChange": 0.2121062531229939, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45025,18 +45505,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "287", + "id": "841", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.019000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/287", - "amount": "1562500000000000" + "denom": "gamm/pool/841", + "amount": "1517899903624555" }, - "liquidityUsd": 0.0015708327895212198, - "liquidity24hUsdChange": -4.5096821349249545, + "liquidityUsd": 0.001321852464868969, + "liquidity24hUsdChange": -0.15791973705997303, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45044,35 +45524,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "99" + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "1189" }, - "weight": "536870912000000" + "weight": "966367641600000" }, { "token": { - "denom": "uosmo", - "amount": "389" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "133" }, - "weight": "536870912000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "292", + "id": "495", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/292", - "amount": "12207031250000000" + "denom": "gamm/pool/495", + "amount": "1800000000000000" }, - "liquidityUsd": 0.0015366877408746565, - "liquidity24hUsdChange": -4.533382318058984, + "liquidityUsd": 0.0013213020329863358, + "liquidity24hUsdChange": -3.1352513912855415, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45080,35 +45560,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "77" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "662" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "548" + "amount": "978" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ngj5p3ypnw3pfgzwxm6ksz3xr8f7q77j7ljprghfxs2udwemtjus36r90l", + "id": "1164", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "token0Amount": "753", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "775", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0012912572046365773, + "liquidity24hUsdChange": -0.9181906193842154, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "280", + "id": "79", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/280", - "amount": "550000000000000" + "denom": "gamm/pool/79", + "amount": "10800710283559354" }, - "liquidityUsd": 0.001403183480915285, - "liquidity24hUsdChange": -4.249569671396333, + "liquidityUsd": 0.0012887293470891122, + "liquidity24hUsdChange": -1.6670991682801517, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45117,16 +45618,16 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "93" + "amount": "125" }, - "weight": "644245094400000" + "weight": "858993459200000" }, { "token": { - "denom": "uion", - "amount": "1" + "denom": "uosmo", + "amount": "312" }, - "weight": "429496729600000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" @@ -45143,8 +45644,8 @@ "denom": "gamm/pool/1491", "amount": "358351131994874" }, - "liquidityUsd": 0.001385756075291174, - "liquidity24hUsdChange": -3.4216965826591283, + "liquidityUsd": 0.0012308710321277936, + "liquidity24hUsdChange": -3.7604534955917965, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45166,55 +45667,53 @@ "scaling_factor_controller": "" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "382", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "868", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/382", - "amount": "195312500000000000" + "denom": "gamm/pool/868", + "amount": "361078305158072" }, - "liquidityUsd": 0.0013826164587047004, - "liquidity24hUsdChange": -7.697441959568739, + "liquidityUsd": 0.0012243889792274095, + "liquidity24hUsdChange": -1.7169162813239367, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "539270" - }, - "weight": "536870912000000" + "denom": "ibc/01E94A5FF29B8DDEFC86F412CC3927F7330E9B523CC63A6194B1108F5276025C", + "amount": "383885" }, { - "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "1303" - }, - "weight": "536870912000000" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "78" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "5", + "5" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "485", + "id": "713", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/485", - "amount": "1562500000000000000" + "denom": "gamm/pool/713", + "amount": "373033484706635" }, - "liquidityUsd": 0.0013794021346010437, - "liquidity24hUsdChange": -4.4789831519132335, + "liquidityUsd": 0.001212764947991558, + "liquidity24hUsdChange": 0.05727344499817158, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45222,17 +45721,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "110" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "1212033135528121" }, - "weight": "858993459200000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "147" + "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "amount": "11617531959387988" }, - "weight": "214748364800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -45249,8 +45748,8 @@ "denom": "gamm/pool/281", "amount": "1100000000000000" }, - "liquidityUsd": 0.0013559584582940863, - "liquidity24hUsdChange": -6.971075355745981, + "liquidityUsd": 0.001206852124738328, + "liquidity24hUsdChange": -3.270464920117678, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45274,40 +45773,55 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1n5xd64m3rkcgqpqqdsjsfshz400ulrmkt43htklpc7dlqvdtjgpqt4c5a3", - "id": "1195", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", - "token0Amount": "1281", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1249", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.0013374307117345072, - "liquidity24hUsdChange": -0.15747232118434135, + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "287", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/287", + "amount": "1562500000000000" + }, + "liquidityUsd": 0.001148709543487838, + "liquidity24hUsdChange": -1.8625678498608027, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "99" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "389" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "841", + "id": "184", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.019000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/841", - "amount": "1517899903624555" + "denom": "gamm/pool/184", + "amount": "39600000000000000" }, - "liquidityUsd": 0.0013145648915044127, - "liquidity24hUsdChange": -0.17838520643396824, + "liquidityUsd": 0.001116114276326954, + "liquidity24hUsdChange": -3.4290776906209066, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45315,35 +45829,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "1189" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "285" }, - "weight": "966367641600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "133" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "34784" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "249", + "id": "292", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/249", - "amount": "6103515625000000" + "denom": "gamm/pool/292", + "amount": "12207031250000000" }, - "liquidityUsd": 0.0012944191318141336, - "liquidity24hUsdChange": -4.509085660607398, + "liquidityUsd": 0.0011149107093221377, + "liquidity24hUsdChange": -2.1705162560080487, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45352,14 +45866,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "82" + "amount": "77" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "317" + "amount": "548" }, "weight": "536870912000000" } @@ -45368,18 +45882,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "575", + "id": "382", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/575", - "amount": "1420889740849" + "denom": "gamm/pool/382", + "amount": "195312500000000000" }, - "liquidityUsd": 0.001271739956400961, - "liquidity24hUsdChange": -0.5965865818270498, + "liquidityUsd": 0.0011076567035991454, + "liquidity24hUsdChange": -3.59145283318746, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45387,35 +45901,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "10793" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "539270" }, - "weight": "214748364800000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "669450" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "1303" }, - "weight": "858993459200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "184", + "id": "280", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/184", - "amount": "39600000000000000" + "denom": "gamm/pool/280", + "amount": "550000000000000" }, - "liquidityUsd": 0.0012454511025168924, - "liquidity24hUsdChange": -7.291653834623873, + "liquidityUsd": 0.001021268657524859, + "liquidity24hUsdChange": -3.2763586926638033, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45423,35 +45937,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "285" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "93" }, - "weight": "536870912000000" + "weight": "644245094400000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "34784" + "denom": "uion", + "amount": "1" }, - "weight": "536870912000000" + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "164", + "id": "485", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/164", - "amount": "6595288277313859959" + "denom": "gamm/pool/485", + "amount": "1562500000000000000" }, - "liquidityUsd": 0.0012279819492939104, - "liquidity24hUsdChange": -6.688975774556198, + "liquidityUsd": 0.0010189816148639386, + "liquidity24hUsdChange": -1.4682118479020954, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45459,51 +45973,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "15379" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "110" }, - "weight": "429496729600000" + "weight": "858993459200000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "350646" + "denom": "uosmo", + "amount": "147" }, - "weight": "644245094400000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "713", + "id": "113", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/713", - "amount": "373033484706635" + "denom": "gamm/pool/113", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.0012123184485840401, - "liquidity24hUsdChange": 0.11155490148982111, + "liquidityUsd": 0.000991399918069119, + "liquidity24hUsdChange": -4.687496393029076, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 1.8157858480993266e-05, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "1212033135528121" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "5564" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", - "amount": "11617531959387988" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "1990" }, "weight": "536870912000000" } @@ -45512,18 +46026,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "142", + "id": "575", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/142", - "amount": "638205053966517685" + "denom": "gamm/pool/575", + "amount": "1420889740849" }, - "liquidityUsd": 0.001194624837500217, - "liquidity24hUsdChange": -4.589951255192669, + "liquidityUsd": 0.000988276746204506, + "liquidity24hUsdChange": -4.86019922042638, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45531,35 +46045,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "23" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "10793" }, - "weight": "107374182400000" + "weight": "214748364800000" }, { "token": { - "denom": "uosmo", - "amount": "737" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "669450" }, - "weight": "966367641600000" + "weight": "858993459200000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "135", + "id": "249", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/135", + "denom": "gamm/pool/249", "amount": "6103515625000000" }, - "liquidityUsd": 0.0011905648182733452, - "liquidity24hUsdChange": -3.722844718314396, + "liquidityUsd": 0.0009467624916199824, + "liquidity24hUsdChange": -1.8548571307690678, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45567,17 +46081,17 @@ "pool_assets": [ { "token": { - "denom": "uion", - "amount": "3" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "82" }, - "weight": "1063004405760000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1" + "amount": "317" }, - "weight": "10737418240000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -45594,8 +46108,8 @@ "denom": "gamm/pool/177", "amount": "6353907765323793" }, - "liquidityUsd": 0.0011654347186678166, - "liquidity24hUsdChange": -1.118105939838014, + "liquidityUsd": 0.000895018149963884, + "liquidity24hUsdChange": -6.275320425328168, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45618,6 +46132,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "164", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/164", + "amount": "6595288277313859959" + }, + "liquidityUsd": 0.0008896932598694638, + "liquidity24hUsdChange": -2.2042429454779326, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "15379" + }, + "weight": "429496729600000" + }, + { + "token": { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "350646" + }, + "weight": "644245094400000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "24", @@ -45630,8 +46180,8 @@ "denom": "gamm/pool/24", "amount": "369548614244727" }, - "liquidityUsd": 0.0011142684444719873, - "liquidity24hUsdChange": -4.303259814100347, + "liquidityUsd": 0.0008823550016751481, + "liquidity24hUsdChange": -4.359937684489196, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45656,18 +46206,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "213", + "id": "142", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/213", - "amount": "2500000000000000" + "denom": "gamm/pool/142", + "amount": "638205053966517685" }, - "liquidityUsd": 0.0011119081448113604, - "liquidity24hUsdChange": -4.509808875331569, + "liquidityUsd": 0.0008503370990861908, + "liquidity24hUsdChange": -2.9181579294670477, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45676,34 +46226,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "70" + "amount": "23" }, - "weight": "536870912000000" + "weight": "107374182400000" }, { "token": { "denom": "uosmo", - "amount": "276" + "amount": "737" }, - "weight": "536870912000000" + "weight": "966367641600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "488", + "id": "276", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/488", - "amount": "900000000000000000" + "denom": "gamm/pool/276", + "amount": "2100000000000000000" }, - "liquidityUsd": 0.0010897589164564783, - "liquidity24hUsdChange": -4.47376264676924, + "liquidityUsd": 0.0008441124528582652, + "liquidity24hUsdChange": -5.007152072124624, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45711,17 +46261,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "90" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "620096" }, - "weight": "1063004405760000" + "weight": "966367641600000" }, { "token": { "denom": "uosmo", - "amount": "90" + "amount": "105" }, - "weight": "10737418240000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" @@ -45738,8 +46288,8 @@ "denom": "gamm/pool/21", "amount": "200000000000000000" }, - "liquidityUsd": 0.0010884239845372554, - "liquidity24hUsdChange": -4.36661198815991, + "liquidityUsd": 0.0008375999462276572, + "liquidity24hUsdChange": -1.8768802688644413, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45774,8 +46324,8 @@ "denom": "gamm/pool/339", "amount": "800000000000000" }, - "liquidityUsd": 0.001069528697945519, - "liquidity24hUsdChange": -1.4051423287473612, + "liquidityUsd": 0.0008285716892139116, + "liquidity24hUsdChange": -4.667387192075561, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45800,18 +46350,54 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "276", + "id": "135", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/276", - "amount": "2100000000000000000" + "denom": "gamm/pool/135", + "amount": "6103515625000000" + }, + "liquidityUsd": 0.0008166270843846396, + "liquidity24hUsdChange": -8.62875893098855, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "uion", + "amount": "3" + }, + "weight": "1063004405760000" + }, + { + "token": { + "denom": "uosmo", + "amount": "1" + }, + "weight": "10737418240000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "213", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/213", + "amount": "2500000000000000" }, - "liquidityUsd": 0.0010595540959077577, - "liquidity24hUsdChange": -0.37158544938243543, + "liquidityUsd": 0.0008130756194356235, + "liquidity24hUsdChange": -1.8642064924506263, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45819,35 +46405,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "620096" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "70" }, - "weight": "966367641600000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "105" + "amount": "276" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1a0tp4v3g67cv6mudlm5u6aam53vjepyukjha650ta4w3x8pzc57qnx4p97", + "id": "1126", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", + "token0Amount": "1046", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "712", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.0008092795055885716, + "liquidity24hUsdChange": 0.17173669773874775, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "113", + "id": "488", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/113", - "amount": "100000000000000000000" + "denom": "gamm/pool/488", + "amount": "900000000000000000" }, - "liquidityUsd": 0.0010588976722434062, - "liquidity24hUsdChange": -4.375415765436432, + "liquidityUsd": 0.0008063964786675034, + "liquidity24hUsdChange": -1.4016522501739637, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45855,17 +46462,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "5564" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "90" }, - "weight": "536870912000000" + "weight": "1063004405760000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "1990" + "denom": "uosmo", + "amount": "90" }, - "weight": "536870912000000" + "weight": "10737418240000" } ], "total_weight": "1073741824000000" @@ -45882,8 +46489,8 @@ "denom": "gamm/pool/310", "amount": "100000000000000000" }, - "liquidityUsd": 0.001040718908927564, - "liquidity24hUsdChange": -8.297175532383482, + "liquidityUsd": 0.0008015702689662969, + "liquidity24hUsdChange": -3.675271000705966, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45908,18 +46515,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "524", + "id": "111", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002600000000000000", + "swap_fee": "0.999900000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/524", - "amount": "187571960833413754" + "denom": "gamm/pool/111", + "amount": "6659329435193808708" }, - "liquidityUsd": 0.0010379853231187743, - "liquidity24hUsdChange": -4.970043959392799, + "liquidityUsd": 0.0007482982074614751, + "liquidity24hUsdChange": -1.8020306123235543, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45927,15 +46534,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "786" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "67" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "640" + "amount": "231" }, "weight": "536870912000000" } @@ -45944,18 +46551,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "111", + "id": "1444", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.999900000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/111", - "amount": "6659329435193808708" + "denom": "gamm/pool/1444", + "amount": "24794614045" }, - "liquidityUsd": 0.0010216927951147586, - "liquidity24hUsdChange": -4.504995160027884, + "liquidityUsd": 0.000747182158032718, + "liquidity24hUsdChange": -1.94755395542666, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45963,15 +46570,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "67" + "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", + "amount": "15154493369929720" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "231" + "amount": "1" }, "weight": "536870912000000" } @@ -45980,18 +46587,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "438", + "id": "524", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.013000000000000000", + "swap_fee": "0.002600000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/438", - "amount": "32500000000000000" + "denom": "gamm/pool/524", + "amount": "187571960833413754" }, - "liquidityUsd": 0.0009956322698007588, - "liquidity24hUsdChange": -4.507375244198597, + "liquidityUsd": 0.0007360142943486922, + "liquidity24hUsdChange": -3.0775105189750236, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -45999,35 +46606,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "64" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "786" }, - "weight": "569083166720000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "236" + "amount": "640" }, - "weight": "504658657280000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "470", + "id": "438", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000250000000000000", + "swap_fee": "0.013000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/470", - "amount": "12600000000000000" + "denom": "gamm/pool/438", + "amount": "32500000000000000" }, - "liquidityUsd": 0.0009381968273098736, - "liquidity24hUsdChange": -4.202282332572877, + "liquidityUsd": 0.0007286369018586341, + "liquidity24hUsdChange": -1.8327570188933793, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46035,35 +46642,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "134" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "64" }, - "weight": "536870912000000" + "weight": "569083166720000" }, { "token": { "denom": "uosmo", - "amount": "626" + "amount": "236" }, - "weight": "536870912000000" + "weight": "504658657280000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "165", + "id": "714", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/165", - "amount": "471368066406250000" + "denom": "gamm/pool/714", + "amount": "56748659488963" }, - "liquidityUsd": 0.0009052148381768978, - "liquidity24hUsdChange": -4.408159050536437, + "liquidityUsd": 0.0007198530245513025, + "liquidity24hUsdChange": -1.4578196539092438, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46071,15 +46678,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "2895" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "352009586186287" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "532" + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "122795195357" }, "weight": "536870912000000" } @@ -46088,20 +46695,20 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1a0tp4v3g67cv6mudlm5u6aam53vjepyukjha650ta4w3x8pzc57qnx4p97", - "id": "1126", + "address": "osmo1jc5sype9ja2dma4f54qz9zaxx6583vkggfhc83tp2yxv8j7m43dss7hhw9", + "id": "1185", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", - "token0Amount": "1046", + "token0": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "token0Amount": "667", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "712", + "token1Amount": "705", "current_sqrt_price": "0.000000000000000000000000000000000000", "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.000852392531777963, - "liquidity24hUsdChange": -0.5872307345261295, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0007069017661152636, + "liquidity24hUsdChange": 0.27664348419352824, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46109,18 +46716,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1444", + "id": "165", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1444", - "amount": "24794614045" + "denom": "gamm/pool/165", + "amount": "471368066406250000" }, - "liquidityUsd": 0.00083360957421717, - "liquidity24hUsdChange": 2.67673117089223, + "liquidityUsd": 0.0006907306137106877, + "liquidity24hUsdChange": -4.072416177404952, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46128,15 +46735,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/69110FF673D70B39904FF056CFDFD58A90BEC3194303F45C32CB91B8B0A738EA", - "amount": "15154493369929720" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "2895" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1" + "amount": "532" }, "weight": "536870912000000" } @@ -46145,18 +46752,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1494", + "id": "470", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000250000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1494", - "amount": "71718981882668363209" + "denom": "gamm/pool/470", + "amount": "12600000000000000" }, - "liquidityUsd": 0.00083298924049876, - "liquidity24hUsdChange": -4.216866560727813, + "liquidityUsd": 0.0006536804689541446, + "liquidity24hUsdChange": -3.2879708726269565, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46164,15 +46771,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", - "amount": "50320" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "134" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", - "amount": "10336" + "denom": "uosmo", + "amount": "626" }, "weight": "536870912000000" } @@ -46181,18 +46788,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "784", + "id": "28", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/784", - "amount": "100014440195877" + "denom": "gamm/pool/28", + "amount": "82519531250000000" }, - "liquidityUsd": 0.0008228381418373058, - "liquidity24hUsdChange": -4.5472710660895235, + "liquidityUsd": 0.0006184781081294309, + "liquidity24hUsdChange": -6.12530128900694, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46200,15 +46807,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "35" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "1176" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "346" + "denom": "uion", + "amount": "1" }, "weight": "536870912000000" } @@ -46217,18 +46824,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "29", + "id": "784", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/29", - "amount": "1338796875000000000" + "denom": "gamm/pool/784", + "amount": "100014440195877" }, - "liquidityUsd": 0.000807124696986618, - "liquidity24hUsdChange": -3.7412055737474232, + "liquidityUsd": 0.0005942208122224515, + "liquidity24hUsdChange": -2.3524167940589167, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46236,35 +46843,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "45" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "35" }, - "weight": "107374182400000" + "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "2" + "denom": "uosmo", + "amount": "346" }, - "weight": "966367641600000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "714", + "id": "1494", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/714", - "amount": "56748659488963" + "denom": "gamm/pool/1494", + "amount": "71718981882668363209" }, - "liquidityUsd": 0.0007842005204222135, - "liquidity24hUsdChange": -1.7235063564143258, + "liquidityUsd": 0.000564364891623543, + "liquidity24hUsdChange": -6.587461187539375, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46272,15 +46879,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "352009586186287" + "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", + "amount": "50320" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "122795195357" + "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "amount": "10336" }, "weight": "536870912000000" } @@ -46289,18 +46896,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "28", + "id": "29", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/28", - "amount": "82519531250000000" + "denom": "gamm/pool/29", + "amount": "1338796875000000000" }, - "liquidityUsd": 0.0007693555467347724, - "liquidity24hUsdChange": -4.249392279796349, + "liquidityUsd": 0.0005570781097292699, + "liquidity24hUsdChange": -8.530379987804002, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46309,16 +46916,16 @@ { "token": { "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "1176" + "amount": "45" }, - "weight": "536870912000000" + "weight": "107374182400000" }, { "token": { "denom": "uion", - "amount": "1" + "amount": "2" }, - "weight": "536870912000000" + "weight": "966367641600000" } ], "total_weight": "1073741824000000" @@ -46335,8 +46942,8 @@ "denom": "gamm/pool/1425", "amount": "110265256666667" }, - "liquidityUsd": 0.0007525662644463986, - "liquidity24hUsdChange": -3.3840476111788886, + "liquidityUsd": 0.0005475126192960415, + "liquidity24hUsdChange": -1.7188602179184456, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46371,8 +46978,8 @@ "denom": "gamm/pool/483", "amount": "13600000000000000" }, - "liquidityUsd": 0.0007430705977773568, - "liquidity24hUsdChange": -4.587321929819564, + "liquidityUsd": 0.0005428140766331365, + "liquidity24hUsdChange": -1.625836211797364, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46396,25 +47003,74 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1jc5sype9ja2dma4f54qz9zaxx6583vkggfhc83tp2yxv8j7m43dss7hhw9", - "id": "1185", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "token0Amount": "667", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "705", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.0007050527753504748, - "liquidity24hUsdChange": -0.2227474969889899, + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "742", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000400000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/742", + "amount": "319956334364827" + }, + "liquidityUsd": 0.0005383046125367471, + "liquidity24hUsdChange": 0.03790613459320054, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "271" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "267" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1231", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000200000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/1231", + "amount": "17573838496714" + }, + "liquidityUsd": 0.0005353840119097934, + "liquidity24hUsdChange": 0.08619074607759337, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "450" + }, + { + "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "amount": "4442" + } + ], + "scaling_factors": [ + "1", + "100" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -46428,8 +47084,8 @@ "denom": "gamm/pool/501", "amount": "673951940865829" }, - "liquidityUsd": 0.0007025813466551057, - "liquidity24hUsdChange": -5.458846634658069, + "liquidityUsd": 0.0005178523622147636, + "liquidity24hUsdChange": -1.5784380993928773, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46464,8 +47120,8 @@ "denom": "gamm/pool/205", "amount": "1076100000000000" }, - "liquidityUsd": 0.0006982904727302812, - "liquidity24hUsdChange": -4.509705751297527, + "liquidityUsd": 0.0005106378328976421, + "liquidity24hUsdChange": -1.8628731822814097, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46488,6 +47144,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "175", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/175", + "amount": "15000000000000000" + }, + "liquidityUsd": 0.000506897171639133, + "liquidity24hUsdChange": -2.058652856069174, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "44" + }, + "weight": "429496729600000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "517" + }, + "weight": "644245094400000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", "id": "965", @@ -46500,8 +47192,8 @@ "denom": "gamm/pool/965", "amount": "103368068016194" }, - "liquidityUsd": 0.0006899391986707303, - "liquidity24hUsdChange": -4.6252153449778355, + "liquidityUsd": 0.0004857447318619778, + "liquidity24hUsdChange": -3.283273818947794, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46534,8 +47226,8 @@ "denom": "gamm/pool/963", "amount": "100000000000000" }, - "liquidityUsd": 0.0006872706326617102, - "liquidity24hUsdChange": -4.625215344977822, + "liquidityUsd": 0.000483921989117393, + "liquidity24hUsdChange": -3.2720735118165063, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46558,18 +47250,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "175", + "id": "780", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/175", - "amount": "15000000000000000" + "denom": "gamm/pool/780", + "amount": "100000000000000" }, - "liquidityUsd": 0.0006402637040689795, - "liquidity24hUsdChange": -4.54515316127038, + "liquidityUsd": 0.000459222258707857, + "liquidity24hUsdChange": 1.168590722686039, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46578,16 +47270,16 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "44" + "amount": "8" }, - "weight": "429496729600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "517" + "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", + "amount": "125304315064" }, - "weight": "644245094400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -46604,8 +47296,8 @@ "denom": "gamm/pool/173", "amount": "1011323869037628" }, - "liquidityUsd": 0.0006225131213083416, - "liquidity24hUsdChange": -4.516265937300186, + "liquidityUsd": 0.0004542343616710415, + "liquidity24hUsdChange": -1.9478063354640802, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46628,6 +47320,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "356", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/356", + "amount": "1368895893785720" + }, + "liquidityUsd": 0.0004492707081648318, + "liquidity24hUsdChange": -7.454017057723175, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "2437" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uion", + "amount": "1" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "504", @@ -46640,8 +47368,8 @@ "denom": "gamm/pool/504", "amount": "45475153156428952" }, - "liquidityUsd": 0.0006177526957859788, - "liquidity24hUsdChange": -5.187844510527535, + "liquidityUsd": 0.00044032876272603075, + "liquidity24hUsdChange": -2.8784110894119537, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46676,8 +47404,8 @@ "denom": "gamm/pool/434", "amount": "1400000000000000" }, - "liquidityUsd": 0.0005901990820113268, - "liquidity24hUsdChange": -4.525839791514424, + "liquidityUsd": 0.00042928564410400007, + "liquidity24hUsdChange": -2.0721784676191914, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46700,20 +47428,41 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo17mrmwpyr74tss9sx3cunvflc9944ech8dw8t7jf98n23nlw7r5qqq0qfm7", + "id": "1188", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "token0Amount": "88", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "93", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.0004233565971097609, + "liquidity24hUsdChange": -2.6390999531397235, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "356", + "id": "56", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003300000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/356", - "amount": "1368895893785720" + "denom": "gamm/pool/56", + "amount": "200000000000000" }, - "liquidityUsd": 0.0005838173939423894, - "liquidity24hUsdChange": -3.726519493091214, + "liquidityUsd": 0.00039192035357975155, + "liquidity24hUsdChange": -7.113652888134772, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46721,105 +47470,133 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "2437" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "49" }, - "weight": "536870912000000" + "weight": "354334801920000" }, { "token": { "denom": "uion", "amount": "1" }, - "weight": "536870912000000" + "weight": "365072220160000" + }, + { + "token": { + "denom": "uosmo", + "amount": "117" + }, + "weight": "354334801920000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1231", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "168", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000200000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1231", - "amount": "17573838496714" + "denom": "gamm/pool/168", + "amount": "900000000000000" }, - "liquidityUsd": 0.0005763871473994083, - "liquidity24hUsdChange": -0.7371332418750796, + "liquidityUsd": 0.0003857211403868321, + "liquidity24hUsdChange": -1.733416361051883, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "450" + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "36" + }, + "weight": "751619276800000" }, { - "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", - "amount": "4442" + "token": { + "denom": "uosmo", + "amount": "106" + }, + "weight": "322122547200000" } ], - "scaling_factors": [ - "1", - "100" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "780", + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo13pjqyk2589ejgwv0l5sr4zuvhjnjgtuewae06ce74twx3yf5m7nq779nt5", + "id": "1416", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", + "token0Amount": "419", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "385", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 0.0003856446878372523, + "liquidity24hUsdChange": 0.183936604090946, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "932", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/780", - "amount": "100000000000000" + "denom": "gamm/pool/932", + "amount": "119628254817878" }, - "liquidityUsd": 0.0005704291885297231, - "liquidity24hUsdChange": 0.8813715213892955, + "liquidityUsd": 0.000373, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "8" - }, - "weight": "536870912000000" + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "373" }, { - "token": { - "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", - "amount": "125304315064" - }, - "weight": "536870912000000" + "denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", + "amount": "231" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "56", + "id": "456", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003300000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/56", - "amount": "200000000000000" + "denom": "gamm/pool/456", + "amount": "6361875000000000" }, - "liquidityUsd": 0.0005620882090730014, - "liquidity24hUsdChange": -3.994889297760043, + "liquidityUsd": 0.00035636373925078776, + "liquidity24hUsdChange": -5.031260696743166, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46827,99 +47604,98 @@ "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "49" - }, - "weight": "354334801920000" - }, - { - "token": { - "denom": "uion", - "amount": "1" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "265768" }, - "weight": "365072220160000" + "weight": "858993459200000" }, { "token": { "denom": "uosmo", - "amount": "117" + "amount": "39" }, - "weight": "354334801920000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "742", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "871", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/742", - "amount": "319956334364827" + "denom": "gamm/pool/871", + "amount": "200000000000000" }, - "liquidityUsd": 0.0005374795687907997, - "liquidity24hUsdChange": -0.0036256250245071415, + "liquidityUsd": 0.00034694094993221786, + "liquidity24hUsdChange": -0.08043814266851232, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "271" - }, - "weight": "536870912000000" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "192236031743701" }, { - "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "267" - }, - "weight": "536870912000000" + "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "amount": "34" + }, + { + "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "amount": "72" + }, + { + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "59" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "3567587328", + "1", + "1", + "1" + ], + "scaling_factor_controller": "" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "168", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "1352", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/168", - "amount": "900000000000000" + "denom": "gamm/pool/1352", + "amount": "1000214420500" }, - "liquidityUsd": 0.0005257203207182347, - "liquidity24hUsdChange": -4.499671661698407, + "liquidityUsd": 0.00034447836120279587, + "liquidity24hUsdChange": 0.19006800622910772, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "36" - }, - "weight": "751619276800000" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "36" }, { - "token": { - "denom": "uosmo", - "amount": "106" - }, - "weight": "322122547200000" + "denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", + "amount": "136892" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -46933,8 +47709,8 @@ "denom": "gamm/pool/141", "amount": "1335843308260379" }, - "liquidityUsd": 0.00048508513098294244, - "liquidity24hUsdChange": -4.598786618240245, + "liquidityUsd": 0.00034424422987554336, + "liquidity24hUsdChange": -3.0365660529904512, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46957,41 +47733,20 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo17mrmwpyr74tss9sx3cunvflc9944ech8dw8t7jf98n23nlw7r5qqq0qfm7", - "id": "1188", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "token0Amount": "88", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "93", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.000458128819605202, - "liquidity24hUsdChange": -5.870770368923958, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "456", + "id": "127", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/456", - "amount": "6361875000000000" + "denom": "gamm/pool/127", + "amount": "3051757812500000" }, - "liquidityUsd": 0.0004464147829952245, - "liquidity24hUsdChange": -0.29487232426639576, + "liquidityUsd": 0.00032426660082867775, + "liquidity24hUsdChange": -3.8373226549777493, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -46999,17 +47754,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "265768" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "67" }, - "weight": "858993459200000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "39" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "60287" }, - "weight": "214748364800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -47026,8 +47781,8 @@ "denom": "gamm/pool/290", "amount": "400000000000000000" }, - "liquidityUsd": 0.00044395138472760816, - "liquidity24hUsdChange": -4.625215344977832, + "liquidityUsd": 0.00031220345608944897, + "liquidity24hUsdChange": -3.393444051277461, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47062,8 +47817,8 @@ "denom": "gamm/pool/474", "amount": "36452547590795188" }, - "liquidityUsd": 0.00043725784027817775, - "liquidity24hUsdChange": -3.7232169800171038, + "liquidityUsd": 0.00031055390985758796, + "liquidity24hUsdChange": -8.265472405620303, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47098,8 +47853,8 @@ "denom": "gamm/pool/473", "amount": "3352355957031250" }, - "liquidityUsd": 0.0004336297751491839, - "liquidity24hUsdChange": -2.654514767195549, + "liquidityUsd": 0.0002920268661513649, + "liquidity24hUsdChange": -2.891012146495969, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47124,18 +47879,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "147", + "id": "100", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/147", - "amount": "100000000000000" + "denom": "gamm/pool/100", + "amount": "25000000000000" }, - "liquidityUsd": 0.00041807791243007094, - "liquidity24hUsdChange": -3.760145473270017, + "liquidityUsd": 0.00028978860022908337, + "liquidity24hUsdChange": -2.663895284955895, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47144,34 +47899,34 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2" + "amount": "12" }, - "weight": "21474836480000" + "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "1" + "denom": "uosmo", + "amount": "214" }, - "weight": "1052266987520000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "211", + "id": "147", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/211", - "amount": "262500000000000" + "denom": "gamm/pool/147", + "amount": "100000000000000" }, - "liquidityUsd": 0.0004132976767014598, - "liquidity24hUsdChange": -3.75988857408752, + "liquidityUsd": 0.0002880235315790522, + "liquidity24hUsdChange": -8.246674024943097, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47179,35 +47934,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "10386" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2" }, - "weight": "536870912000000" + "weight": "21474836480000" }, { "token": { "denom": "uion", "amount": "1" }, - "weight": "536870912000000" + "weight": "1052266987520000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "100", + "id": "211", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/100", - "amount": "25000000000000" + "denom": "gamm/pool/211", + "amount": "262500000000000" }, - "liquidityUsd": 0.0004044866793665772, - "liquidity24hUsdChange": -4.570865254297869, + "liquidityUsd": 0.0002833618522582042, + "liquidity24hUsdChange": -8.433452511407314, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47215,15 +47970,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "12" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "10386" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "214" + "denom": "uion", + "amount": "1" }, "weight": "536870912000000" } @@ -47232,18 +47987,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "264", + "id": "405", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002500000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/264", - "amount": "1299870222121303" + "denom": "gamm/pool/405", + "amount": "2800000000000000" }, - "liquidityUsd": 0.0003997441509099739, - "liquidity24hUsdChange": -3.729594317200143, + "liquidityUsd": 0.00028221822662782576, + "liquidity24hUsdChange": -3.4277909630412613, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47251,42 +48006,21 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "2042" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "71" }, - "weight": "858993459200000" + "weight": "536870912000000" }, { "token": { - "denom": "uion", - "amount": "1" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "11772" }, - "weight": "214748364800000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hxe33mmvnnwe6ggcvnmkuxutjmzer08jhsw8jcfylyw795fje7aqhlh8v8", - "id": "1196", - "current_tick_liquidity": "0.000000000000000000", - "token0": "uion", - "token0Amount": "1", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "2", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.0003984245682332864, - "liquidity24hUsdChange": -3.704936144978358, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo19k079l2dqf334tuwlwqk584prdy5fp7j9v3d0h5xsst7s6xvd79qgp6upj", @@ -47301,8 +48035,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.0003932300697959781, - "liquidity24hUsdChange": -5.849776422650591, + "liquidityUsd": 0.00027890555997500167, + "liquidity24hUsdChange": -4.024922092288404, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47310,20 +48044,20 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo13pjqyk2589ejgwv0l5sr4zuvhjnjgtuewae06ce74twx3yf5m7nq779nt5", - "id": "1416", + "address": "osmo1gny4qk6rgnvgddjjmqh55dj0cz6k5vts68f9tzpd37sw2jeyhpjqu2czm4", + "id": "1216", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/75345531D87BD90BF108BE7240BD721CB2CB0A1F16D4EBA71B09EC3C43E15C8F", - "token0Amount": "419", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "385", + "token0": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", + "token0Amount": "155", + "token1": "uosmo", + "token1Amount": "136", "current_sqrt_price": "0.000000000000000000000000000000000000", "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 0.000384862343502356, - "liquidity24hUsdChange": -0.23389684269437533, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.000277874001444712, + "liquidity24hUsdChange": -1.3874067378961399, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47331,18 +48065,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "614", + "id": "96", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/614", - "amount": "15868076321300" + "denom": "gamm/pool/96", + "amount": "5850000000000000" }, - "liquidityUsd": 0.0003841671242949983, - "liquidity24hUsdChange": -4.691065638721023, + "liquidityUsd": 0.0002757476851162658, + "liquidity24hUsdChange": -2.10832219817107, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47350,15 +48084,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "26383" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "20" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", - "amount": "3533" + "denom": "uosmo", + "amount": "127" }, "weight": "536870912000000" } @@ -47367,18 +48101,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "96", + "id": "264", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "swap_fee": "0.002500000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/96", - "amount": "5850000000000000" + "denom": "gamm/pool/264", + "amount": "1299870222121303" }, - "liquidityUsd": 0.00037945997228020867, - "liquidity24hUsdChange": -4.528614814008631, + "liquidityUsd": 0.00027416015544027043, + "liquidity24hUsdChange": -8.593506056914617, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47386,69 +48120,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "20" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "2042" }, - "weight": "536870912000000" + "weight": "858993459200000" }, { "token": { - "denom": "uosmo", - "amount": "127" + "denom": "uion", + "amount": "1" }, - "weight": "536870912000000" + "weight": "214748364800000" } ], "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "932", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/932", - "amount": "119628254817878" - }, - "liquidityUsd": 0.000373, - "liquidity24hUsdChange": 0, + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1hxe33mmvnnwe6ggcvnmkuxutjmzer08jhsw8jcfylyw795fje7aqhlh8v8", + "id": "1196", + "current_tick_liquidity": "0.000000000000000000", + "token0": "uion", + "token0Amount": "1", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "2", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.00027391136249798427, + "liquidity24hUsdChange": -8.574782676484565, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "373" - }, - { - "denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", - "amount": "231" - } - ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "127", + "id": "614", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/127", - "amount": "3051757812500000" + "denom": "gamm/pool/614", + "amount": "15868076321300" }, - "liquidityUsd": 0.00036800417796867355, - "liquidity24hUsdChange": -5.48227447470963, + "liquidityUsd": 0.00026122688905794785, + "liquidity24hUsdChange": -3.15673170156482, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47456,15 +48177,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "67" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "26383" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "60287" + "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "amount": "3533" }, "weight": "536870912000000" } @@ -47472,48 +48193,40 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "871", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "836", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.000140000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/871", - "amount": "200000000000000" + "denom": "gamm/pool/836", + "amount": "83789451345877" }, - "liquidityUsd": 0.0003501796221094882, - "liquidity24hUsdChange": -0.05657646994995973, + "liquidityUsd": 0.0002532843799697307, + "liquidity24hUsdChange": 0.07523890503360854, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "192236031743701" - }, - { - "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", - "amount": "34" - }, + "pool_assets": [ { - "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "amount": "72" + "token": { + "denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", + "amount": "252" + }, + "weight": "536870912000000" }, { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "59" + "token": { + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "amount": "253" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "3567587328", - "1", - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -47527,8 +48240,8 @@ "denom": "gamm/pool/489", "amount": "821340000000000" }, - "liquidityUsd": 0.00034626143205650033, - "liquidity24hUsdChange": -4.529940589710902, + "liquidityUsd": 0.000251511508476116, + "liquidity24hUsdChange": -2.125604925161342, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47553,97 +48266,97 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "420", + "id": "25", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/420", - "amount": "16200000000000" + "denom": "gamm/pool/25", + "amount": "646616250000000" }, - "liquidityUsd": 0.0003352741276838355, - "liquidity24hUsdChange": -4.521342475654185, + "liquidityUsd": 0.0002446219937009967, + "liquidity24hUsdChange": -3.536928116636715, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ + { + "token": { + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "537" + }, + "weight": "1063004405760000" + }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "19" + "amount": "3" }, - "weight": "536870912000000" + "weight": "5368709120000" }, { "token": { "denom": "uosmo", - "amount": "101" + "amount": "201" }, - "weight": "536870912000000" + "weight": "5368709120000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "25", + "id": "420", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/25", - "amount": "646616250000000" + "denom": "gamm/pool/420", + "amount": "16200000000000" }, - "liquidityUsd": 0.0003316703641615498, - "liquidity24hUsdChange": -4.498850322293864, + "liquidityUsd": 0.00024422967105652865, + "liquidity24hUsdChange": -2.013692198137642, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ - { - "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "537" - }, - "weight": "1063004405760000" - }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "3" + "amount": "19" }, - "weight": "5368709120000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "201" + "amount": "101" }, - "weight": "5368709120000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "405", + "id": "1287", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/405", - "amount": "2800000000000000" + "denom": "gamm/pool/1287", + "amount": "640023826122265931700" }, - "liquidityUsd": 0.00031585467179050117, - "liquidity24hUsdChange": -7.320180612762585, + "liquidityUsd": 0.00023114941944006915, + "liquidity24hUsdChange": -0.11003703008890646, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47651,15 +48364,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "71" + "denom": "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", + "amount": "124221" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "11772" + "denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", + "amount": "14476" }, "weight": "536870912000000" } @@ -47667,53 +48380,55 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "1352", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "478", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1352", - "amount": "1000214420500" + "denom": "gamm/pool/478", + "amount": "119700000000000" }, - "liquidityUsd": 0.0003145036233587474, - "liquidity24hUsdChange": -3.869884792503934, + "liquidityUsd": 0.00021825211056170465, + "liquidity24hUsdChange": -2.094322389836291, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "36" + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "16" + }, + "weight": "536870912000000" }, { - "denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", - "amount": "136892" + "token": { + "denom": "uosmo", + "amount": "99" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "478", + "id": "260", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/478", - "amount": "119700000000000" + "denom": "gamm/pool/260", + "amount": "1250000000000000" }, - "liquidityUsd": 0.0003002319269562716, - "liquidity24hUsdChange": -4.527540330275199, + "liquidityUsd": 0.0002129014381973259, + "liquidity24hUsdChange": -2.1455617994324565, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47722,34 +48437,55 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "16" + "amount": "15" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "99" + "amount": "102" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo16msxcfht9qph0357sdmj36wy4kf40anez8v4zl9xr8355m95s08q2cpz36", + "id": "1187", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "token0Amount": "43", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "38", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.00019941267807623844, + "liquidity24hUsdChange": -2.745049286044401, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "260", + "id": "447", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/260", - "amount": "1250000000000000" + "denom": "gamm/pool/447", + "amount": "17820324004800000" }, - "liquidityUsd": 0.00029325588050180783, - "liquidity24hUsdChange": -4.531470579460996, + "liquidityUsd": 0.00019897547400128497, + "liquidity24hUsdChange": -3.3396484420828867, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47757,15 +48493,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "15" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "5232" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "102" + "amount": "176" }, "weight": "536870912000000" } @@ -47774,18 +48510,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "447", + "id": "386", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/447", - "amount": "17820324004800000" + "denom": "gamm/pool/386", + "amount": "100000000000000000000" }, - "liquidityUsd": 0.0002842675150940094, - "liquidity24hUsdChange": -4.701685916943298, + "liquidityUsd": 0.00019800773200832932, + "liquidity24hUsdChange": -4.604140362797259, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47793,15 +48529,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "5232" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "48344" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "176" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "110167" }, "weight": "536870912000000" } @@ -47820,8 +48556,8 @@ "denom": "gamm/pool/178", "amount": "2500000000000000" }, - "liquidityUsd": 0.00027216577268317145, - "liquidity24hUsdChange": -4.5309397156031, + "liquidityUsd": 0.00019762522243125944, + "liquidity24hUsdChange": -2.138635858944285, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47846,18 +48582,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "491", + "id": "554", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.500000000000000000", + "exit_fee": "0.001000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/491", - "amount": "6250000000000000000" + "denom": "gamm/pool/554", + "amount": "269000000000000000000000" }, - "liquidityUsd": 0.00026159484661977106, - "liquidity24hUsdChange": -6.253577488494817, + "liquidityUsd": 0.00019010680642546436, + "liquidity24hUsdChange": -1.3985632478481238, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47865,20 +48601,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "54159" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "13" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "128" + "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", + "amount": "59870912" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -47892,8 +48628,8 @@ "denom": "gamm/pool/410", "amount": "3980000000000000" }, - "liquidityUsd": 0.00026134043676575154, - "liquidity24hUsdChange": -4.534050478339853, + "liquidityUsd": 0.00018956758368460222, + "liquidity24hUsdChange": -2.179242691776289, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47916,20 +48652,41 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1zekyekwg2wl66rerwxl4tfgqdp6pnp0vr53w6znxz94ffn9ftdmqe6qvct", + "id": "1130", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", + "token0Amount": "176", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "189", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.00018929374495729655, + "liquidity24hUsdChange": 0.2832663986139088, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "471", + "id": "491", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.500000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/471", - "amount": "4159356627396053" + "denom": "gamm/pool/491", + "amount": "6250000000000000000" }, - "liquidityUsd": 0.0002586362519673545, - "liquidity24hUsdChange": -2.09788499853532, + "liquidityUsd": 0.00018817452510449774, + "liquidity24hUsdChange": -3.3735391084286706, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47937,15 +48694,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "216" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "54159" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "32" + "amount": "128" }, "weight": "536870912000000" } @@ -47954,18 +48711,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "836", + "id": "116", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000140000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/836", - "amount": "83789451345877" + "denom": "gamm/pool/116", + "amount": "200000000000000000" }, - "liquidityUsd": 0.0002525141361773887, - "liquidity24hUsdChange": -0.007204350562760121, + "liquidityUsd": 0.00018442270435626489, + "liquidity24hUsdChange": -3.048608482435926, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -47973,35 +48730,49 @@ "pool_assets": [ { "token": { - "denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", - "amount": "252" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "40" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", - "amount": "253" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "4" }, - "weight": "536870912000000" + "weight": "268435456000000" + }, + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "4" + }, + "weight": "268435456000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "2" + }, + "weight": "268435456000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "386", + "id": "208", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/386", - "amount": "100000000000000000000" + "denom": "gamm/pool/208", + "amount": "30600000000000000" }, - "liquidityUsd": 0.0002512114320818938, - "liquidity24hUsdChange": -3.0894645376106964, + "liquidityUsd": 0.00017888975236636664, + "liquidity24hUsdChange": -3.3694608706573552, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48010,14 +48781,14 @@ { "token": { "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "48344" + "amount": "62033" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "110167" + "denom": "uosmo", + "amount": "106" }, "weight": "536870912000000" } @@ -48026,18 +48797,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "554", + "id": "104", "pool_params": { - "exit_fee": "0.001000000000000000", - "swap_fee": "0.003000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/554", - "amount": "269000000000000000000000" + "denom": "gamm/pool/104", + "amount": "1228099619035405" }, - "liquidityUsd": 0.0002476668553881376, - "liquidity24hUsdChange": -3.5653829550777063, + "liquidityUsd": 0.00017418457505993774, + "liquidity24hUsdChange": -1.8071230124679352, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48045,71 +48816,49 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "13" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "109" }, - "weight": "5368709120" + "weight": "268435456000000" }, { "token": { - "denom": "ibc/9989AD6CCA39D1131523DB0617B50F6442081162294B4795E26746292467B525", - "amount": "59870912" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "17" }, - "weight": "5368709120" - } - ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "208", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/208", - "amount": "30600000000000000" - }, - "liquidityUsd": 0.00024752135745336834, - "liquidity24hUsdChange": -6.589306075983623, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ + "weight": "268435456000000" + }, { "token": { "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "62033" + "amount": "12370" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { - "denom": "uosmo", - "amount": "106" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "43" }, - "weight": "536870912000000" + "weight": "268435456000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1287", + "id": "41", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1287", - "amount": "640023826122265931700" + "denom": "gamm/pool/41", + "amount": "4586365628523816" }, - "liquidityUsd": 0.00024705893947771, - "liquidity24hUsdChange": -0.03241930956432306, + "liquidityUsd": 0.0001741531784964083, + "liquidity24hUsdChange": -3.3201850408502924, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48117,15 +48866,22 @@ "pool_assets": [ { "token": { - "denom": "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", - "amount": "124221" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "32" }, - "weight": "536870912000000" + "weight": "268435456000000" }, { "token": { - "denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", - "amount": "14476" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1" + }, + "weight": "268435456000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "51" }, "weight": "536870912000000" } @@ -48146,27 +48902,27 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.005000000000000000", - "liquidityUsd": 0.0002454426312502866, - "liquidity24hUsdChange": -4.792988967270707, + "liquidityUsd": 0.0001722478284739459, + "liquidity24hUsdChange": -3.4927237796967394, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 2310.5924454839296, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "104", + "id": "471", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.500000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/104", - "amount": "1228099619035405" + "denom": "gamm/pool/471", + "amount": "4159356627396053" }, - "liquidityUsd": 0.00022828494936606012, - "liquidity24hUsdChange": -4.9000238056213705, + "liquidityUsd": 0.00017205783428689454, + "liquidity24hUsdChange": -2.7438852599694243, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48174,35 +48930,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "109" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "17" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "12370" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "216" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "43" + "denom": "uosmo", + "amount": "32" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1l0hdl9rqfcvdr6mvex66t9uymfjlnq5txucfd4fgcwp5l9xpn4psvmu54c", + "id": "1117", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "token0Amount": "110", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "116", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.00017040467361900796, + "liquidity24hUsdChange": -1.2845924030339355, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "237", @@ -48215,8 +48978,8 @@ "denom": "gamm/pool/237", "amount": "1250000000000000" }, - "liquidityUsd": 0.00022828383728927955, - "liquidity24hUsdChange": -4.519423787850713, + "liquidityUsd": 0.00016489953025146774, + "liquidity24hUsdChange": -1.8857221444348902, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48251,8 +49014,8 @@ "denom": "gamm/pool/192", "amount": "199995927309144777" }, - "liquidityUsd": 0.00021856456751514683, - "liquidity24hUsdChange": -2.5447805168599387, + "liquidityUsd": 0.00016391316547871397, + "liquidity24hUsdChange": -4.257327630660364, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48287,8 +49050,8 @@ "denom": "gamm/pool/143", "amount": "62500000000000000" }, - "liquidityUsd": 0.0002164683321906865, - "liquidity24hUsdChange": -8.454221871266315, + "liquidityUsd": 0.00016154501085714233, + "liquidity24hUsdChange": -3.1298573198461908, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48313,20 +49076,20 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo16msxcfht9qph0357sdmj36wy4kf40anez8v4zl9xr8355m95s08q2cpz36", - "id": "1187", + "address": "osmo1gu0h6g0ussvphpl55asadaf2ehff75nhfe28cncyu9w8mckrr00qcpmd2s", + "id": "1312", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "token0Amount": "43", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "38", + "token0": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "token0Amount": "143", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "152", "current_sqrt_price": "0.000000000000000000000000000000000000", "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.00021642516410864268, - "liquidity24hUsdChange": -6.053397336037356, + "liquidityUsd": 0.00015215292350382448, + "liquidity24hUsdChange": 0.1869509269651717, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48334,18 +49097,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "116", + "id": "487", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/116", - "amount": "200000000000000000" + "denom": "gamm/pool/487", + "amount": "205200000000000" }, - "liquidityUsd": 0.0002121992410727602, - "liquidity24hUsdChange": -6.6222861512311155, + "liquidityUsd": 0.0001422208282884996, + "liquidity24hUsdChange": -3.3399888936380533, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48353,72 +49116,51 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "40" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "4" - }, - "weight": "268435456000000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4" + "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", + "amount": "3716" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "2" + "amount": "126" }, - "weight": "268435456000000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "41", + "id": "45", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/41", - "amount": "4586365628523816" + "denom": "gamm/pool/45", + "amount": "3763407299322293" }, - "liquidityUsd": 0.00020908256021881172, - "liquidity24hUsdChange": -6.272708893728877, + "liquidityUsd": 0.0001409687096039463, + "liquidity24hUsdChange": -2.009448872332861, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ - { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "32" - }, - "weight": "268435456000000" - }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1" + "amount": "11" }, - "weight": "268435456000000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "51" + "amount": "58" }, "weight": "536870912000000" } @@ -48427,18 +49169,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "487", + "id": "335", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.036900000000000004", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/487", - "amount": "205200000000000" + "denom": "gamm/pool/335", + "amount": "10443908639838236658" }, - "liquidityUsd": 0.00020317865393137076, - "liquidity24hUsdChange": -4.701204856925713, + "liquidityUsd": 0.00012729568835058707, + "liquidity24hUsdChange": -3.2074572859722683, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48446,35 +49188,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DC495FCEFDA068A3820F903EDBD78B942FBD204D7E93D3BA2B432E9669D1A59", - "amount": "3716" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1" }, - "weight": "536870912000000" + "weight": "5368709120000" }, { "token": { - "denom": "uosmo", - "amount": "126" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "88856" }, - "weight": "536870912000000" + "weight": "1068373114880000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "45", + "id": "288", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.000300000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/45", - "amount": "3763407299322293" + "denom": "gamm/pool/288", + "amount": "200000000000000000" }, - "liquidityUsd": 0.000193498291375438, - "liquidity24hUsdChange": -4.521015852146919, + "liquidityUsd": 0.0001255659730375235, + "liquidity24hUsdChange": -1.692953017180129, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48483,62 +49225,20 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "11" + "amount": "12" }, - "weight": "536870912000000" + "weight": "751619276800000" }, { "token": { "denom": "uosmo", - "amount": "58" + "amount": "32" }, - "weight": "536870912000000" + "weight": "322122547200000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1l0hdl9rqfcvdr6mvex66t9uymfjlnq5txucfd4fgcwp5l9xpn4psvmu54c", - "id": "1117", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", - "token0Amount": "110", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "116", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.00019181398242589664, - "liquidity24hUsdChange": -2.911934163544901, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1zekyekwg2wl66rerwxl4tfgqdp6pnp0vr53w6znxz94ffn9ftdmqe6qvct", - "id": "1130", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", - "token0Amount": "176", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "189", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 0.00018874746179623134, - "liquidity24hUsdChange": -0.22345418412879262, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "302", @@ -48551,8 +49251,8 @@ "denom": "gamm/pool/302", "amount": "51395660627978" }, - "liquidityUsd": 0.00017249549336157782, - "liquidity24hUsdChange": -4.614599699207398, + "liquidityUsd": 0.0001217502268023525, + "liquidity24hUsdChange": -3.24960945322157, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48577,18 +49277,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "288", + "id": "188", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000300000000000000", + "swap_fee": "0.050000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/288", - "amount": "200000000000000000" + "denom": "gamm/pool/188", + "amount": "2148437500000000" }, - "liquidityUsd": 0.00017096311861390472, - "liquidity24hUsdChange": -4.49652669470245, + "liquidityUsd": 0.00011849172212899323, + "liquidity24hUsdChange": -4.593482386109585, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48596,53 +49296,17 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "12" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "64451" }, - "weight": "751619276800000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "32" - }, - "weight": "322122547200000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "335", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.036900000000000004", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/335", - "amount": "10443908639838236658" - }, - "liquidityUsd": 0.0001705566185920385, - "liquidity24hUsdChange": -8.609534339658289, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1" - }, - "weight": "5368709120000" - }, - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "88856" + "amount": "45" }, - "weight": "1068373114880000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -48659,8 +49323,8 @@ "denom": "gamm/pool/315", "amount": "522405887149819799" }, - "liquidityUsd": 0.00016464376483342935, - "liquidity24hUsdChange": -4.404786821777766, + "liquidityUsd": 0.00011830613978678405, + "liquidity24hUsdChange": -1.8976680329582754, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48702,8 +49366,8 @@ "denom": "gamm/pool/217", "amount": "31706542968750000" }, - "liquidityUsd": 0.0001634134841485179, - "liquidity24hUsdChange": -4.625888634619426, + "liquidityUsd": 0.00011478253468206327, + "liquidity24hUsdChange": -3.3934440512774757, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48726,63 +49390,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "188", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.050000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/188", - "amount": "2148437500000000" - }, - "liquidityUsd": 0.00015386341241755333, - "liquidity24hUsdChange": -1.6188134146853734, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "64451" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "45" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1gu0h6g0ussvphpl55asadaf2ehff75nhfe28cncyu9w8mckrr00qcpmd2s", - "id": "1312", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", - "token0Amount": "143", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "152", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 0.0001518373326934264, - "liquidity24hUsdChange": -0.23153556257092295, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "291", @@ -48795,8 +49402,8 @@ "denom": "gamm/pool/291", "amount": "69316088066809" }, - "liquidityUsd": 0.00014072936692645913, - "liquidity24hUsdChange": -4.455779495370148, + "liquidityUsd": 0.00010474930370654384, + "liquidity24hUsdChange": -1.173479034635177, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48819,6 +49426,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "543", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/543", + "amount": "800000000000000" + }, + "liquidityUsd": 0.0000994947955011136, + "liquidity24hUsdChange": -4.344868054158955, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "586" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "63" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "365", @@ -48831,8 +49474,8 @@ "denom": "gamm/pool/365", "amount": "3785351794026047" }, - "liquidityUsd": 0.0001382093043317408, - "liquidity24hUsdChange": -4.357624989920875, + "liquidityUsd": 0.00009699985988233542, + "liquidity24hUsdChange": -1.5579649316258275, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48867,8 +49510,8 @@ "denom": "gamm/pool/16", "amount": "100000000000000" }, - "liquidityUsd": 0.0001266142859935567, - "liquidity24hUsdChange": -4.413264172211548, + "liquidityUsd": 0.00009576636946302473, + "liquidity24hUsdChange": -1.5161330809552045, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48892,40 +49535,38 @@ "total_weight": "10737418240" }, { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "543", + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "933", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/543", - "amount": "800000000000000" + "denom": "gamm/pool/933", + "amount": "29668190678516" }, - "liquidityUsd": 0.00012589483656427622, - "liquidity24hUsdChange": -4.308976253457137, + "liquidityUsd": 0.000092, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_assets": [ + "pool_liquidity": [ { - "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "586" - }, - "weight": "536870912000000" + "denom": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", + "amount": "59" }, { - "token": { - "denom": "uosmo", - "amount": "63" - }, - "weight": "536870912000000" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "92" } ], - "total_weight": "1073741824000000" + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -48939,8 +49580,8 @@ "denom": "gamm/pool/1038", "amount": "1123916049601612" }, - "liquidityUsd": 0.00011908062815110594, - "liquidity24hUsdChange": -5.076307523957026, + "liquidityUsd": 0.0000864211288673592, + "liquidity24hUsdChange": -4.6126421966098485, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48965,18 +49606,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "30", + "id": "710", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/30", - "amount": "65594202213713" + "denom": "gamm/pool/710", + "amount": "10207754181714" }, - "liquidityUsd": 0.00011635276879531513, - "liquidity24hUsdChange": -4.530121605188818, + "liquidityUsd": 0.000084983339764585, + "liquidity24hUsdChange": -1.0637048253640347, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -48984,42 +49625,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "1" - }, - "weight": "365072220160000" - }, - { - "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6" + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "amount": "49820263972569" }, - "weight": "354334801920000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "40" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "53" }, - "weight": "354334801920000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "710", + "id": "30", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/710", - "amount": "10207754181714" + "denom": "gamm/pool/30", + "amount": "65594202213713" }, - "liquidityUsd": 0.0001032189810852032, - "liquidity24hUsdChange": -0.7841419494946976, + "liquidityUsd": 0.00008451149658974245, + "liquidity24hUsdChange": -2.1378338519587374, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49027,17 +49661,24 @@ "pool_assets": [ { "token": { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "amount": "49820263972569" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "1" }, - "weight": "536870912000000" + "weight": "365072220160000" }, { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "53" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6" }, - "weight": "536870912000000" + "weight": "354334801920000" + }, + { + "token": { + "denom": "uosmo", + "amount": "40" + }, + "weight": "354334801920000" } ], "total_weight": "1073741824000000" @@ -49054,8 +49695,8 @@ "denom": "gamm/pool/144", "amount": "900000000000000000" }, - "liquidityUsd": 0.00010198145742558379, - "liquidity24hUsdChange": -0.24491723810018984, + "liquidityUsd": 0.00008191944503750103, + "liquidity24hUsdChange": -4.825232973986577, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49078,6 +49719,27 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1d63xjyqcpqhka9868nn9xwdgmsjluj7luyf2tghugh9uwvl0zdaqg8g0rx", + "id": "1206", + "current_tick_liquidity": "0.000000000000000000", + "token0": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "token0Amount": "1", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.00007027856265238556, + "liquidity24hUsdChange": -4.839399709183624, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "243", @@ -49090,8 +49752,8 @@ "denom": "gamm/pool/243", "amount": "14501850000000" }, - "liquidityUsd": 9.646886367961722e-05, - "liquidity24hUsdChange": -4.530222473318765, + "liquidityUsd": 0.00007006482393834915, + "liquidity24hUsdChange": -2.1292807887732055, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49114,27 +49776,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1d63xjyqcpqhka9868nn9xwdgmsjluj7luyf2tghugh9uwvl0zdaqg8g0rx", - "id": "1206", - "current_tick_liquidity": "0.000000000000000000", - "token0": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "token0Amount": "1", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 9.570045870474473e-05, - "liquidity24hUsdChange": -5.1424516079865, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "38", @@ -49147,8 +49788,8 @@ "denom": "gamm/pool/38", "amount": "1000200000000000000000" }, - "liquidityUsd": 9.448542479547354e-05, - "liquidity24hUsdChange": -5.570010735833338, + "liquidityUsd": 0.00006743209105452979, + "liquidity24hUsdChange": -1.6067483508673814, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49183,8 +49824,8 @@ "denom": "gamm/pool/566", "amount": "47698437500000" }, - "liquidityUsd": 9.436358129505032e-05, - "liquidity24hUsdChange": -3.9435194605956783, + "liquidityUsd": 0.00006476627564989777, + "liquidity24hUsdChange": -2.4925159690590766, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49208,38 +49849,40 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "933", + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "636", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/933", - "amount": "29668190678516" + "denom": "gamm/pool/636", + "amount": "2762480273617" }, - "liquidityUsd": 9.2e-05, - "liquidity24hUsdChange": 0, + "liquidityUsd": 0.00006458763077361407, + "liquidity24hUsdChange": -1.7412790453504055, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", - "pool_liquidity": [ + "pool_assets": [ { - "denom": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", - "amount": "59" + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "6" + }, + "weight": "536870912000000" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "92" + "token": { + "denom": "uosmo", + "amount": "18" + }, + "weight": "536870912000000" } ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -49253,8 +49896,8 @@ "denom": "gamm/pool/522", "amount": "634765625000000" }, - "liquidityUsd": 8.885889616795223e-05, - "liquidity24hUsdChange": -4.917486550301106, + "liquidityUsd": 0.00006292867623704313, + "liquidity24hUsdChange": -3.125607331226199, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49279,18 +49922,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "636", + "id": "1649", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/636", - "amount": "2762480273617" + "denom": "gamm/pool/1649", + "amount": "2372392595" }, - "liquidityUsd": 8.804775228225645e-05, - "liquidity24hUsdChange": -4.500282298776613, + "liquidityUsd": 0.00006263398304468868, + "liquidity24hUsdChange": -1.1157745480298988, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49298,15 +49941,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "6" + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "amount": "43" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "18" + "denom": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", + "amount": "285" }, "weight": "536870912000000" } @@ -49325,8 +49968,8 @@ "denom": "gamm/pool/265", "amount": "150642558780000" }, - "liquidityUsd": 7.978860934014062e-05, - "liquidity24hUsdChange": -4.510339763821606, + "liquidityUsd": 0.000058334636281809156, + "liquidity24hUsdChange": -1.871071365059223, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49351,18 +49994,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "57", + "id": "44", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/57", - "amount": "2340000000000000" + "denom": "gamm/pool/44", + "amount": "60950876252278" }, - "liquidityUsd": 7.58883142742227e-05, - "liquidity24hUsdChange": -4.49283218048113, + "liquidityUsd": 0.000057934578087335655, + "liquidity24hUsdChange": -3.4310948915903756, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49370,24 +50013,24 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "40" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "15" }, - "weight": "536870912000000" + "weight": "483183820800000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "556" }, - "weight": "268435456000000" + "weight": "483183820800000" }, { "token": { "denom": "uosmo", - "amount": "23" + "amount": "1" }, - "weight": "268435456000000" + "weight": "107374182400000" } ], "total_weight": "1073741824000000" @@ -49404,8 +50047,8 @@ "denom": "gamm/pool/117", "amount": "200000000000000000" }, - "liquidityUsd": 7.340459535055457e-05, - "liquidity24hUsdChange": -6.684369851753341, + "liquidityUsd": 0.00005700076170500809, + "liquidity24hUsdChange": -2.8421448374832363, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49456,6 +50099,49 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "57", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/57", + "amount": "2340000000000000" + }, + "liquidityUsd": 0.00005589512442755094, + "liquidity24hUsdChange": -2.2453783979172086, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "40" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "4" + }, + "weight": "268435456000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "23" + }, + "weight": "268435456000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "296", @@ -49468,8 +50154,8 @@ "denom": "gamm/pool/296", "amount": "507812500000000" }, - "liquidityUsd": 7.024636991037272e-05, - "liquidity24hUsdChange": -4.520842638000929, + "liquidityUsd": 0.000051179319662578084, + "liquidity24hUsdChange": -2.0071987995618583, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49492,36 +50178,57 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo197usjdttasn8awsefvjgfltlfsn842vutkd4dqr80vfjz8ajfjrseuz0e7", + "id": "1190", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", + "token0Amount": "23", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "23", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.00004998744316447511, + "liquidity24hUsdChange": -0.1385471766029788, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1649", + "id": "411", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1649", - "amount": "2372392595" + "denom": "gamm/pool/411", + "amount": "3980000000000000" }, - "liquidityUsd": 6.843257507846038e-05, - "liquidity24hUsdChange": -0.3163964306701789, + "liquidityUsd": 0.00004396074264316886, + "liquidity24hUsdChange": -1.7757586351092685, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 2235.864986663861, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ { "token": { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "amount": "43" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "4" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", - "amount": "285" + "denom": "uosmo", + "amount": "13" }, "weight": "536870912000000" } @@ -49530,18 +50237,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "44", + "id": "1037", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/44", - "amount": "60950876252278" + "denom": "gamm/pool/1037", + "amount": "250000000000" }, - "liquidityUsd": 6.454163395505154e-05, - "liquidity24hUsdChange": -7.182695263678808, + "liquidityUsd": 0.000043858546541297285, + "liquidity24hUsdChange": -2.3707929446864213, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49550,41 +50257,34 @@ { "token": { "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "15" - }, - "weight": "483183820800000" - }, - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "556" + "amount": "6" }, - "weight": "483183820800000" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1" + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "amount": "2" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "411", + "id": "179", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/411", - "amount": "3980000000000000" + "denom": "gamm/pool/179", + "amount": "800000000000" }, - "liquidityUsd": 5.998159800915634e-05, - "liquidity24hUsdChange": -4.502958230090952, + "liquidityUsd": 0.000043121680915920866, + "liquidity24hUsdChange": -2.1614287798779315, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49593,14 +50293,14 @@ { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "4" + "amount": "3" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "13" + "amount": "21" }, "weight": "536870912000000" } @@ -49609,18 +50309,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "179", + "id": "544", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/179", - "amount": "800000000000" + "denom": "gamm/pool/544", + "amount": "390625000000000000" }, - "liquidityUsd": 5.9421033992952786e-05, - "liquidity24hUsdChange": -4.532686313343985, + "liquidityUsd": 0.000034729449135104886, + "liquidity24hUsdChange": -3.1412049918433835, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49628,56 +50328,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "3" + "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", + "amount": "17" }, "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "21" + "amount": "26" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo197usjdttasn8awsefvjgfltlfsn842vutkd4dqr80vfjz8ajfjrseuz0e7", - "id": "1190", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", - "token0Amount": "23", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "23", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 5.7256921253667816e-05, - "liquidity24hUsdChange": -4.639113221997608, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1037", + "id": "680", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1037", - "amount": "250000000000" + "denom": "gamm/pool/680", + "amount": "200000000000000" }, - "liquidityUsd": 5.363220780662441e-05, - "liquidity24hUsdChange": -5.82091867819759, + "liquidityUsd": 0.00003323074838068087, + "liquidity24hUsdChange": -4.0513973453905106, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49685,35 +50364,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "6" + "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "amount": "13865511294118" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", - "amount": "2" + "denom": "uosmo", + "amount": "7" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "544", + "id": "797", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "exit_fee": "0.030000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/544", - "amount": "390625000000000000" + "denom": "gamm/pool/797", + "amount": "100000000000000000000" }, - "liquidityUsd": 5.0484637355630594e-05, - "liquidity24hUsdChange": -3.6220489985069424, + "liquidityUsd": 0.00003258677747529399, + "liquidity24hUsdChange": -1.3869952702444444, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49721,35 +50400,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/5973C068568365FFF40DEDCF1A1CB7582B6116B731CD31A12231AE25E20B871F", - "amount": "17" + "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "amount": "9653" }, - "weight": "536870912000000" + "weight": "1073741824" }, { "token": { - "denom": "uosmo", - "amount": "26" + "denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", + "amount": "115" }, - "weight": "536870912000000" + "weight": "1073741824" } ], - "total_weight": "1073741824000000" + "total_weight": "2147483648" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "680", + "id": "371", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/680", - "amount": "200000000000000" + "denom": "gamm/pool/371", + "amount": "84082031250000" }, - "liquidityUsd": 4.4640952354631984e-05, - "liquidity24hUsdChange": -6.014750834483348, + "liquidityUsd": 0.00003067428892753144, + "liquidity24hUsdChange": -3.479843677792472, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49757,35 +50436,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", - "amount": "13865511294118" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "8" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "7" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "9" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "797", + "id": "259", "pool_params": { - "exit_fee": "0.030000000000000000", - "swap_fee": "0.030000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/797", + "denom": "gamm/pool/259", "amount": "100000000000000000000" }, - "liquidityUsd": 4.240445528803517e-05, - "liquidity24hUsdChange": -0.3723345773103917, + "liquidityUsd": 0.0000301784492595888, + "liquidity24hUsdChange": -4.503704624033246, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49793,20 +50472,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", - "amount": "9653" + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "63" }, - "weight": "1073741824" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", - "amount": "115" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "9609" }, - "weight": "1073741824" + "weight": "536870912000000" } ], - "total_weight": "2147483648" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -49820,8 +50499,8 @@ "denom": "gamm/pool/27", "amount": "260000000000000" }, - "liquidityUsd": 3.893355371285028e-05, - "liquidity24hUsdChange": -5.09446401617706, + "liquidityUsd": 0.000029936351838486086, + "liquidity24hUsdChange": -2.2210750661587073, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49863,8 +50542,8 @@ "denom": "gamm/pool/300", "amount": "65000000000000" }, - "liquidityUsd": 3.889149019052004e-05, - "liquidity24hUsdChange": -4.483770832147126, + "liquidityUsd": 0.00002868452687710242, + "liquidity24hUsdChange": -1.5293807824770607, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49899,8 +50578,8 @@ "denom": "gamm/pool/209", "amount": "2500000000000000" }, - "liquidityUsd": 3.842922827308866e-05, - "liquidity24hUsdChange": -4.485123583729465, + "liquidityUsd": 0.000028214649082460538, + "liquidity24hUsdChange": -1.4977280967958506, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49935,8 +50614,8 @@ "denom": "gamm/pool/783", "amount": "3208423766226" }, - "liquidityUsd": 3.723580245431993e-05, - "liquidity24hUsdChange": -4.589355306709892, + "liquidityUsd": 0.00002626394861129352, + "liquidity24hUsdChange": -3.4898999744375603, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49971,8 +50650,8 @@ "denom": "gamm/pool/340", "amount": "800000000000" }, - "liquidityUsd": 3.576473319901238e-05, - "liquidity24hUsdChange": -4.522716889039253, + "liquidityUsd": 0.00002604082089500212, + "liquidity24hUsdChange": -2.0315542760951844, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -49995,42 +50674,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "196", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/196", - "amount": "1482163119347252" - }, - "liquidityUsd": 3.472319801940761e-05, - "liquidity24hUsdChange": -4.625260440354971, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "49" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "uosmo", - "amount": "27" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "326", @@ -50043,8 +50686,8 @@ "denom": "gamm/pool/326", "amount": "290107727050781" }, - "liquidityUsd": 3.4481636711360336e-05, - "liquidity24hUsdChange": -4.518898566446612, + "liquidityUsd": 0.00002513849876757597, + "liquidity24hUsdChange": -1.9819563338308988, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50079,8 +50722,8 @@ "denom": "gamm/pool/389", "amount": "9667593150639" }, - "liquidityUsd": 3.4481636711360336e-05, - "liquidity24hUsdChange": -4.518898566446612, + "liquidityUsd": 0.00002513849876757597, + "liquidity24hUsdChange": -1.9819563338308988, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50115,8 +50758,8 @@ "denom": "gamm/pool/492", "amount": "122070312500" }, - "liquidityUsd": 3.4481636711360336e-05, - "liquidity24hUsdChange": -4.518898566446612, + "liquidityUsd": 0.00002513849876757597, + "liquidity24hUsdChange": -1.9819563338308988, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50141,18 +50784,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "259", + "id": "196", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/259", - "amount": "100000000000000000000" + "denom": "gamm/pool/196", + "amount": "1482163119347252" }, - "liquidityUsd": 3.430944039295511e-05, - "liquidity24hUsdChange": -2.7443900401186467, + "liquidityUsd": 0.00002441673425067856, + "liquidity24hUsdChange": -3.3934440512774713, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50160,15 +50803,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "63" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "49" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "9609" + "denom": "uosmo", + "amount": "27" }, "weight": "536870912000000" } @@ -50177,18 +50820,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "371", + "id": "214", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/371", - "amount": "84082031250000" + "denom": "gamm/pool/214", + "amount": "40237545480277258" }, - "liquidityUsd": 3.3896869920207174e-05, - "liquidity24hUsdChange": -7.137921935687771, + "liquidityUsd": 0.000024119832004495092, + "liquidity24hUsdChange": -3.3559153990391786, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50196,15 +50839,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "8" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "5948" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "9" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "13086" }, "weight": "536870912000000" } @@ -50213,18 +50856,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "214", + "id": "865", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/214", - "amount": "40237545480277258" + "denom": "gamm/pool/865", + "amount": "25000000000000000000" }, - "liquidityUsd": 3.3185541690262715e-05, - "liquidity24hUsdChange": -7.684876484227229, + "liquidityUsd": 0.000024, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50232,20 +50875,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "5948" + "denom": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", + "amount": "8" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "13086" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "24" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -50259,8 +50902,8 @@ "denom": "gamm/pool/121", "amount": "56250000000000" }, - "liquidityUsd": 2.934925076075215e-05, - "liquidity24hUsdChange": -4.500282298776613, + "liquidityUsd": 0.000021529210257871355, + "liquidity24hUsdChange": -1.7412790453503955, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50295,8 +50938,8 @@ "denom": "gamm/pool/390", "amount": "1265625000000000" }, - "liquidityUsd": 2.8066154273100102e-05, - "liquidity24hUsdChange": -4.494562927848982, + "liquidityUsd": 0.000020626888130445203, + "liquidity24hUsdChange": -1.6677141114450844, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50321,18 +50964,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "148", + "id": "321", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/148", - "amount": "1193503102192400" + "denom": "gamm/pool/321", + "amount": "381469726562" }, - "liquidityUsd": 2.5627056066363412e-05, - "liquidity24hUsdChange": -5.169872089324413, + "liquidityUsd": 0.00002056669288782376, + "liquidity24hUsdChange": -3.4294205653441407, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50340,15 +50983,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "5" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "2212" + "denom": "uosmo", + "amount": "2" }, "weight": "536870912000000" } @@ -50357,18 +51000,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "843", + "id": "1665", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/843", - "amount": "4942868044300" + "denom": "gamm/pool/1665", + "amount": "1978769154142" }, - "liquidityUsd": 2.4455140406516345e-05, - "liquidity24hUsdChange": -4.411009511764377, + "liquidityUsd": 0.000020188969752724957, + "liquidity24hUsdChange": -5.798440766813542, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50376,14 +51019,14 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", "amount": "1" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", "amount": "1" }, "weight": "536870912000000" @@ -50393,18 +51036,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "20", + "id": "267", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000300000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/20", - "amount": "1883611202938209" + "denom": "gamm/pool/267", + "amount": "749700000000" }, - "liquidityUsd": 2.411127294567658e-05, - "liquidity24hUsdChange": -4.382855560200345, + "liquidityUsd": 0.000019521249543507926, + "liquidity24hUsdChange": -3.423768389725616, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50412,71 +51055,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "32" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "4" }, - "weight": "429496729600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "2" + "denom": "uosmo", + "amount": "5" }, - "weight": "644245094400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "865", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/865", - "amount": "25000000000000000000" - }, - "liquidityUsd": 2.4e-05, - "liquidity24hUsdChange": 0, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", - "amount": "8" - }, - "weight": "5368709120" - }, - { - "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "24" - }, - "weight": "5368709120" - } - ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "509", + "id": "148", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/509", - "amount": "20062325000000" + "denom": "gamm/pool/148", + "amount": "1193503102192400" }, - "liquidityUsd": 2.3581492441901252e-05, - "liquidity24hUsdChange": -4.605590737305847, + "liquidityUsd": 0.000019083614642453413, + "liquidity24hUsdChange": -1.5171291748591724, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50491,8 +51098,8 @@ }, { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "7" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "2212" }, "weight": "536870912000000" } @@ -50501,18 +51108,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "321", + "id": "20", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.000300000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/321", - "amount": "381469726562" + "denom": "gamm/pool/20", + "amount": "1883611202938209" }, - "liquidityUsd": 2.3319209136419315e-05, - "liquidity24hUsdChange": -6.929087145046974, + "liquidityUsd": 0.00001844420590141087, + "liquidity24hUsdChange": -1.7530237225099485, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50520,35 +51127,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "5" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "32" }, - "weight": "536870912000000" + "weight": "429496729600000" }, { "token": { - "denom": "uosmo", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "amount": "2" }, - "weight": "536870912000000" + "weight": "644245094400000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "181", + "id": "843", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/181", - "amount": "3680578749500000" + "denom": "gamm/pool/843", + "amount": "4942868044300" }, - "liquidityUsd": 2.3031168682729196e-05, - "liquidity24hUsdChange": -4.628448161743125, + "liquidityUsd": 0.00001822803491088684, + "liquidity24hUsdChange": -1.173479034635195, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50556,15 +51163,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "2330" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "15" + "denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", + "amount": "1" }, "weight": "536870912000000" } @@ -50573,18 +51180,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "536", + "id": "509", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/536", - "amount": "4555208905399" + "denom": "gamm/pool/509", + "amount": "20062325000000" }, - "liquidityUsd": 2.3029829411312284e-05, - "liquidity24hUsdChange": -4.565396992948996, + "liquidityUsd": 0.000017527105647985786, + "liquidity24hUsdChange": -1.2331296555236029, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50600,7 +51207,7 @@ { "token": { "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "5" + "amount": "7" }, "weight": "536870912000000" } @@ -50609,18 +51216,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "267", + "id": "536", "pool_params": { "exit_fee": "0.000000000000000000", "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/267", - "amount": "749700000000" + "denom": "gamm/pool/536", + "amount": "4555208905399" }, - "liquidityUsd": 2.301789536715241e-05, - "liquidity24hUsdChange": -6.501027587731177, + "liquidityUsd": 0.000017123726175222542, + "liquidity24hUsdChange": -1.2170973967517171, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50628,14 +51235,14 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "4" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "2" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", "amount": "5" }, "weight": "536870912000000" @@ -50655,8 +51262,8 @@ "denom": "gamm/pool/182", "amount": "234519703703704" }, - "liquidityUsd": 2.2687003265205165e-05, - "liquidity24hUsdChange": -4.46443407371206, + "liquidityUsd": 0.00001681885881760036, + "liquidity24hUsdChange": -1.2683893750141082, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50681,18 +51288,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1056", + "id": "181", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1056", - "amount": "279198308580" + "denom": "gamm/pool/181", + "amount": "3680578749500000" }, - "liquidityUsd": 2.2679095305621143e-05, - "liquidity24hUsdChange": -16.6470055719015, + "liquidityUsd": 0.00001610433737469355, + "liquidity24hUsdChange": -3.3934440512774757, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50700,20 +51307,20 @@ "pool_assets": [ { "token": { - "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "amount": "1649308110" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "2330" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "3" + "amount": "15" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -50727,8 +51334,8 @@ "denom": "gamm/pool/299", "amount": "3125000000000000" }, - "liquidityUsd": 2.1055980928562608e-05, - "liquidity24hUsdChange": -2.8060550521522303, + "liquidityUsd": 0.000016072620411991304, + "liquidity24hUsdChange": -3.018353893055948, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50760,18 +51367,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "657", + "id": "219", "pool_params": { - "exit_fee": "0.010000000000000000", - "swap_fee": "0.010000000000000000", + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/657", - "amount": "100000000000000000000" + "denom": "gamm/pool/219", + "amount": "2766348421573" }, - "liquidityUsd": 2.0825556190006724e-05, - "liquidity24hUsdChange": -4.957148814500607, + "liquidityUsd": 0.000015911961033803312, + "liquidity24hUsdChange": -3.430644169564868, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50779,20 +51386,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "1053780" + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "4" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "37269" + "denom": "uosmo", + "amount": "1" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "32", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/32", + "amount": "10681152343750" + }, + "liquidityUsd": 0.000015768839816913635, + "liquidity24hUsdChange": -3.421600003595246, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "3" + }, + "weight": "322122547200000" + }, + { + "token": { + "denom": "uosmo", + "amount": "5" + }, + "weight": "751619276800000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -50806,8 +51449,8 @@ "denom": "gamm/pool/564", "amount": "593309544318464" }, - "liquidityUsd": 1.9853858365040173e-05, - "liquidity24hUsdChange": -6.1432523636056295, + "liquidityUsd": 0.000014834911746322789, + "liquidity24hUsdChange": -2.163486410918016, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50832,18 +51475,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "656", + "id": "657", "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.001000000000000000", + "exit_fee": "0.010000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/656", - "amount": "101840018077932348479" + "denom": "gamm/pool/657", + "amount": "100000000000000000000" }, - "liquidityUsd": 1.932232659941382e-05, - "liquidity24hUsdChange": 0.8049428281201759, + "liquidityUsd": 0.000014319487768988407, + "liquidity24hUsdChange": -2.223680343326634, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50852,19 +51495,19 @@ { "token": { "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", - "amount": "120316" + "amount": "1053780" }, - "weight": "1073741824" + "weight": "5368709120" }, { "token": { "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "amount": "100332" + "amount": "37269" }, - "weight": "1073741824" + "weight": "5368709120" } ], - "total_weight": "2147483648" + "total_weight": "10737418240" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", @@ -50880,8 +51523,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.9020205152968768e-05, - "liquidity24hUsdChange": -6.025865303879163, + "liquidityUsd": 0.000013902275960366093, + "liquidity24hUsdChange": -4.735738157599194, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50889,18 +51532,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "32", + "id": "187", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/32", - "amount": "10681152343750" + "denom": "gamm/pool/187", + "amount": "800000000000" }, - "liquidityUsd": 1.8867292134929366e-05, - "liquidity24hUsdChange": -6.344442967960873, + "liquidityUsd": 0.000013471571511214137, + "liquidity24hUsdChange": -2.0777849197202785, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50908,35 +51551,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "3" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1" }, - "weight": "322122547200000" + "weight": "139586437120000" }, { "token": { "denom": "uosmo", - "amount": "5" + "amount": "6" }, - "weight": "751619276800000" + "weight": "934155386880000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "187", + "id": "1056", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.020000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/187", - "amount": "800000000000" + "denom": "gamm/pool/1056", + "amount": "279198308580" }, - "liquidityUsd": 1.8523914843332215e-05, - "liquidity24hUsdChange": -4.526270453398183, + "liquidityUsd": 0.000013119895124561063, + "liquidity24hUsdChange": -7.767380506589413, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50944,35 +51587,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1" + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "amount": "1649308110" }, - "weight": "139586437120000" + "weight": "5368709120" }, { "token": { "denom": "uosmo", - "amount": "6" + "amount": "3" }, - "weight": "934155386880000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "219", + "id": "864", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/219", - "amount": "2766348421573" + "denom": "gamm/pool/864", + "amount": "25000000000000000000" }, - "liquidityUsd": 1.788550941654422e-05, - "liquidity24hUsdChange": -7.025758239624803, + "liquidityUsd": 0.000013, + "liquidity24hUsdChange": 0, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -50980,53 +51623,96 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "4" + "denom": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", + "amount": "13" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "1" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "13" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "334", + "id": "656", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.001000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/334", - "amount": "75600000000" + "denom": "gamm/pool/656", + "amount": "101840018077932348479" + }, + "liquidityUsd": 0.000012885750448402384, + "liquidity24hUsdChange": -3.8472162889974375, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/41999DF04D9441DAC0DF5D8291DF4333FBCBA810FFD63FDCE34FDF41EF37B6F7", + "amount": "120316" + }, + "weight": "1073741824" + }, + { + "token": { + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "amount": "100332" + }, + "weight": "1073741824" + } + ], + "total_weight": "2147483648" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "71", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/71", + "amount": "12500000000" }, - "liquidityUsd": 1.7240818355680168e-05, - "liquidity24hUsdChange": -4.518898566446612, + "liquidityUsd": 0.000012712370600677662, + "liquidity24hUsdChange": -2.0100596010022844, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "1" + }, + "weight": "322122547200000" + }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "amount": "1" }, - "weight": "536870912000000" + "weight": "429496729600000" }, { "token": { "denom": "uosmo", - "amount": "5" + "amount": "1" }, - "weight": "536870912000000" + "weight": "322122547200000" } ], "total_weight": "1073741824000000" @@ -51043,8 +51729,8 @@ "denom": "gamm/pool/563", "amount": "68033771549572" }, - "liquidityUsd": 1.690967011488e-05, - "liquidity24hUsdChange": -5.795910385187695, + "liquidityUsd": 0.00001262485271955451, + "liquidity24hUsdChange": -1.9590761542578403, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51069,43 +51755,36 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "71", + "id": "334", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/71", - "amount": "12500000000" + "denom": "gamm/pool/334", + "amount": "75600000000" }, - "liquidityUsd": 1.6259035637295023e-05, - "liquidity24hUsdChange": -5.186497150892141, + "liquidityUsd": 0.000012569249383787985, + "liquidity24hUsdChange": -1.9819563338308988, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_assets": [ - { - "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "1" - }, - "weight": "322122547200000" - }, { "token": { "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "amount": "1" }, - "weight": "429496729600000" + "weight": "536870912000000" }, { "token": { "denom": "uosmo", - "amount": "1" + "amount": "5" }, - "weight": "322122547200000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" @@ -51122,8 +51801,8 @@ "denom": "gamm/pool/379", "amount": "127791577425390" }, - "liquidityUsd": 1.595772186802812e-05, - "liquidity24hUsdChange": -4.5103397638216185, + "liquidityUsd": 0.00001166692725636183, + "liquidity24hUsdChange": -1.8710713650592206, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51158,8 +51837,8 @@ "denom": "gamm/pool/452", "amount": "1800000000000" }, - "liquidityUsd": 1.4674625380376074e-05, - "liquidity24hUsdChange": -4.500282298776613, + "liquidityUsd": 0.000010764605128935678, + "liquidity24hUsdChange": -1.7412790453503955, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51183,25 +51862,76 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1ur64t3x5a8elak62u8ea6gmv4r9z77pmu630gnnk3mzzyghjt2tqyaw6gy", - "id": "1387", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", - "token0Amount": "10", - "token1": "uosmo", - "token1Amount": "11", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.001000000000000000", - "liquidityUsd": 1.4114701778476118e-05, - "liquidity24hUsdChange": -4.625228208832125, + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "156", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/156", + "amount": "1525878906250000" + }, + "liquidityUsd": 0.00001065831627313921, + "liquidity24hUsdChange": -5.056425311227961, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "8073" + }, + "weight": "966367641600000" + }, + { + "token": { + "denom": "uosmo", + "amount": "1" + }, + "weight": "107374182400000" + } + ], + "total_weight": "1073741824000000" + }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "352", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/352", + "amount": "10679122141146483" + }, + "liquidityUsd": 0.000010574474084153891, + "liquidity24hUsdChange": -5.332485525814478, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "121" + }, + "weight": "966367641600000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "6" + }, + "weight": "107374182400000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", @@ -51215,8 +51945,8 @@ "denom": "gamm/pool/275", "amount": "6865625000000" }, - "liquidityUsd": 1.3591936136622223e-05, - "liquidity24hUsdChange": -3.528446459436078, + "liquidityUsd": 0.00001029935423536002, + "liquidity24hUsdChange": -2.0804361013648327, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51239,6 +51969,48 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1twxqvzgsdaea6ll4vp9cxnpdl3f07ffqwjzt5s9mghva8mjsfgvsr6x7ph", + "id": "1259", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "token0Amount": "11", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "10", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 0.000010010060756841563, + "liquidity24hUsdChange": 0.18695092696502122, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1ur64t3x5a8elak62u8ea6gmv4r9z77pmu630gnnk3mzzyghjt2tqyaw6gy", + "id": "1387", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "token0Amount": "10", + "token1": "uosmo", + "token1Amount": "11", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.001000000000000000", + "liquidityUsd": 0.000009925894173889158, + "liquidity24hUsdChange": -3.3937194881250217, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "60", @@ -51251,8 +52023,8 @@ "denom": "gamm/pool/60", "amount": "10276233495483" }, - "liquidityUsd": 1.3391528892724027e-05, - "liquidity24hUsdChange": -4.488294774179226, + "liquidityUsd": 0.000009862283001509523, + "liquidity24hUsdChange": -1.587292723398654, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51287,8 +52059,8 @@ "denom": "gamm/pool/351", "amount": "3200000000000" }, - "liquidityUsd": 1.3391528892724027e-05, - "liquidity24hUsdChange": -4.488294774179226, + "liquidityUsd": 0.000009862283001509523, + "liquidity24hUsdChange": -1.587292723398654, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51311,78 +52083,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "156", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/156", - "amount": "1525878906250000" - }, - "liquidityUsd": 1.3323400298767996e-05, - "liquidity24hUsdChange": -0.21429843986881272, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "8073" - }, - "weight": "966367641600000" - }, - { - "token": { - "denom": "uosmo", - "amount": "1" - }, - "weight": "107374182400000" - } - ], - "total_weight": "1073741824000000" - }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "864", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/864", - "amount": "25000000000000000000" - }, - "liquidityUsd": 1.3e-05, - "liquidity24hUsdChange": 0, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/92B223EBFA74DB99BEA92B23DEAA6050734FEEAABB84689CB8E1AE8F9C9F9AF4", - "amount": "13" - }, - "weight": "5368709120" - }, - { - "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "13" - }, - "weight": "5368709120" - } - ], - "total_weight": "10737418240" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "552", @@ -51395,8 +52095,8 @@ "denom": "gamm/pool/552", "amount": "100000000000000000000" }, - "liquidityUsd": 1.2790092559097425e-05, - "liquidity24hUsdChange": -4.140890937445368, + "liquidityUsd": 0.000009625907487549726, + "liquidity24hUsdChange": -1.2552709697582787, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51431,8 +52131,8 @@ "denom": "gamm/pool/49", "amount": "516500204345505502" }, - "liquidityUsd": 1.2645927380309566e-05, - "liquidity24hUsdChange": -4.669603827624162, + "liquidityUsd": 0.000009361196320553785, + "liquidity24hUsdChange": -1.486410244119044, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51474,8 +52174,8 @@ "denom": "gamm/pool/494", "amount": "100000000000000" }, - "liquidityUsd": 1.2425548311653223e-05, - "liquidity24hUsdChange": -4.4822156499032175, + "liquidityUsd": 0.000009254663130923245, + "liquidity24hUsdChange": -1.4885148680656357, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51517,8 +52217,8 @@ "denom": "gamm/pool/623", "amount": "7051162372575" }, - "liquidityUsd": 1.2174117322448952e-05, - "liquidity24hUsdChange": -4.634304623386532, + "liquidityUsd": 0.000009039414355688627, + "liquidity24hUsdChange": -1.6302516723784335, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51541,42 +52241,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "163", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.003000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/163", - "amount": "15086470377971444" - }, - "liquidityUsd": 1.2166647427899876e-05, - "liquidity24hUsdChange": -5.01735430525921, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", - "amount": "264" - }, - "weight": "644245094400000" - }, - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "1061" - }, - "weight": "429496729600000" - } - ], - "total_weight": "1073741824000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "628", @@ -51589,8 +52253,8 @@ "denom": "gamm/pool/628", "amount": "226905380275" }, - "liquidityUsd": 1.210843240507198e-05, - "liquidity24hUsdChange": -4.473762646769221, + "liquidityUsd": 0.00000895996087408337, + "liquidity24hUsdChange": -1.4016522501739694, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51625,8 +52289,8 @@ "denom": "gamm/pool/346", "amount": "400000000000" }, - "liquidityUsd": 1.210843240507198e-05, - "liquidity24hUsdChange": -4.473762646769221, + "liquidityUsd": 0.00000895996087408337, + "liquidity24hUsdChange": -1.4016522501739694, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51661,8 +52325,8 @@ "denom": "gamm/pool/87", "amount": "20000000" }, - "liquidityUsd": 1.210843240507198e-05, - "liquidity24hUsdChange": -4.473762646769221, + "liquidityUsd": 0.00000895996087408337, + "liquidity24hUsdChange": -1.4016522501739694, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51697,8 +52361,8 @@ "denom": "gamm/pool/394", "amount": "16800000000000" }, - "liquidityUsd": 1.210843240507198e-05, - "liquidity24hUsdChange": -4.473762646769221, + "liquidityUsd": 0.00000895996087408337, + "liquidity24hUsdChange": -1.4016522501739694, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51721,41 +52385,20 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo10a3h3mvure0u376f4q5wxnt7yn5xvfs9d2q9uwahd7a3987ex84sxc662v", - "id": "1407", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", - "token0Amount": "7", - "token1": "uosmo", - "token1Amount": "9", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.005000000000000000", - "liquidityUsd": 1.154786838919919e-05, - "liquidity24hUsdChange": -4.625215344988967, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "646", + "id": "163", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.003000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/646", - "amount": "38806996003" + "denom": "gamm/pool/163", + "amount": "15086470377971444" }, - "liquidityUsd": 1.1307416961670395e-05, - "liquidity24hUsdChange": -4.511687339272317, + "liquidityUsd": 0.000008619069903184845, + "liquidity24hUsdChange": -1.3075327623839037, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51763,35 +52406,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "amount": "1" + "denom": "ibc/7C4D60AA95E5A7558B0A364860979CA34B7FF8AAF255B87AF9E879374470CEC0", + "amount": "264" }, - "weight": "536870912000000" + "weight": "644245094400000" }, { "token": { - "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", - "amount": "52" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "1061" }, - "weight": "536870912000000" + "weight": "429496729600000" } ], "total_weight": "1073741824000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "352", + "id": "646", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/352", - "amount": "10679122141146483" + "denom": "gamm/pool/646", + "amount": "38806996003" }, - "liquidityUsd": 1.1206843389838774e-05, - "liquidity24hUsdChange": -3.9192934483673163, + "liquidityUsd": 0.000008396335199906342, + "liquidity24hUsdChange": -1.2602156392775368, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51799,21 +52442,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "121" + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "amount": "1" }, - "weight": "966367641600000" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "6" + "denom": "ibc/4F3B0EC2FE2D370D10C3671A1B7B06D2A964C721470C305CBB846ED60E6CAA20", + "amount": "52" }, - "weight": "107374182400000" + "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo10a3h3mvure0u376f4q5wxnt7yn5xvfs9d2q9uwahd7a3987ex84sxc662v", + "id": "1407", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "token0Amount": "7", + "token1": "uosmo", + "token1Amount": "9", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.005000000000000000", + "liquidityUsd": 0.000008120899147072995, + "liquidity24hUsdChange": -3.3934440512662096, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "453", @@ -51826,8 +52490,8 @@ "denom": "gamm/pool/453", "amount": "22206571142896" }, - "liquidityUsd": 1.0847676335335548e-05, - "liquidity24hUsdChange": -4.456898422912754, + "liquidityUsd": 0.000008072993020194788, + "liquidity24hUsdChange": -1.177268023185343, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51850,27 +52514,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1twxqvzgsdaea6ll4vp9cxnpdl3f07ffqwjzt5s9mghva8mjsfgvsr6x7ph", - "id": "1259", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", - "token0Amount": "11", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "10", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 9.989298203525899e-06, - "liquidity24hUsdChange": -0.231535562570537, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", "id": "1082", @@ -51883,8 +52526,8 @@ "denom": "gamm/pool/1082", "amount": "15259979781177" }, - "liquidityUsd": 8.744889150979706e-06, - "liquidity24hUsdChange": -3.9433253575855405, + "liquidityUsd": 0.000007077801547230438, + "liquidity24hUsdChange": -3.116074739712097, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51912,18 +52555,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "538", + "id": "316", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/538", - "amount": "20608005936000" + "denom": "gamm/pool/316", + "amount": "1706882997545950" }, - "liquidityUsd": 8.526073471795733e-06, - "liquidity24hUsdChange": -4.7857561890215035, + "liquidityUsd": 0.0000067502905394730985, + "liquidity24hUsdChange": -5.170111415424825, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51931,35 +52574,56 @@ "pool_assets": [ { "token": { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", - "amount": "3" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "128" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "6" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "5469" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1g30kjpddw3tszkw59ku22ledf3fumd9xsq3ldv2u5p04a0q0ygus0hrm5u", + "id": "1165", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", + "token0Amount": "6", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "6", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0000060494902887787695, + "liquidity24hUsdChange": 0.26634302382214176, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "316", + "id": "538", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/316", - "amount": "1706882997545950" + "denom": "gamm/pool/538", + "amount": "20608005936000" }, - "liquidityUsd": 8.364539527052522e-06, - "liquidity24hUsdChange": 0.15136118803079043, + "liquidityUsd": 0.000006019001973701782, + "liquidity24hUsdChange": -3.2462468831086637, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -51967,21 +52631,42 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "128" + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "amount": "3" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "5469" + "denom": "uosmo", + "amount": "6" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1p93979anzhjklv36e3h3emxxfva6jjaqcjh6xme49nssnngvzajskrex35", + "id": "1512", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/FA58859465F0659B2C1C3F876F8BEEACAB8B34E803D696F49D428D9AFD0D3C3C", + "token0Amount": "4", + "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "token1Amount": "6", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0.000006006036454098334, + "liquidity24hUsdChange": 0.18695092696516205, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "349", @@ -51994,8 +52679,8 @@ "denom": "gamm/pool/349", "amount": "61988830566406" }, - "liquidityUsd": 7.5535305133162e-06, - "liquidity24hUsdChange": -1.442130059876169, + "liquidityUsd": 0.0000058457744943251734, + "liquidity24hUsdChange": -4.654687673836596, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52018,6 +52703,27 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1hf3ugena0jv5sfsehj0vd8nts57qu7kwhdytvraqepenr350japsvwp95q", + "id": "1155", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "token0Amount": "4", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "5", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.000005734331637055069, + "liquidity24hUsdChange": -0.22372302993696344, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "353", @@ -52030,8 +52736,8 @@ "denom": "gamm/pool/353", "amount": "51246467076310" }, - "liquidityUsd": 6.300544025024984e-06, - "liquidity24hUsdChange": -0.7867562951900436, + "liquidityUsd": 0.000005256193425679314, + "liquidity24hUsdChange": -4.952044200494163, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52055,42 +52761,57 @@ "total_weight": "1073741824000000" }, { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1g30kjpddw3tszkw59ku22ledf3fumd9xsq3ldv2u5p04a0q0ygus0hrm5u", - "id": "1165", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/D805F1DA50D31B96E4282C1D4181EDDFB1A44A598BFF5666F4B43E4B8BEA95A5", - "token0Amount": "6", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "6", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 6.042568816968529e-06, - "liquidity24hUsdChange": -0.2709400997622409, + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "378", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.000000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/378", + "amount": "336600000000000" + }, + "liquidityUsd": 0.000004654731854020443, + "liquidity24hUsdChange": -3.4252375031693565, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "amount": "1" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "uosmo", + "amount": "1" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hf3ugena0jv5sfsehj0vd8nts57qu7kwhdytvraqepenr350japsvwp95q", - "id": "1155", + "address": "osmo1302l4ncu4zuza757p56kedupa2zlv7alfe2cfuzvslsd0j95yjyqyrz07w", + "id": "1207", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", - "token0Amount": "4", + "token0": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "token0Amount": "5", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "5", + "token1Amount": "4", "current_sqrt_price": "0.000000000000000000000000000000000000", "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 6.0162755870909704e-06, - "liquidity24hUsdChange": -0.8364575678998721, + "liquidityUsd": 0.000004006802336043211, + "liquidity24hUsdChange": 0.28260001077529207, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52098,20 +52819,20 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1p93979anzhjklv36e3h3emxxfva6jjaqcjh6xme49nssnngvzajskrex35", - "id": "1512", + "address": "osmo1vw4uyveee6c6uwvcdq8x82xpgfwyf9g60u6ph0759eqwx7ktpleseuj35g", + "id": "1147", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/FA58859465F0659B2C1C3F876F8BEEACAB8B34E803D696F49D428D9AFD0D3C3C", - "token0Amount": "4", - "token1": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", - "token1Amount": "6", + "token0": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "token0Amount": "3", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1", "current_sqrt_price": "0.000000000000000000000000000000000000", "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 5.993578922108937e-06, - "liquidity24hUsdChange": -0.23153556257090963, + "liquidityUsd": 0.000004005114885658974, + "liquidity24hUsdChange": 0.28562389387606785, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52119,18 +52840,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "378", + "id": "839", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.000400000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/378", - "amount": "336600000000000" + "denom": "gamm/pool/839", + "amount": "1282557137204" }, - "liquidityUsd": 5.433699719875091e-06, - "liquidity24hUsdChange": -6.60946081124855, + "liquidityUsd": 0.000003999751833253101, + "liquidity24hUsdChange": -0.08784947653644314, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52138,15 +52859,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", - "amount": "1" + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "amount": "2" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "1" + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "amount": "2" }, "weight": "536870912000000" } @@ -52165,8 +52886,8 @@ "denom": "gamm/pool/583", "amount": "25914313465" }, - "liquidityUsd": 4.168500376498207e-06, - "liquidity24hUsdChange": -7.176509016001813, + "liquidityUsd": 0.0000037669113901330684, + "liquidity24hUsdChange": -3.43983820726561, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52201,8 +52922,8 @@ "denom": "gamm/pool/1443", "amount": "47683715820312" }, - "liquidityUsd": 4.154523015029267e-06, - "liquidity24hUsdChange": 0.31299199023390445, + "liquidityUsd": 0.000003476898060070639, + "liquidity24hUsdChange": -2.3256290780307785, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52223,6 +52944,27 @@ ], "scaling_factor_controller": "" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo100sh3x9njd8px500l5nqxslhr3q6z8dqqyl750ppq7uca9ht3xxsr9a0v8", + "id": "1192", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "token0Amount": "4", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "3", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.000003086477252455737, + "liquidity24hUsdChange": 0.12899675522137585, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "408", @@ -52235,8 +52977,8 @@ "denom": "gamm/pool/408", "amount": "109491770065408" }, - "liquidityUsd": 4.1317372238667085e-06, - "liquidity24hUsdChange": -4.346656845170511, + "liquidityUsd": 0.0000030423435821813777, + "liquidity24hUsdChange": -1.5238536351258567, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52271,8 +53013,8 @@ "denom": "gamm/pool/1053", "amount": "150325303844" }, - "liquidityUsd": 4.125761858017684e-06, - "liquidity24hUsdChange": -4.7648219106306104, + "liquidityUsd": 0.000002935128309247957, + "liquidity24hUsdChange": -3.2492324336082428, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52295,41 +53037,20 @@ ], "total_weight": "10737418240" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1302l4ncu4zuza757p56kedupa2zlv7alfe2cfuzvslsd0j95yjyqyrz07w", - "id": "1207", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", - "token0Amount": "5", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "4", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 3.995537099692301e-06, - "liquidity24hUsdChange": -0.22304409758779703, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "839", + "id": "198", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000400000000000000", + "swap_fee": "0.002000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/839", - "amount": "1282557137204" + "denom": "gamm/pool/198", + "amount": "78339208773991" }, - "liquidityUsd": 3.987493509679416e-06, - "liquidity24hUsdChange": -0.09899978735555598, + "liquidityUsd": 0.0000027632087765395593, + "liquidity24hUsdChange": -3.3934440512774744, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52337,56 +53058,35 @@ "pool_assets": [ { "token": { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "amount": "2" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "51" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "2" + "denom": "uosmo", + "amount": "3" }, "weight": "536870912000000" } ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1vw4uyveee6c6uwvcdq8x82xpgfwyf9g60u6ph0759eqwx7ktpleseuj35g", - "id": "1147", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", - "token0Amount": "3", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 3.97687775933321e-06, - "liquidity24hUsdChange": -0.1254033721139078, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "198", + "id": "95", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.002000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/198", - "amount": "78339208773991" + "denom": "gamm/pool/95", + "amount": "1409395429923417" }, - "liquidityUsd": 3.932131003627975e-06, - "liquidity24hUsdChange": -4.625629817912557, + "liquidityUsd": 0.0000024648864148081024, + "liquidity24hUsdChange": -5.240853452374134, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52394,15 +53094,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "51" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "3" }, "weight": "536870912000000" }, { "token": { - "denom": "uosmo", - "amount": "3" + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "amount": "1859" }, "weight": "536870912000000" } @@ -52421,8 +53121,8 @@ "denom": "gamm/pool/588", "amount": "1164069049401" }, - "liquidityUsd": 3.450295434728279e-06, - "liquidity24hUsdChange": -5.071695713765046, + "liquidityUsd": 0.0000023507661571007393, + "liquidity24hUsdChange": -0.10676975408877816, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52447,20 +53147,20 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo100sh3x9njd8px500l5nqxslhr3q6z8dqqyl750ppq7uca9ht3xxsr9a0v8", - "id": "1192", + "address": "osmo12rsn3fz0sdmsz5f9tx4zgtcgj20a0rh5lh5jm8vzj39tt4w97u3qhklgut", + "id": "1191", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", - "token0Amount": "4", + "token0": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "token0Amount": "3", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "3", + "token1Amount": "1", "current_sqrt_price": "0.000000000000000000000000000000000000", "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 3.108389907502122e-06, - "liquidity24hUsdChange": -0.44643558896238156, + "liquidityUsd": 0.0000022326324430894328, + "liquidity24hUsdChange": 0.33115494075678675, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52480,65 +53180,29 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 3.103518378929218e-06, - "liquidity24hUsdChange": 2.720827474130952, + "liquidityUsd": 0.0000021535789326517968, + "liquidity24hUsdChange": -3.9431058151404965, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "95", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/95", - "amount": "1409395429923417" - }, - "liquidityUsd": 3.0032472881016193e-06, - "liquidity24hUsdChange": -0.04040543187684051, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "amount": "3" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", - "amount": "1859" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo12rsn3fz0sdmsz5f9tx4zgtcgj20a0rh5lh5jm8vzj39tt4w97u3qhklgut", - "id": "1191", + "address": "osmo10xghhdguq38ntc6h2pl2ha347cdgdf4drrk7frlx9w4lzz3ayt0synx9vz", + "id": "1160", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", - "token0Amount": "3", + "token0": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "token0Amount": "1", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1", + "token1Amount": "2", "current_sqrt_price": "0.000000000000000000000000000000000000", "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 2.7953608039799745e-06, - "liquidity24hUsdChange": -3.534181934650444, + "liquidityUsd": 0.00000200310841224667, + "liquidity24hUsdChange": 0.2832663986138915, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52556,8 +53220,8 @@ "denom": "gamm/pool/465", "amount": "100000000000000" }, - "liquidityUsd": 2.677895064882169e-06, - "liquidity24hUsdChange": -4.640740571070373, + "liquidityUsd": 0.000001881415622540154, + "liquidity24hUsdChange": -3.3825747660356975, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52592,8 +53256,8 @@ "denom": "gamm/pool/785", "amount": "160158564776820" }, - "liquidityUsd": 2.5661929753040934e-06, - "liquidity24hUsdChange": -4.62521534497783, + "liquidityUsd": 0.000001804644254852306, + "liquidity24hUsdChange": -3.393444051277472, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52616,27 +53280,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo10xghhdguq38ntc6h2pl2ha347cdgdf4drrk7frlx9w4lzz3ayt0synx9vz", - "id": "1160", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", - "token0Amount": "1", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "2", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.99732763805553e-06, - "liquidity24hUsdChange": -0.22345418412900966, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "684", @@ -52649,8 +53292,8 @@ "denom": "gamm/pool/684", "amount": "71612903225806" }, - "liquidityUsd": 1.8991685825324419e-06, - "liquidity24hUsdChange": -3.672503099861775, + "liquidityUsd": 0.0000012457045645435595, + "liquidity24hUsdChange": -3.2613937814290916, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52685,8 +53328,8 @@ "denom": "gamm/pool/304", "amount": "7446239539200" }, - "liquidityUsd": 1.679816519084828e-06, - "liquidity24hUsdChange": -3.5105608902693235, + "liquidityUsd": 0.0000012237756692024038, + "liquidity24hUsdChange": -3.876596725599793, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52721,8 +53364,8 @@ "denom": "gamm/pool/189", "amount": "12600000000000" }, - "liquidityUsd": 1.6606013197587125e-06, - "liquidity24hUsdChange": -5.626502871027645, + "liquidityUsd": 0.0000011841262871545367, + "liquidity24hUsdChange": -3.381179884274095, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52757,8 +53400,8 @@ "denom": "gamm/pool/528", "amount": "2882886085117" }, - "liquidityUsd": 1.5589280029465303e-06, - "liquidity24hUsdChange": -4.917486550301107, + "liquidityUsd": 0.0000011040118638077741, + "liquidity24hUsdChange": -3.125607331226192, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52793,8 +53436,8 @@ "denom": "gamm/pool/514", "amount": "7921875000000" }, - "liquidityUsd": 1.5589280029465303e-06, - "liquidity24hUsdChange": -4.917486550301107, + "liquidityUsd": 0.0000011040118638077741, + "liquidity24hUsdChange": -3.125607331226192, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52817,6 +53460,42 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.v1beta1.Pool", + "id": "433", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.020000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/433", + "amount": "900000000000000" + }, + "liquidityUsd": 0.000001096652001190841, + "liquidity24hUsdChange": -3.7282439587608596, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_assets": [ + { + "token": { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "378" + }, + "weight": "536870912000000" + }, + { + "token": { + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "amount": "2" + }, + "weight": "536870912000000" + } + ], + "total_weight": "1073741824000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "1055", @@ -52829,8 +53508,8 @@ "denom": "gamm/pool/1055", "amount": "29007722458" }, - "liquidityUsd": 1.5340572502012296e-06, - "liquidity24hUsdChange": -4.685684017383583, + "liquidityUsd": 0.000001084235952128262, + "liquidity24hUsdChange": -3.3306759397480166, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52853,20 +53532,125 @@ ], "total_weight": "10737418240" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1xjmak980sp3zgfekuuyrzcyf5ek4ww3c3csnrg2ef4qvpw7n9jtsesvhuj", + "id": "1208", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", + "token0Amount": "1", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "0", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0000010303055505692103, + "liquidity24hUsdChange": -6.871547279838475, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1nprvwcn7npspcvpx3y890wyc6lkg3pa5zmfmaszh5zk5x4faxhtsp349ls", + "id": "1156", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", + "token0Amount": "0", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0000010015542061232621, + "liquidity24hUsdChange": 0.2832663986139122, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1hn0qmj03eyprzey2qrtunq72ksry6uxmjk7v24mzwxz3r654yctsmf38fm", + "id": "1169", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "token0Amount": "0", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0000010015542061232621, + "liquidity24hUsdChange": 0.2832663986139122, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1njrm6r5h0868tfu5xwchsakmjwp7he0retq4r7gctvuv0yq6s2nsyl4h0j", + "id": "1154", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", + "token0Amount": "0", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0000010015542061232621, + "liquidity24hUsdChange": 0.2832663986139122, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1fwnlcn094lmnsphj9swel0uhesqvhjjnaa0etmfj54v5jps7zelsp48j7x", + "id": "1166", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", + "token0Amount": "0", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "1", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 0.0000010015542061232621, + "liquidity24hUsdChange": 0.2832663986139122, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "23", + "id": "1119", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.000000000000000000", + "swap_fee": "0.200000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/23", - "amount": "4493037723" + "denom": "gamm/pool/1119", + "amount": "1" }, - "liquidityUsd": 1.359990272365694e-06, - "liquidity24hUsdChange": -4.575398156956643, + "liquidityUsd": 0.0000010000000000026997, + "liquidity24hUsdChange": 1.0545560193288681E-11, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52874,35 +53658,77 @@ "pool_assets": [ { "token": { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", "amount": "1" }, - "weight": "536870912000000" + "weight": "5368709120" }, { "token": { - "denom": "uosmo", - "amount": "1" + "denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", + "amount": "3" }, - "weight": "536870912000000" + "weight": "5368709120" } ], - "total_weight": "1073741824000000" + "total_weight": "10737418240" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo15xjwtylaujjg7xqe7xtmc3lc854dk336zt8jqyqwq5hckt8gmzss7ehwuy", + "id": "1183", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "token0Amount": "1", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "0", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 9.998759166265507E-7, + "liquidity24hUsdChange": -0.17555561126043234, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1tayjxh02qp3k4uxvjkl4vgtytxsgz9z7vdcvjdfxnfsf26hwu77sxa855v", + "id": "1184", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "token0Amount": "1", + "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "token1Amount": "0", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000100000000000000", + "liquidityUsd": 9.998759166265507E-7, + "liquidity24hUsdChange": -0.17555561126043234, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "277", + "id": "23", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.010000000000000000", + "swap_fee": "0.000000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/277", - "amount": "42595338624787" + "denom": "gamm/pool/23", + "amount": "4493037723" }, - "liquidityUsd": 1.322080742085851e-06, - "liquidity24hUsdChange": -4.6257954498150315, + "liquidityUsd": 9.751011401791666E-7, + "liquidity24hUsdChange": -3.560466179977496, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52910,8 +53736,8 @@ "pool_assets": [ { "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "24" + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "amount": "1" }, "weight": "536870912000000" }, @@ -52925,6 +53751,40 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", + "id": "920", + "pool_params": { + "exit_fee": "0.000000000000000000", + "swap_fee": "0.005000000000000000", + "smooth_weight_change_params": null + }, + "total_shares": { + "denom": "gamm/pool/920", + "amount": "15625000000" + }, + "liquidityUsd": 9.46040896405979E-7, + "liquidity24hUsdChange": -3.2867401585677456, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000", + "pool_liquidity": [ + { + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "amount": "189725024" + }, + { + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "amount": "127873815" + } + ], + "scaling_factors": [ + "1", + "1" + ], + "scaling_factor_controller": "" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "448", @@ -52937,8 +53797,8 @@ "denom": "gamm/pool/448", "amount": "609000000000000" }, - "liquidityUsd": 1.3219576588820937e-06, - "liquidity24hUsdChange": -4.614614614489653, + "liquidityUsd": 9.2957700596506E-7, + "liquidity24hUsdChange": -3.3219785460142695, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52973,8 +53833,8 @@ "denom": "gamm/pool/459", "amount": "17052000000000000" }, - "liquidityUsd": 1.3219576588820937e-06, - "liquidity24hUsdChange": -4.614614614489653, + "liquidityUsd": 9.2957700596506E-7, + "liquidity24hUsdChange": -3.3219785460142695, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -52999,18 +53859,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "433", + "id": "277", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.020000000000000000", + "swap_fee": "0.010000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/433", - "amount": "900000000000000" + "denom": "gamm/pool/277", + "amount": "42595338624787" }, - "liquidityUsd": 1.3137405109544837e-06, - "liquidity24hUsdChange": -6.955601114956017, + "liquidityUsd": 9.287891364902003E-7, + "liquidity24hUsdChange": -3.3934440512774695, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53018,15 +53878,15 @@ "pool_assets": [ { "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "378" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "24" }, "weight": "536870912000000" }, { "token": { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "amount": "2" + "denom": "uosmo", + "amount": "1" }, "weight": "536870912000000" } @@ -53045,8 +53905,8 @@ "denom": "gamm/pool/236", "amount": "900000000" }, - "liquidityUsd": 1.3069593466855974e-06, - "liquidity24hUsdChange": -4.539960278041718, + "liquidityUsd": 9.216576788111906E-7, + "liquidity24hUsdChange": -3.4322106816251607, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53081,8 +53941,8 @@ "denom": "gamm/pool/468", "amount": "4692117450690" }, - "liquidityUsd": 1.2942666966098543e-06, - "liquidity24hUsdChange": -4.628427997710406, + "liquidityUsd": 9.099992641949378E-7, + "liquidity24hUsdChange": -3.3911970364819326, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53117,8 +53977,8 @@ "denom": "gamm/pool/652", "amount": "0" }, - "liquidityUsd": 1.2909546477752007e-06, - "liquidity24hUsdChange": -4.644751479129148, + "liquidityUsd": 9.078109127818084E-7, + "liquidity24hUsdChange": -3.3815618976942843, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53153,8 +54013,8 @@ "denom": "gamm/pool/195", "amount": "5000000000000" }, - "liquidityUsd": 1.2847208315867885e-06, - "liquidity24hUsdChange": -4.625240219055529, + "liquidityUsd": 9.034249194704883E-7, + "liquidity24hUsdChange": -3.393444051277472, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53189,8 +54049,8 @@ "denom": "gamm/pool/620", "amount": "1000" }, - "liquidityUsd": 1.283257802720812e-06, - "liquidity24hUsdChange": -4.625215440697563, + "liquidityUsd": 9.024255300675473E-7, + "liquidity24hUsdChange": -3.393444051277468, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53213,6 +54073,27 @@ ], "total_weight": "10737418240" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1vnzqxs4w6ejfk8pd6d4wt93wrk3v8jvml9fd3rsrr7kx4rmtx9pqzleucp", + "id": "1686", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", + "token0Amount": "2", + "token1": "uosmo", + "token1Amount": "1", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.002000000000000000", + "liquidityUsd": 9.023229222857736E-7, + "liquidity24hUsdChange": -3.3934371466631754, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "881", @@ -53225,8 +54106,8 @@ "denom": "gamm/pool/881", "amount": "1" }, - "liquidityUsd": 1.2830964876900508e-06, - "liquidity24hUsdChange": -4.625215344925522, + "liquidityUsd": 9.023221274567418E-7, + "liquidity24hUsdChange": -3.3934440507447277, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53263,63 +54144,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.2830964876520467e-06, - "liquidity24hUsdChange": -4.62521534497783, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.gamm.poolmodels.stableswap.v1beta1.Pool", - "id": "920", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.005000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/920", - "amount": "15625000000" - }, - "liquidityUsd": 1.1168639079047514e-06, - "liquidity24hUsdChange": -2.6489322901120897, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_liquidity": [ - { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", - "amount": "189725024" - }, - { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", - "amount": "127873815" - } - ], - "scaling_factors": [ - "1", - "1" - ], - "scaling_factor_controller": "" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1xjmak980sp3zgfekuuyrzcyf5ek4ww3c3csnrg2ef4qvpw7n9jtsesvhuj", - "id": "1208", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", - "token0Amount": "1", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "0", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.0966804902850452e-06, - "liquidity24hUsdChange": -5.078798127002162, + "liquidityUsd": 9.02322127426153E-7, + "liquidity24hUsdChange": -3.393444051277472, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53327,18 +54153,18 @@ }, { "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "1119", + "id": "317", "pool_params": { "exit_fee": "0.000000000000000000", - "swap_fee": "0.200000000000000000", + "swap_fee": "0.030000000000000000", "smooth_weight_change_params": null }, "total_shares": { - "denom": "gamm/pool/1119", - "amount": "1" + "denom": "gamm/pool/317", + "amount": "929451804532171" }, - "liquidityUsd": 1.0000000000030268e-06, - "liquidity24hUsdChange": -1.586069193728625e-11, + "liquidityUsd": 4.0263301955366726E-7, + "liquidity24hUsdChange": -3.357710497435487, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53346,132 +54172,27 @@ "pool_assets": [ { "token": { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", - "amount": "1" + "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", + "amount": "112" }, - "weight": "5368709120" + "weight": "536870912000000" }, { "token": { - "denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", - "amount": "3" + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "amount": "208" }, - "weight": "5368709120" + "weight": "536870912000000" } ], - "total_weight": "10737418240" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1nprvwcn7npspcvpx3y890wyc6lkg3pa5zmfmaszh5zk5x4faxhtsp349ls", - "id": "1156", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "token0Amount": "0", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 9.98663819027679e-07, - "liquidity24hUsdChange": -0.2234541841287967, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1hn0qmj03eyprzey2qrtunq72ksry6uxmjk7v24mzwxz3r654yctsmf38fm", - "id": "1169", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", - "token0Amount": "0", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 9.98663819027679e-07, - "liquidity24hUsdChange": -0.2234541841287967, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1njrm6r5h0868tfu5xwchsakmjwp7he0retq4r7gctvuv0yq6s2nsyl4h0j", - "id": "1154", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", - "token0Amount": "0", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 9.98663819027679e-07, - "liquidity24hUsdChange": -0.2234541841287967, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1fwnlcn094lmnsphj9swel0uhesqvhjjnaa0etmfj54v5jps7zelsp48j7x", - "id": "1166", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/E09ED39F390EC51FA9F3F69BEA08B5BBE6A48B3057B2B1C3467FAAE9E58B021B", - "token0Amount": "0", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "1", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 9.98663819027679e-07, - "liquidity24hUsdChange": -0.2234541841287967, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo15xjwtylaujjg7xqe7xtmc3lc854dk336zt8jqyqwq5hckt8gmzss7ehwuy", - "id": "1183", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", - "token0Amount": "1", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "0", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.000500000000000000", - "liquidityUsd": 9.937467548397077e-07, - "liquidity24hUsdChange": -0.1984248638965064, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" + "total_weight": "1073741824000000" }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1tayjxh02qp3k4uxvjkl4vgtytxsgz9z7vdcvjdfxnfsf26hwu77sxa855v", - "id": "1184", + "address": "osmo1w2st26l6rw0kjhxg5gack0uvcdy0px75h3g907jw4s6gzhy4ys9q0zj7yt", + "id": "1197", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "token0": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", "token0Amount": "1", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", "token1Amount": "0", @@ -53479,50 +54200,14 @@ "current_tick": "0", "tick_spacing": "100", "exponent_at_price_one": "-6", - "spread_factor": "0.000100000000000000", - "liquidityUsd": 9.937467548397077e-07, - "liquidity24hUsdChange": -0.1984248638965064, + "spread_factor": "0.002000000000000000", + "liquidityUsd": 2.947022568398751E-7, + "liquidity24hUsdChange": -4.058279978323949, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, "taker_fee": "0.001000000000000000" }, - { - "@type": "/osmosis.gamm.v1beta1.Pool", - "id": "317", - "pool_params": { - "exit_fee": "0.000000000000000000", - "swap_fee": "0.030000000000000000", - "smooth_weight_change_params": null - }, - "total_shares": { - "denom": "gamm/pool/317", - "amount": "929451804532171" - }, - "liquidityUsd": 5.558360686824506e-07, - "liquidity24hUsdChange": -7.534486150353234, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000", - "pool_assets": [ - { - "token": { - "denom": "ibc/52B1AA623B34EB78FD767CEA69E8D7FA6C9CFE1FBF49C5406268FD325E2CC2AC", - "amount": "112" - }, - "weight": "536870912000000" - }, - { - "token": { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", - "amount": "208" - }, - "weight": "536870912000000" - } - ], - "total_weight": "1073741824000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "542", @@ -53535,8 +54220,8 @@ "denom": "gamm/pool/542", "amount": "240000000000" }, - "liquidityUsd": 3.6519318695694407e-07, - "liquidity24hUsdChange": -5.949143970314707, + "liquidityUsd": 2.6310683053189955E-7, + "liquidity24hUsdChange": -2.195856364636909, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53559,27 +54244,6 @@ ], "total_weight": "1073741824000000" }, - { - "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1w2st26l6rw0kjhxg5gack0uvcdy0px75h3g907jw4s6gzhy4ys9q0zj7yt", - "id": "1197", - "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", - "token0Amount": "1", - "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "token1Amount": "0", - "current_sqrt_price": "0.000000000000000000000000000000000000", - "current_tick": "0", - "tick_spacing": "100", - "exponent_at_price_one": "-6", - "spread_factor": "0.002000000000000000", - "liquidityUsd": 3.171159065812426e-07, - "liquidity24hUsdChange": -4.80386122890355, - "volume24hUsd": 0, - "volume24hUsdChange": 0, - "volume7dUsd": 0, - "taker_fee": "0.001000000000000000" - }, { "@type": "/osmosis.gamm.v1beta1.Pool", "id": "157", @@ -53592,8 +54256,8 @@ "denom": "gamm/pool/157", "amount": "65658855345" }, - "liquidityUsd": 3.0467157918040685e-07, - "liquidity24hUsdChange": -2.6658676096291276, + "liquidityUsd": 2.2570131785033397E-7, + "liquidity24hUsdChange": -2.6496064395848697, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53630,8 +54294,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 2.7583151529448365e-07, - "liquidity24hUsdChange": -6.2538401193848525, + "liquidityUsd": 2.016897363816212E-7, + "liquidity24hUsdChange": -1.9089430968950674, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53649,8 +54313,8 @@ "denom": "gamm/pool/671", "amount": "9868056679518" }, - "liquidityUsd": 2.7076464321438926e-07, - "liquidity24hUsdChange": -7.365799236772648, + "liquidityUsd": 1.8804655056065828E-7, + "liquidity24hUsdChange": -1.5560708348954932, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53685,8 +54349,8 @@ "denom": "gamm/pool/655", "amount": "0" }, - "liquidityUsd": 2.4011793746913173e-07, - "liquidity24hUsdChange": -0.33987049928199686, + "liquidityUsd": 1.6107295446551818E-7, + "liquidity24hUsdChange": -3.5361318603421745, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53721,8 +54385,8 @@ "denom": "gamm/pool/450", "amount": "12800000000000" }, - "liquidityUsd": 1.6497824553853595e-07, - "liquidity24hUsdChange": -6.551659739395722, + "liquidityUsd": 1.385333166896364E-7, + "liquidity24hUsdChange": -4.533046211069558, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53747,10 +54411,10 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1rm7xl607k65qjp2847ccy4m8sm8lg3e2vx56y8hwzlfkyngsh56ssfdzmp", - "id": "1199", + "address": "osmo1g366egt0t7ucvtv9twcllwxanfpag7cak6qvl8umgpv3rsnlfmlq7fzzlg", + "id": "1200", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "token0": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", "token0Amount": "1", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", "token1Amount": "0", @@ -53759,8 +54423,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.587104706764692e-07, - "liquidity24hUsdChange": -0.7183919189862781, + "liquidityUsd": 1.0102511762338754E-7, + "liquidity24hUsdChange": -1.2515703511806924, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53768,10 +54432,10 @@ }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", - "address": "osmo1g366egt0t7ucvtv9twcllwxanfpag7cak6qvl8umgpv3rsnlfmlq7fzzlg", - "id": "1200", + "address": "osmo1rm7xl607k65qjp2847ccy4m8sm8lg3e2vx56y8hwzlfkyngsh56ssfdzmp", + "id": "1199", "current_tick_liquidity": "0.000000000000000000", - "token0": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "token0": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", "token0Amount": "1", "token1": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", "token1Amount": "0", @@ -53780,8 +54444,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.4031114633414965e-07, - "liquidity24hUsdChange": 1.3850211215866233, + "liquidityUsd": 9.965487069825093E-8, + "liquidity24hUsdChange": -8.423194530960282, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53799,8 +54463,8 @@ "denom": "gamm/pool/1309", "amount": "7031250000" }, - "liquidityUsd": 1.1185881452165115e-07, - "liquidity24hUsdChange": -4.751744221657865, + "liquidityUsd": 7.317669542377132E-8, + "liquidity24hUsdChange": -8.655660343381507, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53837,8 +54501,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 3.886117123004692e-08, - "liquidity24hUsdChange": -4.263277354845963, + "liquidityUsd": 2.7254878538906967E-8, + "liquidity24hUsdChange": -0.8947888676571836, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53858,8 +54522,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.5018930999263103e-08, - "liquidity24hUsdChange": -4.981150361481236, + "liquidityUsd": 1.20348395645239E-8, + "liquidity24hUsdChange": -3.0150960055679494, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53879,8 +54543,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.3100825100484642e-08, - "liquidity24hUsdChange": -4.776425224018829, + "liquidityUsd": 9.10214379156922E-9, + "liquidity24hUsdChange": -3.3215433058432517, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53898,8 +54562,8 @@ "denom": "gamm/pool/754", "amount": "1" }, - "liquidityUsd": 1.3100825100484642e-08, - "liquidity24hUsdChange": -4.776425224018829, + "liquidityUsd": 9.10214379156922E-9, + "liquidity24hUsdChange": -3.3215433058432517, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53934,8 +54598,8 @@ "denom": "gamm/pool/753", "amount": "1455191523" }, - "liquidityUsd": 1.3100825100484642e-08, - "liquidity24hUsdChange": -4.776425224018829, + "liquidityUsd": 9.10214379156922E-9, + "liquidity24hUsdChange": -3.3215433058432517, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53972,8 +54636,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 2.413172351060267e-09, - "liquidity24hUsdChange": -3.7690137059340842, + "liquidityUsd": 1.8889527783954795E-9, + "liquidity24hUsdChange": -1.0564112260537388, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -53993,8 +54657,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.002000000000000000", - "liquidityUsd": 1.7976420576507894e-09, - "liquidity24hUsdChange": -8.87801377108141, + "liquidityUsd": 1.3419245701351606E-9, + "liquidity24hUsdChange": -3.34188970915899, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -54014,8 +54678,29 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 1.4914286895969218e-09, - "liquidity24hUsdChange": 0.27993396380748004, + "liquidityUsd": 1.208471961564853E-9, + "liquidity24hUsdChange": -5.207344867656307, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1dqspvcst7wa8het9zat6qvev0jjt5r63dckk0pxcarm6kkzf3vxqsxcshd", + "id": "1214", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", + "token0Amount": "55", + "token1": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "token1Amount": "46", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 1.3771728849299717E-13, + "liquidity24hUsdChange": -2.8669856348572282, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -54035,8 +54720,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000500000000000000", - "liquidityUsd": 3.000706201128226e-18, - "liquidity24hUsdChange": 0.1115549014898213, + "liquidityUsd": 3.0018113674667436E-18, + "liquidity24hUsdChange": 0.05727344499819079, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -54056,8 +54741,8 @@ "tick_spacing": "100", "exponent_at_price_one": "-6", "spread_factor": "0.000100000000000000", - "liquidityUsd": 3.000706201128226e-18, - "liquidity24hUsdChange": 0.1115549014898213, + "liquidityUsd": 3.0018113674667436E-18, + "liquidity24hUsdChange": 0.05727344499819079, "volume24hUsd": 0, "volume24hUsdChange": 0, "volume7dUsd": 0, @@ -54120,6 +54805,27 @@ ], "total_weight": "1073741824000000" }, + { + "@type": "/osmosis.cosmwasmpool.v1beta1.CosmWasmPool", + "pool_id": "1685", + "code_id": "666", + "tokens": [ + { + "denom": "ibc/E1AB7BB567967345ACAB5E6C3D794B29157931C872CC8E14C9A3697FDC1D9BD5", + "amount": "0" + }, + { + "denom": "uosmo", + "amount": "0" + } + ], + "liquidityUsd": 0, + "liquidity24hUsdChange": null, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1czvw9vggzx9lwx4yufkthvf98qcussdymqyempnmdd8v6j7qe8jqmsgy8c", @@ -54453,7 +55159,7 @@ }, "total_shares": { "denom": "gamm/pool/995", - "amount": "58900263098656988" + "amount": "3813501954310562" }, "liquidityUsd": 0, "liquidity24hUsdChange": null, @@ -54465,14 +55171,14 @@ { "token": { "denom": "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", - "amount": "111941551044" + "amount": "7247664123" }, "weight": "536870912000000" }, { "token": { "denom": "ibc/FFA652599C77E853F017193E36B5AB2D4D9AFC4B54721A74904F80C9236BF3B7", - "amount": "3055327808" + "amount": "197817429" }, "weight": "536870912000000" } @@ -54531,7 +55237,7 @@ "liquidity24hUsdChange": null, "volume24hUsd": 0, "volume24hUsdChange": 0, - "volume7dUsd": 0.07777042087751221, + "volume7dUsd": 0, "taker_fee": "0.001000000000000000", "pool_liquidity": [ { @@ -54664,6 +55370,27 @@ "volume7dUsd": 0, "taker_fee": "0.001000000000000000" }, + { + "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", + "address": "osmo1pyt33rdxs7kg5t79dcngxz6z3qdadn0gcs0zv8zz56ja68ejx2asnrl644", + "id": "1684", + "current_tick_liquidity": "0.000000000000000000", + "token0": "ibc/178248C262DE2E141EE6287EE7AB0854F05F25B0A3F40C4B912FA1C7E51F466E", + "token0Amount": "0", + "token1": "uosmo", + "token1Amount": "0", + "current_sqrt_price": "0.000000000000000000000000000000000000", + "current_tick": "0", + "tick_spacing": "100", + "exponent_at_price_one": "-6", + "spread_factor": "0.000500000000000000", + "liquidityUsd": 0, + "liquidity24hUsdChange": null, + "volume24hUsd": 0, + "volume24hUsdChange": 0, + "volume7dUsd": 0, + "taker_fee": "0.001000000000000000" + }, { "@type": "/osmosis.concentratedliquidity.v1beta1.Pool", "address": "osmo1cgj0vkjhsc46ltk0j6czxawlmazegnu56rcptmq5rma8y950e22s4rxdja", diff --git a/schema/raw/execute.json b/schema/raw/execute.json index 54dc7a0b..288bf7c9 100644 --- a/schema/raw/execute.json +++ b/schema/raw/execute.json @@ -891,13 +891,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -1208,7 +1214,6 @@ } ] }, - "JSON": true, "NetworkAssetItem": { "type": "object", "required": [ diff --git a/schema/raw/response_to_get_all_asset_ids.json b/schema/raw/response_to_get_all_asset_ids.json index b98dc4ed..40b2feff 100644 --- a/schema/raw/response_to_get_all_asset_ids.json +++ b/schema/raw/response_to_get_all_asset_ids.json @@ -190,13 +190,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -206,7 +212,6 @@ "H160": { "type": "string" }, - "JSON": true, "NetworkId": { "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", "type": "integer", diff --git a/schema/raw/response_to_get_asset_by_id.json b/schema/raw/response_to_get_asset_by_id.json index 07456b39..d3e85ed5 100644 --- a/schema/raw/response_to_get_asset_by_id.json +++ b/schema/raw/response_to_get_asset_by_id.json @@ -195,13 +195,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -211,7 +217,6 @@ "H160": { "type": "string" }, - "JSON": true, "NetworkId": { "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", "type": "integer", diff --git a/schema/raw/response_to_get_config.json b/schema/raw/response_to_get_config.json index b10f0db5..131279f8 100644 --- a/schema/raw/response_to_get_config.json +++ b/schema/raw/response_to_get_config.json @@ -392,13 +392,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -539,7 +545,6 @@ } } }, - "JSON": true, "NetworkAssetItem": { "type": "object", "required": [ diff --git a/schema/raw/response_to_get_local_asset_by_reference.json b/schema/raw/response_to_get_local_asset_by_reference.json index 07456b39..d3e85ed5 100644 --- a/schema/raw/response_to_get_local_asset_by_reference.json +++ b/schema/raw/response_to_get_local_asset_by_reference.json @@ -195,13 +195,19 @@ "additionalProperties": false }, { + "description": "`xcm::VersionedMultiLocation` not validated, until XCM supports std wasm or CW no_std (or copy paste) for now just store scale binary", "type": "object", "required": [ - "xcm" + "xcm_versioned_multi_location" ], "properties": { - "xcm": { - "$ref": "#/definitions/JSON" + "xcm_versioned_multi_location": { + "type": "array", + "items": { + "type": "integer", + "format": "uint8", + "minimum": 0.0 + } } }, "additionalProperties": false @@ -211,7 +217,6 @@ "H160": { "type": "string" }, - "JSON": true, "NetworkId": { "description": "Newtype for CVM networks ID. Must be unique for each network and must never change. This ID is an opaque, arbitrary type from the CVM protocol and no assumption must be made on how it is computed.", "type": "integer", diff --git a/schema/skip_money_assets.json b/schema/skip_money_assets.json index d3130940..9c5d6fc2 100644 --- a/schema/skip_money_assets.json +++ b/schema/skip_money_assets.json @@ -6,6 +6,12 @@ "10": { "assets": [] }, + "11155111": { + "assets": [] + }, + "11155420": { + "assets": [] + }, "1284": { "assets": [] }, @@ -24,9 +30,15 @@ "42161": { "assets": [] }, + "421614": { + "assets": [] + }, "42220": { "assets": [] }, + "43113": { + "assets": [] + }, "43114": { "assets": [] }, @@ -42,205 +54,263 @@ "80001": { "assets": [] }, + "81457": { + "assets": [] + }, "8453": { "assets": [] }, - "agoric-3": { + "84532": { + "assets": [] + }, + "Oraichain": { "assets": [ { - "denom": "ibc/1C312D6A05202A8F83393290B3403EAA37FF2E3DDA73BB69253C2D10CDA4D6CF", - "chain_id": "agoric-3", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-72", + "denom": "ibc/9C4DCD21B48231D0BC2AC3D1B74A864746B37E4292694C93C617324250D002FC", + "chain_id": "Oraichain", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-13", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "chain_id": "agoric-3", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/A2E2EEC9057A4A1C2C0A6A4C78B0239118DF5F278830F50B4A6BDD7A66506B78", + "chain_id": "Oraichain", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-15", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ubld", - "chain_id": "agoric-3", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", + "denom": "orai", + "chain_id": "Oraichain", + "origin_denom": "orai", + "origin_chain_id": "Oraichain", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "ORAI", + "name": "ORAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", "decimals": 6, - "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "description": "The native token of Oraichain", + "coingecko_id": "oraichain-token", + "recommended_symbol": "ORAI" }, { - "denom": "uist", - "chain_id": "agoric-3", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "", + "denom": "ibc/5F79388370E99EAD1D09B50EA52A2B340AF6E608EE226B21E30D8C8EE2E3F649", + "chain_id": "Oraichain", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-228", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "ibc/DDAB71B9D194CBF3B87DD6924B3B4846F14061289FCBA8A3989B6F8230BC0F05", - "chain_id": "agoric-3", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-59", + "denom": "ibc/39059F9BEE8D596554114E02A2C15441DCA885A86B3669733BF5B8D7C3FA49D6", + "chain_id": "Oraichain", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-217", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", - "chain_id": "agoric-3", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "denom": "ibc/56AB68090FE69AE2999EF557FB1C185B1A2E2B0CFD42FE36929EC0152A72CAAA", + "chain_id": "Oraichain", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-222", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "is_svm": false, + "symbol": "SHD", + "name": "SHD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" }, { - "denom": "ibc/299612A95693138225447366268ED58014100D965FCEDC43F27D47AB360F351F", - "chain_id": "agoric-3", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-59", + "denom": "ibc/49D820DFDE9F885D7081725A58202ABA2F465CAEE4AFBC683DFB79A8E013E83E", + "chain_id": "Oraichain", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-146", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" - }, + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" + } + ] + }, + "agoric-3": { + "assets": [ { - "denom": "ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278", + "denom": "ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1", "chain_id": "agoric-3", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "recommended_symbol": "WOSMO" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/C01154C2547F4CB10A985EA78E7CD4BA891C1504360703A37E1D7043F06B5E1F", + "denom": "ibc/7A0FAE01EB4FD6930A0111759B22BB631BB089C75F7186E4F9ACC0E139DE678C", "chain_id": "agoric-3", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/CC4254DC29095615C89368B3A3DD2DEF805655B329E302EAADCB7A98868CB20E", + "denom": "ibc/9029A9BAC81D8D34BC3F35691FD1B02E312BE324F8FF30D979E8551B4F01FAD9", "chain_id": "agoric-3", - "origin_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", "origin_chain_id": "gravity-bridge-3", "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "sDAI", - "name": "sDAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", "decimals": 18, - "recommended_symbol": "sDAI.grv" + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" }, { - "denom": "ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1", + "denom": "ibc/DDAB71B9D194CBF3B87DD6924B3B4846F14061289FCBA8A3989B6F8230BC0F05", "chain_id": "agoric-3", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-59", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "ibc/9029A9BAC81D8D34BC3F35691FD1B02E312BE324F8FF30D979E8551B4F01FAD9", + "denom": "ibc/F2331645B9683116188EF36FC04A809C28BD36B54555E8705A37146D0182F045", "chain_id": "agoric-3", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-4", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "decimals": 6, + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", "chain_id": "agoric-3", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-10", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" + }, + { + "denom": "ubld", + "chain_id": "agoric-3", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "decimals": 6, + "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", + "coingecko_id": "agoric", + "recommended_symbol": "BLD" + }, + { + "denom": "uist", + "chain_id": "agoric-3", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "decimals": 6, + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" }, { "denom": "ibc/B11D2BF454691B63FF73738EAC8D27C37F66948A5F390003AE1891FEFD387DDE", @@ -250,6 +320,7 @@ "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "FLIX", "name": "FLIX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", @@ -257,6 +328,22 @@ "coingecko_id": "omniflix-network", "recommended_symbol": "FLIX" }, + { + "denom": "ibc/4721B61DBE668E2F3E613E45885396991F21E8374ABDE48CD7336A77B79101A5", + "chain_id": "agoric-3", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-72", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "decimals": 6, + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" + }, { "denom": "ibc/B1E6288B5A0224565D915D1F66716486F16D8A44BF33A9EC323DD6BA30764C35", "chain_id": "agoric-3", @@ -265,6 +352,7 @@ "trace": "transfer/channel-59", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stATOM", "name": "stATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", @@ -273,19 +361,35 @@ "recommended_symbol": "stATOM" }, { - "denom": "ibc/B557233C2463BCEB5D95E247CBD52AC98BE0847E9BEC5C3800A4384936EB6280", + "denom": "ibc/CC4254DC29095615C89368B3A3DD2DEF805655B329E302EAADCB7A98868CB20E", "chain_id": "agoric-3", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-11", + "origin_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "sDAI", + "name": "sDAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "decimals": 18, + "recommended_symbol": "sDAI.grv" + }, + { + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "chain_id": "agoric-3", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { "denom": "ibc/B44BF5AB79C7893A27BAFCF65702B3EBC6DD1E2CF0C8D43605ACDFD1F98229BB", @@ -295,12 +399,29 @@ "trace": "transfer/channel-57", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NEOK", "name": "NEOK", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", "decimals": 18, "recommended_symbol": "NEOK" }, + { + "denom": "ibc/B557233C2463BCEB5D95E247CBD52AC98BE0847E9BEC5C3800A4384936EB6280", + "chain_id": "agoric-3", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-11", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "decimals": 6, + "coingecko_id": "umee", + "recommended_symbol": "UMEE" + }, { "denom": "ibc/BA313C4A19DFBF943586C0387E6B11286F9E416B4DD27574E6909CABE0E342FA", "chain_id": "agoric-3", @@ -309,6 +430,7 @@ "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -317,79 +439,84 @@ "recommended_symbol": "ATOM" }, { - "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", + "denom": "ibc/C01154C2547F4CB10A985EA78E7CD4BA891C1504360703A37E1D7043F06B5E1F", "chain_id": "agoric-3", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-62", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/6831292903487E58BF9A195FDDC8A2E626B3DF39B88F4E7F41C935CADBAF54AC", + "denom": "ibc/079DAF1995A28BCD3B4E3D38948BB0FBC1CDE47939820CBAB7C02AFB88FF31A3", "chain_id": "agoric-3", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-4", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/3D5291C23D776C3AA7A7ABB34C7B023193ECD2BC42EA19D3165B2CF9652117E7", + "denom": "ibc/1C312D6A05202A8F83393290B3403EAA37FF2E3DDA73BB69253C2D10CDA4D6CF", "chain_id": "agoric-3", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-4", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-72", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.grv" + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "decimals": 6, + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/64B3EFE08A6A3EF5D2A7F1D3AF033DDC951DA51F92E06CC31D3F9AF8E8368860", + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", "chain_id": "agoric-3", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-4", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/7A0FAE01EB4FD6930A0111759B22BB631BB089C75F7186E4F9ACC0E139DE678C", + "denom": "ibc/299612A95693138225447366268ED58014100D965FCEDC43F27D47AB360F351F", "chain_id": "agoric-3", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-2", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-59", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { "denom": "ibc/2FAD8D00A958B0A5509A4ECF9E719B65EE268DAFB38FED98FF9B90B720F04C28", @@ -399,6 +526,7 @@ "trace": "transfer/channel-55", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PICA", "name": "PICA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", @@ -406,6 +534,22 @@ "coingecko_id": "picasso", "recommended_symbol": "PICA" }, + { + "denom": "ibc/6831292903487E58BF9A195FDDC8A2E626B3DF39B88F4E7F41C935CADBAF54AC", + "chain_id": "agoric-3", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" + }, { "denom": "ibc/3763997B746CA5FDC9883C5192B783B114A4610E1A37751955288E0940BB0B7F", "chain_id": "agoric-3", @@ -414,6 +558,7 @@ "trace": "transfer/channel-60", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARCH", "name": "ARCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -429,6 +574,7 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDT", "name": "USDT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", @@ -444,6 +590,7 @@ "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DAI", "name": "DAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", @@ -452,64 +599,51 @@ "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/4BFBA0996893D2049913D24060BE5936EF8AAF2C89E08B91BCCCA2B8DE3BA241", + "denom": "ibc/3D5291C23D776C3AA7A7ABB34C7B023193ECD2BC42EA19D3165B2CF9652117E7", "chain_id": "agoric-3", - "origin_denom": "stutia", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-59", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "stTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", - "decimals": 6, - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" }, { - "denom": "ibc/F2331645B9683116188EF36FC04A809C28BD36B54555E8705A37146D0182F045", + "denom": "ibc/64B3EFE08A6A3EF5D2A7F1D3AF033DDC951DA51F92E06CC31D3F9AF8E8368860", "chain_id": "agoric-3", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278", "chain_id": "agoric-3", - "origin_denom": "uosmo", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" - }, - { - "denom": "ibc/079DAF1995A28BCD3B4E3D38948BB0FBC1CDE47939820CBAB7C02AFB88FF31A3", - "chain_id": "agoric-3", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-63", - "is_cw20": false, - "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "recommended_symbol": "WOSMO" }, { "denom": "ibc/80D5E86278CE910A7A9653CCA7DEB62C817E07AF9C0C657B43191C43DE60B107", @@ -519,33 +653,66 @@ "trace": "transfer/channel-57", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "EVMOS", "name": "EVMOS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "decimals": 18, "coingecko_id": "evmos", "recommended_symbol": "EVMOS" - } - ] - }, - "akashnet-2": { - "assets": [ + }, { - "denom": "ibc/9554B3A33B18F2FA7492E2EBB4D128FD98D812BB182B12CC6BCB5E94161E2C10", - "chain_id": "akashnet-2", - "origin_denom": "hard", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-37", - "is_cw20": false, - "is_evm": false, - "symbol": "HARD", - "name": "HARD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "chain_id": "agoric-3", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-10", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "description": "HardPool Gov. Coin", - "coingecko_id": "kava-lend", - "recommended_symbol": "HARD" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, + { + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "chain_id": "agoric-3", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, + { + "denom": "ibc/4BFBA0996893D2049913D24060BE5936EF8AAF2C89E08B91BCCCA2B8DE3BA241", + "chain_id": "agoric-3", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-59", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "decimals": 6, + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" + } + ] + }, + "akashnet-2": { + "assets": [ { "denom": "ibc/AAFAD8AC1A29CDA9985742B9DE3C32C1163798919C0B3A4C339A70D5F49D1E15", "chain_id": "akashnet-2", @@ -554,6 +721,7 @@ "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ION", "name": "ION", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", @@ -563,65 +731,36 @@ "recommended_symbol": "ION" }, { - "denom": "ibc/F5CCE0AC7102584371EBA8A2C7B1094EAE554994B91B0511581BD2AB0237ED62", + "denom": "ibc/BD0BD8AFC4353B157A64839941D5D342A1A5CECE807C6B3D49035614AEB3380F", "chain_id": "akashnet-2", - "origin_denom": "usdx", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-37", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-60", "is_cw20": false, "is_evm": false, - "symbol": "USDX", - "name": "USDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "description": "USD Stable Asset", - "coingecko_id": "usdx", - "recommended_symbol": "USDX" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/96FAC723087B3371CD850B24229CAC3B2A9FD8B42D85A2B1E34441F020E924B5", + "denom": "ibc/C4BE30A03C8FA2274C3C80C751F0517B538BB419546370C6DB19D32417CA3E3D", "chain_id": "akashnet-2", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_denom": "ukuji", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", - "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" - }, - { - "denom": "ibc/2E5D0AC026AC1AFA65A23023BA4F24BB8DDF94F118EDC0BAD6F625BFC557CDED", - "chain_id": "akashnet-2", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-17", - "is_cw20": false, - "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" - }, - { - "denom": "ibc/47927E0CB737D00A548132664A465051CB9EEBA11779976191F8652287C86AD2", - "chain_id": "akashnet-2", - "origin_denom": "peaka", - "origin_chain_id": "vota-ash", - "trace": "transfer/channel-125", - "is_cw20": false, - "is_evm": false, - "symbol": "DORA", - "name": "DORA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", - "decimals": 18, - "recommended_symbol": "DORA" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { "denom": "ibc/1849A429022CBAAB619074CA4412D0016F262218BE6DD828BA8A3DD97D6B52BB", @@ -631,6 +770,7 @@ "trace": "transfer/channel-35", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "JUNO", "name": "JUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", @@ -640,36 +780,36 @@ "recommended_symbol": "JUNO" }, { - "denom": "ibc/3A67DDC3D4035596F1E4D5B563F434ED3FB0CD06169AE4779FB224CE5EF757A7", + "denom": "ibc/1C83E3B8A612C4FB7F3D7C20AE3E827BD61FF21CE5343134CC7A4F5ADC57EE43", "chain_id": "akashnet-2", - "origin_denom": "swp", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-37", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-127", "is_cw20": false, "is_evm": false, - "symbol": "SWP", - "name": "SWP", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "description": "Kava Swap Coin", - "coingecko_id": "kava-swap", - "recommended_symbol": "SWP" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", + "denom": "ibc/219C3FB64A60CA8E8B0D760D10FF108F6C0484F1AAD2E621232230ECC303803B", "chain_id": "akashnet-2", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-9", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { "denom": "ibc/B567D2C79ED9D9D78B5761E8E4D261C7013E349518FD499D42B2BD1B81266DD6", @@ -679,6 +819,7 @@ "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KAVA", "name": "KAVA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", @@ -688,34 +829,38 @@ "recommended_symbol": "KAVA" }, { - "denom": "ibc/BF8BDCAA292B56035E669D80711D9881CC96796AC6BCB0376836FAD045355E37", + "denom": "uakt", "chain_id": "akashnet-2", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-55", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/C4BE30A03C8FA2274C3C80C751F0517B538BB419546370C6DB19D32417CA3E3D", + "denom": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", "chain_id": "akashnet-2", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-63", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { "denom": "ibc/13BD0905CFB705ABF84B60209C44071878C9F07A0A2CAC5EDBE315AD3CFD1DF2", @@ -725,6 +870,7 @@ "trace": "transfer/channel-43", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SCRT", "name": "SCRT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", @@ -732,6 +878,21 @@ "coingecko_id": "secret", "recommended_symbol": "SCRT" }, + { + "denom": "ibc/47927E0CB737D00A548132664A465051CB9EEBA11779976191F8652287C86AD2", + "chain_id": "akashnet-2", + "origin_denom": "peaka", + "origin_chain_id": "vota-ash", + "trace": "transfer/channel-125", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DORA", + "name": "DORA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", + "decimals": 18, + "recommended_symbol": "DORA" + }, { "denom": "ibc/4CD8D2D74C118C53282B6A3B2294FB354461B8433BC8FB2B83A94DA3BDDBF3B8", "chain_id": "akashnet-2", @@ -740,6 +901,7 @@ "trace": "transfer/channel-70", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CRE", "name": "CRE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", @@ -747,36 +909,6 @@ "coingecko_id": "crescent-network", "recommended_symbol": "CRE" }, - { - "denom": "ibc/58B230EC118D010C49CDC427368D10AE9C0F4722DD14720AD9915521E13283FA", - "chain_id": "akashnet-2", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-116", - "is_cw20": false, - "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" - }, - { - "denom": "ibc/BD0BD8AFC4353B157A64839941D5D342A1A5CECE807C6B3D49035614AEB3380F", - "chain_id": "akashnet-2", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-60", - "is_cw20": false, - "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", - "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" - }, { "denom": "ibc/05DB6975261B805B6F6A157A4386C627F8A70BF8118D411655EFEDCA82BFABA5", "chain_id": "akashnet-2", @@ -785,6 +917,7 @@ "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDT", "name": "USDT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", @@ -793,34 +926,37 @@ "recommended_symbol": "USDT" }, { - "denom": "ibc/3F92DEB454920FA010D6D7F1380EDD50D6244CB659A2201AF201B778C5548BD5", + "denom": "ibc/9554B3A33B18F2FA7492E2EBB4D128FD98D812BB182B12CC6BCB5E94161E2C10", "chain_id": "akashnet-2", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-126", + "origin_denom": "hard", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "HARD", + "name": "HARD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "decimals": 6, + "description": "HardPool Gov. Coin", + "coingecko_id": "kava-lend", + "recommended_symbol": "HARD" }, { - "denom": "ibc/219C3FB64A60CA8E8B0D760D10FF108F6C0484F1AAD2E621232230ECC303803B", + "denom": "ibc/96FAC723087B3371CD850B24229CAC3B2A9FD8B42D85A2B1E34441F020E924B5", "chain_id": "akashnet-2", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { "denom": "ibc/A358F99ED38EA54426806E68F0A0A0CB3D80FEF2A77C1CF1D3A22CFE24D2A1BF", @@ -830,6 +966,7 @@ "trace": "transfer/channel-55", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "HARBOR", "name": "HARBOR", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", @@ -838,85 +975,124 @@ "recommended_symbol": "HARBOR" }, { - "denom": "ibc/FBC2D8A755E0219D69C92B7FBFDC29FFBD590A7DE5E6A9EA41F03B3C73E763AD", + "denom": "ibc/2E5D0AC026AC1AFA65A23023BA4F24BB8DDF94F118EDC0BAD6F625BFC557CDED", "chain_id": "akashnet-2", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-55", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "uakt", + "denom": "ibc/3A67DDC3D4035596F1E4D5B563F434ED3FB0CD06169AE4779FB224CE5EF757A7", "chain_id": "akashnet-2", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "", + "origin_denom": "swp", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "SWP", + "name": "SWP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", "decimals": 6, - "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" - } - ] - }, - "andromeda-1": { - "assets": [ + "description": "Kava Swap Coin", + "coingecko_id": "kava-swap", + "recommended_symbol": "SWP" + }, { - "denom": "ibc/99B1D6051D9B73EA1A23DC6777C9621E4DAA0F3BECD199A8502BEB09F6CD4686", - "chain_id": "andromeda-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-5", + "denom": "ibc/58B230EC118D010C49CDC427368D10AE9C0F4722DD14720AD9915521E13283FA", + "chain_id": "akashnet-2", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-116", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/EF6B7074D846B3A0A1CBE73EC590F470F7867CD443006D5B911B54972E115D1F", - "chain_id": "andromeda-1", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-5", + "denom": "ibc/3F92DEB454920FA010D6D7F1380EDD50D6244CB659A2201AF201B778C5548BD5", + "chain_id": "akashnet-2", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-126", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, + { + "denom": "ibc/BF8BDCAA292B56035E669D80711D9881CC96796AC6BCB0376836FAD045355E37", + "chain_id": "akashnet-2", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-55", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", - "chain_id": "andromeda-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-12", + "denom": "ibc/F5CCE0AC7102584371EBA8A2C7B1094EAE554994B91B0511581BD2AB0237ED62", + "chain_id": "akashnet-2", + "origin_denom": "usdx", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "USDX", + "name": "USDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "description": "USD Stable Asset", + "coingecko_id": "usdx", + "recommended_symbol": "USDX" }, + { + "denom": "ibc/FBC2D8A755E0219D69C92B7FBFDC29FFBD590A7DE5E6A9EA41F03B3C73E763AD", + "chain_id": "akashnet-2", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-55", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "decimals": 6, + "coingecko_id": "composite", + "recommended_symbol": "CMST" + } + ] + }, + "andromeda-1": { + "assets": [ { "denom": "ibc/976C73350F6F48A69DE740784C8A92931C696581A5C720D96DDF4AFA860FFF97", "chain_id": "andromeda-1", @@ -925,6 +1101,7 @@ "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KUJI", "name": "KUJI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", @@ -932,6 +1109,22 @@ "coingecko_id": "kujira", "recommended_symbol": "KUJI" }, + { + "denom": "ibc/99B1D6051D9B73EA1A23DC6777C9621E4DAA0F3BECD199A8502BEB09F6CD4686", + "chain_id": "andromeda-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" + }, { "denom": "ibc/BCEFD8175B8C47D712FB639034128CB43776364B79E3251F073CB3A2A32582A0", "chain_id": "andromeda-1", @@ -940,6 +1133,7 @@ "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SCRT", "name": "SCRT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", @@ -947,6 +1141,22 @@ "coingecko_id": "secret", "recommended_symbol": "SCRT" }, + { + "denom": "ibc/EF6B7074D846B3A0A1CBE73EC590F470F7867CD443006D5B911B54972E115D1F", + "chain_id": "andromeda-1", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "decimals": 6, + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" + }, { "denom": "uandr", "chain_id": "andromeda-1", @@ -955,6 +1165,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ANDR", "name": "ANDR", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", @@ -963,6 +1174,22 @@ "coingecko_id": "andromeda-2", "recommended_symbol": "ANDR" }, + { + "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "chain_id": "andromeda-1", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-12", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "decimals": 6, + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" + }, { "denom": "ibc/3A6EF291CAE66EDCA46E43874FF6FC1499F61C4B56CA8186B8DFD9227F10D631", "chain_id": "andromeda-1", @@ -971,6 +1198,7 @@ "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARCH", "name": "ARCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -982,6 +1210,22 @@ }, "archway-1": { "assets": [ + { + "denom": "ibc/6D969D4769854314695E979D202CDC7E34946B85AF862D3FC1268EB0203F1734", + "chain_id": "archway-1", + "origin_denom": "unibi", + "origin_chain_id": "cataclysm-1", + "trace": "transfer/channel-131", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NIBI", + "name": "NIBI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "decimals": 6, + "coingecko_id": "nibiru", + "recommended_symbol": "NIBI" + }, { "denom": "ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B", "chain_id": "archway-1", @@ -990,6 +1234,7 @@ "trace": "transfer/channel-13", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", @@ -998,123 +1243,147 @@ "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73", + "denom": "ibc/EA536E5F63A259E4D80719728CB386D03CD66AFE4E1D6A39EE88198CF964485E", "chain_id": "archway-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-57", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC" + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "decimals": 6, + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/C2CFB1C37C146CF95B0784FD518F8030FEFC76C5800105B1742FB65FFE65F873", + "denom": "ibc/661EA4CFDA1013218CFA83604B4B47DA79393868BE4BED3727B4A08D0BE7E179", "chain_id": "archway-1", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-104", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-105", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", - "decimals": 6, - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" }, { - "denom": "ibc/4FC395BDCDCD4A3A681C0D222EE64B610AEDB215DB8D18F46B575357F27CD6A7", + "denom": "ibc/3A790199A36516FA5D6889B3C6C9AC31944E44A0CD30EF122028C8CEA570E7EC", "chain_id": "archway-1", - "origin_denom": "upasg", - "origin_chain_id": "passage-2", - "trace": "transfer/channel-116", + "origin_denom": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-61", "is_cw20": false, "is_evm": false, - "symbol": "PASG", - "name": "PASG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", - "decimals": 6, - "coingecko_id": "passage", - "recommended_symbol": "PASG" + "is_svm": false, + "symbol": "GODDARD", + "name": "GODDARD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg", + "decimals": 6, + "recommended_symbol": "GODDARD" }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "denom": "ibc/E3A67C68E14A8588BDBDA04F992E443F49DB2529639D6DCDCD113BF5044F0605", "chain_id": "archway-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0", + "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-61", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "ECLIP", + "name": "ECLIP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "eclipse-fi", + "recommended_symbol": "ECLIP" }, { - "denom": "ibc/3ACDA66C4E615E45AA55DE1360C92CF5BD89E7CAB2F4617516B99372BDBAAA07", + "denom": "ibc/EEEF1FE5F4C01CAF351AAC0F6AFFC3C777578DE4D5B1E257091FE185F5991F15", "chain_id": "archway-1", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-11", + "origin_denom": "udvpn", + "origin_chain_id": "sentinelhub-2", + "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "is_svm": false, + "symbol": "DVPN", + "name": "DVPN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", "decimals": 6, - "recommended_symbol": "WINK" + "coingecko_id": "sentinel", + "recommended_symbol": "DVPN" }, { - "denom": "ibc/A399023C1ACCA397C485D5A9EAC9EFEC32C2664A99A1D9E41C758D8863FF21EC", + "denom": "ibc/FBDF85EF021068F5618F8E1017E1DF4CB235C20ECE324D3FE40FAAEA3B2AD878", "chain_id": "archway-1", - "origin_denom": "unois", - "origin_chain_id": "nois-1", - "trace": "transfer/channel-17", + "origin_denom": "stk/uosmo", + "origin_chain_id": "core-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "NOIS", - "name": "NOIS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "is_svm": false, + "symbol": "stkOSMO", + "name": "stkOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", "decimals": 6, - "recommended_symbol": "NOIS" + "coingecko_id": "pstake-staked-osmo", + "recommended_symbol": "stkOSMO" }, { - "denom": "ibc/A848807F524E08C87BF9B95275D29D892A2248E9C4A602C3FF9B69607CCDC5C5", + "denom": "ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D", "chain_id": "archway-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-21", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/EEEF1FE5F4C01CAF351AAC0F6AFFC3C777578DE4D5B1E257091FE185F5991F15", + "denom": "ibc/4A56C5B7B9B26F8F094469D083AF7C26C27B8267E132B5AED5A43A9BF95FDF0A", "chain_id": "archway-1", - "origin_denom": "udvpn", - "origin_chain_id": "sentinelhub-2", - "trace": "transfer/channel-118", + "origin_denom": "uqck", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "DVPN", - "name": "DVPN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", "decimals": 6, - "coingecko_id": "sentinel", - "recommended_symbol": "DVPN" + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" + }, + { + "denom": "ibc/A399023C1ACCA397C485D5A9EAC9EFEC32C2664A99A1D9E41C758D8863FF21EC", + "chain_id": "archway-1", + "origin_denom": "unois", + "origin_chain_id": "nois-1", + "trace": "transfer/channel-17", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NOIS", + "name": "NOIS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "decimals": 6, + "recommended_symbol": "NOIS" }, { "denom": "ibc/3BEA25F3A13A9C17476C821CCF8ECCC84351DDB7B1B06B98654C3B4427F785CC", @@ -1124,6 +1393,7 @@ "trace": "transfer/channel-15", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "JUNO", "name": "JUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", @@ -1139,6 +1409,7 @@ "trace": "transfer/channel-100", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "TIA", "name": "TIA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", @@ -1147,79 +1418,230 @@ "recommended_symbol": "TIA" }, { - "denom": "ibc/8CB56C813A5C2387140BBEAABCCE797AFA0960C8D07B171F71A5188726CFED2C", + "denom": "ibc/BF8BDCAA292B56035E669D80711D9881CC96796AC6BCB0376836FAD045355E37", "chain_id": "archway-1", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-20", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-55", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "ibc/926432AE1C5FA4F857B36D970BE7774C7472079506820B857B75C5DE041DD7A3", + "denom": "ibc/27357E0424B1895B62F7A63584266AA6C6E536B2830416C16440A17AD9837AD3", "chain_id": "archway-1", - "origin_denom": "ujkl", - "origin_chain_id": "jackal-1", - "trace": "transfer/channel-14", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, - "symbol": "JKL", - "name": "JKL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "coingecko_id": "jackal-protocol", - "recommended_symbol": "JKL" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/9428981CEA5DA704D99DD51AAB2EC62359178392B667138CD4480B3F6585E71C", + "denom": "ibc/381C09E1B743A8D893DF43B0861FE77AB2C437ED4BE10CB827A0A38285C11977", "chain_id": "archway-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-102", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "is_svm": false, + "symbol": "SHD", + "name": "SHD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" + }, + { + "denom": "ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C", + "chain_id": "archway-1", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-38", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" }, { - "denom": "ibc/9E3CDA65E02637E219B43802452D6B37D782F466CF76ECB9F47A2E00C07C4769", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "chain_id": "archway-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-61", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7", + "denom": "ibc/13C5990F84FA5D472E1F8BB1BAAEA8774DA5F24128EC02B119107AD21FB52A61", "chain_id": "archway-1", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-38", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-13", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WETH", "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" + }, + { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "chain_id": "archway-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, + { + "denom": "ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA", + "chain_id": "archway-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-38", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "decimals": 6, + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" + }, + { + "denom": "ibc/E6208E49B5FA2353C9C47D2EB9AABA03FED788E4970C7C623F6B511263E7CB11", + "chain_id": "archway-1", + "origin_denom": "ubtsg", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-124", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "decimals": 6, + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG" + }, + { + "denom": "ibc/F6849F4A8B62F2B3B262D4B51D3E0EE4CC6294B046B79D72EC64796A97474127", + "chain_id": "archway-1", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-13", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" + }, + { + "denom": "aarch", + "chain_id": "archway-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "description": "The native token of Archway network", + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, + { + "denom": "ibc/3ACDA66C4E615E45AA55DE1360C92CF5BD89E7CAB2F4617516B99372BDBAAA07", + "chain_id": "archway-1", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-11", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "decimals": 6, + "recommended_symbol": "WINK" + }, + { + "denom": "ibc/3ADFF4F968EEDD4DF348A3C9B9293560845262246A2687EF3036E1ACA2E034E0", + "chain_id": "archway-1", + "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-61", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NEWT", + "name": "NEWT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "decimals": 6, + "coingecko_id": "newt", + "recommended_symbol": "NEWT" + }, + { + "denom": "ibc/4FC395BDCDCD4A3A681C0D222EE64B610AEDB215DB8D18F46B575357F27CD6A7", + "chain_id": "archway-1", + "origin_denom": "upasg", + "origin_chain_id": "passage-2", + "trace": "transfer/channel-116", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PASG", + "name": "PASG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", + "decimals": 6, + "coingecko_id": "passage", + "recommended_symbol": "PASG" }, { "denom": "ibc/55D94A32095A766971637425D998AAABF8357A1ABCB1CAC8614887BE51BF1FB1", @@ -1229,6 +1651,7 @@ "trace": "transfer/channel-97", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ANDR", "name": "ANDR", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", @@ -1244,6 +1667,7 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "LVN", "name": "LVN", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", @@ -1259,6 +1683,7 @@ "trace": "transfer/channel-38", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", @@ -1274,6 +1699,7 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WOSMO", "name": "WOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", @@ -1282,126 +1708,148 @@ "recommended_symbol": "WOSMO" }, { - "denom": "ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17", + "denom": "ibc/9428981CEA5DA704D99DD51AAB2EC62359178392B667138CD4480B3F6585E71C", "chain_id": "archway-1", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-38", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-102", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.grv" + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { - "denom": "ibc/BF8BDCAA292B56035E669D80711D9881CC96796AC6BCB0376836FAD045355E37", + "denom": "ibc/A848807F524E08C87BF9B95275D29D892A2248E9C4A602C3FF9B69607CCDC5C5", "chain_id": "archway-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-55", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/E21808AEBCB7E02F594897100186C126E3BC9A36B0974196AF116750A4573F06", + "denom": "ibc/ACFDD4DA449EF4925B5D90F19198E96966B6D425D550D7B5676164F303C5BDA7", "chain_id": "archway-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-13", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-38", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" + }, + { + "denom": "ibc/C0336ECF2DF64E7D2C98B1422EC2B38DE9EF33C34AAADF18C6F2E3FFC7BE3615", + "chain_id": "archway-1", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-20", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "axlUSDC" + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" }, { - "denom": "aarch", + "denom": "ibc/C2CFB1C37C146CF95B0784FD518F8030FEFC76C5800105B1742FB65FFE65F873", "chain_id": "archway-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-104", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "description": "The native token of Archway network", - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "decimals": 6, + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/13C5990F84FA5D472E1F8BB1BAAEA8774DA5F24128EC02B119107AD21FB52A61", + "denom": "ibc/7F6928F9DB35D5A420330B9470EA4419B5F305EEB668D3274FC1ACDAC325ED17", "chain_id": "archway-1", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-13", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-38", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "decimals": 6, + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv" }, { - "denom": "ibc/27357E0424B1895B62F7A63584266AA6C6E536B2830416C16440A17AD9837AD3", + "denom": "ibc/8E6E7AB89246F87DA936F0EEA0A40654E7FB6B0C3E834F447EB444AAD95A106F", "chain_id": "archway-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-11", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" }, { - "denom": "ibc/40E10C9B078055FFC5D25166268107A81BBCAE78C62F17A07969F05B7E31F55C", + "denom": "ibc/926432AE1C5FA4F857B36D970BE7774C7472079506820B857B75C5DE041DD7A3", "chain_id": "archway-1", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-38", + "origin_denom": "ujkl", + "origin_chain_id": "jackal-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.grv" + "is_svm": false, + "symbol": "JKL", + "name": "JKL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "decimals": 6, + "coingecko_id": "jackal-protocol", + "recommended_symbol": "JKL" }, { - "denom": "ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D", + "denom": "ibc/9E3CDA65E02637E219B43802452D6B37D782F466CF76ECB9F47A2E00C07C4769", "chain_id": "archway-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-29", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-61", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { "denom": "ibc/CF326F6F0E8DCCD631159F23A60F1F5F31C81A46406D88641C130BA16D75280B", @@ -1411,12 +1859,29 @@ "trace": "transfer/channel-101", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DORA", "name": "DORA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", "decimals": 18, "recommended_symbol": "DORA" }, + { + "denom": "ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73", + "chain_id": "archway-1", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" + }, { "denom": "ibc/CFD58F8A64F93940D00CABE85B05A6D0FBA1FF4DF42D3C1E23C06DF30A2BAE1F", "chain_id": "archway-1", @@ -1425,6 +1890,7 @@ "trace": "transfer/channel-112", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PLQ", "name": "PLQ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", @@ -1433,49 +1899,52 @@ "recommended_symbol": "PLQ" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/E21808AEBCB7E02F594897100186C126E3BC9A36B0974196AF116750A4573F06", "chain_id": "archway-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", - "is_cw20": false, - "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-13", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "axlusdc", + "recommended_symbol": "axlUSDC" }, { - "denom": "ibc/3A790199A36516FA5D6889B3C6C9AC31944E44A0CD30EF122028C8CEA570E7EC", + "denom": "ibc/55967CD055E19BF374A2556456C5760DAFDCF1D86DD85FAD08DBA806964DB2C4", "chain_id": "archway-1", - "origin_denom": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-61", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-106", "is_cw20": false, "is_evm": false, - "symbol": "GODDARD", - "name": "GODDARD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "recommended_symbol": "GODDARD" + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/8E6E7AB89246F87DA936F0EEA0A40654E7FB6B0C3E834F447EB444AAD95A106F", + "denom": "ibc/8CB56C813A5C2387140BBEAABCCE797AFA0960C8D07B171F71A5188726CFED2C", "chain_id": "archway-1", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "transfer/channel-37", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", "decimals": 6, - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { "denom": "ibc/8EEA04FE0A41BC54A0F497749DD591191AF4C2F04F5A411542331FF81872E1E3", @@ -1485,6 +1954,7 @@ "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USK", "name": "USK", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", @@ -1493,49 +1963,19 @@ "recommended_symbol": "USK" }, { - "denom": "ibc/C0336ECF2DF64E7D2C98B1422EC2B38DE9EF33C34AAADF18C6F2E3FFC7BE3615", - "chain_id": "archway-1", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-20", - "is_cw20": false, - "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", - "decimals": 6, - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" - }, - { - "denom": "ibc/EA536E5F63A259E4D80719728CB386D03CD66AFE4E1D6A39EE88198CF964485E", - "chain_id": "archway-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-57", - "is_cw20": false, - "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" - }, - { - "denom": "ibc/31D711D31CD5D83D98E76B1486EEDA1A38CD1F7D6FCBD03521FE51323115AECA", + "denom": "ibc/28A2923B26BD4CED9D664B032904D37AABE1F08E8C9E97B0FA18E885CA978EBC", "chain_id": "archway-1", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-38", + "origin_denom": "umpwr", + "origin_chain_id": "empowerchain-1", + "trace": "transfer/channel-111", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "MPWR", + "name": "MPWR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", "decimals": 6, - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" + "recommended_symbol": "MPWR" }, { "denom": "ibc/3A2DEEBCD51D0B74FE7CE058D40B0BF4C0E556CE9219E8F25F92CF288FF35F56", @@ -1545,6 +1985,7 @@ "trace": "transfer/channel-13", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WBTC", "name": "WBTC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", @@ -1560,411 +2001,471 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "UMEE", "name": "UMEE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, "coingecko_id": "umee", "recommended_symbol": "UMEE" - }, - { - "denom": "ibc/E3A67C68E14A8588BDBDA04F992E443F49DB2529639D6DCDCD113BF5044F0605", - "chain_id": "archway-1", - "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-61", - "is_cw20": false, - "is_evm": false, - "symbol": "ECLIP", - "name": "ECLIP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", - "decimals": 6, - "coingecko_id": "eclipse-fi", - "recommended_symbol": "ECLIP" } ] }, "axelar-dojo-1": { "assets": [ { - "denom": "ibc/8AB88C0D359840C50442995B8053323F94BAC6AF040E12F7F2517EDD5475A909", + "denom": "ibc/75AC131F3A8E45A94CDBD0E554B22F297B68A27CFA0DF28A0D3D7EA531B29828", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "stinj", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "SAIL", - "name": "SAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", - "decimals": 6, - "recommended_symbol": "SAIL" + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "decimals": 18, + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "wbtc-satoshi", + "denom": "ibc/904127FBA8462A67ABE600B66DA04A51E7301F82757E58592078087F28757359", "chain_id": "axelar-dojo-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-111", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "description": "Wrapped Bitcoin on Axelar", - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/384FF3C9CCBA40062911D6EB2BA9C4B1B3B8DB501F126FC4E10D057C0CC67D7B", + "denom": "ibc/94286FA9D651A563E243556879EFFD777E31192F7FF85E1A78661E6C6CE39552", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7edDfnf4mku8So3t4Do215GNHwASEwCWrdhM5GqD51xZ", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-103", + "origin_denom": "factory/inj13jjdsa953w03dvecsr43dj5r6a2vzt7n0spncv/brett", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "USDCar", - "name": "USDCar", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "BRETT", + "name": "BluePepe", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/Brett.png", "decimals": 6, - "coingecko_id": "usd-coin-wormhole-arb", - "recommended_symbol": "USDCar" + "recommended_symbol": "BRETT" }, { - "denom": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", + "denom": "ibc/8DB695F4C0D5C0F82B147DDABED413AEBDA586CDDB9C7CBE705041B5EBCB5C4E", "chain_id": "axelar-dojo-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-78", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "ibc/449794253B2DCC4B539FED01A8CA80A3879A631A1E9E4BBAD3E207BDBE24C54D", + "denom": "ibc/BBC73A51A2EC44D3ECDF50891D06E38355B2B8ABE4F5ACD624C4C60691479EC4", "chain_id": "axelar-dojo-1", - "origin_denom": "ukyve", - "origin_chain_id": "kyve-1", - "trace": "transfer/channel-75", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "KYVE", - "name": "KYVE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", "decimals": 6, - "coingecko_id": "kyve-network", - "recommended_symbol": "KYVE" + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" }, { - "denom": "ibc/FC48493C53C0A6EF28A191F42A65500643DDF8A0B5B89ADF3FC5FCB60AA6D92A", + "denom": "ibc/2F740C82769D1D7697CFB3D211F952E835AFD9C1852D23B49F3FA7F0475D794B", "chain_id": "axelar-dojo-1", - "origin_denom": "ubcre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-7", + "origin_denom": "ubtsg", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-145", "is_cw20": false, "is_evm": false, - "symbol": "bCRE", - "name": "bCRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", "decimals": 6, - "coingecko_id": "liquid-staking-crescent", - "recommended_symbol": "bCRE" + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG" }, { - "denom": "mkr-wei", + "denom": "yieldeth-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "mkr-wei", + "origin_denom": "yieldeth-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MKR", - "name": "MKR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", + "is_svm": false, + "symbol": "YieldETH", + "name": "YieldETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", "decimals": 18, - "description": "Maker on Axelar", - "coingecko_id": "maker", - "recommended_symbol": "MKR.axl" + "recommended_symbol": "YieldETH.axl" }, { - "denom": "ibc/8DB695F4C0D5C0F82B147DDABED413AEBDA586CDDB9C7CBE705041B5EBCB5C4E", + "denom": "ibc/553507B81B0A26B2FF168B2A56A7CEB7C75491994D2DB5784AC6E40874E27E63", "chain_id": "axelar-dojo-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-78", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-42", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/CFB9D610B7BB02E8E6FDB0AF87FCADDF97687A3F13E76AC624C500E54335ADAA", + "denom": "uusdt", "chain_id": "axelar-dojo-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-64", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "description": "Tether's USD stablecoin on Axelar", + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "link-wei", + "denom": "wbnb-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "link-wei", + "origin_denom": "wbnb-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", "decimals": 18, - "description": "Chainlink on Axelar", - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.axl" + "description": "Wrapped BNB on Axelar", + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "mpx-wei", + "denom": "wbtc-satoshi", "chain_id": "axelar-dojo-1", - "origin_denom": "mpx-wei", + "origin_denom": "wbtc-satoshi", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "axlMPX", - "name": "axlMPX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/fantom/asset/mpx.png", - "decimals": 18, - "coingecko_id": "mpx", - "recommended_symbol": "MPX.axl" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "description": "Wrapped Bitcoin on Axelar", + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/0F9EA9664729F336E5DC0FCB341E1C1993B6A272F5E4003CA74D9F8D54CEF43A", + "denom": "wfil-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-138", + "origin_denom": "wfil-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "is_svm": false, + "symbol": "axlFIL", + "name": "axlFIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "description": "Wrapped FIL on Axelar", + "coingecko_id": "filecoin", + "recommended_symbol": "FIL.axl" }, { - "denom": "ibc/5336218FAC4BC06222A3FDD158602CBAAAAE1B16D4B738732C03F6ABDDB1E948", + "denom": "wftm-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "uregen", - "origin_chain_id": "regen-1", - "trace": "transfer/channel-29", + "origin_denom": "wftm-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "REGEN", - "name": "REGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", - "decimals": 6, - "description": "Regen Staking Coin", - "coingecko_id": "regen", - "recommended_symbol": "REGEN" + "is_svm": false, + "symbol": "WFTM", + "name": "WFTM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "decimals": 18, + "description": "Wrapped FTM on Axelar.", + "coingecko_id": "wrapped-fantom", + "recommended_symbol": "WFTM.axl" }, { - "denom": "ibc/17F12F5F038242355C41E838BCC72781276D68302DF7DD09DAB8E6C2832D8F38", + "denom": "wsteth-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-41", + "origin_denom": "wsteth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", - "decimals": 6, - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH.axl" }, { - "denom": "ibc/AF4CF77A64B784DE1C40471BBB366722DBE7FFEB8C42C71D2B7FB447BA193549", + "denom": "cbeth-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "cbeth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC" + "is_svm": false, + "symbol": "cbETH", + "name": "cbETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", + "decimals": 18, + "coingecko_id": "coinbase-wrapped-staked-eth", + "recommended_symbol": "cbETH.axl" }, { - "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "denom": "frax-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "frax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "is_svm": false, + "symbol": "FRAX", + "name": "FRAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", + "decimals": 18, + "description": "Frax's fractional-algorithmic stablecoin on Axelar", + "coingecko_id": "frax", + "recommended_symbol": "FRAX.axl" }, { - "denom": "ibc/D291F4E93D038050723AD2CE0DF40302D2B6DD00C36DEFD30548DACCDDCCA540", + "denom": "ibc/5C0373CBBAAA662E7603B6F636D119B8CB2EB7A7CA9058EA06491E23F4108294", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-13", + "origin_denom": "factory/inj1zq37mfquqgud2uqemqdkyv36gdstkxl27pj5e3/bulls", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "BULLS", + "name": "Alpha Bulls", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/bulls.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "recommended_symbol": "BULLS" }, { - "denom": "ibc/B76399CD0009818F7D347EEC032A4E472173D12F0DC99C2ACFB6BEFCC01030E3", + "denom": "ibc/F42AC6E51C46D30F7F39ADCA1A38E29374745771F23AB3250444F09EBBB4A107", "chain_id": "axelar-dojo-1", - "origin_denom": "afet", - "origin_chain_id": "fetchhub-4", - "trace": "transfer/channel-21", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "FET", - "name": "FET", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", - "decimals": 18, - "description": "Fetch.ai Staking Coin", - "coingecko_id": "fetch-ai", - "recommended_symbol": "FET" + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/BEEBCB44C03068B40BD4709196D5205ED2F78878611D41BC56DD223410AEF4AF", + "denom": "ibc/F55DBF1BC76269EF3928D76E278A843D7577DE0BA07DBA7D2F14E4BBA2825CC9", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "recommended_symbol": "WOSMO" + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "ibc/DA8D591FFA8836FDF3AD0F9F8AF4EAA77D9D4F23DA3D10DFD1FC3B9A3644B26D", + "denom": "ibc/F8F36BBEFFD1B311D5D3A7B8E6B3C03DBF707D4E5FE045B18221D8DF12E481C3", "chain_id": "axelar-dojo-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-36", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-125", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "wglmr-wei", + "denom": "polygon-uusdc", "chain_id": "axelar-dojo-1", - "origin_denom": "wglmr-wei", + "origin_denom": "polygon-uusdc", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WGLMR", - "name": "WGLMR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", - "decimals": 18, - "description": "Wrapped Moonbeam on Axelar", - "coingecko_id": "wrapped-moonbeam", - "recommended_symbol": "WGLMR.axl" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "description": "Circle's stablecoin from Polygon on Axelar", + "recommended_symbol": "USDC.axl.polygon" }, { - "denom": "yieldeth-wei", + "denom": "uni-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "yieldeth-wei", + "origin_denom": "uni-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "YieldETH", - "name": "YieldETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "is_svm": false, + "symbol": "UNI", + "name": "UNI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", "decimals": 18, - "recommended_symbol": "YieldETH.axl" + "description": "Uniswap on Axelar", + "coingecko_id": "uniswap", + "recommended_symbol": "UNI.axl" }, { - "denom": "cusd-wei", + "denom": "ibc/9FD79FAFC071C4F858860C44C942F5A108EC9562BBDD26374EC8966C0287D95F", "chain_id": "axelar-dojo-1", - "origin_denom": "cusd-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", - "is_cw20": false, + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-135", + "is_cw20": false, "is_evm": false, - "symbol": "cUSD", - "name": "cUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/celo/asset/cusd.png", + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "decimals": 6, + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" + }, + { + "denom": "ibc/A139C0E0B5E87CBA8EAEEB12B9BEE13AC7C814CFBBFA87BBCADD67E31003466C", + "chain_id": "axelar-dojo-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-18", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "decimals": 6, + "description": "Stargaze Staking Coin", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" + }, + { + "denom": "ibc/CCEB6CEE970DF3D573DF4DFCBD5B7BC7B614F0CD6ECA7C56F9DE35D2676C00FC", + "chain_id": "axelar-dojo-1", + "origin_denom": "axpla", + "origin_chain_id": "dimension_37-1", + "trace": "transfer/channel-49", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "XPLA", + "name": "XPLA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", "decimals": 18, - "coingecko_id": "celo-dollar", - "recommended_symbol": "cUSD.axl" + "coingecko_id": "xpla", + "recommended_symbol": "XPLA" }, { - "denom": "ibc/1EDB735A58AA984F6FF11E332077D8A05D5E70E355427C2CF419BD1566FC1E2C", + "denom": "ibc/CFB9D610B7BB02E8E6FDB0AF87FCADDF97687A3F13E76AC624C500E54335ADAA", "chain_id": "axelar-dojo-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-14", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "description": "Kujira Staking Coin", - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/4D4A1D1E93450D7BE94F86BF8BC06C157D841949FBDB65B168CC38611CFBB30F", + "denom": "ibc/DA8D591FFA8836FDF3AD0F9F8AF4EAA77D9D4F23DA3D10DFD1FC3B9A3644B26D", "chain_id": "axelar-dojo-1", - "origin_denom": "uaura", - "origin_chain_id": "xstaxy-1", - "trace": "transfer/channel-104", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "AURA", - "name": "AURA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "coingecko_id": "aura-network", - "recommended_symbol": "AURA" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" + }, + { + "denom": "link-wei", + "chain_id": "axelar-dojo-1", + "origin_denom": "link-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "decimals": 18, + "description": "Chainlink on Axelar", + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.axl" }, { "denom": "ape-wei", @@ -1974,6 +2475,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "APE", "name": "APE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg", @@ -1983,123 +2485,115 @@ "recommended_symbol": "APE.axl" }, { - "denom": "busd-wei", + "denom": "ibc/64E172EE7DCCA19E715FDBB23599E09672232C121B32D7E93F79767560A0B427", "chain_id": "axelar-dojo-1", - "origin_denom": "busd-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "uwhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-121", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "description": "Binance USD on Axelar.", - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD.axl" + "is_svm": false, + "symbol": "WHALE", + "name": "WHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "decimals": 6, + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" }, { - "denom": "cbeth-wei", + "denom": "ibc/BEEBCB44C03068B40BD4709196D5205ED2F78878611D41BC56DD223410AEF4AF", "chain_id": "axelar-dojo-1", - "origin_denom": "cbeth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "cbETH", - "name": "cbETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", - "decimals": 18, - "coingecko_id": "coinbase-wrapped-staked-eth", - "recommended_symbol": "cbETH.axl" + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "decimals": 6, + "recommended_symbol": "WOSMO" }, { - "denom": "ibc/2D8E9EFD72E321DF6AC6BDEC41F54DAA1F7E401C25C61D42F81DE1C910B126FE", + "denom": "ibc/4D4A1D1E93450D7BE94F86BF8BC06C157D841949FBDB65B168CC38611CFBB30F", "chain_id": "axelar-dojo-1", - "origin_denom": "peggy0xb2617246d0c6c0087f18703d576831899ca94f01", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-10", + "origin_denom": "uaura", + "origin_chain_id": "xstaxy-1", + "trace": "transfer/channel-104", "is_cw20": false, "is_evm": false, - "symbol": "ZIG", - "name": "ZIG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zig.png", - "decimals": 18, - "coingecko_id": "zignaly", - "recommended_symbol": "ZIG.peggy" + "is_svm": false, + "symbol": "AURA", + "name": "AURA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "decimals": 6, + "coingecko_id": "aura-network", + "recommended_symbol": "AURA" }, { - "denom": "ibc/6A7D41B70615D8CA1A86ACCBB369A3429D6C31889C392559847B642C05CB0B91", + "denom": "ibc/0F9EA9664729F336E5DC0FCB341E1C1993B6A272F5E4003CA74D9F8D54CEF43A", "chain_id": "axelar-dojo-1", - "origin_denom": "cgt/1", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-37", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-138", "is_cw20": false, "is_evm": false, - "symbol": "USD", - "name": "USD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", "decimals": 18, - "recommended_symbol": "USD" + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "ibc/E94D6C0D4076E91E75C331B3B9075EDB4A5714A9516A86B75DF4B4DC87944D7F", + "denom": "ibc/384FF3C9CCBA40062911D6EB2BA9C4B1B3B8DB501F126FC4E10D057C0CC67D7B", "chain_id": "axelar-dojo-1", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "transfer/channel-77", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7edDfnf4mku8So3t4Do215GNHwASEwCWrdhM5GqD51xZ", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-103", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "is_svm": false, + "symbol": "USDCar", + "name": "USDCar", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "coingecko_id": "usd-coin-wormhole-arb", + "recommended_symbol": "USDCar" }, { - "denom": "ibc/EA2F9730C3496ED83479D9238515311A9AFA60E3D24A3419BECDF2A2A8152F8C", + "denom": "ibc/449794253B2DCC4B539FED01A8CA80A3879A631A1E9E4BBAD3E207BDBE24C54D", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "ukyve", + "origin_chain_id": "kyve-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "KYVE", + "name": "KYVE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "coingecko_id": "kyve-network", + "recommended_symbol": "KYVE" }, { - "denom": "ibc/94286FA9D651A563E243556879EFFD777E31192F7FF85E1A78661E6C6CE39552", + "denom": "ibc/B090DC21658BD57698522880590CA53947B8B09355764131AA94EC75517D46A5", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/inj13jjdsa953w03dvecsr43dj5r6a2vzt7n0spncv/brett", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-10", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "BRETT", - "name": "BluePepe", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/Brett.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "recommended_symbol": "BRETT" - }, - { - "denom": "ibc/05505690FCCF0780BA52186E5A9003D3643B47689819333C57DA584BBF148021", - "chain_id": "axelar-dojo-1", - "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-78", - "is_cw20": false, - "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { "denom": "ibc/07B3CA39C1A40FE3ACF1CA5CCBC92D7C37957AE35D41E1954AF4951250AC2961", @@ -2109,6 +2603,7 @@ "trace": "transfer/channel-103", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SEI", "name": "SEI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", @@ -2116,6 +2611,88 @@ "coingecko_id": "sei-network", "recommended_symbol": "SEI" }, + { + "denom": "ibc/B76399CD0009818F7D347EEC032A4E472173D12F0DC99C2ACFB6BEFCC01030E3", + "chain_id": "axelar-dojo-1", + "origin_denom": "afet", + "origin_chain_id": "fetchhub-4", + "trace": "transfer/channel-21", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "FET", + "name": "FET", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", + "decimals": 18, + "description": "Fetch.ai Staking Coin", + "coingecko_id": "fetch-ai", + "recommended_symbol": "FET" + }, + { + "denom": "ibc/D291F4E93D038050723AD2CE0DF40302D2B6DD00C36DEFD30548DACCDDCCA540", + "chain_id": "axelar-dojo-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-13", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" + }, + { + "denom": "reth-wei", + "chain_id": "axelar-dojo-1", + "origin_denom": "reth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "rETH", + "name": "rETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", + "decimals": 18, + "coingecko_id": "rocket-pool-eth", + "recommended_symbol": "rETH.axl" + }, + { + "denom": "uusdc", + "chain_id": "axelar-dojo-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "description": "Circle's stablecoin on Axelar", + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/4D5EB920B907F2270899EE1B196B44A8764E28847EEA42E70530685125EE6DA9", + "chain_id": "axelar-dojo-1", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-120", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "decimals": 6, + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" + }, { "denom": "ibc/4D6975AACA0DA11B982F539300687B86B3E3AEF509C0D4F6D5AC2A27BFB236D8", "chain_id": "axelar-dojo-1", @@ -2124,6 +2701,7 @@ "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDT", "name": "USDT", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", @@ -2132,94 +2710,117 @@ "recommended_symbol": "USDT.peggy" }, { - "denom": "ibc/B090DC21658BD57698522880590CA53947B8B09355764131AA94EC75517D46A5", + "denom": "ibc/5336218FAC4BC06222A3FDD158602CBAAAAE1B16D4B738732C03F6ABDDB1E948", "chain_id": "axelar-dojo-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-7", + "origin_denom": "uregen", + "origin_chain_id": "regen-1", + "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "REGEN", + "name": "REGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "description": "Regen Staking Coin", + "coingecko_id": "regen", + "recommended_symbol": "REGEN" }, { - "denom": "ibc/B64A07C006C0F5E260A8AD50BD53568F1FD4A0D75B7A9F8765C81BEAFDA62053", + "denom": "ibc/9E3EB38E5E157AEBFF4A8EAC66E654BC8ECFCB1F758F4D1C0F2D65945E9E2935", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, + { + "denom": "ibc/EA2F9730C3496ED83479D9238515311A9AFA60E3D24A3419BECDF2A2A8152F8C", + "chain_id": "axelar-dojo-1", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/CCEB6CEE970DF3D573DF4DFCBD5B7BC7B614F0CD6ECA7C56F9DE35D2676C00FC", + "denom": "aave-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "axpla", - "origin_chain_id": "dimension_37-1", - "trace": "transfer/channel-49", + "origin_denom": "aave-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "XPLA", - "name": "XPLA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", + "is_svm": false, + "symbol": "AAVE", + "name": "AAVE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg", "decimals": 18, - "coingecko_id": "xpla", - "recommended_symbol": "XPLA" + "description": "Aave on Axelar", + "coingecko_id": "aave", + "recommended_symbol": "AAVE.axl" }, { - "denom": "ibc/553507B81B0A26B2FF168B2A56A7CEB7C75491994D2DB5784AC6E40874E27E63", + "denom": "ibc/05505690FCCF0780BA52186E5A9003D3643B47689819333C57DA584BBF148021", "chain_id": "axelar-dojo-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-42", + "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-78", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", - "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH" }, { - "denom": "ibc/5B0968D76C6250F0824BD0BB4317DB34E884A14B345C83FB8256809855AC7CA7", + "denom": "ibc/6A7D41B70615D8CA1A86ACCBB369A3429D6C31889C392559847B642C05CB0B91", "chain_id": "axelar-dojo-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-12", + "origin_denom": "cgt/1", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "description": "Secret Staking Coin", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "is_svm": false, + "symbol": "USD", + "name": "USD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "decimals": 18, + "recommended_symbol": "USD" }, { - "denom": "ibc/5C0373CBBAAA662E7603B6F636D119B8CB2EB7A7CA9058EA06491E23F4108294", + "denom": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/inj1zq37mfquqgud2uqemqdkyv36gdstkxl27pj5e3/bulls", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-10", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "BULLS", - "name": "Alpha Bulls", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/bulls.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "recommended_symbol": "BULLS" + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { "denom": "ibc/73D370D177CC659EA123B423D1AC194F0733537E5A346ECEA1DCBC8FEBB45FD3", @@ -2229,6 +2830,7 @@ "trace": "transfer/channel-22", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "EVMOS", "name": "EVMOS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", @@ -2238,18 +2840,68 @@ "recommended_symbol": "EVMOS" }, { - "denom": "ibc/9202DCA285D84E4C18A8ABF4D17A1576DBCB0ADE7AA268CECE6FBAA2CC966055", + "denom": "ibc/ADF401C952ADD9EE232D52C8303B8BE17FE7953C8D420F20769AF77240BD0C58", "chain_id": "axelar-dojo-1", - "origin_denom": "factory/inj13vau2mgx6mg7ams9nngjhyng58tl9zyw0n8s93/BABYKIRA", + "origin_denom": "inj", "origin_chain_id": "injective-1", "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "Babykira", - "name": "Babykira", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/babykira.png", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "description": "Injective Staking Coin", + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" + }, + { + "denom": "ibc/B755889E03BCC776D971B24434A22F9907CC4745116A032CC0179730510C509E", + "chain_id": "axelar-dojo-1", + "origin_denom": "umpwr", + "origin_chain_id": "empowerchain-1", + "trace": "transfer/channel-109", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MPWR", + "name": "MPWR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", "decimals": 6, - "recommended_symbol": "Babykira" + "recommended_symbol": "MPWR" + }, + { + "denom": "ibc/AD211FEDD6DF0EDA18873D4E2A49972759BD761D96C3BBD9D6731FDC3F948F93", + "chain_id": "axelar-dojo-1", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-41", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "decimals": 6, + "coingecko_id": "agoric", + "recommended_symbol": "BLD" + }, + { + "denom": "ibc/C8CD08055E69E0E3EE115CC1665FBFB3448227ED043DE6C3C71F8E1940045534", + "chain_id": "axelar-dojo-1", + "origin_denom": "stuluna", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-64", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stLUNA", + "name": "stLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "decimals": 6, + "coingecko_id": "stride-staked-luna", + "recommended_symbol": "stLUNA" }, { "denom": "ibc/F236A548FDC4436557B13919391109309C2FF58D7E89C3C8840C2C703E582DCD", @@ -2259,6 +2911,7 @@ "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "TORI", "name": "TORI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", @@ -2267,206 +2920,167 @@ "recommended_symbol": "TORI" }, { - "denom": "uni-wei", + "denom": "weth-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "uni-wei", + "origin_denom": "weth-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UNI", - "name": "UNI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", "decimals": 18, - "description": "Uniswap on Axelar", - "coingecko_id": "uniswap", - "recommended_symbol": "UNI.axl" + "description": "Wrapped Ether on Axelar", + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/F42AC6E51C46D30F7F39ADCA1A38E29374745771F23AB3250444F09EBBB4A107", + "denom": "ibc/AF4CF77A64B784DE1C40471BBB366722DBE7FFEB8C42C71D2B7FB447BA193549", "chain_id": "axelar-dojo-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-64", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" - }, - { - "denom": "ibc/F55DBF1BC76269EF3928D76E278A843D7577DE0BA07DBA7D2F14E4BBA2825CC9", - "chain_id": "axelar-dojo-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-31", - "is_cw20": false, - "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", - "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" }, { - "denom": "ibc/F8F36BBEFFD1B311D5D3A7B8E6B3C03DBF707D4E5FE045B18221D8DF12E481C3", + "denom": "ibc/DF9C2A453418DDCD76467432228E2D3A54B6427192C02047A36A66716DC4532E", "chain_id": "axelar-dojo-1", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-125", + "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-22", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", - "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "is_svm": false, + "symbol": "NEOK", + "name": "NEOK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "decimals": 18, + "recommended_symbol": "NEOK" }, { - "denom": "uusdc", + "denom": "ibc/E94D6C0D4076E91E75C331B3B9075EDB4A5714A9516A86B75DF4B4DC87944D7F", "chain_id": "axelar-dojo-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "transfer/channel-77", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", "decimals": 6, - "description": "Circle's stablecoin on Axelar", - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" }, { - "denom": "uusdt", + "denom": "ibc/FC48493C53C0A6EF28A191F42A65500643DDF8A0B5B89ADF3FC5FCB60AA6D92A", "chain_id": "axelar-dojo-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "ubcre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "bCRE", + "name": "bCRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", "decimals": 6, - "description": "Tether's USD stablecoin on Axelar", - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "coingecko_id": "liquid-staking-crescent", + "recommended_symbol": "bCRE" }, { - "denom": "wbnb-wei", + "denom": "arb-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "wbnb-wei", + "origin_denom": "arb-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", "decimals": 18, - "description": "Wrapped BNB on Axelar", - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "description": "Arbitrum on Axelar", + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB.axl" }, { - "denom": "dot-planck", + "denom": "mkr-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "dot-planck", + "origin_denom": "mkr-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DOT", - "name": "DOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "description": "Wrapped Polkadot on Axelar", - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "is_svm": false, + "symbol": "MKR", + "name": "MKR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", + "decimals": 18, + "description": "Maker on Axelar", + "coingecko_id": "maker", + "recommended_symbol": "MKR.axl" }, { - "denom": "frax-wei", + "denom": "pepe-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "frax-wei", + "origin_denom": "pepe-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FRAX", - "name": "FRAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", + "is_svm": false, + "symbol": "PEPE", + "name": "PEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", "decimals": 18, - "description": "Frax's fractional-algorithmic stablecoin on Axelar", - "coingecko_id": "frax", - "recommended_symbol": "FRAX.axl" + "coingecko_id": "pepe", + "recommended_symbol": "PEPE.axl" }, { - "denom": "wmatic-wei", + "denom": "sfrxeth-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "wmatic-wei", + "origin_denom": "sfrxeth-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "is_svm": false, + "symbol": "sfrxETH", + "name": "sfrxETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", "decimals": 18, - "description": "Wrapped Matic on Axelar", - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "coingecko_id": "staked-frax-ether", + "recommended_symbol": "sfrxETH.axl" }, { - "denom": "wsteth-wei", + "denom": "shib-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "wsteth-wei", + "origin_denom": "shib-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH.axl" - }, - { - "denom": "ibc/9E3EB38E5E157AEBFF4A8EAC66E654BC8ECFCB1F758F4D1C0F2D65945E9E2935", - "chain_id": "axelar-dojo-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-4", - "is_cw20": false, - "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" - }, - { - "denom": "ibc/9FD79FAFC071C4F858860C44C942F5A108EC9562BBDD26374EC8966C0287D95F", - "chain_id": "axelar-dojo-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-135", - "is_cw20": false, - "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", - "decimals": 6, - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "description": "Shiba Inu on Axelar", + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" }, { "denom": "steth-wei", @@ -2476,6 +3090,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stETH", "name": "stETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/steth.svg", @@ -2485,80 +3100,88 @@ "recommended_symbol": "stETH.axl" }, { - "denom": "ibc/904127FBA8462A67ABE600B66DA04A51E7301F82757E58592078087F28757359", + "denom": "uaxl", "chain_id": "axelar-dojo-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-111", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "description": "The native token of Axelar", + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "arb-wei", + "denom": "wavax-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "arb-wei", + "origin_denom": "wavax-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ARB", - "name": "ARB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "description": "Arbitrum on Axelar", - "coingecko_id": "arbitrum", - "recommended_symbol": "ARB.axl" + "description": "Wrapped AVAX on Axelar.", + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "avalanche-uusdc", + "denom": "wglmr-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "avalanche-uusdc", + "origin_denom": "wglmr-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "description": "Circle's stablecoin from Avalanche on Axelar", - "recommended_symbol": "USDC.axl.avalanche" + "is_svm": false, + "symbol": "WGLMR", + "name": "WGLMR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "decimals": 18, + "description": "Wrapped Moonbeam on Axelar", + "coingecko_id": "wrapped-moonbeam", + "recommended_symbol": "WGLMR.axl" }, { - "denom": "ibc/12A9901F2B585B3563C2AD4919D20ED478CCAB3D7F9ACBB76E829583B99B1DAA", + "denom": "wmatic-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "usomm", - "origin_chain_id": "sommelier-3", - "trace": "transfer/channel-72", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SOMM", - "name": "SOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", - "decimals": 6, - "coingecko_id": "sommelier", - "recommended_symbol": "SOMM" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "description": "Wrapped Matic on Axelar", + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { - "denom": "ibc/75AC131F3A8E45A94CDBD0E554B22F297B68A27CFA0DF28A0D3D7EA531B29828", + "denom": "ibc/3D4931D8D0FC8E1FF552C29F126C43448514DEDD156F4B6A5C7750D29A53FCCF", "chain_id": "axelar-dojo-1", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-64", + "origin_denom": "nhash", + "origin_chain_id": "pio-mainnet-1", + "trace": "transfer/channel-116", "is_cw20": false, "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "decimals": 18, - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "is_svm": false, + "symbol": "HASH", + "name": "HASH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", + "decimals": 9, + "coingecko_id": "provenance-blockchain", + "recommended_symbol": "HASH" }, { "denom": "ibc/99D621152AACE133907CEF4B599B1BD6281082D1BA156B6C1A50F15A9C7D418D", @@ -2568,6 +3191,7 @@ "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SWTH", "name": "SWTH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", @@ -2576,206 +3200,185 @@ "recommended_symbol": "SWTH" }, { - "denom": "ibc/A139C0E0B5E87CBA8EAEEB12B9BEE13AC7C814CFBBFA87BBCADD67E31003466C", + "denom": "ibc/B64A07C006C0F5E260A8AD50BD53568F1FD4A0D75B7A9F8765C81BEAFDA62053", "chain_id": "axelar-dojo-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-18", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "description": "Stargaze Staking Coin", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "sfrxeth-wei", + "denom": "avalanche-uusdc", "chain_id": "axelar-dojo-1", - "origin_denom": "sfrxeth-wei", + "origin_denom": "avalanche-uusdc", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "sfrxETH", - "name": "sfrxETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", - "decimals": 18, - "coingecko_id": "staked-frax-ether", - "recommended_symbol": "sfrxETH.axl" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "description": "Circle's stablecoin from Avalanche on Axelar", + "recommended_symbol": "USDC.axl.avalanche" }, { - "denom": "shib-wei", + "denom": "cusd-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "shib-wei", + "origin_denom": "cusd-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "is_svm": false, + "symbol": "cUSD", + "name": "cUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/celo/asset/cusd.png", "decimals": 18, - "description": "Shiba Inu on Axelar", - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" - }, - { - "denom": "uaxl", - "chain_id": "axelar-dojo-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "description": "The native token of Axelar", - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "celo-dollar", + "recommended_symbol": "cUSD.axl" }, { - "denom": "weth-wei", + "denom": "dai-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "weth-wei", + "origin_denom": "dai-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", "decimals": 18, - "description": "Wrapped Ether on Axelar", - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" + "description": "Dai stablecoin on Axelar", + "coingecko_id": "dai", + "recommended_symbol": "DAI.axl" }, { - "denom": "wfil-wei", + "denom": "ibc/12A9901F2B585B3563C2AD4919D20ED478CCAB3D7F9ACBB76E829583B99B1DAA", "chain_id": "axelar-dojo-1", - "origin_denom": "wfil-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "usomm", + "origin_chain_id": "sommelier-3", + "trace": "transfer/channel-72", "is_cw20": false, "is_evm": false, - "symbol": "axlFIL", - "name": "axlFIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", - "decimals": 18, - "description": "Wrapped FIL on Axelar", - "coingecko_id": "filecoin", - "recommended_symbol": "FIL.axl" + "is_svm": false, + "symbol": "SOMM", + "name": "SOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", + "decimals": 6, + "coingecko_id": "sommelier", + "recommended_symbol": "SOMM" }, { - "denom": "wftm-wei", + "denom": "ibc/5B0968D76C6250F0824BD0BB4317DB34E884A14B345C83FB8256809855AC7CA7", "chain_id": "axelar-dojo-1", - "origin_denom": "wftm-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-12", "is_cw20": false, "is_evm": false, - "symbol": "WFTM", - "name": "WFTM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", - "decimals": 18, - "description": "Wrapped FTM on Axelar.", - "coingecko_id": "wrapped-fantom", - "recommended_symbol": "WFTM.axl" + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "description": "Secret Staking Coin", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/64E172EE7DCCA19E715FDBB23599E09672232C121B32D7E93F79767560A0B427", + "denom": "ibc/6896F977DF5B427359BA77B5AF1052E5512D460F3CE59C8F6A7CB51408351F3C", "chain_id": "axelar-dojo-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-121", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "description": "Terra Staking Coin", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/AD211FEDD6DF0EDA18873D4E2A49972759BD761D96C3BBD9D6731FDC3F948F93", + "denom": "busd-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-41", + "origin_denom": "busd-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", - "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "decimals": 18, + "description": "Binance USD on Axelar.", + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD.axl" }, { - "denom": "ibc/ADF401C952ADD9EE232D52C8303B8BE17FE7953C8D420F20769AF77240BD0C58", + "denom": "ibc/2D8E9EFD72E321DF6AC6BDEC41F54DAA1F7E401C25C61D42F81DE1C910B126FE", "chain_id": "axelar-dojo-1", - "origin_denom": "inj", + "origin_denom": "peggy0xb2617246d0c6c0087f18703d576831899ca94f01", "origin_chain_id": "injective-1", "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "is_svm": false, + "symbol": "ZIG", + "name": "ZIG", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zig.png", "decimals": 18, - "description": "Injective Staking Coin", - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "coingecko_id": "zignaly", + "recommended_symbol": "ZIG.peggy" }, { - "denom": "ibc/C8CD08055E69E0E3EE115CC1665FBFB3448227ED043DE6C3C71F8E1940045534", + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", "chain_id": "axelar-dojo-1", - "origin_denom": "stuluna", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-64", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "stLUNA", - "name": "stLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "stride-staked-luna", - "recommended_symbol": "stLUNA" - }, - { - "denom": "dai-wei", - "chain_id": "axelar-dojo-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", - "decimals": 18, - "description": "Dai stablecoin on Axelar", - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ox-wei", + "denom": "mpx-wei", "chain_id": "axelar-dojo-1", - "origin_denom": "ox-wei", + "origin_denom": "mpx-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OX", - "name": "OX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg", + "is_svm": false, + "symbol": "axlMPX", + "name": "axlMPX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/fantom/asset/mpx.png", "decimals": 18, - "recommended_symbol": "OX.axl" + "coingecko_id": "mpx", + "recommended_symbol": "MPX.axl" }, { "denom": "rai-wei", @@ -2785,6 +3388,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "RAI", "name": "RAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg", @@ -2794,51 +3398,67 @@ "recommended_symbol": "RAI.axl" }, { - "denom": "reth-wei", + "denom": "ibc/52C9B73B0D9665A4FA1E973B001A83FCFF3B6062E44B564230D20536F1103112", "chain_id": "axelar-dojo-1", - "origin_denom": "reth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "unibi", + "origin_chain_id": "cataclysm-1", + "trace": "transfer/channel-139", "is_cw20": false, "is_evm": false, - "symbol": "rETH", - "name": "rETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", - "decimals": 18, - "coingecko_id": "rocket-pool-eth", - "recommended_symbol": "rETH.axl" + "is_svm": false, + "symbol": "NIBI", + "name": "NIBI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "decimals": 6, + "coingecko_id": "nibiru", + "recommended_symbol": "NIBI" }, { - "denom": "aave-wei", + "denom": "ibc/9202DCA285D84E4C18A8ABF4D17A1576DBCB0ADE7AA268CECE6FBAA2CC966055", "chain_id": "axelar-dojo-1", - "origin_denom": "aave-wei", + "origin_denom": "factory/inj13vau2mgx6mg7ams9nngjhyng58tl9zyw0n8s93/BABYKIRA", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-10", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "Babykira", + "name": "Babykira", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/babykira.png", + "decimals": 6, + "recommended_symbol": "Babykira" + }, + { + "denom": "ox-wei", + "chain_id": "axelar-dojo-1", + "origin_denom": "ox-wei", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AAVE", - "name": "AAVE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg", + "is_svm": false, + "symbol": "OX", + "name": "OX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg", "decimals": 18, - "description": "Aave on Axelar", - "coingecko_id": "aave", - "recommended_symbol": "AAVE.axl" + "recommended_symbol": "OX.axl" }, { - "denom": "ibc/6896F977DF5B427359BA77B5AF1052E5512D460F3CE59C8F6A7CB51408351F3C", + "denom": "ibc/1EDB735A58AA984F6FF11E332077D8A05D5E70E355427C2CF419BD1566FC1E2C", "chain_id": "axelar-dojo-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-11", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "description": "Terra Staking Coin", - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "description": "Kujira Staking Coin", + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { "denom": "ibc/9117A26BA81E29FA4F78F57DC2BD90CD3D26848101BA880445F119B22A1E254E", @@ -2848,6 +3468,7 @@ "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -2857,84 +3478,104 @@ "recommended_symbol": "ATOM" }, { - "denom": "pepe-wei", + "denom": "ibc/17F12F5F038242355C41E838BCC72781276D68302DF7DD09DAB8E6C2832D8F38", "chain_id": "axelar-dojo-1", - "origin_denom": "pepe-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-41", "is_cw20": false, "is_evm": false, - "symbol": "PEPE", - "name": "PEPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", - "decimals": 18, - "coingecko_id": "pepe", - "recommended_symbol": "PEPE.axl" + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "decimals": 6, + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" }, { - "denom": "polygon-uusdc", + "denom": "dot-planck", "chain_id": "axelar-dojo-1", - "origin_denom": "polygon-uusdc", + "origin_denom": "dot-planck", "origin_chain_id": "axelar-dojo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "DOT", + "name": "DOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "description": "Wrapped Polkadot on Axelar", + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" + }, + { + "denom": "ibc/37731EEEAE2D4A18C296FA1B3808719ACCBFFF7BF7F6A1D6EEA1044472B689E3", + "chain_id": "axelar-dojo-1", + "origin_denom": "unls", + "origin_chain_id": "pirin-1", + "trace": "transfer/channel-143", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NLS", + "name": "NLS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", "decimals": 6, - "description": "Circle's stablecoin from Polygon on Axelar", - "recommended_symbol": "USDC.axl.polygon" + "coingecko_id": "nolus", + "recommended_symbol": "NLS" }, { - "denom": "wavax-wei", + "denom": "ibc/8AB88C0D359840C50442995B8053323F94BAC6AF040E12F7F2517EDD5475A909", "chain_id": "axelar-dojo-1", - "origin_denom": "wavax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "", + "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "description": "Wrapped AVAX on Axelar.", - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" + "is_svm": false, + "symbol": "SAIL", + "name": "SAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "decimals": 6, + "recommended_symbol": "SAIL" } ] }, "axelar-testnet-lisbon-3": { "assets": [ { - "denom": "ibc/FF18EAFBEEC6B903341040E2A7F32E7A6510F58AF823943513D1FA2A04760F88", + "denom": "eth-wei", "chain_id": "axelar-testnet-lisbon-3", - "origin_denom": "uosmo", - "origin_chain_id": "osmo-test-5", - "trace": "transfer/channel-338", + "origin_denom": "eth-wei", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "is_svm": false, + "symbol": "axlWETH", + "name": "axlWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "description": "Wrapped Ether on Axelar", + "recommended_symbol": "WETH" }, { - "denom": "wmatic-wei", + "denom": "uausdc", "chain_id": "axelar-testnet-lisbon-3", - "origin_denom": "wmatic-wei", + "origin_denom": "uausdc", "origin_chain_id": "axelar-testnet-lisbon-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg", - "decimals": 18, - "description": "Wrapped Matic on Axelar", - "recommended_symbol": "WMATIC" + "is_svm": false, + "symbol": "aUSDC", + "name": "aUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "description": "Circle's stablecoin on Axelar", + "recommended_symbol": "aUSDC" }, { "denom": "wftm-wei", @@ -2944,6 +3585,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WFTM", "name": "WFTM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", @@ -2952,63 +3594,36 @@ "recommended_symbol": "WFTM" }, { - "denom": "wbnb-wei", - "chain_id": "axelar-testnet-lisbon-3", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "decimals": 18, - "description": "Wrapped BNB on Axelar", - "recommended_symbol": "WBNB" - }, - { - "denom": "wavax-wei", + "denom": "wmatic-wei", "chain_id": "axelar-testnet-lisbon-3", - "origin_denom": "wavax-wei", + "origin_denom": "wmatic-wei", "origin_chain_id": "axelar-testnet-lisbon-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg", "decimals": 18, - "description": "Wrapped AVAX on Axelar.", - "recommended_symbol": "WAVAX" - }, - { - "denom": "ibc/FA18CB69A942229E970064219F6B02B1A6DE98C4F5556F6785050E77C50A9A76", - "chain_id": "axelar-testnet-lisbon-3", - "origin_denom": "untrn", - "origin_chain_id": "pion-1", - "trace": "transfer/channel-237", - "is_cw20": false, - "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.png", - "decimals": 6, - "recommended_symbol": "NTRN" + "description": "Wrapped Matic on Axelar", + "recommended_symbol": "WMATIC" }, { - "denom": "uausdc", + "denom": "ibc/FF18EAFBEEC6B903341040E2A7F32E7A6510F58AF823943513D1FA2A04760F88", "chain_id": "axelar-testnet-lisbon-3", - "origin_denom": "uausdc", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "", + "origin_denom": "uosmo", + "origin_chain_id": "osmo-test-5", + "trace": "transfer/channel-338", "is_cw20": false, "is_evm": false, - "symbol": "aUSDC", - "name": "aUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "description": "Circle's stablecoin on Axelar", - "recommended_symbol": "aUSDC" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { "denom": "uaxl", @@ -3018,6 +3633,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "AXL", "name": "AXL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", @@ -3034,6 +3650,7 @@ "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "TIA", "name": "TIA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", @@ -3041,71 +3658,56 @@ "recommended_symbol": "TIA" }, { - "denom": "eth-wei", + "denom": "wavax-wei", "chain_id": "axelar-testnet-lisbon-3", - "origin_denom": "eth-wei", + "origin_denom": "wavax-wei", "origin_chain_id": "axelar-testnet-lisbon-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "axlWETH", - "name": "axlWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "description": "Wrapped Ether on Axelar", - "recommended_symbol": "WETH" - } - ] - }, - "bitsong-2b": { - "assets": [ - { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_id": "bitsong-2b", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", - "is_cw20": false, - "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "description": "Wrapped AVAX on Axelar.", + "recommended_symbol": "WAVAX" }, { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", - "chain_id": "bitsong-2b", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "denom": "wbnb-wei", + "chain_id": "axelar-testnet-lisbon-3", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "description": "Wrapped BNB on Axelar", + "recommended_symbol": "WBNB" }, { - "denom": "ubtsg", - "chain_id": "bitsong-2b", - "origin_denom": "ubtsg", - "origin_chain_id": "bitsong-2b", - "trace": "", + "denom": "ibc/FA18CB69A942229E970064219F6B02B1A6DE98C4F5556F6785050E77C50A9A76", + "chain_id": "axelar-testnet-lisbon-3", + "origin_denom": "untrn", + "origin_chain_id": "pion-1", + "trace": "transfer/channel-237", "is_cw20": false, "is_evm": false, - "symbol": "BTSG", - "name": "BTSG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.png", "decimals": 6, - "description": "BitSong Native Token", - "coingecko_id": "bitsong", - "recommended_symbol": "BTSG" - }, + "recommended_symbol": "NTRN" + } + ] + }, + "bitsong-2b": { + "assets": [ { "denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", "chain_id": "bitsong-2b", @@ -3114,6 +3716,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "404DR", "name": "404DR", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png", @@ -3122,79 +3725,84 @@ "recommended_symbol": "404DR" }, { - "denom": "ibc/A5D78E51298330AA6747FBA5190CD110FA1108F90C82B217E10E42AA159076BB", + "denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", "chain_id": "bitsong-2b", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-28", + "origin_denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", + "origin_chain_id": "bitsong-2b", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "CMQZ", + "name": "CMQZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "description": "Carolina Marquez a BitSong Music FanToken", + "recommended_symbol": "CMQZ" }, { - "denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", + "denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", "chain_id": "bitsong-2b", - "origin_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", + "origin_denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", "origin_chain_id": "bitsong-2b", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "N43", - "name": "N43", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png", + "is_svm": false, + "symbol": "FASANO", + "name": "FASANO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png", "decimals": 6, - "description": "N43 a BitSong Music FanToken", - "recommended_symbol": "N43" + "description": "Nicola Fasano a BitSong Music FanToken", + "recommended_symbol": "FASANO" }, { - "denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", + "denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", "chain_id": "bitsong-2b", - "origin_denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", + "origin_denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", "origin_chain_id": "bitsong-2b", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TESTA", - "name": "TESTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png", + "is_svm": false, + "symbol": "KARINA", + "name": "KARINA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png", "decimals": 6, - "description": "Luca Testa a BitSong Music FanToken", - "recommended_symbol": "TESTA" + "description": "Karina a BitSong Music FanToken", + "recommended_symbol": "KARINA" }, { - "denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", + "denom": "ibc/94D295BC0F9FFCBAA08438252040A5704EA1C88C466D10659DED3CA08C39F1A0", "chain_id": "bitsong-2b", - "origin_denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "origin_chain_id": "bitsong-2b", - "trace": "", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, - "symbol": "BJKS", - "name": "BJKS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png", - "decimals": 6, - "description": "BlackJack a BitSong Music FanToken", - "recommended_symbol": "BJKS" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", + "denom": "ibc/21F030105A9DBFA65943765F9B1B2E2D85293178EB0E9822E011F2695EAA98A2", "chain_id": "bitsong-2b", - "origin_denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "origin_chain_id": "bitsong-2b", - "trace": "", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-30", "is_cw20": false, "is_evm": false, - "symbol": "RWNE", - "name": "RWNE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "description": "Rawanne a BitSong Music FanToken", - "recommended_symbol": "RWNE" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { "denom": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", @@ -3204,6 +3812,7 @@ "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "JUNO", "name": "JUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", @@ -3212,34 +3821,70 @@ "recommended_symbol": "JUNO" }, { - "denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "chain_id": "bitsong-2b", - "origin_denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, + { + "denom": "ubtsg", + "chain_id": "bitsong-2b", + "origin_denom": "ubtsg", "origin_chain_id": "bitsong-2b", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "VIBRA", - "name": "VIBRA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png", + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", "decimals": 6, - "description": "Vibranium a BitSong Music FanToken", - "recommended_symbol": "VIBRA" + "description": "BitSong Native Token", + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG" }, { - "denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", + "denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", "chain_id": "bitsong-2b", - "origin_denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", + "origin_denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", "origin_chain_id": "bitsong-2b", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CMQZ", - "name": "CMQZ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png", + "is_svm": false, + "symbol": "LOBO", + "name": "LOBO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png", "decimals": 6, - "description": "Carolina Marquez a BitSong Music FanToken", - "recommended_symbol": "CMQZ" + "description": "Puro Lobo a BitSong Music FanToken", + "recommended_symbol": "LOBO" + }, + { + "denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "chain_id": "bitsong-2b", + "origin_denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "origin_chain_id": "bitsong-2b", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "D9X", + "name": "D9X", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png", + "decimals": 6, + "description": "Delta 9 a BitSong Music FanToken", + "recommended_symbol": "D9X" }, { "denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", @@ -3249,6 +3894,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ENMODA", "name": "ENMODA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png", @@ -3256,6 +3902,22 @@ "description": "Enmoda a BitSong Music FanToken", "recommended_symbol": "ENMODA" }, + { + "denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", + "chain_id": "bitsong-2b", + "origin_denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", + "origin_chain_id": "bitsong-2b", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "RWNE", + "name": "RWNE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png", + "decimals": 6, + "description": "Rawanne a BitSong Music FanToken", + "recommended_symbol": "RWNE" + }, { "denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", "chain_id": "bitsong-2b", @@ -3264,6 +3926,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CLAY", "name": "CLAY", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png", @@ -3272,49 +3935,52 @@ "recommended_symbol": "CLAY" }, { - "denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", + "denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", "chain_id": "bitsong-2b", - "origin_denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", + "origin_denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", "origin_chain_id": "bitsong-2b", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LOBO", - "name": "LOBO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png", + "is_svm": false, + "symbol": "TESTA", + "name": "TESTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png", "decimals": 6, - "description": "Puro Lobo a BitSong Music FanToken", - "recommended_symbol": "LOBO" + "description": "Luca Testa a BitSong Music FanToken", + "recommended_symbol": "TESTA" }, { - "denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", + "denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", "chain_id": "bitsong-2b", - "origin_denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", + "origin_denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", "origin_chain_id": "bitsong-2b", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FASANO", - "name": "FASANO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png", + "is_svm": false, + "symbol": "BJKS", + "name": "BJKS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png", "decimals": 6, - "description": "Nicola Fasano a BitSong Music FanToken", - "recommended_symbol": "FASANO" + "description": "BlackJack a BitSong Music FanToken", + "recommended_symbol": "BJKS" }, { - "denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", + "denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", "chain_id": "bitsong-2b", - "origin_denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", + "origin_denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", "origin_chain_id": "bitsong-2b", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KARINA", - "name": "KARINA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png", + "is_svm": false, + "symbol": "VIBRA", + "name": "VIBRA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png", "decimals": 6, - "description": "Karina a BitSong Music FanToken", - "recommended_symbol": "KARINA" + "description": "Vibranium a BitSong Music FanToken", + "recommended_symbol": "VIBRA" }, { "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", @@ -3324,6 +3990,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -3332,34 +3999,52 @@ "recommended_symbol": "OSMO" }, { - "denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "chain_id": "bitsong-2b", - "origin_denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "origin_chain_id": "bitsong-2b", - "trace": "", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "FONTI", - "name": "FONTI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png", - "decimals": 6, - "description": "FONTI a BitSong Music FanToken", - "recommended_symbol": "FONTI" + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "decimals": 6, + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", "chain_id": "bitsong-2b", - "origin_denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "origin_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", "origin_chain_id": "bitsong-2b", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "D9X", - "name": "D9X", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png", + "is_svm": false, + "symbol": "N43", + "name": "N43", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png", "decimals": 6, - "description": "Delta 9 a BitSong Music FanToken", - "recommended_symbol": "D9X" + "description": "N43 a BitSong Music FanToken", + "recommended_symbol": "N43" + }, + { + "denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", + "chain_id": "bitsong-2b", + "origin_denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", + "origin_chain_id": "bitsong-2b", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "FONTI", + "name": "FONTI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png", + "decimals": 6, + "description": "FONTI a BitSong Music FanToken", + "recommended_symbol": "FONTI" } ] }, @@ -3373,6 +4058,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "GRAV", "name": "GRAV", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", @@ -3380,21 +4066,6 @@ "coingecko_id": "graviton", "recommended_symbol": "GRAV" }, - { - "denom": "ibc/FAFF3F7B2FE30447544A27910DF77069763CF25472BFCF63A9E7C81F0AD545AC", - "chain_id": "canto_7700-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-13", - "is_cw20": false, - "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" - }, { "denom": "ibc/F33F8D7220E055E2079040C9E2BC6EC77FE77BD0D3FEB0ED5E1A9E5302E36885", "chain_id": "canto_7700-1", @@ -3403,6 +4074,7 @@ "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stEVMOS", "name": "stEVMOS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", @@ -3411,35 +4083,36 @@ "recommended_symbol": "stEVMOS" }, { - "denom": "acanto", + "denom": "ibc/DC186CA7A8C009B43774EBDC825C935CABA9743504CE6037507E6E5CCE12858A", "chain_id": "canto_7700-1", - "origin_denom": "acanto", - "origin_chain_id": "canto_7700-1", - "trace": "", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "CANTO", - "name": "CANTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "is_svm": false, + "symbol": "gWETH", + "name": "gWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", "decimals": 18, - "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", - "coingecko_id": "canto", - "recommended_symbol": "CANTO" + "coingecko_id": "weth", + "recommended_symbol": "gWETH.grv" }, { - "denom": "ibc/3E5BCCFB6C591DD08FA67C5A4C9AA1EE372CF591AA6E0B819C530AE5F653316A", + "denom": "ibc/31DCE745EBDFBB19710DF9B1B2D2378183DDB9216EA42750AD1E246CF4A6040B", "chain_id": "canto_7700-1", - "origin_denom": "stustars", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-18", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { "denom": "ibc/B0ADAE6558A3E9B2B49FF2EA89A9AEA312431FEB51FCF73650C8C90589F5149B", @@ -3449,6 +4122,7 @@ "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CMDX", "name": "CMDX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", @@ -3457,19 +4131,68 @@ "recommended_symbol": "CMDX" }, { - "denom": "ibc/B3CC9901DF8BA5F6154EDA69B3016EE16A795B6C422216AE08307FBBEAC22575", + "denom": "ibc/3E5BCCFB6C591DD08FA67C5A4C9AA1EE372CF591AA6E0B819C530AE5F653316A", "chain_id": "canto_7700-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-17", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" + }, + { + "denom": "ibc/D99936DBB29675AC60A97BC9BD009B4713498D7A82B5F649C498106B53C2067F", + "chain_id": "canto_7700-1", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" + }, + { + "denom": "ibc/E37B0A409BFF1981B1CEE15E2D766F28BE0710AFFCB4DE546FADE29A290B92B4", + "chain_id": "canto_7700-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-18", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "decimals": 6, + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" + }, + { + "denom": "ibc/17CD484EE7D9723B847D95015FA3EBD1572FD13BC84FB838F55B18A57450F25B", + "chain_id": "canto_7700-1", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "gUSDC", + "name": "gUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "gUSDC.grv" }, { "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", @@ -3479,6 +4202,7 @@ "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -3486,21 +4210,6 @@ "coingecko_id": "osmosis", "recommended_symbol": "OSMO" }, - { - "denom": "ibc/DC186CA7A8C009B43774EBDC825C935CABA9743504CE6037507E6E5CCE12858A", - "chain_id": "canto_7700-1", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-0", - "is_cw20": false, - "is_evm": false, - "symbol": "gWETH", - "name": "gWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "gWETH.grv" - }, { "denom": "ibc/E341F178AB30AC89CF18B9559D90EF830419B5A4B50945EF800FD68DE840A91E", "chain_id": "canto_7700-1", @@ -3509,6 +4218,7 @@ "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SOMM", "name": "SOMM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", @@ -3516,6 +4226,22 @@ "coingecko_id": "sommelier", "recommended_symbol": "SOMM" }, + { + "denom": "ibc/4F6A2DEFEA52CD8D90966ADCB2BD0593D3993AB0DF7F6AEB3EFD6167D79237B0", + "chain_id": "canto_7700-1", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "gUSDT", + "name": "gUSDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "decimals": 6, + "coingecko_id": "tether", + "recommended_symbol": "gUSDT.grv" + }, { "denom": "ibc/F596D425ED062FF586E9F74EA67E663BEB602EAD18F3388FB6DF57E127552BFD", "chain_id": "canto_7700-1", @@ -3524,6 +4250,7 @@ "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stkATOM", "name": "stkATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", @@ -3532,64 +4259,20 @@ "recommended_symbol": "stkATOM" }, { - "denom": "ibc/68930779653E62D66440AE801EE3394E9A29C4222930CBB20EC3EE179DE69E34", - "chain_id": "canto_7700-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-18", - "is_cw20": false, - "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" - }, - { - "denom": "ibc/9EA05E1C36673DCFEF7AFB499B10673F0232B3AB5279EDA20E2E149969169931", - "chain_id": "canto_7700-1", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-18", - "is_cw20": false, - "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" - }, - { - "denom": "ibc/147B3FF1D005512CCE4089559AF5D0C951F4211A031F15E782E505B85022DF89", - "chain_id": "canto_7700-1", - "origin_denom": "ukava", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-13", - "is_cw20": false, - "is_evm": false, - "symbol": "KAVA", - "name": "KAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", - "decimals": 6, - "coingecko_id": "kava", - "recommended_symbol": "KAVA" - }, - { - "denom": "ibc/17CD484EE7D9723B847D95015FA3EBD1572FD13BC84FB838F55B18A57450F25B", + "denom": "ibc/B3CC9901DF8BA5F6154EDA69B3016EE16A795B6C422216AE08307FBBEAC22575", "chain_id": "canto_7700-1", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-0", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "gUSDC", - "name": "gUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "gUSDC.grv" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { "denom": "ibc/1CF77BE8D99679A2C7BAEA22397DD02CCBFDC50E90A273598C9DBE9CC3557936", @@ -3599,6 +4282,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WBTC", "name": "WBTC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", @@ -3607,34 +4291,20 @@ "recommended_symbol": "WBTC.grv" }, { - "denom": "ibc/31DCE745EBDFBB19710DF9B1B2D2378183DDB9216EA42750AD1E246CF4A6040B", - "chain_id": "canto_7700-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-9", - "is_cw20": false, - "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" - }, - { - "denom": "ibc/4F6A2DEFEA52CD8D90966ADCB2BD0593D3993AB0DF7F6AEB3EFD6167D79237B0", + "denom": "ibc/68930779653E62D66440AE801EE3394E9A29C4222930CBB20EC3EE179DE69E34", "chain_id": "canto_7700-1", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-0", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "gUSDT", - "name": "gUSDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "gUSDT.grv" + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { "denom": "ibc/88C5B8AA229E9CCF38A70005A4DD50F758AF222244F7FF1506B57081C9E2A8BB", @@ -3644,6 +4314,7 @@ "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stJUNO", "name": "stJUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", @@ -3659,6 +4330,7 @@ "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -3668,113 +4340,185 @@ "recommended_symbol": "ATOM" }, { - "denom": "ibc/E37B0A409BFF1981B1CEE15E2D766F28BE0710AFFCB4DE546FADE29A290B92B4", + "denom": "ibc/9EA05E1C36673DCFEF7AFB499B10673F0232B3AB5279EDA20E2E149969169931", "chain_id": "canto_7700-1", - "origin_denom": "stuatom", + "origin_denom": "stuosmo", "origin_chain_id": "stride-1", "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" + }, + { + "denom": "acanto", + "chain_id": "canto_7700-1", + "origin_denom": "acanto", + "origin_chain_id": "canto_7700-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CANTO", + "name": "CANTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "decimals": 18, + "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", + "coingecko_id": "canto", + "recommended_symbol": "CANTO" } ] }, "carbon-1": { "assets": [ { - "denom": "zil.1.18.1a4a06", + "denom": "ibc/062588846168EDFECF20F7681F2A0A131A53B9A3C8535BCA8F7D1A268246974B", "chain_id": "carbon-1", - "origin_denom": "zil.1.18.1a4a06", - "origin_chain_id": "carbon-1", - "trace": "", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "ZIL", - "name": "ZIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.png", - "decimals": 12, - "description": "ZIL token on Carbon", - "recommended_symbol": "ZIL.carbon" + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/DCE71037372C2ECF5DEE299B9B3CAFC84309BB5FA9C1AD80C91D057BB5EDA39D", + "denom": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", "chain_id": "carbon-1", - "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-16", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "ROAR", - "name": "ROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", - "decimals": 6, - "coingecko_id": "lion-dao", - "recommended_symbol": "ROAR" + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "description": "The native EVM, governance and staking token of the Evmos Hub", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "ibc/9E3EB38E5E157AEBFF4A8EAC66E654BC8ECFCB1F758F4D1C0F2D65945E9E2935", + "denom": "ibc/50345B6B85884DC41E831047EEE01805B289171DBF105AB3EA42BCC72B3926CC", "chain_id": "carbon-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-4", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-35", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "decimals": 18, + "coingecko_id": "dymension", + "recommended_symbol": "DYM" + }, + { + "denom": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", + "chain_id": "carbon-1", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" }, { - "denom": "ibc/3BB8B5197DA377AB95A9F58AE523D8BA60D47892EF37D6A1DEE71C08976AAC4A", + "denom": "ibc/8E2594F112187317FE9A1D78F9195FBBF73A6A9645E00ADA2BEE4091370CA1BA", "chain_id": "carbon-1", - "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-16", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "BMOS", - "name": "BMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "decimals": 6, - "recommended_symbol": "BMOS" + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" }, { - "denom": "cgt/1", + "denom": "eth.1.19.c3b805", "chain_id": "carbon-1", - "origin_denom": "cgt/1", + "origin_denom": "eth.1.19.c3b805", "origin_chain_id": "carbon-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USD", - "name": "USD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", "decimals": 18, - "description": "Grouped USD on Carbon", - "recommended_symbol": "USD" + "description": "ETH (Arbitrum) token on Carbon", + "recommended_symbol": "ETH.carbon" }, { - "denom": "usc", + "denom": "ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0", "chain_id": "carbon-1", - "origin_denom": "usc", - "origin_chain_id": "carbon-1", - "trace": "", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "USC", - "name": "USC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", - "decimals": 8, - "description": "The native stablecoin of Carbon", - "coingecko_id": "carbon-usd", - "recommended_symbol": "USC" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/536D12706900AA0348B093848BDE466637A1ACD31E90A7B35957BBAF07251009", + "chain_id": "carbon-1", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-36", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "decimals": 6, + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" + }, + { + "denom": "ibc/3BB8B5197DA377AB95A9F58AE523D8BA60D47892EF37D6A1DEE71C08976AAC4A", + "chain_id": "carbon-1", + "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-16", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BMOS", + "name": "BMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", + "decimals": 6, + "recommended_symbol": "BMOS" }, { "denom": "ibc/17A3A5E3FCDBBC131DE31690C5708144D6A882652689BA86162EACC23BA04087", @@ -3784,6 +4528,7 @@ "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "wstETH", "name": "wstETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", @@ -3792,189 +4537,133 @@ "recommended_symbol": "wstETH.axl" }, { - "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", - "chain_id": "carbon-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-9", - "is_cw20": false, - "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "decimals": 6, - "description": "The native staking and governance token of the Kujira chain.", - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" - }, - { - "denom": "eth.1.2.942d87", + "denom": "cgt/1", "chain_id": "carbon-1", - "origin_denom": "eth.1.2.942d87", + "origin_denom": "cgt/1", "origin_chain_id": "carbon-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", + "is_svm": false, + "symbol": "USD", + "name": "USD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", "decimals": 18, - "description": "ETH (ERC20) token on Carbon", - "recommended_symbol": "ETH.carbon" + "description": "Grouped USD on Carbon", + "recommended_symbol": "USD" }, { - "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", + "denom": "ibc/262959ED1639A090F7C10E85FB46DC5974FE65D14E101D2E104272E4347C74D8", "chain_id": "carbon-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-16", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "CUB", + "name": "CUB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", "decimals": 6, - "description": "MilkTIA token on Carbon", - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "recommended_symbol": "CUB" }, { - "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "denom": "ibc/06E1E9DD50ADCB62D1CD0ADF2792B471616A144CB42ED8A4A229C3201ED68531", "chain_id": "carbon-1", - "origin_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", - "is_cw20": false, - "is_evm": false, - "symbol": "IBCX", - "name": "IBCX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", - "decimals": 6, - "coingecko_id": "ibc-index", - "recommended_symbol": "IBCX" - }, - { - "denom": "ibc/4A9DF0B17F6F90FB739C2731E4E2057BE64D39D0C7B9083B7706C0C9B53DEE0E", - "chain_id": "carbon-1", - "origin_denom": "stujuno", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-8", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" - }, - { - "denom": "swth", - "chain_id": "carbon-1", - "origin_denom": "swth", - "origin_chain_id": "carbon-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "SWTH", - "name": "SWTH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "decimals": 8, - "description": "The native governance token of Carbon", - "coingecko_id": "switcheo", - "recommended_symbol": "SWTH" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "usdc.1.2.343151", + "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", "chain_id": "carbon-1", - "origin_denom": "usdc.1.2.343151", - "origin_chain_id": "carbon-1", - "trace": "", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-12", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "description": "USDC (ERC20) token on Carbon", - "recommended_symbol": "USDC.carbon" + "description": "The native staking token of Terra.", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", + "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", "chain_id": "carbon-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-8", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "description": "The native token of Stride", - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "description": "MilkTIA token on Carbon", + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "denom": "ibc/4A9DF0B17F6F90FB739C2731E4E2057BE64D39D0C7B9083B7706C0C9B53DEE0E", "chain_id": "carbon-1", - "origin_denom": "stuatom", + "origin_denom": "stujuno", "origin_chain_id": "stride-1", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" - }, - { - "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", - "chain_id": "carbon-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-12", - "is_cw20": false, - "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "description": "The native staking token of Terra.", - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "usdc.1.6.53ff75", + "denom": "ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D", "chain_id": "carbon-1", - "origin_denom": "usdc.1.6.53ff75", - "origin_chain_id": "carbon-1", - "trace": "", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - "decimals": 18, - "description": "USD Coin (BEP-20) token on Carbon", - "recommended_symbol": "USDC.carbon" + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "denom": "ibc/4EAAAE537853E9C0DDF458F0710C37BB3DE7C6A675AB75DB5731ACE93D6CC57B", "chain_id": "carbon-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "stusaga", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "stSAGA", + "name": "stSAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "coingecko_id": "stride-staked-saga", + "recommended_symbol": "stSAGA" }, { "denom": "ibc/FBEE20115530F474F8BBE1460DA85437C3FBBFAF4A5DEBD71CA6B9C40559A161", @@ -3984,6 +4673,7 @@ "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stLUNA", "name": "stLUNA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", @@ -3992,95 +4682,117 @@ "recommended_symbol": "stLUNA" }, { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", "chain_id": "carbon-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "description": "The native token of Osmosis", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "description": "The native staking and governance token of the Kujira chain.", + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "eth.1.19.c3b805", + "denom": "ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070", "chain_id": "carbon-1", - "origin_denom": "eth.1.19.c3b805", - "origin_chain_id": "carbon-1", - "trace": "", + "origin_denom": "stadym", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", + "is_svm": false, + "symbol": "stDYM", + "name": "stDYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png", "decimals": 18, - "description": "ETH (Arbitrum) token on Carbon", - "recommended_symbol": "ETH.carbon" + "coingecko_id": "stride-staked-dym", + "recommended_symbol": "stDYM" }, { - "denom": "ibc/262959ED1639A090F7C10E85FB46DC5974FE65D14E101D2E104272E4347C74D8", + "denom": "ibc/96BB9743B631E66525F13E5E944AF1A222AF928A4C870E457CDE932092F9528B", "chain_id": "carbon-1", - "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-16", + "origin_denom": "usomm", + "origin_chain_id": "sommelier-3", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "CUB", - "name": "CUB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "is_svm": false, + "symbol": "SOMM", + "name": "SOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", "decimals": 6, - "recommended_symbol": "CUB" + "coingecko_id": "sommelier", + "recommended_symbol": "SOMM" }, { - "denom": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", + "denom": "ibc/C688EBE80ECC20865331A18D8D19654754F6B189977715FED00FBA2BE41F144F", "chain_id": "carbon-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-6", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "description": "The native EVM, governance and staking token of the Evmos Hub", - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "decimals": 6, + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", + "denom": "ibc/CAF0C63018C2E96F320D448C1F0A1951D77C4F385D802B700CDF7DD2D5B66FD0", "chain_id": "carbon-1", - "origin_denom": "stadydx", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-8", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "stDYDX", - "name": "stDYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", "decimals": 18, - "coingecko_id": "stride-staked-dydx", - "recommended_symbol": "stDYDX" + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { - "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", + "denom": "ibc/62A3870B9804FC3A92EAAA1F0F3F07E089DBF76CC521466CA33F5AAA8AD42290", "chain_id": "carbon-1", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-8", + "origin_denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-16", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "ampLUNA", + "name": "ampLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "coingecko_id": "eris-amplified-luna", + "recommended_symbol": "ampLUNA" + }, + { + "denom": "ibc/9DC57FF60E125F9B976EB0DF4F2122C580AD1DB8E27BA71E6D2C1AA56A5FD312", + "chain_id": "carbon-1", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-30", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" }, { "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", @@ -4090,6 +4802,7 @@ "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -4099,49 +4812,67 @@ "recommended_symbol": "ATOM" }, { - "denom": "ibc/062588846168EDFECF20F7681F2A0A131A53B9A3C8535BCA8F7D1A268246974B", + "denom": "ibc/D75FF9F7ACE6B976FA775B1A9C015A977AD0D53F41EDA3428BFB43B12FC731BA", "chain_id": "carbon-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-7", + "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "ampKUJI", + "name": "ampKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "recommended_symbol": "ampKUJI" }, { - "denom": "ibc/8D749C5FB0213DF002E8FDCCB5B01E35DA241397EF825048C530C7EAE43BCE80", + "denom": "eth.1.2.942d87", "chain_id": "carbon-1", - "origin_denom": "stustars", + "origin_denom": "eth.1.2.942d87", + "origin_chain_id": "carbon-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", + "decimals": 18, + "description": "ETH (ERC20) token on Carbon", + "recommended_symbol": "ETH.carbon" + }, + { + "denom": "ibc/2B9D089E73AC096934CD6BBBC71A1CD5DD2A4F8E94CC37CE7F861AC674044002", + "chain_id": "carbon-1", + "origin_denom": "stinj", "origin_chain_id": "stride-1", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", - "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "decimals": 18, + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "ibc/96BB9743B631E66525F13E5E944AF1A222AF928A4C870E457CDE932092F9528B", + "denom": "bneo.1.14.e2e5f6", "chain_id": "carbon-1", - "origin_denom": "usomm", - "origin_chain_id": "sommelier-3", - "trace": "transfer/channel-23", + "origin_denom": "bneo.1.14.e2e5f6", + "origin_chain_id": "carbon-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SOMM", - "name": "SOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", - "decimals": 6, - "coingecko_id": "sommelier", - "recommended_symbol": "SOMM" + "is_svm": false, + "symbol": "bNEO", + "name": "bNEO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png", + "decimals": 8, + "description": "bNEO token on Carbon", + "recommended_symbol": "bNEO.carbon" }, { "denom": "cglp.1.19.1698d3", @@ -4151,6 +4882,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CGLP", "name": "CGLP", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/cglp.png", @@ -4159,48 +4891,133 @@ "recommended_symbol": "CGLP.carbon" }, { - "denom": "ibc/8E2594F112187317FE9A1D78F9195FBBF73A6A9645E00ADA2BEE4091370CA1BA", + "denom": "swth", "chain_id": "carbon-1", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-9", + "origin_denom": "swth", + "origin_chain_id": "carbon-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "SWTH", + "name": "SWTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "decimals": 8, + "description": "The native governance token of Carbon", + "coingecko_id": "switcheo", + "recommended_symbol": "SWTH" + }, + { + "denom": "usc", + "chain_id": "carbon-1", + "origin_denom": "usc", + "origin_chain_id": "carbon-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USC", + "name": "USC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", + "decimals": 8, + "description": "The native stablecoin of Carbon", + "coingecko_id": "carbon-usd", + "recommended_symbol": "USC" + }, + { + "denom": "usdc.1.2.343151", + "chain_id": "carbon-1", + "origin_denom": "usdc.1.2.343151", + "origin_chain_id": "carbon-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "description": "USDC (ERC20) token on Carbon", + "recommended_symbol": "USDC.carbon" }, { - "denom": "ibc/C688EBE80ECC20865331A18D8D19654754F6B189977715FED00FBA2BE41F144F", + "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", "chain_id": "carbon-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-32", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "ibc/D75FF9F7ACE6B976FA775B1A9C015A977AD0D53F41EDA3428BFB43B12FC731BA", + "denom": "ibc/8D749C5FB0213DF002E8FDCCB5B01E35DA241397EF825048C530C7EAE43BCE80", "chain_id": "carbon-1", - "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-9", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "ampKUJI", - "name": "ampKUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", "decimals": 6, - "recommended_symbol": "ampKUJI" + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" + }, + { + "denom": "ibc/9E3EB38E5E157AEBFF4A8EAC66E654BC8ECFCB1F758F4D1C0F2D65945E9E2935", + "chain_id": "carbon-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, + { + "denom": "ibc/4E04DF48DECE17AB40A5946931DBA8C308FF670CECC18178D372DDBE01EC1679", + "chain_id": "carbon-1", + "origin_denom": "stk/adydx", + "origin_chain_id": "core-1", + "trace": "transfer/channel-36", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stkDYDX", + "name": "stkDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png", + "decimals": 18, + "coingecko_id": "stkdydx", + "recommended_symbol": "stkDYDX" + }, + { + "denom": "ibc/768903789BCBE018F25174371F0EC4F2173DD0B098E731D7344B00FB98EDE307", + "chain_id": "carbon-1", + "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-16", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ASTRO.cw20", + "name": "ASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", + "decimals": 6, + "recommended_symbol": "ASTRO.cw20" }, { "denom": "ibc/DC44871FDB10B6FB4D4089247AA918B0F30428C8911AFB6192D98AE8E38E31CB", @@ -4210,6 +5027,7 @@ "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WETH", "name": "WETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", @@ -4218,34 +5036,53 @@ "recommended_symbol": "WETH.axl" }, { - "denom": "bnb.1.6.773edb", + "denom": "ibc/DCE71037372C2ECF5DEE299B9B3CAFC84309BB5FA9C1AD80C91D057BB5EDA39D", "chain_id": "carbon-1", - "origin_denom": "bnb.1.6.773edb", - "origin_chain_id": "carbon-1", - "trace": "", + "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-16", "is_cw20": false, "is_evm": false, - "symbol": "BNB", - "name": "BNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", - "decimals": 18, - "description": "BNB token on Carbon", - "recommended_symbol": "BNB.carbon" + "is_svm": false, + "symbol": "ROAR", + "name": "ROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "decimals": 6, + "coingecko_id": "lion-dao", + "recommended_symbol": "ROAR" }, { - "denom": "bneo.1.14.e2e5f6", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "carbon-1", - "origin_denom": "bneo.1.14.e2e5f6", - "origin_chain_id": "carbon-1", - "trace": "", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "bNEO", - "name": "bNEO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/bneo.png", - "decimals": 8, - "description": "bNEO token on Carbon", - "recommended_symbol": "bNEO.carbon" + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "The native token of Osmosis", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "chain_id": "carbon-1", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "decimals": 6, + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { "denom": "busd.1.6.754a80", @@ -4255,6 +5092,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "BUSD", "name": "BUSD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", @@ -4263,109 +5101,149 @@ "recommended_symbol": "BUSD.carbon" }, { - "denom": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", + "denom": "ibc/0BA1FA7A554B4347A87BD37AFF331683298730F9F8FCECB4896D58BED4B31F00", "chain_id": "carbon-1", - "origin_denom": "stutia", + "origin_denom": "staevmos", "origin_chain_id": "stride-1", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "stTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", - "decimals": 6, - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" - }, - { - "denom": "ibc/768903789BCBE018F25174371F0EC4F2173DD0B098E731D7344B00FB98EDE307", - "chain_id": "carbon-1", - "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-16", + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" + }, + { + "denom": "ibc/3616134E71F4F7C0AFD22C439567E8C514BE88955903834F4580D9E3E4E3470F", + "chain_id": "carbon-1", + "origin_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "ASTRO", - "name": "ASTRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png", + "is_svm": false, + "symbol": "IBCX", + "name": "IBCX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", "decimals": 6, - "coingecko_id": "astroport-fi", - "recommended_symbol": "ASTRO" + "coingecko_id": "ibc-index", + "recommended_symbol": "IBCX" }, { - "denom": "ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0", + "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", "chain_id": "carbon-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-7", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/06E1E9DD50ADCB62D1CD0ADF2792B471616A144CB42ED8A4A229C3201ED68531", + "denom": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", "chain_id": "carbon-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-9", + "origin_denom": "stadydx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "stDYDX", + "name": "stDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "decimals": 18, + "coingecko_id": "stride-staked-dydx", + "recommended_symbol": "stDYDX" + }, + { + "denom": "zil.1.18.1a4a06", + "chain_id": "carbon-1", + "origin_denom": "zil.1.18.1a4a06", + "origin_chain_id": "carbon-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ZIL", + "name": "ZIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/zil.png", + "decimals": 12, + "description": "ZIL token on Carbon", + "recommended_symbol": "ZIL.carbon" + }, + { + "denom": "ibc/D96A686AF4C5A5960FBFC6A61A552DA910647B3EA02F25CC17483555AEFCC20D", + "chain_id": "carbon-1", + "origin_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-16", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "bLUNA", + "name": "bLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "coingecko_id": "backbone-labs-staked-luna", + "recommended_symbol": "bLUNA" }, { - "denom": "ibc/0BA1FA7A554B4347A87BD37AFF331683298730F9F8FCECB4896D58BED4B31F00", + "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", "chain_id": "carbon-1", - "origin_denom": "staevmos", + "origin_denom": "ustrd", "origin_chain_id": "stride-1", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "description": "The native token of Stride", + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/43897B9739BD63E3A08A88191999C632E052724AB96BD4C74AE31375C991F48D", + "denom": "usdc.1.6.53ff75", "chain_id": "carbon-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-29", + "origin_denom": "usdc.1.6.53ff75", + "origin_chain_id": "carbon-1", + "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 18, + "description": "USD Coin (BEP-20) token on Carbon", + "recommended_symbol": "USDC.carbon" }, { - "denom": "ibc/9DC57FF60E125F9B976EB0DF4F2122C580AD1DB8E27BA71E6D2C1AA56A5FD312", + "denom": "bnb.1.6.773edb", "chain_id": "carbon-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-30", + "origin_denom": "bnb.1.6.773edb", + "origin_chain_id": "carbon-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "is_svm": false, + "symbol": "BNB", + "name": "BNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "description": "BNB token on Carbon", + "recommended_symbol": "BNB.carbon" }, { "denom": "ibc/DF9C9A15AB22971A4F65FB8F471459A757745F9709905A599D5011E69FE3C375", @@ -4375,6 +5253,7 @@ "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WBNB", "name": "WBNB", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", @@ -4384,6 +5263,91 @@ } ] }, + "cataclysm-1": { + "assets": [ + { + "denom": "unibi", + "chain_id": "cataclysm-1", + "origin_denom": "unibi", + "origin_chain_id": "cataclysm-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NIBI", + "name": "NIBI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", + "decimals": 6, + "description": "The native token of Nibiru network", + "coingecko_id": "nibiru", + "recommended_symbol": "NIBI" + }, + { + "denom": "ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98", + "chain_id": "cataclysm-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + }, + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "chain_id": "cataclysm-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "chain_id": "cataclysm-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" + }, + { + "denom": "ibc/F2945055C9EC1637050CF630E36CCEE5668D2675022A3A5DD807D38E94D61D74", + "chain_id": "cataclysm-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + } + ] + }, "celestia": { "assets": [ { @@ -4394,10 +5358,12 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "TIA", "name": "TIA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, + "description": "The native token of the Celestia blockchain.", "coingecko_id": "celestia", "recommended_symbol": "TIA" } @@ -4406,33 +5372,84 @@ "centauri-1": { "assets": [ { - "denom": "ibc/B5AB26FB63C08E1C14B91B4DDC15CA4FE59737052B4432D8A3B328B66F6FE7A1", + "denom": "ibc/E027B27ED8BF4926EA6D15B21C9537B74772B9E8F870979DEB389091D9D106FB", "chain_id": "centauri-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-11", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" + }, + { + "denom": "ibc/5C85AD7EBA2A29A0279ABDAE65E147ED4A7E5E8ADADC2AE9D0CF9F4137FA85C4", + "chain_id": "centauri-1", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-26", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SHD", + "name": "SHD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" + }, + { + "denom": "ibc/6E92C832F3380E7C50D8EFFCCBAD267FA74B212ACB9DEFAF33C0CD58462335DC", + "chain_id": "centauri-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/BEEBCB44C03068B40BD4709196D5205ED2F78878611D41BC56DD223410AEF4AF", + "denom": "ibc/7078D8FA8BCB50A1E7855458F1E9898A3FDA0093B703DA3B3108DD35ED99E048", "chain_id": "centauri-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "recommended_symbol": "WOSMO" + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" + }, + { + "denom": "ibc/B8933E88FE97C041D67088B9F0416BDDBA3213F0EA1CE4EF9EB33966CB0C7AB2", + "chain_id": "centauri-1", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "decimals": 6, + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" }, { "denom": "ibc/DAA33E5758BACBE5F37E6ACC1E32F1C4A721C803BC6A174CB3717B9619DACEEC", @@ -4442,6 +5459,7 @@ "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "AXL", "name": "AXL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", @@ -4457,6 +5475,7 @@ "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "bCRE", "name": "bCRE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", @@ -4472,6 +5491,7 @@ "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STRD", "name": "STRD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", @@ -4487,6 +5507,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PICA", "name": "PICA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", @@ -4495,6 +5516,86 @@ "coingecko_id": "picasso", "recommended_symbol": "PICA" }, + { + "denom": "ibc/6C42AE3786DF3E1C8520107A7328D268D19AD631A922FB06F7B99005304AB26D", + "chain_id": "centauri-1", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-13", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "decimals": 6, + "coingecko_id": "agoric", + "recommended_symbol": "BLD" + }, + { + "denom": "ibc/164E955DF8598E8589024E5A4A84AA9759D19B2695AC77B626BABD867511DEC4", + "chain_id": "centauri-1", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-13", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "decimals": 6, + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" + }, + { + "denom": "ibc/3CD84AF84643D6E4479860635E0C5CE9B75AD2F051771C98BCF9BF742422BF84", + "chain_id": "centauri-1", + "origin_denom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-26", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SILK", + "name": "SILK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png", + "decimals": 6, + "coingecko_id": "silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2", + "recommended_symbol": "SILK" + }, + { + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "chain_id": "centauri-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/E3459360643C2555C57C7DAB0567FA762B42D5D6D45A76615EA7D99D933AEC04", + "chain_id": "centauri-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-14", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, { "denom": "ibc/E752C7ACE548AF134010F2673C348DCE5D5F8328A56C252F5B9903589F103413", "chain_id": "centauri-1", @@ -4503,6 +5604,7 @@ "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "INJ", "name": "INJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", @@ -4518,6 +5620,7 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -4526,19 +5629,35 @@ "recommended_symbol": "ATOM" }, { - "denom": "ibc/B8933E88FE97C041D67088B9F0416BDDBA3213F0EA1CE4EF9EB33966CB0C7AB2", + "denom": "ibc/0FCF16E8AD8BF14528126DD83BE2CEB4CBE37D723C1E1F9A70BC29267012E100", "chain_id": "centauri-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-0", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" + }, + { + "denom": "ibc/BEEBCB44C03068B40BD4709196D5205ED2F78878611D41BC56DD223410AEF4AF", + "chain_id": "centauri-1", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "decimals": 6, + "recommended_symbol": "WOSMO" }, { "denom": "ibc/43C92566AEA8C100CF924DB324BD8F699B6374CA5B93BF6BCFEC4777B62D50D1", @@ -4548,6 +5667,7 @@ "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NTRN", "name": "NTRN", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", @@ -4555,36 +5675,6 @@ "coingecko_id": "neutron-3", "recommended_symbol": "NTRN" }, - { - "denom": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", - "chain_id": "centauri-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-7", - "is_cw20": false, - "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" - }, - { - "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", - "chain_id": "centauri-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", - "is_cw20": false, - "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" - }, { "denom": "ibc/4E86DB2D0F4DC03F4853FD7F6B0E622FBAD10F198B29CC1BA24C207F514B8271", "chain_id": "centauri-1", @@ -4593,6 +5683,7 @@ "trace": "transfer/channel-27", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KUJI", "name": "KUJI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", @@ -4601,114 +5692,89 @@ "recommended_symbol": "KUJI" }, { - "denom": "ibc/6C42AE3786DF3E1C8520107A7328D268D19AD631A922FB06F7B99005304AB26D", + "denom": "ibc/B5AB26FB63C08E1C14B91B4DDC15CA4FE59737052B4432D8A3B328B66F6FE7A1", "chain_id": "centauri-1", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-13", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/6E92C832F3380E7C50D8EFFCCBAD267FA74B212ACB9DEFAF33C0CD58462335DC", + "denom": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", "chain_id": "centauri-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-5", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" - }, + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" + } + ] + }, + "cheqd-mainnet-1": { + "assets": [ { - "denom": "ibc/7078D8FA8BCB50A1E7855458F1E9898A3FDA0093B703DA3B3108DD35ED99E048", - "chain_id": "centauri-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-6", + "denom": "ibc/018B61D25E2DF8431CC5AAA6189AE23DD385AF0CCD2C2D5C8C708FCB0BC2FE2F", + "chain_id": "cheqd-mainnet-1", + "origin_denom": "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-35", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "LP CHEQ-MNTA", + "name": "LP CHEQ-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "recommended_symbol": "LP CHEQ-MNTA" }, { - "denom": "ibc/0FCF16E8AD8BF14528126DD83BE2CEB4CBE37D723C1E1F9A70BC29267012E100", - "chain_id": "centauri-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-20", + "denom": "ncheq", + "chain_id": "cheqd-mainnet-1", + "origin_denom": "ncheq", + "origin_chain_id": "cheqd-mainnet-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", - "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "is_svm": false, + "symbol": "CHEQ", + "name": "CHEQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "decimals": 9, + "description": "Native token for the cheqd network", + "coingecko_id": "cheqd-network", + "recommended_symbol": "CHEQ" }, { - "denom": "ibc/164E955DF8598E8589024E5A4A84AA9759D19B2695AC77B626BABD867511DEC4", - "chain_id": "centauri-1", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-13", + "denom": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", + "chain_id": "cheqd-mainnet-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" }, - { - "denom": "ibc/E027B27ED8BF4926EA6D15B21C9537B74772B9E8F870979DEB389091D9D106FB", - "chain_id": "centauri-1", - "origin_denom": "staevmos", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-5", - "is_cw20": false, - "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" - }, - { - "denom": "ibc/E3459360643C2555C57C7DAB0567FA762B42D5D6D45A76615EA7D99D933AEC04", - "chain_id": "centauri-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-14", - "is_cw20": false, - "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" - } - ] - }, - "cheqd-mainnet-1": { - "assets": [ { "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "cheqd-mainnet-1", @@ -4717,6 +5783,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -4724,22 +5791,6 @@ "coingecko_id": "osmosis", "recommended_symbol": "OSMO" }, - { - "denom": "ncheq", - "chain_id": "cheqd-mainnet-1", - "origin_denom": "ncheq", - "origin_chain_id": "cheqd-mainnet-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "CHEQ", - "name": "CHEQ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", - "decimals": 9, - "description": "Native token for the cheqd network", - "coingecko_id": "cheqd-network", - "recommended_symbol": "CHEQ" - }, { "denom": "ibc/FC47EC0858F2B2C4B06E931C116CE890B32F0D4561F88F4E66589B439E46AEF5", "chain_id": "cheqd-mainnet-1", @@ -4748,32 +5799,82 @@ "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "LUNA", "name": "LUNA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, "coingecko_id": "terra-luna-2", "recommended_symbol": "LUNA" - }, - { - "denom": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", - "chain_id": "cheqd-mainnet-1", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-2", - "is_cw20": false, - "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", - "decimals": 6, - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" } ] }, "chihuahua-1": { "assets": [ + { + "denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "chain_id": "chihuahua-1", + "origin_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "origin_chain_id": "chihuahua-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BADDOG", + "name": "BADDOG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", + "decimals": 6, + "description": "has a hat", + "recommended_symbol": "BADDOG" + }, + { + "denom": "ibc/EB2CED20AB0466F18BE49285E56B31306D4C60438A022EA995BA65D5E3CF7E09", + "chain_id": "chihuahua-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-16", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, + { + "denom": "ibc/FAC1BAAA6ECDCB88408A6EEEA13AD4736DA687F85ACD22B5BBD00D36754AC0FA", + "chain_id": "chihuahua-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-7", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/89C79BD28DCCF300B9EE87740B061011AD870EC480777FAB95D85B3ED36BC06C", + "chain_id": "chihuahua-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-11", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, { "denom": "ibc/A6A4B96313329BED910A6710BFDAFCAC89AB3F293EC91BA0DE76C14424B4ACE2", "chain_id": "chihuahua-1", @@ -4782,6 +5883,7 @@ "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "HARBOR", "name": "HARBOR", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", @@ -4797,6 +5899,7 @@ "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "XPRT", "name": "XPRT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", @@ -4805,109 +5908,100 @@ "recommended_symbol": "XPRT" }, { - "denom": "ibc/DD44CDCD7379C1550D397AE05AB87474925EB0A521A07F36298572C9F30ABEB8", + "denom": "ibc/0B3614BED25B82953A184B4AB7F2F96661443BEB2645ACACA85F3B32BF45B329", "chain_id": "chihuahua-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-7", + "origin_denom": "shib-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-78", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", - "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "decimals": 18, + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" }, { - "denom": "ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B", + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", "chain_id": "chihuahua-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-39", + "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", + "origin_chain_id": "chihuahua-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "CORSO", + "name": "CORSO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png", "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "description": "CaneCorso", + "recommended_symbol": "CORSO" }, { - "denom": "ibc/B273F94B1F66B22F1ABAB27C8B7A2692D0AB9754DC1971FCE0360962A9E4C6E7", + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", "chain_id": "chihuahua-1", - "origin_denom": "ulum", - "origin_chain_id": "lum-network-1", - "trace": "transfer/channel-81", + "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", + "origin_chain_id": "chihuahua-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LUM", - "name": "LUM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", + "is_svm": false, + "symbol": "TACOS", + "name": "TACOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png", "decimals": 6, - "coingecko_id": "lum-network", - "recommended_symbol": "LUM" + "description": "Tacos", + "recommended_symbol": "TACOS" }, { - "denom": "ibc/EB2CED20AB0466F18BE49285E56B31306D4C60438A022EA995BA65D5E3CF7E09", + "denom": "factory/chihuahua17dgp6rf7wlhyaxth0j20h33zdv6nqat8xfezvy/Spitz", "chain_id": "chihuahua-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-16", + "origin_denom": "factory/chihuahua17dgp6rf7wlhyaxth0j20h33zdv6nqat8xfezvy/Spitz", + "origin_chain_id": "chihuahua-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "SPITZ", + "name": "SPITZ", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/chihuahua/asset/spitz.png", "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "description": "The Spitz token", + "recommended_symbol": "SPITZ" }, { - "denom": "ibc/FAC1BAAA6ECDCB88408A6EEEA13AD4736DA687F85ACD22B5BBD00D36754AC0FA", + "denom": "factory/chihuahua1mjq48r6435aewerpruwc8up3tz3rzan20vneqh/MASTER", "chain_id": "chihuahua-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-7", + "origin_denom": "factory/chihuahua1mjq48r6435aewerpruwc8up3tz3rzan20vneqh/MASTER", + "origin_chain_id": "chihuahua-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "MASTER", + "name": "MASTER", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/chihuahua/asset/master.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" - }, - { - "denom": "ibc/0B3614BED25B82953A184B4AB7F2F96661443BEB2645ACACA85F3B32BF45B329", - "chain_id": "chihuahua-1", - "origin_denom": "shib-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-78", - "is_cw20": false, - "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", - "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" + "description": "Master your doggos.", + "recommended_symbol": "MASTER" }, { - "denom": "ibc/D3B753C21BB7149299C1C175A6515EDE13E04AFA0E7A6319505553B903C3C7B7", + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", "chain_id": "chihuahua-1", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "transfer/channel-17", + "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", + "origin_chain_id": "chihuahua-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "is_svm": false, + "symbol": "BDOG", + "name": "BDOG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png", "decimals": 6, - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "description": "Bulldog", + "recommended_symbol": "BDOG" }, { "denom": "ibc/1ABC53B2BB5F76F5DE57F6A6640DAC100F5D078075768115FC3B8E83C54FD9FF", @@ -4917,6 +6011,7 @@ "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ampWHALE", "name": "ampWHALE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", @@ -4924,64 +6019,52 @@ "recommended_symbol": "ampWHALE" }, { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "denom": "ibc/B2AF3247B7FD21EE12AC105759315E81567138840F81316C734548708D7D1EAB", "chain_id": "chihuahua-1", - "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", - "origin_chain_id": "chihuahua-1", - "trace": "", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, - "symbol": "WOOF", - "name": "WOOF", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "description": "Woof", - "recommended_symbol": "WOOF" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/6B1BB0F4EF06B1FBDC82BEEA23E8170355DAC6D6C24D2D40B0BC92364FE8E1C8", + "denom": "ibc/DD44CDCD7379C1550D397AE05AB87474925EB0A521A07F36298572C9F30ABEB8", "chain_id": "chihuahua-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-62", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "decimals": 6, + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/82A4028D66417588952377F3ACEFECF39BB5908DFD25B173D771D0E19376D07B", + "denom": "ibc/E35DABBACE94BD326B8146F8D9D26FE0DAF94ECC6BBED420B07DF73EA9992619", "chain_id": "chihuahua-1", - "origin_denom": "ucmst", + "origin_denom": "ucmdx", "origin_chain_id": "comdex-1", "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", - "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" - }, - { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", - "chain_id": "chihuahua-1", - "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", - "origin_chain_id": "chihuahua-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "TACOS", - "name": "TACOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png", + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "description": "Tacos", - "recommended_symbol": "TACOS" + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { "denom": "ibc/E452FABA9C51E85726BAB567EB582FEA1541B9D26543C6876996B61112DE72F7", @@ -4991,10 +6074,12 @@ "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "bWHALE", "name": "bWHALE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", "decimals": 6, + "coingecko_id": "backbone-labs-staked-whale", "recommended_symbol": "bWHALE" }, { @@ -5005,6 +6090,7 @@ "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "RAC", "name": "RAC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", @@ -5012,125 +6098,99 @@ "recommended_symbol": "RAC" }, { - "denom": "uhuahua", - "chain_id": "chihuahua-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", - "decimals": 6, - "description": "The native token of Chihuahua Chain", - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" - }, - { - "denom": "factory/chihuahua1mjq48r6435aewerpruwc8up3tz3rzan20vneqh/MASTER", - "chain_id": "chihuahua-1", - "origin_denom": "factory/chihuahua1mjq48r6435aewerpruwc8up3tz3rzan20vneqh/MASTER", - "origin_chain_id": "chihuahua-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "MASTER", - "name": "MASTER", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/chihuahua/asset/master.png", - "decimals": 6, - "description": "Master your doggos.", - "recommended_symbol": "MASTER" - }, - { - "denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "denom": "ibc/60BB22A3585B8066A4D4B6F85A5402AF8307CF16EC77688EF27E418B6FEEE2D4", "chain_id": "chihuahua-1", - "origin_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", - "origin_chain_id": "chihuahua-1", - "trace": "", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-78", "is_cw20": false, "is_evm": false, - "symbol": "BADDOG", - "name": "BADDOG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "description": "has a hat", - "recommended_symbol": "BADDOG" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/E35DABBACE94BD326B8146F8D9D26FE0DAF94ECC6BBED420B07DF73EA9992619", + "denom": "ibc/82A4028D66417588952377F3ACEFECF39BB5908DFD25B173D771D0E19376D07B", "chain_id": "chihuahua-1", - "origin_denom": "ucmdx", + "origin_denom": "ucmst", "origin_chain_id": "comdex-1", "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/89C79BD28DCCF300B9EE87740B061011AD870EC480777FAB95D85B3ED36BC06C", + "denom": "ibc/B273F94B1F66B22F1ABAB27C8B7A2692D0AB9754DC1971FCE0360962A9E4C6E7", "chain_id": "chihuahua-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-11", + "origin_denom": "ulum", + "origin_chain_id": "lum-network-1", + "trace": "transfer/channel-81", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "LUM", + "name": "LUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "coingecko_id": "lum-network", + "recommended_symbol": "LUM" }, { - "denom": "factory/chihuahua17dgp6rf7wlhyaxth0j20h33zdv6nqat8xfezvy/Spitz", + "denom": "ibc/D3B753C21BB7149299C1C175A6515EDE13E04AFA0E7A6319505553B903C3C7B7", "chain_id": "chihuahua-1", - "origin_denom": "factory/chihuahua17dgp6rf7wlhyaxth0j20h33zdv6nqat8xfezvy/Spitz", - "origin_chain_id": "chihuahua-1", - "trace": "", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "SPITZ", - "name": "SPITZ", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/chihuahua/asset/spitz.png", + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", "decimals": 6, - "description": "The Spitz token", - "recommended_symbol": "SPITZ" + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" }, { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", + "denom": "ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65", "chain_id": "chihuahua-1", - "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ucorso", - "origin_chain_id": "chihuahua-1", - "trace": "", + "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, - "symbol": "CORSO", - "name": "CORSO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/corso.png", + "is_svm": false, + "symbol": "GUPPY", + "name": "GUPPY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", "decimals": 6, - "description": "CaneCorso", - "recommended_symbol": "CORSO" + "recommended_symbol": "GUPPY" }, { - "denom": "ibc/60BB22A3585B8066A4D4B6F85A5402AF8307CF16EC77688EF27E418B6FEEE2D4", + "denom": "ibc/6B1BB0F4EF06B1FBDC82BEEA23E8170355DAC6D6C24D2D40B0BC92364FE8E1C8", "chain_id": "chihuahua-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-78", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uweed", @@ -5140,6 +6200,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WEED", "name": "WEED", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/weed.png", @@ -5148,33 +6209,53 @@ "recommended_symbol": "WEED" }, { - "denom": "ibc/DBBDE1753EFA93F09C468DB5E384861BB741D4AA73E9C7032D139BB2C99FDD65", + "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", "chain_id": "chihuahua-1", - "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "origin_chain_id": "chihuahua-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WOOF", + "name": "WOOF", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", + "decimals": 6, + "description": "Woof", + "recommended_symbol": "WOOF" + }, + { + "denom": "ibc/FA7112322CE7656DC84D441E49BAEAB9DC0AB3C7618A178A212CDE8B3F17C70B", + "chain_id": "chihuahua-1", + "origin_denom": "uwhale", "origin_chain_id": "migaloo-1", "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, - "symbol": "GUPPY", - "name": "GUPPY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "is_svm": false, + "symbol": "WHALE", + "name": "WHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", "decimals": 6, - "recommended_symbol": "GUPPY" + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" }, { - "denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", + "denom": "uhuahua", "chain_id": "chihuahua-1", - "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/ubdog", + "origin_denom": "uhuahua", "origin_chain_id": "chihuahua-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BDOG", - "name": "BDOG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/bdog.png", + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", "decimals": 6, - "description": "Bulldog", - "recommended_symbol": "BDOG" + "description": "The native token of Chihuahua Chain", + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" }, { "denom": "ibc/C1A2C4681159048DD4A116652D8594EC5CD1C30D9FD282A9DAEAD6328CF3CDCA", @@ -5184,517 +6265,546 @@ "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ION", "name": "ION", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, "coingecko_id": "ion", "recommended_symbol": "ION" - }, + } + ] + }, + "comdex-1": { + "assets": [ { - "denom": "ibc/AED9D9DBE04F77AF0EECE104855CB013C8319C764C7B78237D9F0C3A1BA7524C", - "chain_id": "chihuahua-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-68", + "denom": "ibc/1398C0819479AA74844272A00CBFA44D1E7222E70CC7CC06DE4AAC96527C3B67", + "chain_id": "comdex-1", + "origin_denom": "arb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "decimals": 18, + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB.axl" }, { - "denom": "ibc/B2AF3247B7FD21EE12AC105759315E81567138840F81316C734548708D7D1EAB", - "chain_id": "chihuahua-1", + "denom": "ibc/0695E3FA2C74C608E9573025598A7BD4297BE15180F86707B2118E513DBF4A5A", + "chain_id": "comdex-1", "origin_denom": "uluna", "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-63", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "LUNA", "name": "LUNA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, "coingecko_id": "terra-luna-2", "recommended_symbol": "LUNA" - } - ] - }, - "columbus-5": { - "assets": [ + }, { - "denom": "uinr", - "chain_id": "columbus-5", - "origin_denom": "uinr", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/109DD45CF4093BEB472784A0C5B5F4643140900020B74B102B842A4BE2AE45DA", + "chain_id": "comdex-1", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "INTC", - "name": "INTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.png", - "decimals": 6, - "description": "The INR stablecoin of Terra Classic.", - "recommended_symbol": "INTC" + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" }, { - "denom": "uaud", - "chain_id": "columbus-5", - "origin_denom": "uaud", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/1F18934D62FFDA25C75ED7974EE34DB018BA004B58C42D46EB49AF41BB01AF01", + "chain_id": "comdex-1", + "origin_denom": "shib-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "AUTC", - "name": "AUTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.png", - "decimals": 6, - "description": "The AUD stablecoin of Terra Classic.", - "recommended_symbol": "AUTC" + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "decimals": 18, + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" }, { - "denom": "uusd", - "chain_id": "columbus-5", - "origin_denom": "uusd", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/961FA3E54F5DCCA639F37A7C45F7BBE41815579EF1513B5AFBEFCFEB8F256352", + "chain_id": "comdex-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "description": "The USD stablecoin of Terra Classic.", - "coingecko_id": "terrausd", - "recommended_symbol": "USTC" + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/AC1C2A51F65F31032B0FBF87D6D405D62727B3A548F0390B8C727FF8D8193DAD", - "chain_id": "columbus-5", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-49", + "denom": "ibc/2B6FC3DC924A1400FAA6D63A112287D09403EF07AFF70ECCD131302DD801A373", + "chain_id": "comdex-1", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-52", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ucad", - "chain_id": "columbus-5", - "origin_denom": "ucad", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/345D30E8ED06B47FC538ED131D99D16126F07CD6F8B35DE96AAF4C1E445AF466", + "chain_id": "comdex-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-65", "is_cw20": false, "is_evm": false, - "symbol": "CATC", - "name": "CATC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "description": "The CAD stablecoin of Terra Classic.", - "recommended_symbol": "CATC" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "uidr", - "chain_id": "columbus-5", - "origin_denom": "uidr", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/62D4ADCCD754F4511E22C34496D37957F95F5B11AE7C0D9BFDE19A5939B1CEA5", + "chain_id": "comdex-1", + "origin_denom": "stujuno", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-45", "is_cw20": false, "is_evm": false, - "symbol": "IDTC", - "name": "IDTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png", + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "description": "The IDR stablecoin of Terra Classic.", - "recommended_symbol": "IDTC" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "ukrw", - "chain_id": "columbus-5", - "origin_denom": "ukrw", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/9F3B9FA98C4D46C7E8A5CFA250CDD875DC670715A307EEBFE59F113B2FB096FD", + "chain_id": "comdex-1", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "KRTC", - "name": "KRTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "description": "The KRW stablecoin of Terra Classic.", - "coingecko_id": "terrakrw", - "recommended_symbol": "KRTC" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "utwd", - "chain_id": "columbus-5", - "origin_denom": "utwd", - "origin_chain_id": "columbus-5", + "denom": "uharbor", + "chain_id": "comdex-1", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TWTC", - "name": "TWTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.png", + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "decimals": 6, - "description": "The TWD stablecoin of Terra Classic.", - "recommended_symbol": "TWTC" + "description": "Governance Token of Harbor protocol on Comdex network", + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" }, { - "denom": "ibc/CC3FE9ED5DE6407197D9A368CBE869C2C076CC4E082F270FF175C3EC4F26F1D4", - "chain_id": "columbus-5", - "origin_denom": "ubcre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-49", + "denom": "ibc/68CE1831283B96B73B4CD30DB6A8CC56BB0655DD6835214D2C40B2A92A17D0CA", + "chain_id": "comdex-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "bCRE", - "name": "bCRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "coingecko_id": "liquid-staking-crescent", - "recommended_symbol": "bCRE" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "chain_id": "columbus-5", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/21476176CD2CBF2F8017EFF231B1132DF23F350B0219AB47A6E087527ECADCC2", + "chain_id": "comdex-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-45", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/2C680854CCE7FDB1850302EAF06970A4E58130C294EF4E7C6E4ABA9003E1D6E8", - "chain_id": "columbus-5", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-71", + "denom": "ibc/54DEF693B7C4BF171E7FFF3ABFE2B54D6A3B8A047A32BAAE9F1417A378594EC6", + "chain_id": "comdex-1", + "origin_denom": "dai-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", - "decimals": 6, - "recommended_symbol": "LOCAL" + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.axl" }, { - "denom": "uchf", - "chain_id": "columbus-5", - "origin_denom": "uchf", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/60B6F35D03476F60B1B8BAE7C5170378C8E31C58DC424208C6E4AB6946561823", + "chain_id": "comdex-1", + "origin_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "CHTC", - "name": "CHTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.png", - "decimals": 6, - "description": "The CHF stablecoin of Terra Classic.", - "recommended_symbol": "CHTC" + "is_svm": false, + "symbol": "sDAI", + "name": "sDAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "decimals": 18, + "recommended_symbol": "sDAI.grv" }, { - "denom": "udkk", - "chain_id": "columbus-5", - "origin_denom": "udkk", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/A4E5A065B7BB3ACA2DDE1815D375C5BBE89FB9FCD47AF71D52FADC4912F5D68D", + "chain_id": "comdex-1", + "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, - "symbol": "DKTC", - "name": "DKTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.png", + "is_svm": false, + "symbol": "BAD", + "name": "BAD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", "decimals": 6, - "description": "The DKK stablecoin of Terra Classic.", - "recommended_symbol": "DKTC" + "recommended_symbol": "BAD" }, { - "denom": "uhkd", - "chain_id": "columbus-5", - "origin_denom": "uhkd", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/CF48C4CC3F7ADB7FC1BB97210E0B647C990586236FCD2478D5DA714C5A5C3665", + "chain_id": "comdex-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "HKTC", - "name": "HKTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "description": "The HKD stablecoin of Terra Classic.", - "recommended_symbol": "HKTC" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "ucny", - "chain_id": "columbus-5", - "origin_denom": "ucny", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/D01562AB9C4CC84E06A84FFA213C7592508120C3F91EFFB1E62117D5932C2B1F", + "chain_id": "comdex-1", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-35", "is_cw20": false, "is_evm": false, - "symbol": "CNTC", - "name": "CNTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.png", - "decimals": 6, - "description": "The CNY stablecoin of Terra Classic.", - "recommended_symbol": "CNTC" + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "ibc/24953D665DE5248F18DB21BE4BAF9871BB33E780C73BD002D140628338BE4CCB", - "chain_id": "columbus-5", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-71", + "denom": "ibc/D9633F0B9497924A5159FE439B6FD9B9D9B5C66B7646612E1D23204136E3486B", + "chain_id": "comdex-1", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-78", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "usek", - "chain_id": "columbus-5", - "origin_denom": "usek", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/E1616E7C19EA474C565737709A628D6F8A23FF9D3E9A7A6871306CF5E0A5341E", + "chain_id": "comdex-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "SETC", - "name": "SETC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png", + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "description": "The SEK stablecoin of Terra Classic.", - "recommended_symbol": "SETC" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD", - "chain_id": "columbus-5", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/EC7576E3F8D254787264F0972E6518E42CFFB5305EC9D0BC7DD7B7FFEFACB28A", + "chain_id": "comdex-1", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", - "decimals": 6, - "recommended_symbol": "sqOSMO" + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "ujpy", - "chain_id": "columbus-5", - "origin_denom": "ujpy", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/167E3D88D71B7D2F6308D3EF93FC3DD51932B2D9672D72B71418F61CBC5F5717", + "chain_id": "comdex-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "JPTC", - "name": "JPTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "description": "The JPY stablecoin of Terra Classic.", - "recommended_symbol": "JPTC" + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "uphp", - "chain_id": "columbus-5", - "origin_denom": "uphp", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/42ECAF231EC6C17512CEF6325EF337BDC87A39CCBFF61142738DC271BBD15F2F", + "chain_id": "comdex-1", + "origin_denom": "stuluna", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-45", "is_cw20": false, "is_evm": false, - "symbol": "PHTC", - "name": "PHTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.png", + "is_svm": false, + "symbol": "stLUNA", + "name": "stLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", "decimals": 6, - "description": "The PHP stablecoin of Terra Classic.", - "recommended_symbol": "PHTC" + "coingecko_id": "stride-staked-luna", + "recommended_symbol": "stLUNA" }, { - "denom": "usdr", - "chain_id": "columbus-5", - "origin_denom": "usdr", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/6DA88D255863185316FC42ABEB154E9BD6FFA63C93E27CF5933BA408B544D396", + "chain_id": "comdex-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-86", "is_cw20": false, "is_evm": false, - "symbol": "SDTC", - "name": "SDTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.png", - "decimals": 6, - "description": "The SDR stablecoin of Terra Classic.", - "recommended_symbol": "SDTC" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "uthb", - "chain_id": "columbus-5", - "origin_denom": "uthb", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/81C3A46287D7664A8FD19843AC8D0CFD6C284EF1F750C661C48B3544277B1B29", + "chain_id": "comdex-1", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "THTC", - "name": "THTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.png", - "decimals": 6, - "description": "The THB stablecoin of Terra Classic.", - "recommended_symbol": "THTC" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "decimals": 18, + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ueur", - "chain_id": "columbus-5", - "origin_denom": "ueur", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/AC1C2A51F65F31032B0FBF87D6D405D62727B3A548F0390B8C727FF8D8193DAD", + "chain_id": "comdex-1", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, - "symbol": "EUTC", - "name": "EUTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "description": "The EUR stablecoin of Terra Classic.", - "recommended_symbol": "EUTC" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ugbp", - "chain_id": "columbus-5", - "origin_denom": "ugbp", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/FF6058DDFA9F0885B30D0F6A64BF37CB9A1C6A5DDF19CB204502D9B9577DF1F7", + "chain_id": "comdex-1", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-61", "is_cw20": false, "is_evm": false, - "symbol": "GBTC", - "name": "GBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.png", + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", "decimals": 6, - "description": "The GBP stablecoin of Terra Classic.", - "recommended_symbol": "GBTC" + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" }, { - "denom": "uluna", - "chain_id": "columbus-5", - "origin_denom": "uluna", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/0A6F20FA34BEBB63568E44C81C6E154C63ED061BA45E7EBC144B24C0DBBD0A4F", + "chain_id": "comdex-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "LUNC", - "name": "LUNC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", - "decimals": 6, - "description": "The native staking token of Terra Classic.", - "coingecko_id": "terra-luna", - "recommended_symbol": "LUNC" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "umnt", - "chain_id": "columbus-5", - "origin_denom": "umnt", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/1966B5EDCAE4F777CB3C83A83AEE3CBA182F2367A41BA61F4F5B9DC8FE606933", + "chain_id": "comdex-1", + "origin_denom": "stucmdx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-45", "is_cw20": false, "is_evm": false, - "symbol": "MNTC", - "name": "MNTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png", + "is_svm": false, + "symbol": "stCMDX", + "name": "stCMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", "decimals": 6, - "description": "The MNT stablecoin of Terra Classic.", - "recommended_symbol": "MNTC" + "recommended_symbol": "stCMDX" }, { - "denom": "umyr", - "chain_id": "columbus-5", - "origin_denom": "umyr", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/69E9014ACB503CFE1DD9F3C29133325ECC4DE82E55C3C519015120BF29924882", + "chain_id": "comdex-1", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-57", "is_cw20": false, "is_evm": false, - "symbol": "MYTC", - "name": "MYTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.png", + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", "decimals": 6, - "description": "The MYR stablecoin of Terra Classic.", - "recommended_symbol": "MYTC" + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" }, { - "denom": "unok", - "chain_id": "columbus-5", - "origin_denom": "unok", - "origin_chain_id": "columbus-5", + "denom": "ucmdx", + "chain_id": "comdex-1", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NOTC", - "name": "NOTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.png", + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "description": "The NOK stablecoin of Terra Classic.", - "recommended_symbol": "NOTC" + "description": "Native Token of Comdex Protocol", + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "usgd", - "chain_id": "columbus-5", - "origin_denom": "usgd", - "origin_chain_id": "columbus-5", - "trace": "", + "denom": "ibc/E2B935EB96D7AEFC612BC4CE33693DA56D9A33BB224F688FF9D1F626BA20A671", + "chain_id": "comdex-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "SGTC", - "name": "SGTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.png", + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "description": "The SGD stablecoin of Terra Classic.", - "recommended_symbol": "SGTC" - } - ] - }, - "comdex-1": { - "assets": [ + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" + }, { - "denom": "ibc/EC7576E3F8D254787264F0972E6518E42CFFB5305EC9D0BC7DD7B7FFEFACB28A", + "denom": "ibc/E437FFE5ABB5163FA7968BAF68146512B81E842DF05BA27E3B25E64B7CDC9AC7", "chain_id": "comdex-1", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-57", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "decimals": 6, + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ucmdx", + "denom": "ibc/E8F0355CBC21AFD4C758E93383D28404D19AEB81E8251A63FAA0C250672ADBEF", "chain_id": "comdex-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", - "decimals": 6, - "description": "Native Token of Comdex Protocol", - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { "denom": "ucmst", @@ -5704,6 +6814,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CMST", "name": "CMST", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", @@ -5713,148 +6824,62 @@ "recommended_symbol": "CMST" }, { - "denom": "uharbor", - "chain_id": "comdex-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", - "decimals": 6, - "description": "Governance Token of Harbor protocol on Comdex network", - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" - }, - { - "denom": "ibc/BED9212E5BA494E6EA522D82D55972A3C148BB0232FE2B4366FF5356FB3E522C", + "denom": "ibc/A2DF3F0A871DE38DDB91A7A2C545C317D6CD9F8FDBEB3482632D941ACC0B3696", "chain_id": "comdex-1", - "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-63", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-45", "is_cw20": false, "is_evm": false, - "symbol": "bWHALE", - "name": "bWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", - "decimals": 6, - "recommended_symbol": "bWHALE" + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" }, { - "denom": "ibc/0A6F20FA34BEBB63568E44C81C6E154C63ED061BA45E7EBC144B24C0DBBD0A4F", + "denom": "ibc/78A0828C273648513517BC6C10D9F7F2768472DD5C0F88B27CB54E346CB57D59", "chain_id": "comdex-1", - "origin_denom": "wbtc-satoshi", + "origin_denom": "wftm-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "WFTM", + "name": "WFTM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "decimals": 18, + "coingecko_id": "wrapped-fantom", + "recommended_symbol": "WFTM.axl" }, { - "denom": "ibc/9F3B9FA98C4D46C7E8A5CFA250CDD875DC670715A307EEBFE59F113B2FB096FD", + "denom": "ibc/7994F8A034093FAAB560BEB01901C0A8ACA63AF015517909715FB3F543EF8406", "chain_id": "comdex-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-31", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv" }, { - "denom": "ibc/365407B27EE99FD841FC3805F2B63323E4E0A7EA35D4413E305188134B640B4D", - "chain_id": "comdex-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-45", - "is_cw20": false, - "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" - }, - { - "denom": "ibc/54DEF693B7C4BF171E7FFF3ABFE2B54D6A3B8A047A32BAAE9F1417A378594EC6", - "chain_id": "comdex-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", - "is_cw20": false, - "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" - }, - { - "denom": "ibc/D01562AB9C4CC84E06A84FFA213C7592508120C3F91EFFB1E62117D5932C2B1F", - "chain_id": "comdex-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-35", - "is_cw20": false, - "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" - }, - { - "denom": "ibc/D031367F58DFD5EED54A49ADCB4EFB44AD9ECCAE383708BFDCCACF3CF463B77C", - "chain_id": "comdex-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-87", - "is_cw20": false, - "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" - }, - { - "denom": "ibc/FF6058DDFA9F0885B30D0F6A64BF37CB9A1C6A5DDF19CB204502D9B9577DF1F7", - "chain_id": "comdex-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-61", - "is_cw20": false, - "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", - "decimals": 6, - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" - }, - { - "denom": "ibc/CA83E725FE62B05289379740308469FD6BA5B0A216D37D3C0E71DBF3618DD535", + "denom": "ibc/CA83E725FE62B05289379740308469FD6BA5B0A216D37D3C0E71DBF3618DD535", "chain_id": "comdex-1", "origin_denom": "umntl", "origin_chain_id": "mantle-1", "trace": "transfer/channel-59", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "MNTL", "name": "MNTL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", @@ -5870,6 +6895,7 @@ "trace": "transfer/channel-45", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stOSMO", "name": "stOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", @@ -5877,111 +6903,6 @@ "coingecko_id": "stride-staked-osmo", "recommended_symbol": "stOSMO" }, - { - "denom": "ibc/CF48C4CC3F7ADB7FC1BB97210E0B647C990586236FCD2478D5DA714C5A5C3665", - "chain_id": "comdex-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-31", - "is_cw20": false, - "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" - }, - { - "denom": "ibc/D9633F0B9497924A5159FE439B6FD9B9D9B5C66B7646612E1D23204136E3486B", - "chain_id": "comdex-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-78", - "is_cw20": false, - "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", - "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" - }, - { - "denom": "ibc/345D30E8ED06B47FC538ED131D99D16126F07CD6F8B35DE96AAF4C1E445AF466", - "chain_id": "comdex-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-65", - "is_cw20": false, - "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" - }, - { - "denom": "ibc/68CE1831283B96B73B4CD30DB6A8CC56BB0655DD6835214D2C40B2A92A17D0CA", - "chain_id": "comdex-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", - "is_cw20": false, - "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" - }, - { - "denom": "ibc/69E9014ACB503CFE1DD9F3C29133325ECC4DE82E55C3C519015120BF29924882", - "chain_id": "comdex-1", - "origin_denom": "stk/uatom", - "origin_chain_id": "core-1", - "trace": "transfer/channel-57", - "is_cw20": false, - "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", - "decimals": 6, - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" - }, - { - "denom": "ibc/6DA88D255863185316FC42ABEB154E9BD6FFA63C93E27CF5933BA408B544D396", - "chain_id": "comdex-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-86", - "is_cw20": false, - "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" - }, - { - "denom": "ibc/78A0828C273648513517BC6C10D9F7F2768472DD5C0F88B27CB54E346CB57D59", - "chain_id": "comdex-1", - "origin_denom": "wftm-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", - "is_cw20": false, - "is_evm": false, - "symbol": "WFTM", - "name": "WFTM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", - "decimals": 18, - "coingecko_id": "wrapped-fantom", - "recommended_symbol": "WFTM.axl" - }, { "denom": "ibc/E910718AB26DC0E05677D9B034CF23F17B5B468A464B0CB873A0BE65398DBFBD", "chain_id": "comdex-1", @@ -5990,6 +6911,7 @@ "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CANTO", "name": "CANTO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", @@ -5998,298 +6920,297 @@ "recommended_symbol": "CANTO" }, { - "denom": "ibc/62D4ADCCD754F4511E22C34496D37957F95F5B11AE7C0D9BFDE19A5939B1CEA5", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "chain_id": "comdex-1", - "origin_denom": "stujuno", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-45", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "ibc/81C3A46287D7664A8FD19843AC8D0CFD6C284EF1F750C661C48B3544277B1B29", + "denom": "ibc/50EF138042B553362774A8A9DE967F610E52CAEB3BA864881C9A1436DED98075", "chain_id": "comdex-1", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" }, { - "denom": "ibc/A2DF3F0A871DE38DDB91A7A2C545C317D6CD9F8FDBEB3482632D941ACC0B3696", + "denom": "ibc/365407B27EE99FD841FC3805F2B63323E4E0A7EA35D4413E305188134B640B4D", "chain_id": "comdex-1", - "origin_denom": "staevmos", + "origin_denom": "ustrd", "origin_chain_id": "stride-1", "trace": "transfer/channel-45", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/A4E5A065B7BB3ACA2DDE1815D375C5BBE89FB9FCD47AF71D52FADC4912F5D68D", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "chain_id": "comdex-1", - "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-89", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "BAD", - "name": "BAD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "recommended_symbol": "BAD" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/167E3D88D71B7D2F6308D3EF93FC3DD51932B2D9672D72B71418F61CBC5F5717", + "denom": "ibc/028AD896D651CF44F5CA35856D5BAA72772802269F0F699C4BD2398B0576F468", "chain_id": "comdex-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-18", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" - }, + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" + } + ] + }, + "core-1": { + "assets": [ { - "denom": "ibc/412DE088BAD7A3AB5BF299E1AEEDDBA88E6F3E1BCFEC5EC0BDDEC2A5A062F278", - "chain_id": "comdex-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-63", + "denom": "stk/ustars", + "chain_id": "core-1", + "origin_denom": "stk/ustars", + "origin_chain_id": "core-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ampWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "is_svm": false, + "symbol": "stkSTARS", + "name": "stkSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png", "decimals": 6, - "recommended_symbol": "ampWHALE" + "description": "PSTAKE Liquid-Staked STARS", + "coingecko_id": "stkstars", + "recommended_symbol": "stkSTARS" }, { - "denom": "ibc/42ECAF231EC6C17512CEF6325EF337BDC87A39CCBFF61142738DC271BBD15F2F", - "chain_id": "comdex-1", - "origin_denom": "stuluna", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-45", + "denom": "stk/uxprt", + "chain_id": "core-1", + "origin_denom": "stk/uxprt", + "origin_chain_id": "core-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stLUNA", - "name": "stLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "is_svm": false, + "symbol": "stkXPRT", + "name": "stkXPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkxprt.png", "decimals": 6, - "coingecko_id": "stride-staked-luna", - "recommended_symbol": "stLUNA" + "description": "PSTAKE Liquid-Staked XPRT", + "coingecko_id": "stkxprt", + "recommended_symbol": "stkXPRT" }, { - "denom": "ibc/E437FFE5ABB5163FA7968BAF68146512B81E842DF05BA27E3B25E64B7CDC9AC7", - "chain_id": "comdex-1", + "denom": "uxprt", + "chain_id": "core-1", "origin_denom": "uxprt", "origin_chain_id": "core-1", - "trace": "transfer/channel-57", + "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "XPRT", "name": "XPRT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, + "description": "The XPRT token is primarily a governance token for the Persistence chain.", "coingecko_id": "persistence", "recommended_symbol": "XPRT" }, { - "denom": "ibc/E8F0355CBC21AFD4C758E93383D28404D19AEB81E8251A63FAA0C250672ADBEF", - "chain_id": "comdex-1", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", + "denom": "stk/uatom", + "chain_id": "core-1", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "decimals": 6, + "description": "PSTAKE Liquid-Staked ATOM", + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" }, { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "chain_id": "comdex-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "stk/uhuahua", + "chain_id": "core-1", + "origin_denom": "stk/uhuahua", + "origin_chain_id": "core-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "stkHUAHUA", + "name": "stkHUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkhuahua.png", "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "description": "PSTAKE Liquid-Staked HUAHUA", + "coingecko_id": "stkhuahua", + "recommended_symbol": "stkHUAHUA" }, { - "denom": "ibc/961FA3E54F5DCCA639F37A7C45F7BBE41815579EF1513B5AFBEFCFEB8F256352", - "chain_id": "comdex-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-37", + "denom": "stk/uosmo", + "chain_id": "core-1", + "origin_denom": "stk/uosmo", + "origin_chain_id": "core-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "stkOSMO", + "name": "stkOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "description": "PSTAKE Liquid-Staked OSMO", + "coingecko_id": "pstake-staked-osmo", + "recommended_symbol": "stkOSMO" }, { - "denom": "ibc/1398C0819479AA74844272A00CBFA44D1E7222E70CC7CC06DE4AAC96527C3B67", - "chain_id": "comdex-1", - "origin_denom": "arb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", + "denom": "ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73", + "chain_id": "core-1", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-41", "is_cw20": false, "is_evm": false, - "symbol": "ARB", - "name": "ARB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", "decimals": 18, - "coingecko_id": "arbitrum", - "recommended_symbol": "ARB.axl" - }, - { - "denom": "ibc/1966B5EDCAE4F777CB3C83A83AEE3CBA182F2367A41BA61F4F5B9DC8FE606933", - "chain_id": "comdex-1", - "origin_denom": "stucmdx", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-45", - "is_cw20": false, - "is_evm": false, - "symbol": "stCMDX", - "name": "stCMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", - "decimals": 6, - "recommended_symbol": "stCMDX" + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { - "denom": "ibc/AC1C2A51F65F31032B0FBF87D6D405D62727B3A548F0390B8C727FF8D8193DAD", - "chain_id": "comdex-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-49", + "denom": "ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB", + "chain_id": "core-1", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/1A8D30507F3EAC6A99666EDCB8CD147D1453B35E68F4331B63848B2040E9A5E2", - "chain_id": "comdex-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-63", + "denom": "ibc/E40F6BAB4FFBDB908F63366155A793AB6B42EEB4FCD856C1DF7C91BE7F252D61", + "chain_id": "core-1", + "origin_denom": "uqck", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "chain_id": "comdex-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", + "chain_id": "core-1", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-129", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/0695E3FA2C74C608E9573025598A7BD4297BE15180F86707B2118E513DBF4A5A", - "chain_id": "comdex-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-51", + "denom": "ibc/C98348DF19AA429B2202B408DD87332BA3A9533CC626E507F5A16082F26FCF16", + "chain_id": "core-1", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-67", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/E1616E7C19EA474C565737709A628D6F8A23FF9D3E9A7A6871306CF5E0A5341E", - "chain_id": "comdex-1", + "denom": "ibc/34C83B3566255FBE18D4D6B6D1716DBC8993CC3FB2E6110A6BB47DFACA4B0A7A", + "chain_id": "core-1", "origin_denom": "uusdc", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "coingecko_id": "usd-coin", + "coingecko_id": "axlusdc", "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/1F18934D62FFDA25C75ED7974EE34DB018BA004B58C42D46EB49AF41BB01AF01", - "chain_id": "comdex-1", - "origin_denom": "shib-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-34", - "is_cw20": false, - "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", - "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" - }, - { - "denom": "ibc/21476176CD2CBF2F8017EFF231B1132DF23F350B0219AB47A6E087527ECADCC2", - "chain_id": "comdex-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-45", + "denom": "ibc/3718F4B083ACB5BDCC1312B96AEE4E968278B4FC8EA67C3E6DDF133D4EE60B88", + "chain_id": "core-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-67", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stATOM", "name": "stATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", @@ -6298,13 +7219,14 @@ "recommended_symbol": "stATOM" }, { - "denom": "ibc/2B6FC3DC924A1400FAA6D63A112287D09403EF07AFF70ECCD131302DD801A373", - "chain_id": "comdex-1", + "denom": "ibc/3B6578698023BE802272D184CCA5B84C865546467D0548EC148ECEB91C6F714C", + "chain_id": "core-1", "origin_denom": "uakt", "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-52", + "trace": "transfer/channel-213", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "AKT", "name": "AKT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", @@ -6313,114 +7235,154 @@ "recommended_symbol": "AKT" }, { - "denom": "ibc/028AD896D651CF44F5CA35856D5BAA72772802269F0F699C4BD2398B0576F468", - "chain_id": "comdex-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-89", + "denom": "ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B", + "chain_id": "core-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-197", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" - } - ] - }, - "core-1": { - "assets": [ + "description": "The native token of Stargaze", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" + }, { - "denom": "ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE", + "denom": "ibc/AFFED3EB2292EAE7D7B9FD6226241EEC70D4FA62675E14E025EB2FBDC150A244", "chain_id": "core-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-71", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", + "denom": "ibc/B56D6A6284B153D6F054485A9B78AD1FCE5699D751DA511262268105983B147C", "chain_id": "core-1", - "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-38", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, - "symbol": "PSTAKE", - "name": "PSTAKE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "decimals": 6, + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" + }, + { + "denom": "ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F", + "chain_id": "core-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-37", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, + { + "denom": "stk/adydx", + "chain_id": "core-1", + "origin_denom": "stk/adydx", + "origin_chain_id": "core-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stkDYDX", + "name": "stkDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png", "decimals": 18, - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", - "coingecko_id": "pstake-finance", - "recommended_symbol": "PSTAKE.grv" + "description": "PSTAKE Liquid-Staked DYDX", + "coingecko_id": "stkdydx", + "recommended_symbol": "stkDYDX" }, { - "denom": "ibc/C98348DF19AA429B2202B408DD87332BA3A9533CC626E507F5A16082F26FCF16", + "denom": "ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85", "chain_id": "core-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-67", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/E40F6BAB4FFBDB908F63366155A793AB6B42EEB4FCD856C1DF7C91BE7F252D61", + "denom": "ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C", "chain_id": "core-1", - "origin_denom": "uqck", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-73", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "QCK", - "name": "QCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "decimals": 6, - "coingecko_id": "quicksilver", - "recommended_symbol": "QCK" + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" }, { - "denom": "ibc/3718F4B083ACB5BDCC1312B96AEE4E968278B4FC8EA67C3E6DDF133D4EE60B88", + "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", "chain_id": "core-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-67", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-132", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "description": "USD Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/B79D2207479C372FAE4288211CAB6E8D17C9C8E981D6133880B7C4D07F7B62AB", + "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", "chain_id": "core-1", - "origin_denom": "stadydx", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-67", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-131", "is_cw20": false, "is_evm": false, - "symbol": "stDYDX", - "name": "stDYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", "decimals": 18, - "coingecko_id": "stride-staked-dydx", - "recommended_symbol": "stDYDX" + "description": "The native staking token of dYdX Protocol.", + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" }, { "denom": "ibc/25877BD1436C689E501A281CE82647CC9649EBFE0D38CB2AB0B8C17ACB9BD921", @@ -6430,6 +7392,7 @@ "trace": "transfer/channel-68", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CRE", "name": "CRE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", @@ -6445,6 +7408,7 @@ "trace": "transfer/channel-38", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "GRAVITON", "name": "GRAVITON", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", @@ -6454,80 +7418,54 @@ "recommended_symbol": "GRAVITON" }, { - "denom": "ibc/8AD0356E16A8EC966F71C62016EECF54239762CC276BA1BAB4F954423951CF5C", - "chain_id": "core-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-82", - "is_cw20": false, - "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" - }, - { - "denom": "ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85", - "chain_id": "core-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-6", - "is_cw20": false, - "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" - }, - { - "denom": "ibc/F190D85E03B064A5BB7743B77394857D602BAAA1A4E8A2E8AFC227F4D3E9BECB", + "denom": "ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4", "chain_id": "core-1", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-71", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-203", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "description": "The native token of Chihuahua Chain", + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" }, { - "denom": "ibc/16CB664A4DFCCC37C0EF0A0591AD0EF3BB93A0809A5B6BBC86F8F1533D5E4F58", + "denom": "ibc/B79D2207479C372FAE4288211CAB6E8D17C9C8E981D6133880B7C4D07F7B62AB", "chain_id": "core-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-81", + "origin_denom": "stadydx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-67", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", - "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "is_svm": false, + "symbol": "stDYDX", + "name": "stDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "decimals": 18, + "coingecko_id": "stride-staked-dydx", + "recommended_symbol": "stDYDX" }, { - "denom": "ibc/19FB6B1E31DD78A44856AEFF43650A274DE55F81F6C38DC7BA3EF1B4FBB647B1", + "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", "chain_id": "core-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-51", + "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-38", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "PSTAKE", + "name": "PSTAKE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "decimals": 18, + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", + "coingecko_id": "pstake-finance", + "recommended_symbol": "PSTAKE.grv" }, { "denom": "ibc/88386638D9EE3A4BD2B16E4A7EB239A435E4BA1B1BB450EA46ADB771BAB10A63", @@ -6537,6 +7475,7 @@ "trace": "transfer/channel-136", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NTRN", "name": "NTRN", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", @@ -6545,50 +7484,20 @@ "recommended_symbol": "NTRN" }, { - "denom": "ibc/C559977F5797BDC1D74C0836A10C379C991D664166CB60D776A83029852431B4", - "chain_id": "core-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-129", - "is_cw20": false, - "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" - }, - { - "denom": "ibc/CA687302422C075B26948BEC7143F6D47BACAB53421D57DF30741F91D4DFCA1F", + "denom": "ibc/8AD0356E16A8EC966F71C62016EECF54239762CC276BA1BAB4F954423951CF5C", "chain_id": "core-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-37", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-82", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" - }, - { - "denom": "ibc/D64E84758BCA42602C27E9ED2DB8F4EFDAE6A1E311CF404B516D45FEDF319D73", - "chain_id": "core-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-41", - "is_cw20": false, - "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { "denom": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", @@ -6598,6 +7507,7 @@ "trace": "transfer/channel-24", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -6606,6 +7516,22 @@ "coingecko_id": "cosmos", "recommended_symbol": "ATOM" }, + { + "denom": "ibc/4E7257D6B8EBFB10B5FF9092D992D9A11D001C8BB7D877134CE657647FF6AFAE", + "chain_id": "core-1", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-71", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "decimals": 6, + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" + }, { "denom": "ibc/69B4810E989B56FC6CA41F395228236FA7E7F59B9A3B7AF3FB0A344361C38389", "chain_id": "core-1", @@ -6614,6 +7540,7 @@ "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ION", "name": "ION", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", @@ -6623,128 +7550,21 @@ "recommended_symbol": "ION" }, { - "denom": "ibc/AD8E1D4AC4EA8FC79CC46E33319A3791477D4DEBFC30D5D874074B993422B41B", - "chain_id": "core-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-197", - "is_cw20": false, - "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "decimals": 6, - "description": "The native token of Stargaze", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" - }, - { - "denom": "ibc/AFFED3EB2292EAE7D7B9FD6226241EEC70D4FA62675E14E025EB2FBDC150A244", - "chain_id": "core-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-6", - "is_cw20": false, - "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", - "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" - }, - { - "denom": "stk/adydx", - "chain_id": "core-1", - "origin_denom": "stk/adydx", - "origin_chain_id": "core-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "stkDYDX", - "name": "stkDYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png", - "decimals": 18, - "description": "PSTAKE Liquid-Staked DYDX", - "coingecko_id": "stkdydx", - "recommended_symbol": "stkDYDX" - }, - { - "denom": "stk/uosmo", - "chain_id": "core-1", - "origin_denom": "stk/uosmo", - "origin_chain_id": "core-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "stkOSMO", - "name": "stkOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", - "decimals": 6, - "description": "PSTAKE Liquid-Staked OSMO", - "coingecko_id": "pstake-staked-osmo", - "recommended_symbol": "stkOSMO" - }, - { - "denom": "ibc/34C83B3566255FBE18D4D6B6D1716DBC8993CC3FB2E6110A6BB47DFACA4B0A7A", - "chain_id": "core-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-51", - "is_cw20": false, - "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" - }, - { - "denom": "uxprt", - "chain_id": "core-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", - "decimals": 6, - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" - }, - { - "denom": "ibc/B56D6A6284B153D6F054485A9B78AD1FCE5699D751DA511262268105983B147C", - "chain_id": "core-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-51", - "is_cw20": false, - "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", - "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" - }, - { - "denom": "ibc/B597D779FCDD9021263C98A48F1AFA9D2BCCCE980F397CDE5681CCEDE7DEE1A4", + "denom": "ibc/5D3B6445EA1D7064C4B1CCB588638589529556E1BCBADF13475021B42EA8C73B", "chain_id": "core-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-203", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-159", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", - "decimals": 6, - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "is_svm": false, + "symbol": "SHD", + "name": "SHD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "description": "The native token cw20 for Shade on Secret Network", + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" }, { "denom": "ibc/BF9940B9D537FE7CC0FD227A98C01E35729A2C9A3A9BD54A1CEB2AE854B15F28", @@ -6754,6 +7574,7 @@ "trace": "transfer/channel-38", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stkETH", "name": "stkETH", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/stketh.png", @@ -6769,6 +7590,7 @@ "trace": "transfer/channel-202", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "BLD", "name": "BLD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", @@ -6776,6 +7598,38 @@ "coingecko_id": "agoric", "recommended_symbol": "BLD" }, + { + "denom": "ibc/16CB664A4DFCCC37C0EF0A0591AD0EF3BB93A0809A5B6BBC86F8F1533D5E4F58", + "chain_id": "core-1", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-81", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "decimals": 6, + "coingecko_id": "umee", + "recommended_symbol": "UMEE" + }, + { + "denom": "ibc/19FB6B1E31DD78A44856AEFF43650A274DE55F81F6C38DC7BA3EF1B4FBB647B1", + "chain_id": "core-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-51", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + }, { "denom": "ibc/1D1218E270EC508BAF00AEA3EB24E6FA50C19D93AFABD406886633098D0B76B0", "chain_id": "core-1", @@ -6784,1180 +7638,1268 @@ "trace": "transfer/channel-129", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KAVA", "name": "KAVA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "decimals": 6, "coingecko_id": "kava", "recommended_symbol": "KAVA" - }, + } + ] + }, + "coreum-mainnet-1": { + "assets": [ { - "denom": "stk/uatom", - "chain_id": "core-1", - "origin_denom": "stk/uatom", - "origin_chain_id": "core-1", - "trace": "", + "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "chain_id": "coreum-mainnet-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", - "decimals": 6, - "description": "PSTAKE Liquid-Staked ATOM", - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" - }, - { - "denom": "stk/ustars", - "chain_id": "core-1", - "origin_denom": "stk/ustars", - "origin_chain_id": "core-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "stkSTARS", - "name": "stkSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "description": "PSTAKE Liquid-Staked STARS", - "coingecko_id": "stkstars", - "recommended_symbol": "stkSTARS" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", - "chain_id": "core-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-132", + "denom": "ibc/E7FA8D2095742180BDA6E921A04A3EAB6FE9FB28BC328838EE5E40453272DB37", + "chain_id": "coreum-mainnet-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-30", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "decimals": 6, - "description": "USD Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", - "chain_id": "core-1", + "denom": "ibc/F8CA5236869F819BC006EEF088E67889A26E4140339757878F0F4E229CDDA858", + "chain_id": "coreum-mainnet-1", "origin_denom": "adydx", "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-131", + "trace": "transfer/channel-24", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DYDX", "name": "DYDX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", "decimals": 18, - "description": "The native staking token of dYdX Protocol.", "coingecko_id": "dydx", "recommended_symbol": "DYDX" }, { - "denom": "ibc/4F69220C2F5F70BA0B0B66B4534F7916C529EB8350BF5EDF2B8D56682D8F2C9C", - "chain_id": "core-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-71", + "denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "chain_id": "coreum-mainnet-1", + "origin_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "XRP", + "name": "XRP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" - } - ] - }, - "cosmoshub-4": { - "assets": [ + "description": "XRP bridged from XRPL", + "coingecko_id": "pulsara", + "recommended_symbol": "XRP" + }, { - "denom": "ibc/5662412372381F56C5F83A0404DC7209E5143ABD32EF67B5705DBE8D9C2BF001", - "chain_id": "cosmoshub-4", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "denom": "ibc/552963B375860E3213984367FC0E78B8A88F9F7E75041A731ED6F4045A8E96F6", + "chain_id": "coreum-mainnet-1", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-27", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "ibc/D03D22ECC32A3CADCBEC2869C599B656AA8F87C5C1D2B4EAB32130273A95AF5D", - "chain_id": "cosmoshub-4", - "origin_denom": "eth.1.2.942d87", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-342", + "denom": "usara-core1r9gc0rnxnzpq33u82f44aufgdwvyxv4wyepyck98m9v2pxua6naqr8h03z", + "chain_id": "coreum-mainnet-1", + "origin_denom": "usara-core1r9gc0rnxnzpq33u82f44aufgdwvyxv4wyepyck98m9v2pxua6naqr8h03z", + "origin_chain_id": "coreum-mainnet-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", - "decimals": 18, - "recommended_symbol": "ETH.carbon" + "is_svm": false, + "symbol": "SARA", + "name": "SARA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/coreum/asset/sara.png", + "decimals": 6, + "description": "Pulsara Ecosystem Token", + "coingecko_id": "pulsara", + "recommended_symbol": "SARA" }, { - "denom": "ibc/BBB8E7A221C42270ACBEAC5DBC0B26C1AE69DB7802D528F3163D1443FE86E357", - "chain_id": "cosmoshub-4", - "origin_denom": "uqck", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-467", + "denom": "ibc/DBB7316D88202332E4D617255746ADFC419301BBCE839E9AECEE6CC9E9B9E2CB", + "chain_id": "coreum-mainnet-1", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "QCK", - "name": "QCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", - "decimals": 6, - "coingecko_id": "quicksilver", - "recommended_symbol": "QCK" + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { - "denom": "ibc/44CAB1CDACF74FFA6AD06F2559EF99C3A0240461C02075A4F10055011FBCC7BA", - "chain_id": "cosmoshub-4", - "origin_denom": "cgt/1", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-342", + "denom": "xrpl11278ecf9e-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "chain_id": "coreum-mainnet-1", + "origin_denom": "xrpl11278ecf9e-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USD", - "name": "USD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "is_svm": false, + "symbol": "SOLO", + "name": "SOLO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/coreum/asset/solo.png", + "decimals": 15, + "description": "Sologenic", + "coingecko_id": "solo-coin", + "recommended_symbol": "SOLO" + }, + { + "denom": "ibc/078EAF11288A47609FD894070CA8A1BFCEBD9E08745EA7030F95D7ADEE2E22CA", + "chain_id": "coreum-mainnet-1", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "decimals": 18, - "recommended_symbol": "USD" + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "uatom", - "chain_id": "cosmoshub-4", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "", + "denom": "ibc/12B178A885FC6891E0E09E1FB013973C5632B7093CE52D8F33B32E76E3BB6EA1", + "chain_id": "coreum-mainnet-1", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/CF52BFC8A11248F05151BFEC0FB033C3531E40C7BAFC72E277F49346EF76E981", - "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "denom": "ibc/64ADA1661E3C1A4293E3BB15D5BD13012D0DB3D9002C117C30D7C429A32F4D51", + "chain_id": "coreum-mainnet-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-7", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "decimals": 6, + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" + }, + { + "denom": "ibc/AB305490F17ECCAE3F2B0398A572E0EFB3AF394B90C3A1663DA28C1F0869F624", + "chain_id": "coreum-mainnet-1", + "origin_denom": "ukuji", "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/DEC41A02E47658D40FC71E5A35A9C807111F5A6662A3FB5DA84C4E6F53E616B3", - "chain_id": "cosmoshub-4", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-288", + "denom": "ucore", + "chain_id": "coreum-mainnet-1", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", "decimals": 6, - "description": "Umee Staking Coin", - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "description": "The native token of Coreum", + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "ibc/B3E59FB7F655F24D9941DFB59D09A8D2EFD6862CD2A50F258DD63986BB46B789", - "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "denom": "ibc/E1E3674A0E4E1EF9C69646F9AF8D9497173821826074622D831BAB73CCB99A2D", + "chain_id": "coreum-mainnet-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-19", "is_cw20": false, "is_evm": false, - "symbol": "ampKUJI", - "name": "ampKUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "recommended_symbol": "ampKUJI" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/8870C4203CEBF2279BA065E3DE95FC3F8E05A4A93424E7DC707A21514BE353A0", - "chain_id": "cosmoshub-4", - "origin_denom": "ukava", + "denom": "ibc/B3504E092456BA618CC28AC671A71FB08C6CA0FD0BE7C8A5B5A3E2DD933CC9E4", + "chain_id": "coreum-mainnet-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/6C00E4AA0CC7618370F81F7378638AE6C48EFF8C9203CE1C2357012B440EBDB7", + "chain_id": "coreum-mainnet-1", + "origin_denom": "erc20/tether/usdt", "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-277", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "KAVA", - "name": "KAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "description": "Kava Staking Coin", - "coingecko_id": "kava", - "recommended_symbol": "KAVA" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "pool7AE391C099D1D88CC85A9FA8A0DC5650BF8DDE0DCE7D0824C073802C020A7747", - "chain_id": "cosmoshub-4", - "origin_denom": "pool7AE391C099D1D88CC85A9FA8A0DC5650BF8DDE0DCE7D0824C073802C020A7747", + "denom": "ibc/45C001A5AE212D09879BE4627C45B64D5636086285590D5145A51E18E9D16722", + "chain_id": "coreum-mainnet-1", + "origin_denom": "uatom", "origin_chain_id": "cosmoshub-4", - "trace": "", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "GDEX-7", - "name": "GDEX-7", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "recommended_symbol": "GDEX-7" + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/61AC3A1AED345729B29DA6EC644431B70C1EEA3FFE95DAF2ED241F84EEA37638", - "chain_id": "cosmoshub-4", - "origin_denom": "mkr-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "denom": "ibc/E7916A1E0CA82E2E2023083D197F3318E56C1F224C78217FB2856C59483C9A75", + "chain_id": "coreum-mainnet-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "MKR", - "name": "MKR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", - "decimals": 18, - "coingecko_id": "maker", - "recommended_symbol": "MKR.axl" + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/C81DCDA9DDC51384E4FB582E107BB7B8F974A8FF05647AF5B82835C6EA91FBA4", - "chain_id": "cosmoshub-4", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "denom": "ibc/3E35008738AC049C9C1A1E37F785E947A8DAA9811B3EA3B25580664294056151", + "chain_id": "coreum-mainnet-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "recommended_symbol": "WOSMO" - }, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + } + ] + }, + "cosmoshub-4": { + "assets": [ { - "denom": "ibc/EFC92BF4E8765B49370AED116A1B30C320E12CC04B515567D885B363F235747A", + "denom": "ibc/EC98ADD4F7B7BD5DE63425CC0F77E5FE82B6C6046BA38428B0ABFC355A6452F7", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "origin_denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "is_svm": false, + "symbol": "ampINJ", + "name": "ampINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", "decimals": 6, - "recommended_symbol": "LOCAL" + "recommended_symbol": "ampINJ" }, { - "denom": "ibc/F79A876741A3A49DD66421F63CD68FC43A5F92C381EB1415966277BF66C720A7", + "denom": "ibc/24743F83FAB2AD0CFB901ADCA58141BD4F7A3E5D06B26965A35C4775829A8473", "chain_id": "cosmoshub-4", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-730", + "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-569", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "ECLIP", + "name": "ECLIP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "coingecko_id": "eclipse-fi", + "recommended_symbol": "ECLIP" }, { - "denom": "ibc/5567102708097100D5B3FC160F01F5031CBF82EC362EA46CFEE97A8316B39264", + "denom": "ibc/B011C1A0AD5E717F674BA59FD8E05B2F946E4FD41C9CB3311C95F7ED4B815620", "chain_id": "cosmoshub-4", - "origin_denom": "acanto", - "origin_chain_id": "canto_7700-1", - "trace": "transfer/channel-358", + "origin_denom": "stinj", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "CANTO", - "name": "CANTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", "decimals": 18, - "coingecko_id": "canto", - "recommended_symbol": "CANTO" + "description": "Stride Staked Injective", + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "ibc/A8A4C280CFC21B577F34B9893D8FF1A838D726EB6689F4DDABAB58DCD722D968", + "denom": "ibc/1C1C7D78176056F3ADD028904EF29BD966F7A3F01526FDBDAC3AFB376A59733D", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "STETH", - "name": "STETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", - "decimals": 18, - "coingecko_id": "staked-ether", - "recommended_symbol": "STETH.grv" + "is_svm": false, + "symbol": "LAB", + "name": "LAB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", + "decimals": 6, + "recommended_symbol": "LAB" }, { - "denom": "ibc/C26F7B3654637354F386F9A2F5A5B20CC793B9B93B89E483BBF558199EECCCA2", + "denom": "ibc/D03D22ECC32A3CADCBEC2869C599B656AA8F87C5C1D2B4EAB32130273A95AF5D", "chain_id": "cosmoshub-4", - "origin_denom": "cconv", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "eth.1.2.942d87", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-342", "is_cw20": false, "is_evm": false, - "symbol": "CONV", - "name": "CONV", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/conv.png", + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", "decimals": 18, - "coingecko_id": "convergence", - "recommended_symbol": "CONV.sif" + "recommended_symbol": "ETH.carbon" }, { - "denom": "ibc/F5ED5F3DC6F0EF73FA455337C027FE91ABCB375116BF51A228E44C493E020A09", + "denom": "ibc/54A7EE7AEF4ADFE1E6DDB51AE69BEDCACF1607978ECB947EC4AD4F74AF96DD51", "chain_id": "cosmoshub-4", - "origin_denom": "rowan", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "uqosmo", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-467", "is_cw20": false, "is_evm": false, - "symbol": "ROWAN", - "name": "ROWAN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", - "decimals": 18, - "coingecko_id": "sifchain", - "recommended_symbol": "ROWAN" + "is_svm": false, + "symbol": "qOSMO", + "name": "qOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", + "decimals": 6, + "recommended_symbol": "qOSMO" }, { - "denom": "ibc/F4A4D751F3C3E0545E44EBE27B2FE53AEC1603595ABE06CDF2FF86903D590A63", + "denom": "ibc/5D266BB6FA1D26B678DFE4D8255BBB6CBD23847FA6464CDC0CC15C2441D847C4", "chain_id": "cosmoshub-4", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-617", + "origin_denom": "swth", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-342", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "SWTH", + "name": "SWTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "decimals": 8, + "coingecko_id": "switcheo", + "recommended_symbol": "SWTH" }, { - "denom": "pool60EFB07817D6B193A9FADA611404B8E11D82D6B7F0D10D57D3134C93E2BF7414", + "denom": "ibc/5402682890F22B0105400F5D65F0770770C603F07830B46710D9A1062D96341A", "chain_id": "cosmoshub-4", - "origin_denom": "pool60EFB07817D6B193A9FADA611404B8E11D82D6B7F0D10D57D3134C93E2BF7414", - "origin_chain_id": "cosmoshub-4", - "trace": "", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "GDEX-12", - "name": "GDEX-12", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "is_svm": false, + "symbol": "rFUZN", + "name": "rFUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", "decimals": 6, - "recommended_symbol": "GDEX-12" + "recommended_symbol": "rFUZN" }, { - "denom": "poolB457CE9240C221C0F76952FED6506F74375EDD38B32A6020B7DDDFD5A4867D5C", + "denom": "poolD1121E78E731AFD35FEA13CF9FA0044A1472F73A0EE784160CCAAAAE5C7AAD7E", "chain_id": "cosmoshub-4", - "origin_denom": "poolB457CE9240C221C0F76952FED6506F74375EDD38B32A6020B7DDDFD5A4867D5C", + "origin_denom": "poolD1121E78E731AFD35FEA13CF9FA0044A1472F73A0EE784160CCAAAAE5C7AAD7E", "origin_chain_id": "cosmoshub-4", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GDEX-10", - "name": "GDEX-10", + "is_svm": false, + "symbol": "GDEX-11", + "name": "GDEX-11", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", "decimals": 6, - "recommended_symbol": "GDEX-10" + "recommended_symbol": "GDEX-11" }, { - "denom": "poolCF8B847997F5EB92B9C8DBAE41656F61D6BE708B1B42D31063291813014AD63F", + "denom": "ibc/EFB5B7182436C75E24CEE3E5BF0E2256FD9122CC647F84F92F07AB01C82E93A8", "chain_id": "cosmoshub-4", - "origin_denom": "poolCF8B847997F5EB92B9C8DBAE41656F61D6BE708B1B42D31063291813014AD63F", - "origin_chain_id": "cosmoshub-4", - "trace": "", + "origin_denom": "factory/inj1vjppa6h9lf75pt0v6qnxtej4xcl0qevnxzcrvm/INJINU", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "GDEX-13", - "name": "GDEX-13", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "is_svm": false, + "symbol": "INJINU", + "name": "INJINU", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injinu.png", "decimals": 6, - "recommended_symbol": "GDEX-13" + "recommended_symbol": "INJINU" }, { - "denom": "ibc/4CC44260793F84006656DD868E017578F827A492978161DA31D7572BCB3F4289", + "denom": "ibc/6C2BB0FDAE0ABFF0E965BFFCADEB0D9590F4A011A9EE678413B2F2587F05CB8C", "chain_id": "cosmoshub-4", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/09334FF8B9AD27E39D37E3B80E73F48474289173AEFBB285BAD4D4B256707C46", + "denom": "ibc/771FB23883042F959CDCB02F3D0501CC7F32EF4E28835EE4D7DA8CA7E8CF16F6", "chain_id": "cosmoshub-4", - "origin_denom": "utori", - "origin_chain_id": "teritori-1", - "trace": "transfer/channel-431", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "TORI", - "name": "TORI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", - "decimals": 6, - "coingecko_id": "teritori", - "recommended_symbol": "TORI" + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "ibc/846223382750371E8FF6C67760D2AF420F5699A57F583C90F807BF2B3CAB1FD2", + "denom": "ibc/47E39E56849EF47D88D2CE7F529288FC9D6A85E1DC0E051FD387336D71829B30", "chain_id": "cosmoshub-4", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-584", + "origin_denom": "factory/inj13vau2mgx6mg7ams9nngjhyng58tl9zyw0n8s93/BABYKIRA", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "USDCet", - "name": "USDCet", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "Babykira", + "name": "Babykira", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/babykira.png", "decimals": 6, - "coingecko_id": "usd-coin-wormhole-from-ethereum", - "recommended_symbol": "USDCet" + "recommended_symbol": "Babykira" }, { - "denom": "ibc/846DA1EDBF6317F76E248386B000F027DC30FB2C3E3B6E7B0B00D808627ADD7F", + "denom": "ibc/88DCAA43A9CD099E1F9BBB80B9A90F64782EBA115A84B2CD8398757ADA4F4B40", "chain_id": "cosmoshub-4", - "origin_denom": "cwfil", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "stujuno", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "WFIL", - "name": "WFIL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wfil.png", - "decimals": 18, - "coingecko_id": "wrapped-filecoin", - "recommended_symbol": "WFIL.sif" + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "decimals": 6, + "description": "Stride Staked Juno", + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "ibc/E8F578B93A25BAE12A8BAD4C6973CF6D3BEB9AC019C8C77E566CE1FFB8F010F3", + "denom": "ibc/71E2B01CE910F64B3F1242AB02E0E86B8C9B584C4662BD9ED6EDB558E2A9C897", "chain_id": "cosmoshub-4", - "origin_denom": "wavax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-660", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" + "is_svm": false, + "symbol": "XRP", + "name": "XRP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "decimals": 6, + "coingecko_id": "pulsara", + "recommended_symbol": "XRP" }, { - "denom": "ibc/FFF845579E4353507803BC907A40EB15F2864FEAC9454B68D58D32354DB64FED", + "denom": "ibc/6C95083ADD352D5D47FB4BA427015796E5FEF17A829463AD05ECD392EB38D889", "chain_id": "cosmoshub-4", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/DUVFMY2neJdL8aE4d3stcpttDDm5aoyfGyVvm29iA9Yp", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-584", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "USDCpo", - "name": "USDCpo", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "coingecko_id": "usd-coin-pos-wormhole", - "recommended_symbol": "USDCpo" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/3D0840AB3557CC2940D100C1633690143AB4F392AF969EB0660142A9A5B1FE74", + "denom": "ibc/6BBBB4B63C51648E9B8567F34505A9D5D8BAAC4C31D768971998BE8C18431C26", "chain_id": "cosmoshub-4", - "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-569", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH" + "is_svm": false, + "symbol": "FUZN", + "name": "FUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", + "decimals": 6, + "recommended_symbol": "FUZN" }, { - "denom": "ibc/3D1E70D2B3F6029E3CA939D18F81179515D88E6404C736F780366B3A2C11CE56", + "denom": "ibc/C0BDD2D3A69D64FB569741570890BBC1D2E3EF077A4E77FD23DEBE227B8419A8", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "uaura", + "origin_chain_id": "xstaxy-1", + "trace": "transfer/channel-646", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "AURA", + "name": "AURA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.grv" + "coingecko_id": "aura-network", + "recommended_symbol": "AURA" }, { - "denom": "ibc/ED16FA5A627C83D1B940D937D152E987F4D57674DC0FABAEF00F93AFDDA8AD17", + "denom": "ibc/0B99C4EFF1BD05E56DEDEE1D88286DB79680C893724E0E7573BC369D79B5DDF3", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "qcMNTA", - "name": "qcMNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg", - "decimals": 6, - "recommended_symbol": "qcMNTA" - }, - { - "denom": "poolBD5F1AF7A8B1F068C178F1D637DF126968EC10AB204A10116E320B2B8AF4FAC2", - "chain_id": "cosmoshub-4", - "origin_denom": "poolBD5F1AF7A8B1F068C178F1D637DF126968EC10AB204A10116E320B2B8AF4FAC2", - "origin_chain_id": "cosmoshub-4", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "GDEX-9", - "name": "GDEX-9", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "recommended_symbol": "GDEX-9" + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { - "denom": "ibc/32B1E5958441B955D176EE7691EB25CEEA1002D1A9E4A4A897161114FF6ED008", + "denom": "ibc/53145C6B146FE9C9FE805616F9341CAF24165BACAF54F1009BE2CD6904480069", "chain_id": "cosmoshub-4", - "origin_denom": "uqatom", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-467", + "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "qATOM", - "name": "qATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "is_svm": false, + "symbol": "BADKID", + "name": "BADKID", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", "decimals": 6, - "recommended_symbol": "qATOM" + "recommended_symbol": "BADKID" }, { - "denom": "ibc/36B0597B5FEF600BEFB6A8C726D034EC604104BD166D070AC71AAF5E744C71B7", + "denom": "ibc/F5ED5F3DC6F0EF73FA455337C027FE91ABCB375116BF51A228E44C493E020A09", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "rowan", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.grv" + "is_svm": false, + "symbol": "ROWAN", + "name": "ROWAN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", + "decimals": 18, + "coingecko_id": "sifchain", + "recommended_symbol": "ROWAN" }, { - "denom": "ibc/CD81223853EC30B14C8A970D27113278B9D3156482B744891157B1F13B0BE319", + "denom": "ibc/F663521BF1836B00F5F177680F74BFB9A8B5654A694D0D2BC249E03CF2509013", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-536", "is_cw20": false, "is_evm": false, - "symbol": "qcFUZN", - "name": "qcFUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "recommended_symbol": "qcFUZN" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/B2E09ADEE9816B9949E6CAAEE38E5BD24624BD99F5D07DE11BD6A104B2BB57C4", + "denom": "ibc/F79A876741A3A49DD66421F63CD68FC43A5F92C381EB1415966277BF66C720A7", "chain_id": "cosmoshub-4", - "origin_denom": "cust", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-730", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ust.png", - "decimals": 18, - "coingecko_id": "wrapped-ust", - "recommended_symbol": "USTC.sif" + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "decimals": 6, + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/BEE4E6B16B741EDB81F3FD44D36CBB0B6221238BB6BDF2E43D3D2EAD7ABE01F6", + "denom": "ibc/09334FF8B9AD27E39D37E3B80E73F48474289173AEFBB285BAD4D4B256707C46", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "origin_denom": "utori", + "origin_chain_id": "teritori-1", + "trace": "transfer/channel-431", "is_cw20": false, "is_evm": false, - "symbol": "qcKUJI", - "name": "qcKUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg", + "is_svm": false, + "symbol": "TORI", + "name": "TORI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", "decimals": 6, - "recommended_symbol": "qcKUJI" + "coingecko_id": "teritori", + "recommended_symbol": "TORI" }, { - "denom": "ibc/EC98ADD4F7B7BD5DE63425CC0F77E5FE82B6C6046BA38428B0ABFC355A6452F7", + "denom": "ibc/1C223EACE0E88FEA16C0BB511208C4E53B75EA0FE446F8AC3B2730ACDA1967B0", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", + "origin_denom": "peggy0x96F6eF951840721AdBF46Ac996b59E0235CB985C", "origin_chain_id": "injective-1", "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "ampINJ", - "name": "ampINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", - "decimals": 6, - "recommended_symbol": "ampINJ" + "is_svm": false, + "symbol": "USDY", + "name": "USDY", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdy.png", + "decimals": 18, + "coingecko_id": "ondo-us-dollar-yield", + "recommended_symbol": "USDY.peggy" }, { - "denom": "ibc/CDAB23DA5495290063363BD1C3499E26189036302DC689985A7E23F8DF8D8DB0", + "denom": "ibc/5CAE744C89BC70AE7B38019A1EDF83199B7E10F00F160E7F4F12BCA7A32A7EE5", "chain_id": "cosmoshub-4", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-207", + "origin_denom": "stuluna", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "stLUNA", + "name": "stLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "description": "Stride Staked Luna", + "coingecko_id": "stride-staked-luna", + "recommended_symbol": "stLUNA" }, { - "denom": "ibc/DBCE959F66C04E186C8267DC3E10FBF37563B469DB14DD6574C1287EB4F2671A", + "denom": "ibc/34CEF8B6A6424C45FE3CCC4A02C9DF9BB38BACC323E08DFFEFE9E4B18BB89AC4", "chain_id": "cosmoshub-4", - "origin_denom": "cwscrt", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-339", "is_cw20": false, "is_evm": false, - "symbol": "WSCRT", - "name": "WSCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wscrt.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "coingecko_id": "secret-erc20", - "recommended_symbol": "WSCRT.sif" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/8BAF18297D87957FCD42321E7D909ACDB417C741F7197BFA040C0CB4FAE4D3D3", + "denom": "ibc/501C5C52E5D83DB2BA46067694AEEA51C4DC7BF56AA47BD34B12655BAF8B0DF1", "chain_id": "cosmoshub-4", - "origin_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "origin_denom": "link-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "stIBCX", - "name": "stIBCX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", - "decimals": 6, - "recommended_symbol": "stIBCX" + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "decimals": 18, + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.axl" }, { - "denom": "ibc/9EA9BCC30570DC3198317BB6B5561AB41DDC17AFC342087022C128C57EFE19BA", + "denom": "ibc/F918765AC289257B35DECC52BD92EBCDBA3C139658BD6F2670D70A6E10B97F58", "chain_id": "cosmoshub-4", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-405", + "origin_denom": "stusaga", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "is_svm": false, + "symbol": "stSAGA", + "name": "stSAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", "decimals": 6, - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "coingecko_id": "stride-staked-saga", + "recommended_symbol": "stSAGA" }, { - "denom": "ibc/97F15E1BC69D4AAD938CAAA6CA5C963F6159C93059481246A8A26A113BC6BD2C", + "denom": "ibc/80A8DBDCDC0AD1CF1781110E8438D894199BA2E4240A65DBB833A665E41620CB", "chain_id": "cosmoshub-4", - "origin_denom": "wbtc-satoshi", + "origin_denom": "wftm-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, + "is_svm": false, + "symbol": "WFTM", + "name": "WFTM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "decimals": 18, + "coingecko_id": "wrapped-fantom", + "recommended_symbol": "WFTM.axl" + }, + { + "denom": "ibc/99B00614DDBE6189AA03B77066FF8EB3F93680BD790C43CF56096B7F23542015", + "chain_id": "cosmoshub-4", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", + "is_cw20": false, + "is_evm": false, + "is_svm": false, "symbol": "WBTC", "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" }, { - "denom": "ibc/BCF0829A456C232DA6AFDC167C9F1DCF63A6620C8ED258C61DA9EA94293E9771", + "denom": "ibc/5BB694D466CCF099EF73F165F88472AF51D9C4991EAA42BD1168C5304712CC0D", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "UNI", - "name": "UNI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uni.png", - "decimals": 18, - "coingecko_id": "uniswap", - "recommended_symbol": "UNI.grv" + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "ibc/C04045E92DAB916D314B19A50796AF0ED1F9DC4E075040242C3D57BCA035D2FA", + "denom": "ibc/C59705689D6B08643B65834305A343DE86B85DB5819F00B6C6E11AC2D3656EE2", "chain_id": "cosmoshub-4", - "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", "origin_chain_id": "injective-1", "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "HAVA", + "name": "HAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.peggy" + "coingecko_id": "hava-coin", + "recommended_symbol": "HAVA" }, { - "denom": "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", + "denom": "poolCF8B847997F5EB92B9C8DBAE41656F61D6BE708B1B42D31063291813014AD63F", "chain_id": "cosmoshub-4", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-277", + "origin_denom": "poolCF8B847997F5EB92B9C8DBAE41656F61D6BE708B1B42D31063291813014AD63F", + "origin_chain_id": "cosmoshub-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "GDEX-13", + "name": "GDEX-13", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "recommended_symbol": "GDEX-13" }, { - "denom": "ibc/5402682890F22B0105400F5D65F0770770C603F07830B46710D9A1062D96341A", + "denom": "ibc/15B4D31D457B80DD46CA46F6B89FD6BB15CB92FE7BBF8763947417537C3A4C2E", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "transfer/channel-306", "is_cw20": false, "is_evm": false, - "symbol": "rFUZN", - "name": "rFUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", "decimals": 6, - "recommended_symbol": "rFUZN" + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" }, { - "denom": "ibc/F663521BF1836B00F5F177680F74BFB9A8B5654A694D0D2BC249E03CF2509013", + "denom": "ibc/DEC41A02E47658D40FC71E5A35A9C807111F5A6662A3FB5DA84C4E6F53E616B3", "chain_id": "cosmoshub-4", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-536", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-288", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "description": "Umee Staking Coin", + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/A4D99E716D91A579AC3A9684AAB7B5CB0A0861DD3DD942901D970EDB6787860E", + "denom": "ibc/3F18D520CE791A40357D061FAD657CED6B21D023F229EAF131D7FE7CE6F488BD", "chain_id": "cosmoshub-4", - "origin_denom": "stusomm", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "stSOMM", - "name": "stSOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "description": "Stride Staked SOMM", - "coingecko_id": "stride-staked-sommelier", - "recommended_symbol": "stSOMM" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/9833C415A84AABD455F8FB57779D9E97881B4350D6DD7D109483A528E2AF9E62", + "denom": "ibc/D6F3D9BCE24621DD8C509B4FAC30D632B134BAB5B3CB538C262666A92A7A9BE5", "chain_id": "cosmoshub-4", - "origin_denom": "cusdc", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "sqOSMO", + "name": "sqOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.sif" + "recommended_symbol": "sqOSMO" }, { - "denom": "ibc/FCB0126B85D91CCBDF17FC273023372D41DE033B6E6B666EA2E0E30EAECFEFFC", + "denom": "ibc/242AFD9038727F23A8CD966BFACAED25609FFA67DDD6BA5F3FB8FBEE1ED66FE3", "chain_id": "cosmoshub-4", - "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-292", + "origin_denom": "busd-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "NEOK", - "name": "NEOK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", "decimals": 18, - "recommended_symbol": "NEOK" + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD.axl" }, { - "denom": "ibc/0869B9120567943DB1F24F638F0FD4A8F3BB35C7C567CDFDE6CAEC51C053157A", + "denom": "ibc/5BD358D2143FD9F696119ECF9A24C86E6FE8402E1FCF252156ED1C7539481C77", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-220", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, - "symbol": "TALIS", - "name": "TALIS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/talis.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "talis-protocol", - "recommended_symbol": "TALIS" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" }, { - "denom": "ibc/6469BDA6F62C4F4B8F76629FA1E72A02A3D1DD9E2B22DDB3C3B2296DEAD29AB8", + "denom": "ibc/5E642374260C98897D6A145DBCD768557C4237BA023F96B4FFCDD1E30F57A7EC", "chain_id": "cosmoshub-4", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-220", + "origin_denom": "cusdt", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "decimals": 18, - "description": "Injective Staking Coin", - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "decimals": 6, + "coingecko_id": "tether", + "recommended_symbol": "USDT.sif" }, { - "denom": "ibc/6B8A3F5C2AD51CD6171FA41A7E8C35AD594AB69226438DB94450436EA57B3A89", + "denom": "ibc/6CB279447A96B991FA8986DC4C22C866D215DE1DCDF5F833B81180329FE8001A", "chain_id": "cosmoshub-4", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "wglmr-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "decimals": 6, - "description": "Stride Staking Coin", - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "is_svm": false, + "symbol": "WGLMR", + "name": "WGLMR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "decimals": 18, + "coingecko_id": "wrapped-moonbeam", + "recommended_symbol": "WGLMR.axl" }, { - "denom": "ibc/715BD634CF4D914C3EE93B0F8A9D2514B743F6FE36BC80263D1BC5EE4B3C5D40", + "denom": "ibc/6F69BA08C96F5020D87A2F60C6BEE29B7661511C9CE7A117641BAD3BD29E8401", "chain_id": "cosmoshub-4", - "origin_denom": "stustars", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "description": "Stride Staked Stars", - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" }, { - "denom": "ibc/5CAE744C89BC70AE7B38019A1EDF83199B7E10F00F160E7F4F12BCA7A32A7EE5", + "denom": "ibc/FCB0126B85D91CCBDF17FC273023372D41DE033B6E6B666EA2E0E30EAECFEFFC", "chain_id": "cosmoshub-4", - "origin_denom": "stuluna", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-292", "is_cw20": false, "is_evm": false, - "symbol": "stLUNA", - "name": "stLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "decimals": 6, - "description": "Stride Staked Luna", - "coingecko_id": "stride-staked-luna", - "recommended_symbol": "stLUNA" + "is_svm": false, + "symbol": "NEOK", + "name": "NEOK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "decimals": 18, + "recommended_symbol": "NEOK" }, { - "denom": "ibc/5D266BB6FA1D26B678DFE4D8255BBB6CBD23847FA6464CDC0CC15C2441D847C4", + "denom": "ibc/1F24C20B3D311FC37303D8BEF9D3454CE55D0B35B47770BC190F0589F74BC1EE", "chain_id": "cosmoshub-4", - "origin_denom": "swth", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-342", + "origin_denom": "c1inch", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "SWTH", - "name": "SWTH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "decimals": 8, - "coingecko_id": "switcheo", - "recommended_symbol": "SWTH" + "is_svm": false, + "symbol": "1INCH", + "name": "1INCH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/1inch.png", + "decimals": 18, + "coingecko_id": "1inch", + "recommended_symbol": "1INCH.sif" }, { - "denom": "poolD1121E78E731AFD35FEA13CF9FA0044A1472F73A0EE784160CCAAAAE5C7AAD7E", + "denom": "ibc/E92E07E68705FAD13305EE9C73684B30A7B66A52F54C9890327E0A4C0F1D22E3", "chain_id": "cosmoshub-4", - "origin_denom": "poolD1121E78E731AFD35FEA13CF9FA0044A1472F73A0EE784160CCAAAAE5C7AAD7E", - "origin_chain_id": "cosmoshub-4", - "trace": "", + "origin_denom": "stucmdx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "GDEX-11", - "name": "GDEX-11", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "is_svm": false, + "symbol": "stCMDX", + "name": "stCMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", "decimals": 6, - "recommended_symbol": "GDEX-11" + "description": "Stride Staked CMDX", + "recommended_symbol": "stCMDX" }, { - "denom": "ibc/2682B8E2919183CA5B32A7BD32BBDE4710FAEFAA0830690E50C41F63A5BFDD8E", + "denom": "ibc/6B8A3F5C2AD51CD6171FA41A7E8C35AD594AB69226438DB94450436EA57B3A89", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "ampMNTA", - "name": "ampMNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "recommended_symbol": "ampMNTA" + "description": "Stride Staking Coin", + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/D3FB6378599E31A4BD5965173BF6CE873DD2FD5270F8ABD8769765BEF2E0EA5D", + "denom": "ibc/BBB8E7A221C42270ACBEAC5DBC0B26C1AE69DB7802D528F3163D1443FE86E357", "chain_id": "cosmoshub-4", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-400", + "origin_denom": "uqck", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-467", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" }, { - "denom": "ibc/3F18D520CE791A40357D061FAD657CED6B21D023F229EAF131D7FE7CE6F488BD", + "denom": "ibc/BEE4E6B16B741EDB81F3FD44D36CBB0B6221238BB6BDF2E43D3D2EAD7ABE01F6", "chain_id": "cosmoshub-4", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-326", + "origin_denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "qcKUJI", + "name": "qcKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" - }, - { - "denom": "ibc/3F70E88E901A63611399092992BDF1836E66F49B57102D56C10C1772927F2403", - "chain_id": "cosmoshub-4", - "origin_denom": "busd", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-277", - "is_cw20": false, - "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/busd.png", - "decimals": 8, - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD" + "recommended_symbol": "qcKUJI" }, { - "denom": "ibc/242AFD9038727F23A8CD966BFACAED25609FFA67DDD6BA5F3FB8FBEE1ED66FE3", + "denom": "ibc/F5273333E861FB1D9EE2AEA9C00FD5F14FE11E6DB8C368D6583880AE1B858F01", "chain_id": "cosmoshub-4", - "origin_denom": "busd-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-569", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD.axl" + "is_svm": false, + "symbol": "NEWT", + "name": "NEWT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "decimals": 6, + "coingecko_id": "newt", + "recommended_symbol": "NEWT" }, { - "denom": "ibc/B9AE5B9A1D8371F4BE9A5AA0CE1C7D5EF13128688FE980E461D9236AE7978B60", + "denom": "ibc/F58D58F943FC243D4FE0CFE0A9E01DB420DDF994D18C9A7F2939FF1C4C278C31", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "umpwr", + "origin_chain_id": "empowerchain-1", + "trace": "transfer/channel-621", "is_cw20": false, "is_evm": false, - "symbol": "PSTAKE", - "name": "PSTAKE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", - "decimals": 18, - "coingecko_id": "pstake-finance", - "recommended_symbol": "PSTAKE.grv" + "is_svm": false, + "symbol": "MPWR", + "name": "MPWR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", + "decimals": 6, + "recommended_symbol": "MPWR" }, { - "denom": "ibc/752AC6B389EB9F16013C07987A3A04203EABABEB811F0026A24A5A29CF014366", + "denom": "ibc/F04D72CF9B5D9C849BB278B691CDFA2241813327430EC9CDC83F8F4CA4CDC2B0", "chain_id": "cosmoshub-4", - "origin_denom": "hard", + "origin_denom": "erc20/tether/usdt", "origin_chain_id": "kava_2222-10", "trace": "transfer/channel-277", "is_cw20": false, "is_evm": false, - "symbol": "HARD", - "name": "HARD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", - "decimals": 6, - "coingecko_id": "kava-lend", - "recommended_symbol": "HARD" - }, - { - "denom": "ibc/3B87FAEE2F62BF291AE771D9EC3A8894A4533F3E2872592F96FEDFDB97680EC1", - "chain_id": "cosmoshub-4", - "origin_denom": "ulum", - "origin_chain_id": "lum-network-1", - "trace": "transfer/channel-566", - "is_cw20": false, - "is_evm": false, - "symbol": "LUM", - "name": "LUM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "lum-network", - "recommended_symbol": "LUM" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/98D08BB74578514C9A97A76A3470A09FCC3698821581621A984110D820FF478A", + "denom": "ibc/5A169F88A15C146B187FDE62DF4852BA00290FB178E0472B600E73717EB8D504", "chain_id": "cosmoshub-4", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-623", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/sol.png", + "decimals": 8, + "coingecko_id": "solana", + "recommended_symbol": "SOL" }, { - "denom": "ibc/54A7EE7AEF4ADFE1E6DDB51AE69BEDCACF1607978ECB947EC4AD4F74AF96DD51", + "denom": "ibc/5662412372381F56C5F83A0404DC7209E5143ABD32EF67B5705DBE8D9C2BF001", "chain_id": "cosmoshub-4", - "origin_denom": "uqosmo", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-467", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "qOSMO", - "name": "qOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", "decimals": 6, - "recommended_symbol": "qOSMO" + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "ibc/5BB694D466CCF099EF73F165F88472AF51D9C4991EAA42BD1168C5304712CC0D", + "denom": "ibc/985E70DE9FDED9F0772CF561D3779903F49D5293C214EA2C5B1370D9B78C4D7B", "chain_id": "cosmoshub-4", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "origin_denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-569", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "ATOM1KLFG", + "name": "ATOM1KLFG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" + "recommended_symbol": "ATOM1KLFG" }, { - "denom": "ibc/5BD358D2143FD9F696119ECF9A24C86E6FE8402E1FCF252156ED1C7539481C77", + "denom": "uatom", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/C938B104155F8CB837270BCD2E9FD1BCBF56C8154F8B6E5B3733FD52F6C4A426", + "denom": "ibc/5567102708097100D5B3FC160F01F5031CBF82EC362EA46CFEE97A8316B39264", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-220", + "origin_denom": "acanto", + "origin_chain_id": "canto_7700-1", + "trace": "transfer/channel-358", "is_cw20": false, "is_evm": false, - "symbol": "NINJA", - "name": "NINJA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", - "decimals": 6, - "coingecko_id": "dog-wif-nuchucks", - "recommended_symbol": "NINJA" + "is_svm": false, + "symbol": "CANTO", + "name": "CANTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "decimals": 18, + "coingecko_id": "canto", + "recommended_symbol": "CANTO" }, { - "denom": "ibc/E7D5E9D0E9BF8B7354929A817DD28D4D017E745F638954764AA88522A7A409EC", + "denom": "ibc/054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454", "chain_id": "cosmoshub-4", - "origin_denom": "ubtsg", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-229", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "BTSG", - "name": "BTSG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "description": "Bitsong Staking Coin", - "coingecko_id": "bitsong", - "recommended_symbol": "BTSG" + "description": "Stride Staked Osmo", + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "poolAC9AF7B48E4497A0A9AF109E4286464A0EF06E7C35AD79198F03AB17A6A4CCA7", + "denom": "ibc/0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5", "chain_id": "cosmoshub-4", - "origin_denom": "poolAC9AF7B48E4497A0A9AF109E4286464A0EF06E7C35AD79198F03AB17A6A4CCA7", - "origin_chain_id": "cosmoshub-4", - "trace": "", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-569", "is_cw20": false, "is_evm": false, - "symbol": "GDEX-14", - "name": "GDEX-14", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "recommended_symbol": "GDEX-14" + "description": "Neutron DAO Token", + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { "denom": "ibc/3F0CC2915584123FA013F4E9248963C829C56EDF2E218B2E9FB23D4FF1FDE1AF", @@ -7967,6 +8909,7 @@ "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "UFO", "name": "UFO", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ufo.png", @@ -7975,347 +8918,410 @@ "recommended_symbol": "UFO.sif" }, { - "denom": "ibc/6BBBB4B63C51648E9B8567F34505A9D5D8BAAC4C31D768971998BE8C18431C26", - "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", - "is_cw20": false, - "is_evm": false, - "symbol": "FUZN", - "name": "FUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", - "decimals": 6, - "recommended_symbol": "FUZN" - }, - { - "denom": "ibc/9E5C4D5270B0161C195416972307AA685740C94038AA16DCF07387DC195D07CC", + "denom": "ibc/187ED12F225EB7178ED4ED4DAA09BA5912569B0C71AD48F2F9F58A9CB1B17436", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "busd.1.6.754a80", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-342", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" + "recommended_symbol": "BUSD.carbon" }, { - "denom": "ibc/34CEF8B6A6424C45FE3CCC4A02C9DF9BB38BACC323E08DFFEFE9E4B18BB89AC4", + "denom": "ibc/2B774B8C08A967C2764CDDEA1D873669C70DA37CE596A49675666E83EB4152CA", "chain_id": "cosmoshub-4", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-339", + "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "SAIL", + "name": "SAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "recommended_symbol": "SAIL" }, { - "denom": "ibc/61FC0A61BE2D01C74D558AE0174DD7F749137B9D6E6BFAA73FE574086EC44DC9", + "denom": "ibc/F4A4D751F3C3E0545E44EBE27B2FE53AEC1603595ABE06CDF2FF86903D590A63", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-617", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.grv" + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { - "denom": "ibc/7A8B9A3E4614AB809BD15F2F7552D91EBEDB3468A19548FDBCBD67673550C9DE", + "denom": "poolB457CE9240C221C0F76952FED6506F74375EDD38B32A6020B7DDDFD5A4867D5C", "chain_id": "cosmoshub-4", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "origin_denom": "poolB457CE9240C221C0F76952FED6506F74375EDD38B32A6020B7DDDFD5A4867D5C", + "origin_chain_id": "cosmoshub-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "GDEX-10", + "name": "GDEX-10", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "recommended_symbol": "GDEX-10" }, { - "denom": "ibc/4363FD2EF60A7090E405B79A6C4337C5E9447062972028F5A99FB041B9571942", + "denom": "ibc/58E6660E723E3D6854A1190E2516AF71280F0B20510ABA1A13456F5D204F6D7D", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "origin_denom": "swp", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-277", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "is_svm": false, + "symbol": "SWP", + "name": "SWP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", "decimals": 6, - "recommended_symbol": "WINK" + "coingecko_id": "kava-swap", + "recommended_symbol": "SWP" }, { - "denom": "ibc/D4AB918D77C7972BD788F8637895A8DE40534CB9E9C0D704471DE0083B322FF0", + "denom": "ibc/C04045E92DAB916D314B19A50796AF0ED1F9DC4E075040242C3D57BCA035D2FA", "chain_id": "cosmoshub-4", - "origin_denom": "stk/uatom", - "origin_chain_id": "core-1", - "trace": "transfer/channel-190", + "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" - }, - { - "denom": "ibc/C932ADFE2B4216397A4F17458B6E4468499B86C3BC8116180F85D799D6F5CC1B", - "chain_id": "cosmoshub-4", - "origin_denom": "basecro", - "origin_chain_id": "crypto-org-chain-mainnet-1", - "trace": "transfer/channel-187", - "is_cw20": false, - "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", - "decimals": 8, - "description": "Cronos", - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO" + "coingecko_id": "tether", + "recommended_symbol": "USDT.peggy" }, { - "denom": "ibc/835EE9D00C35D72128F195B50F8A89EB83E5011C43EA0AA00D16348E2208FEBB", + "denom": "ibc/E227C3A225C44467DDD52F00371B0721398E541359F7AF15F2B0177F93FB24CA", "chain_id": "cosmoshub-4", - "origin_denom": "ubcre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-326", + "origin_denom": "uqsomm", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-467", "is_cw20": false, "is_evm": false, - "symbol": "bCRE", - "name": "bCRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "is_svm": false, + "symbol": "qSOMM", + "name": "qSOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", "decimals": 6, - "coingecko_id": "liquid-staking-crescent", - "recommended_symbol": "bCRE" + "recommended_symbol": "qSOMM" }, { - "denom": "ibc/BDD6C78B6D862CB967B439A062BECD21F35EA4C583EABDD5428873E4EDB2B934", + "denom": "ibc/ED16FA5A627C83D1B940D937D152E987F4D57674DC0FABAEF00F93AFDDA8AD17", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj1h3y27yhly6a87d95937jztc3tupl3nt8fg3lcp/BABYNINJA", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-220", + "origin_denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "BABYNINJA", - "name": "BABYNINJA", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/BABYNINJA.png", + "is_svm": false, + "symbol": "qcMNTA", + "name": "qcMNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg", "decimals": 6, - "recommended_symbol": "BABYNINJA" + "recommended_symbol": "qcMNTA" }, { - "denom": "ibc/88DCAA43A9CD099E1F9BBB80B9A90F64782EBA115A84B2CD8398757ADA4F4B40", + "denom": "ibc/EEFD952A6DE346F2649039E99A16430B05FFEDF628A4DE99F34BB4B5F6A9346E", "chain_id": "cosmoshub-4", - "origin_denom": "stujuno", + "origin_denom": "stadydx", "origin_chain_id": "stride-1", "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", - "decimals": 6, - "description": "Stride Staked Juno", - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" + "is_svm": false, + "symbol": "stDYDX", + "name": "stDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "decimals": 18, + "coingecko_id": "stride-staked-dydx", + "recommended_symbol": "stDYDX" }, { - "denom": "ibc/47E39E56849EF47D88D2CE7F529288FC9D6A85E1DC0E051FD387336D71829B30", + "denom": "ibc/03FDDDFA51B58B17520629DD2082A9D8B2D72FA06BD060E660006ACF9D9AF58C", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj13vau2mgx6mg7ams9nngjhyng58tl9zyw0n8s93/BABYKIRA", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-220", + "origin_denom": "cband", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "Babykira", - "name": "Babykira", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/babykira.png", - "decimals": 6, - "recommended_symbol": "Babykira" + "is_svm": false, + "symbol": "Band", + "name": "Band", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/band.png", + "decimals": 18, + "coingecko_id": "band-protocol", + "recommended_symbol": "Band.sif" }, { - "denom": "ibc/5E642374260C98897D6A145DBCD768557C4237BA023F96B4FFCDD1E30F57A7EC", + "denom": "ibc/B05539B66B72E2739B986B86391E5D08F12B8D5D2C2A7F8F8CF9ADF674DFA231", "chain_id": "cosmoshub-4", - "origin_denom": "cusdt", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.sif" + "description": "Stride Staked Atom", + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/26D5710650B26F38CD59EDDC2E85830BC47BD727F23747EB41F350263F08DCF7", + "denom": "ibc/0C0633DD7E89F87C13194513268F6E99C52F499A4EE511C560356F45B7C68433", "chain_id": "cosmoshub-4", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-405", + "origin_denom": "arb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", - "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "decimals": 18, + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB.axl" }, { - "denom": "ibc/BB3A33EEC5FB3D109080ED02801ED85A453BDEC541BBD6EE0EF3FAC4B89C990B", + "denom": "ibc/A89BCD03FA8B6BF5E580358517AAFFA6A2D8E0DFB9A79597EF8AFD5B15394EE7", "chain_id": "cosmoshub-4", - "origin_denom": "uqstars", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-467", + "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "qSTARS", - "name": "qSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", + "is_svm": false, + "symbol": "PLNK", + "name": "PLNK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", "decimals": 6, - "recommended_symbol": "qSTARS" + "recommended_symbol": "PLNK" }, { - "denom": "ibc/EEFD952A6DE346F2649039E99A16430B05FFEDF628A4DE99F34BB4B5F6A9346E", + "denom": "ibc/61AC3A1AED345729B29DA6EC644431B70C1EEA3FFE95DAF2ED241F84EEA37638", "chain_id": "cosmoshub-4", - "origin_denom": "stadydx", + "origin_denom": "mkr-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MKR", + "name": "MKR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", + "decimals": 18, + "coingecko_id": "maker", + "recommended_symbol": "MKR.axl" + }, + { + "denom": "ibc/0D33E2077E140784912451ED189B11D78A4CD10C480C39E0CD91C67B1406B69F", + "chain_id": "cosmoshub-4", + "origin_denom": "dot-planck", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DOT", + "name": "DOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" + }, + { + "denom": "ibc/17DABEBAC71C388DA064A3D54FB7E68BAF0687965EC39DEADA1FB78C0F1447E6", + "chain_id": "cosmoshub-4", + "origin_denom": "stutia", "origin_chain_id": "stride-1", "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "stDYDX", - "name": "stDYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "decimals": 6, + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" + }, + { + "denom": "ibc/A8A4C280CFC21B577F34B9893D8FF1A838D726EB6689F4DDABAB58DCD722D968", + "chain_id": "cosmoshub-4", + "origin_denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-281", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STETH", + "name": "STETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", "decimals": 18, - "coingecko_id": "stride-staked-dydx", - "recommended_symbol": "stDYDX" + "coingecko_id": "staked-ether", + "recommended_symbol": "STETH.grv" }, { - "denom": "ibc/49ACCECDED4A6A2B5DD683FA048235F4F66B65F58CD558C9A441195502191D01", + "denom": "ibc/AA0116A8E9F429AFCBEF055DA1A85E2BC5545D0962EAE62E1DE7CDE25DFCDCFA", "chain_id": "cosmoshub-4", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-794", + "origin_denom": "cbtsg", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/btsg.png", "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG.sif" }, { - "denom": "ibc/6A1EC847A2EB79C101A4730BD87CE9CC54AF9166A333C43B9DFAB10DC8226CC5", + "denom": "ibc/C81DCDA9DDC51384E4FB582E107BB7B8F974A8FF05647AF5B82835C6EA91FBA4", "chain_id": "cosmoshub-4", - "origin_denom": "uqregen", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-467", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "qREGEN", - "name": "qREGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "recommended_symbol": "qREGEN" + "recommended_symbol": "WOSMO" }, { - "denom": "ibc/B1998A7328314F52EBBD98131A2D25D9A7FA57CED4FDB513E95B46A23EE29521", + "denom": "poolE71FE13681A283B7015E4E4C4852B0EDA72CC97A5CDE2ECA2A6C8C06C86AC775", "chain_id": "cosmoshub-4", - "origin_denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-339", + "origin_denom": "poolE71FE13681A283B7015E4E4C4852B0EDA72CC97A5CDE2ECA2A6C8C06C86AC775", + "origin_chain_id": "cosmoshub-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampROAR", - "name": "ampROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png", + "is_svm": false, + "symbol": "GDEX-2", + "name": "GDEX-2", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", "decimals": 6, - "recommended_symbol": "ampROAR" + "recommended_symbol": "GDEX-2" }, { - "denom": "ibc/19DD710119533524061885A6F190B18AF28D9537E2BAE37F32A62C1A25979287", + "denom": "ibc/DBCE959F66C04E186C8267DC3E10FBF37563B469DB14DD6574C1287EB4F2671A", "chain_id": "cosmoshub-4", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-292", + "origin_denom": "cwscrt", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "is_svm": false, + "symbol": "WSCRT", + "name": "WSCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wscrt.png", + "decimals": 6, + "coingecko_id": "secret-erc20", + "recommended_symbol": "WSCRT.sif" + }, + { + "denom": "poolAC9AF7B48E4497A0A9AF109E4286464A0EF06E7C35AD79198F03AB17A6A4CCA7", + "chain_id": "cosmoshub-4", + "origin_denom": "poolAC9AF7B48E4497A0A9AF109E4286464A0EF06E7C35AD79198F03AB17A6A4CCA7", + "origin_chain_id": "cosmoshub-4", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GDEX-14", + "name": "GDEX-14", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "decimals": 6, + "recommended_symbol": "GDEX-14" + }, + { + "denom": "ibc/3C168643B15498A2F8BA843649D7CF207EA2F5A7C8AE77BC175EC2FBF21B1BAA", + "chain_id": "cosmoshub-4", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", "decimals": 18, - "description": "Evmos Staking Coin", - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/B011C1A0AD5E717F674BA59FD8E05B2F946E4FD41C9CB3311C95F7ED4B815620", + "denom": "ibc/44CAB1CDACF74FFA6AD06F2559EF99C3A0240461C02075A4F10055011FBCC7BA", "chain_id": "cosmoshub-4", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "cgt/1", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-342", "is_cw20": false, "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "is_svm": false, + "symbol": "USD", + "name": "USD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", "decimals": 18, - "description": "Stride Staked Injective", - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "recommended_symbol": "USD" }, { - "denom": "ibc/B05539B66B72E2739B986B86391E5D08F12B8D5D2C2A7F8F8CF9ADF674DFA231", + "denom": "pool7AE391C099D1D88CC85A9FA8A0DC5650BF8DDE0DCE7D0824C073802C020A7747", "chain_id": "cosmoshub-4", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "pool7AE391C099D1D88CC85A9FA8A0DC5650BF8DDE0DCE7D0824C073802C020A7747", + "origin_chain_id": "cosmoshub-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "GDEX-7", + "name": "GDEX-7", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", "decimals": 6, - "description": "Stride Staked Atom", - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "recommended_symbol": "GDEX-7" }, { - "denom": "ibc/7E0ADA0EDC26AF69BBE277D6843232838E391672F7B98E38D264E87148CEA54D", + "denom": "ibc/0869B9120567943DB1F24F638F0FD4A8F3BB35C7C567CDFDE6CAEC51C053157A", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", + "origin_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", "origin_chain_id": "injective-1", "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "KIRA", - "name": "KIRA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/kira.png", + "is_svm": false, + "symbol": "TALIS", + "name": "TALIS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/talis.png", "decimals": 6, - "coingecko_id": "kira-the-injective-cat", - "recommended_symbol": "KIRA" + "coingecko_id": "talis-protocol", + "recommended_symbol": "TALIS" }, { "denom": "ibc/D41ECC8FEF1B7E9C4BCC58B1362588420853A9D0B898EDD513D9B79AFFA195C8", @@ -8325,6 +9331,7 @@ "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stUMEE", "name": "stUMEE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", @@ -8334,122 +9341,130 @@ "recommended_symbol": "stUMEE" }, { - "denom": "poolFD005C5AB01714A4B62E87F5213F5D5CDE357773D70712916A93664BCE5A6931", + "denom": "ibc/3F70E88E901A63611399092992BDF1836E66F49B57102D56C10C1772927F2403", "chain_id": "cosmoshub-4", - "origin_denom": "poolFD005C5AB01714A4B62E87F5213F5D5CDE357773D70712916A93664BCE5A6931", - "origin_chain_id": "cosmoshub-4", - "trace": "", + "origin_denom": "busd", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-277", "is_cw20": false, "is_evm": false, - "symbol": "GDEX-15", - "name": "GDEX-15", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", - "decimals": 6, - "recommended_symbol": "GDEX-15" + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/busd.png", + "decimals": 8, + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD" }, { - "denom": "ibc/5A169F88A15C146B187FDE62DF4852BA00290FB178E0472B600E73717EB8D504", + "denom": "ibc/835EE9D00C35D72128F195B50F8A89EB83E5011C43EA0AA00D16348E2208FEBB", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-220", + "origin_denom": "ubcre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "SOL", - "name": "SOL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/sol.png", - "decimals": 8, - "coingecko_id": "solana", - "recommended_symbol": "SOL" + "is_svm": false, + "symbol": "bCRE", + "name": "bCRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "decimals": 6, + "coingecko_id": "liquid-staking-crescent", + "recommended_symbol": "bCRE" }, { - "denom": "ibc/771FB23883042F959CDCB02F3D0501CC7F32EF4E28835EE4D7DA8CA7E8CF16F6", + "denom": "ibc/932D6003DA334ECBC5B23A071B4287D0A5CC97331197FE9F1C0689BA002A8421", "chain_id": "cosmoshub-4", - "origin_denom": "wbnb-wei", + "origin_denom": "uusdc", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/53145C6B146FE9C9FE805616F9341CAF24165BACAF54F1009BE2CD6904480069", + "denom": "ibc/99E5F322485732DFC667D55B5B80D9BB7C0FD2D4AF1E636F365451CD5E6993A6", "chain_id": "cosmoshub-4", - "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "origin_denom": "usara-core1r9gc0rnxnzpq33u82f44aufgdwvyxv4wyepyck98m9v2pxua6naqr8h03z", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-660", "is_cw20": false, "is_evm": false, - "symbol": "BADKID", - "name": "BADKID", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "is_svm": false, + "symbol": "SARA", + "name": "SARA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/coreum/asset/sara.png", "decimals": 6, - "recommended_symbol": "BADKID" + "coingecko_id": "pulsara", + "recommended_symbol": "SARA" }, { - "denom": "ibc/EFB5B7182436C75E24CEE3E5BF0E2256FD9122CC647F84F92F07AB01C82E93A8", + "denom": "ibc/9E5C4D5270B0161C195416972307AA685740C94038AA16DCF07387DC195D07CC", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj1vjppa6h9lf75pt0v6qnxtej4xcl0qevnxzcrvm/INJINU", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-220", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, - "symbol": "INJINU", - "name": "INJINU", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injinu.png", - "decimals": 6, - "recommended_symbol": "INJINU" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" }, { - "denom": "ibc/1542F8DC70E7999691E991E1EDEB1B47E65E3A217B1649D347098EE48ACB580F", + "denom": "ibc/AB556501A8873E00928AD9A75245D6178747111913D292ABB269D268950CB8B7", "chain_id": "cosmoshub-4", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-235", + "origin_denom": "peaka", + "origin_chain_id": "vota-ash", + "trace": "transfer/channel-750", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "description": "Secret Staking Coin", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "is_svm": false, + "symbol": "DORA", + "name": "DORA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", + "decimals": 18, + "recommended_symbol": "DORA" }, { - "denom": "ibc/15B4D31D457B80DD46CA46F6B89FD6BB15CB92FE7BBF8763947417537C3A4C2E", + "denom": "ibc/B1998A7328314F52EBBD98131A2D25D9A7FA57CED4FDB513E95B46A23EE29521", "chain_id": "cosmoshub-4", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "transfer/channel-306", + "origin_denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-339", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "is_svm": false, + "symbol": "ampROAR", + "name": "ampROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png", "decimals": 6, - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "recommended_symbol": "ampROAR" }, { - "denom": "ibc/6F69BA08C96F5020D87A2F60C6BEE29B7661511C9CE7A117641BAD3BD29E8401", + "denom": "ibc/034F43A4C72051E1500FB99926955A2CD72AD27A55BCE884246C17B3F26756DE", "chain_id": "cosmoshub-4", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-400", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "decimals": 6, - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" }, { "denom": "ibc/1D11F515D3A5CDA0139BB1FD7E523FC0A73C6821C0232F5DD0DA718110A6A95C", @@ -8459,6 +9474,7 @@ "trace": "transfer/channel-584", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WETH", "name": "WETH", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", @@ -8467,337 +9483,321 @@ "recommended_symbol": "WETH" }, { - "denom": "ibc/1F24C20B3D311FC37303D8BEF9D3454CE55D0B35B47770BC190F0589F74BC1EE", + "denom": "ibc/B3E59FB7F655F24D9941DFB59D09A8D2EFD6862CD2A50F258DD63986BB46B789", "chain_id": "cosmoshub-4", - "origin_denom": "c1inch", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "1INCH", - "name": "1INCH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/1inch.png", - "decimals": 18, - "coingecko_id": "1inch", - "recommended_symbol": "1INCH.sif" + "is_svm": false, + "symbol": "ampKUJI", + "name": "ampKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "decimals": 6, + "recommended_symbol": "ampKUJI" }, { - "denom": "ibc/261460D72BA2141BC77D439038343CB2B37C87B4148B4D5E30A5168A93E3E1D9", + "denom": "ibc/BB3A33EEC5FB3D109080ED02801ED85A453BDEC541BBD6EE0EF3FAC4B89C990B", "chain_id": "cosmoshub-4", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-584", + "origin_denom": "uqstars", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-467", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "SEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "is_svm": false, + "symbol": "qSTARS", + "name": "qSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", "decimals": 6, - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "recommended_symbol": "qSTARS" }, { - "denom": "ibc/8E9C956B6B14D458596F73B8A2BFD28DFF17E216DEA78663AB0F31E1A4AE4B83", + "denom": "ibc/BB5D7FBBA895E6E43EAD8D49E084319663139CA438E41796A0ACB657AE64E8F3", "chain_id": "cosmoshub-4", - "origin_denom": "cwbtc", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.sif" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { - "denom": "ibc/C0BDD2D3A69D64FB569741570890BBC1D2E3EF077A4E77FD23DEBE227B8419A8", + "denom": "ibc/CF52BFC8A11248F05151BFEC0FB033C3531E40C7BAFC72E277F49346EF76E981", "chain_id": "cosmoshub-4", - "origin_denom": "uaura", - "origin_chain_id": "xstaxy-1", - "trace": "transfer/channel-646", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "AURA", - "name": "AURA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "decimals": 6, - "coingecko_id": "aura-network", - "recommended_symbol": "AURA" + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" }, { - "denom": "ibc/0025F8A87464A471E66B234C4F93AEC5B4DA3D42D7986451A059273426290DD5", + "denom": "ibc/D1B5B21201003B79C5962406CB3B901AB465AE1791036DCF7455998D944E32F6", "chain_id": "cosmoshub-4", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-569", + "origin_denom": "factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "HDRO", + "name": "HDRO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/hdro.png", "decimals": 6, - "description": "Neutron DAO Token", - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "recommended_symbol": "HDRO" }, { - "denom": "ibc/AE07DE43C4743BA0CE79576B70B280516F395F2F45B905668B150A022DDA4080", + "denom": "ibc/D3FB6378599E31A4BD5965173BF6CE873DD2FD5270F8ABD8769765BEF2E0EA5D", "chain_id": "cosmoshub-4", - "origin_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-292", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-400", "is_cw20": false, "is_evm": false, - "symbol": "BERLIN", - "name": "BERLIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png", - "decimals": 18, - "recommended_symbol": "BERLIN" + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "decimals": 6, + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "ibc/BDE239A5E78A7F8E0FCB01775B0DA1E853D99880FE1DE7BFDC395238086D2CD6", + "denom": "ibc/7A8B9A3E4614AB809BD15F2F7552D91EBEDB3468A19548FDBCBD67673550C9DE", "chain_id": "cosmoshub-4", - "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-220", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "AUTISM", - "name": "AUTISM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "coingecko_id": "autism", - "recommended_symbol": "AUTISM" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/937D044DFC073B486A696EF93BFAB2A8F4C4819EA387D2501AF307CDFD7B8C28", + "denom": "poolFD005C5AB01714A4B62E87F5213F5D5CDE357773D70712916A93664BCE5A6931", "chain_id": "cosmoshub-4", - "origin_denom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-281", + "origin_denom": "poolFD005C5AB01714A4B62E87F5213F5D5CDE357773D70712916A93664BCE5A6931", + "origin_chain_id": "cosmoshub-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SD", - "name": "SD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sd.png", - "decimals": 18, - "coingecko_id": "stader", - "recommended_symbol": "SD.grv" + "is_svm": false, + "symbol": "GDEX-15", + "name": "GDEX-15", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "decimals": 6, + "recommended_symbol": "GDEX-15" }, { - "denom": "ibc/B38AAA0F7A3EC4D7C8E12DFA33FF93205FE7A42738A4B0590E2FF15BC60A612B", + "denom": "ibc/C932ADFE2B4216397A4F17458B6E4468499B86C3BC8116180F85D799D6F5CC1B", "chain_id": "cosmoshub-4", - "origin_denom": "staevmos", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "basecro", + "origin_chain_id": "crypto-org-chain-mainnet-1", + "trace": "transfer/channel-187", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "decimals": 18, - "description": "Stride Staked Evmos", - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 8, + "description": "Cronos", + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO" }, { - "denom": "ibc/0C0633DD7E89F87C13194513268F6E99C52F499A4EE511C560356F45B7C68433", + "denom": "ibc/E7D5E9D0E9BF8B7354929A817DD28D4D017E745F638954764AA88522A7A409EC", "chain_id": "cosmoshub-4", - "origin_denom": "arb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "ubtsg", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-229", "is_cw20": false, "is_evm": false, - "symbol": "ARB", - "name": "ARB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", - "decimals": 18, - "coingecko_id": "arbitrum", - "recommended_symbol": "ARB.axl" + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "decimals": 6, + "description": "Bitsong Staking Coin", + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG" }, { - "denom": "ibc/F5273333E861FB1D9EE2AEA9C00FD5F14FE11E6DB8C368D6583880AE1B858F01", + "denom": "ibc/EC8461E19625CC5044EE8A9FCD9CB068BFA1029FED70AA73B1C3DDDFB9F7616B", "chain_id": "cosmoshub-4", - "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-569", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/871jbn9unTavWsAe83f2Ma9GJWSv6BKsyWYLiQ6z3Pva", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-584", "is_cw20": false, "is_evm": false, - "symbol": "NEWT", - "name": "NEWT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", - "decimals": 6, - "coingecko_id": "newt", - "recommended_symbol": "NEWT" + "is_svm": false, + "symbol": "USDTbs", + "name": "USDTbs", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "decimals": 8, + "coingecko_id": "tether", + "recommended_symbol": "USDTbs" }, { - "denom": "ibc/E92E07E68705FAD13305EE9C73684B30A7B66A52F54C9890327E0A4C0F1D22E3", + "denom": "ibc/B6C22E0AC6A7428BE83DFCB8DFA8FB21FA6764254157F2019943D337C590E6CC", "chain_id": "cosmoshub-4", - "origin_denom": "stucmdx", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "xrpl11278ecf9e-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-660", "is_cw20": false, "is_evm": false, - "symbol": "stCMDX", - "name": "stCMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", - "decimals": 6, - "description": "Stride Staked CMDX", - "recommended_symbol": "stCMDX" + "is_svm": false, + "symbol": "SOLO", + "name": "SOLO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/coreum/asset/solo.png", + "decimals": 15, + "coingecko_id": "solo-coin", + "recommended_symbol": "SOLO" }, { - "denom": "ibc/BB5D7FBBA895E6E43EAD8D49E084319663139CA438E41796A0ACB657AE64E8F3", + "denom": "ibc/B9AE5B9A1D8371F4BE9A5AA0CE1C7D5EF13128688FE980E461D9236AE7978B60", "chain_id": "cosmoshub-4", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "is_svm": false, + "symbol": "PSTAKE", + "name": "PSTAKE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "coingecko_id": "pstake-finance", + "recommended_symbol": "PSTAKE.grv" }, { - "denom": "ibc/054892D6BB43AF8B93AAC28AA5FD7019D2C59A15DAFD6F45C1FA2BF9BDA22454", + "denom": "ibc/C26F7B3654637354F386F9A2F5A5B20CC793B9B93B89E483BBF558199EECCCA2", "chain_id": "cosmoshub-4", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "cconv", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "decimals": 6, - "description": "Stride Staked Osmo", - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "is_svm": false, + "symbol": "CONV", + "name": "CONV", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/conv.png", + "decimals": 18, + "coingecko_id": "convergence", + "recommended_symbol": "CONV.sif" }, { - "denom": "ibc/24743F83FAB2AD0CFB901ADCA58141BD4F7A3E5D06B26965A35C4775829A8473", + "denom": "ibc/C938B104155F8CB837270BCD2E9FD1BCBF56C8154F8B6E5B3733FD52F6C4A426", "chain_id": "cosmoshub-4", - "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-569", + "origin_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "ECLIP", - "name": "ECLIP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", + "is_svm": false, + "symbol": "NINJA", + "name": "NINJA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", "decimals": 6, - "coingecko_id": "eclipse-fi", - "recommended_symbol": "ECLIP" + "coingecko_id": "dog-wif-nuchucks", + "recommended_symbol": "NINJA" }, { - "denom": "ibc/17DABEBAC71C388DA064A3D54FB7E68BAF0687965EC39DEADA1FB78C0F1447E6", + "denom": "ibc/36B0597B5FEF600BEFB6A8C726D034EC604104BD166D070AC71AAF5E744C71B7", "chain_id": "cosmoshub-4", - "origin_denom": "stutia", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-391", + "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "stTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", - "decimals": 6, - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.grv" }, { - "denom": "ibc/2181AAB0218EAC24BC9F86BD1364FBBFA3E6E3FCC25E88E3E68C15DC6E752D86", + "denom": "ibc/621EBC891F642B44778FD0E9DACBBC14755280C897DD010AA104889C3FDCED06", "chain_id": "cosmoshub-4", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-184", + "origin_denom": "usdx", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-277", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "USDX", + "name": "USDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", "decimals": 6, - "description": "Akash Staking Coin", - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "coingecko_id": "usdx", + "recommended_symbol": "USDX" }, { - "denom": "ibc/D6F3D9BCE24621DD8C509B4FAC30D632B134BAB5B3CB538C262666A92A7A9BE5", + "denom": "ibc/752AC6B389EB9F16013C07987A3A04203EABABEB811F0026A24A5A29CF014366", "chain_id": "cosmoshub-4", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "origin_denom": "hard", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-277", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "is_svm": false, + "symbol": "HARD", + "name": "HARD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", "decimals": 6, - "recommended_symbol": "sqOSMO" - }, - { - "denom": "ibc/3C168643B15498A2F8BA843649D7CF207EA2F5A7C8AE77BC175EC2FBF21B1BAA", - "chain_id": "cosmoshub-4", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", - "is_cw20": false, - "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" - }, - { - "denom": "ibc/83AC6D47CA1313421724B51572BBB92F6A74998F1971B4E5B4E4E48F8462DF32", - "chain_id": "cosmoshub-4", - "origin_denom": "clink", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", - "is_cw20": false, - "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/link.png", - "decimals": 18, - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.sif" + "coingecko_id": "kava-lend", + "recommended_symbol": "HARD" }, { - "denom": "ibc/0D33E2077E140784912451ED189B11D78A4CD10C480C39E0CD91C67B1406B69F", + "denom": "ibc/4363FD2EF60A7090E405B79A6C4337C5E9447062972028F5A99FB041B9571942", "chain_id": "cosmoshub-4", - "origin_denom": "dot-planck", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "DOT", - "name": "DOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "decimals": 6, + "recommended_symbol": "WINK" }, { - "denom": "ibc/14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC", + "denom": "ibc/4846F4382B7843861B6C5051134397359C8C94B547E8EA43EFAFEF4E5F7B7625", "chain_id": "cosmoshub-4", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "origin_denom": "orai", + "origin_chain_id": "Oraichain", + "trace": "transfer/channel-301", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "ORAI", + "name": "ORAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "oraichain-token", + "recommended_symbol": "ORAI" }, { "denom": "ibc/4A98C8AC2C35498162346F28EEBF3206CBEF81F44725FE62A3DB0CC10E88E695", @@ -8807,6 +9807,7 @@ "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DAI", "name": "DAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", @@ -8815,123 +9816,146 @@ "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/501C5C52E5D83DB2BA46067694AEEA51C4DC7BF56AA47BD34B12655BAF8B0DF1", + "denom": "ibc/6469BDA6F62C4F4B8F76629FA1E72A02A3D1DD9E2B22DDB3C3B2296DEAD29AB8", "chain_id": "cosmoshub-4", - "origin_denom": "link-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", "decimals": 18, - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.axl" + "description": "Injective Staking Coin", + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { - "denom": "ibc/81D08BC39FB520EBD948CF017910DD69702D34BF5AC160F76D3B5CFC444EBCE0", + "denom": "ibc/7BF586544BFE3DB82CE490878249CC22BAD63D85F88E1DAF7EC8857133337180", "chain_id": "cosmoshub-4", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-190", + "origin_denom": "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "xUSK", + "name": "xUSK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png", "decimals": 6, - "description": "Persistence Staking Coin", - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "recommended_symbol": "xUSK" }, { - "denom": "ibc/A6AEF9D63AE05D661B134C7BB3821B8223A26788B3731A76DE7F78D2DEF4457E", + "denom": "ibc/BDD6C78B6D862CB967B439A062BECD21F35EA4C583EABDD5428873E4EDB2B934", "chain_id": "cosmoshub-4", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-400", + "origin_denom": "factory/inj1h3y27yhly6a87d95937jztc3tupl3nt8fg3lcp/BABYNINJA", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "BABYNINJA", + "name": "BABYNINJA", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/BABYNINJA.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "recommended_symbol": "BABYNINJA" }, { - "denom": "ibc/A89BCD03FA8B6BF5E580358517AAFFA6A2D8E0DFB9A79597EF8AFD5B15394EE7", + "denom": "ibc/CD81223853EC30B14C8A970D27113278B9D3156482B744891157B1F13B0BE319", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "PLNK", - "name": "PLNK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "is_svm": false, + "symbol": "qcFUZN", + "name": "qcFUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", "decimals": 6, - "recommended_symbol": "PLNK" + "recommended_symbol": "qcFUZN" }, { - "denom": "ibc/AB556501A8873E00928AD9A75245D6178747111913D292ABB269D268950CB8B7", + "denom": "ibc/2181AAB0218EAC24BC9F86BD1364FBBFA3E6E3FCC25E88E3E68C15DC6E752D86", "chain_id": "cosmoshub-4", - "origin_denom": "peaka", - "origin_chain_id": "vota-ash", - "trace": "transfer/channel-750", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-184", "is_cw20": false, "is_evm": false, - "symbol": "DORA", - "name": "DORA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", - "decimals": 18, - "recommended_symbol": "DORA" + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "decimals": 6, + "description": "Akash Staking Coin", + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/621EBC891F642B44778FD0E9DACBBC14755280C897DD010AA104889C3FDCED06", + "denom": "ibc/8E9C956B6B14D458596F73B8A2BFD28DFF17E216DEA78663AB0F31E1A4AE4B83", "chain_id": "cosmoshub-4", - "origin_denom": "usdx", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-277", + "origin_denom": "cwbtc", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "USDX", - "name": "USDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.sif" + }, + { + "denom": "ibc/D4AB918D77C7972BD788F8637895A8DE40534CB9E9C0D704471DE0083B322FF0", + "chain_id": "cosmoshub-4", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-190", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", "decimals": 6, - "coingecko_id": "usdx", - "recommended_symbol": "USDX" + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" }, { - "denom": "ibc/05A95379CE9BBE1A208E492095569205474C2332F4777F224F73EC0FC13796CC", + "denom": "pool60EFB07817D6B193A9FADA611404B8E11D82D6B7F0D10D57D3134C93E2BF7414", "chain_id": "cosmoshub-4", - "origin_denom": "afet", - "origin_chain_id": "fetchhub-4", - "trace": "transfer/channel-526", + "origin_denom": "pool60EFB07817D6B193A9FADA611404B8E11D82D6B7F0D10D57D3134C93E2BF7414", + "origin_chain_id": "cosmoshub-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FET", - "name": "FET", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", - "decimals": 18, - "coingecko_id": "fetch-ai", - "recommended_symbol": "FET" + "is_svm": false, + "symbol": "GDEX-12", + "name": "GDEX-12", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", + "decimals": 6, + "recommended_symbol": "GDEX-12" }, { - "denom": "ibc/58E6660E723E3D6854A1190E2516AF71280F0B20510ABA1A13456F5D204F6D7D", + "denom": "ibc/261460D72BA2141BC77D439038343CB2B37C87B4148B4D5E30A5168A93E3E1D9", "chain_id": "cosmoshub-4", - "origin_denom": "swp", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-277", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-584", "is_cw20": false, "is_evm": false, - "symbol": "SWP", - "name": "SWP", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", + "is_svm": false, + "symbol": "SEI", + "name": "SEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", "decimals": 6, - "coingecko_id": "kava-swap", - "recommended_symbol": "SWP" + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" }, { "denom": "ibc/2A23796174090DCC8F258E1B0F830319AEFBCD8AA87C1DCB8BDB150AAD300624", @@ -8941,6 +9965,7 @@ "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ETH", "name": "ETH", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/eth.png", @@ -8949,196 +9974,198 @@ "recommended_symbol": "ETH.sif" }, { - "denom": "ibc/2B774B8C08A967C2764CDDEA1D873669C70DA37CE596A49675666E83EB4152CA", + "denom": "ibc/32B1E5958441B955D176EE7691EB25CEEA1002D1A9E4A4A897161114FF6ED008", "chain_id": "cosmoshub-4", - "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "origin_denom": "uqatom", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-467", "is_cw20": false, "is_evm": false, - "symbol": "SAIL", - "name": "SAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "is_svm": false, + "symbol": "qATOM", + "name": "qATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", "decimals": 6, - "recommended_symbol": "SAIL" + "recommended_symbol": "qATOM" }, { - "denom": "ibc/80A8DBDCDC0AD1CF1781110E8438D894199BA2E4240A65DBB833A665E41620CB", + "denom": "ibc/14F9BC3E44B8A9C1BE1FB08980FAB87034C9905EF17CF2F5008FC085218811CC", "chain_id": "cosmoshub-4", - "origin_denom": "wftm-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "WFTM", - "name": "WFTM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", - "decimals": 18, - "coingecko_id": "wrapped-fantom", - "recommended_symbol": "WFTM.axl" + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/3792246C7C422C037C603C955F8383B4E32E7555D693344F9A029A67FE221C57", + "denom": "ibc/1542F8DC70E7999691E991E1EDEB1B47E65E3A217B1649D347098EE48ACB580F", "chain_id": "cosmoshub-4", - "origin_denom": "frax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-235", "is_cw20": false, "is_evm": false, - "symbol": "FRAX", - "name": "FRAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", - "decimals": 18, - "coingecko_id": "frax", - "recommended_symbol": "FRAX.axl" + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "description": "Secret Staking Coin", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/034F43A4C72051E1500FB99926955A2CD72AD27A55BCE884246C17B3F26756DE", + "denom": "ibc/3B87FAEE2F62BF291AE771D9EC3A8894A4533F3E2872592F96FEDFDB97680EC1", "chain_id": "cosmoshub-4", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-400", + "origin_denom": "ulum", + "origin_chain_id": "lum-network-1", + "trace": "transfer/channel-566", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "LUM", + "name": "LUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "coingecko_id": "lum-network", + "recommended_symbol": "LUM" }, { - "denom": "ibc/03FDDDFA51B58B17520629DD2082A9D8B2D72FA06BD060E660006ACF9D9AF58C", + "denom": "ibc/3D0840AB3557CC2940D100C1633690143AB4F392AF969EB0660142A9A5B1FE74", "chain_id": "cosmoshub-4", - "origin_denom": "cband", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-569", "is_cw20": false, "is_evm": false, - "symbol": "Band", - "name": "Band", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/band.png", + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", "decimals": 18, - "coingecko_id": "band-protocol", - "recommended_symbol": "Band.sif" + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH" }, { - "denom": "ibc/0B99C4EFF1BD05E56DEDEE1D88286DB79680C893724E0E7573BC369D79B5DDF3", + "denom": "ibc/3D1E70D2B3F6029E3CA939D18F81179515D88E6404C736F780366B3A2C11CE56", "chain_id": "cosmoshub-4", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-343", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv" }, { - "denom": "ibc/6C2BB0FDAE0ABFF0E965BFFCADEB0D9590F4A011A9EE678413B2F2587F05CB8C", + "denom": "ibc/715BD634CF4D914C3EE93B0F8A9D2514B743F6FE36BC80263D1BC5EE4B3C5D40", "chain_id": "cosmoshub-4", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "description": "Stride Staked Stars", + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" }, { - "denom": "ibc/6C95083ADD352D5D47FB4BA427015796E5FEF17A829463AD05ECD392EB38D889", + "denom": "ibc/8870C4203CEBF2279BA065E3DE95FC3F8E05A4A93424E7DC707A21514BE353A0", "chain_id": "cosmoshub-4", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-141", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-277", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "description": "Kava Staking Coin", + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/6CB279447A96B991FA8986DC4C22C866D215DE1DCDF5F833B81180329FE8001A", + "denom": "ibc/8BAF18297D87957FCD42321E7D909ACDB417C741F7197BFA040C0CB4FAE4D3D3", "chain_id": "cosmoshub-4", - "origin_denom": "wglmr-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-141", "is_cw20": false, "is_evm": false, - "symbol": "WGLMR", - "name": "WGLMR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", - "decimals": 18, - "coingecko_id": "wrapped-moonbeam", - "recommended_symbol": "WGLMR.axl" + "is_svm": false, + "symbol": "stIBCX", + "name": "stIBCX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", + "decimals": 6, + "recommended_symbol": "stIBCX" }, { - "denom": "ibc/AA0116A8E9F429AFCBEF055DA1A85E2BC5545D0962EAE62E1DE7CDE25DFCDCFA", + "denom": "ibc/937D044DFC073B486A696EF93BFAB2A8F4C4819EA387D2501AF307CDFD7B8C28", "chain_id": "cosmoshub-4", - "origin_denom": "cbtsg", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-192", + "origin_denom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, - "symbol": "BTSG", - "name": "BTSG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/btsg.png", + "is_svm": false, + "symbol": "SD", + "name": "SD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sd.png", "decimals": 18, - "coingecko_id": "bitsong", - "recommended_symbol": "BTSG.sif" - }, - { - "denom": "ibc/E227C3A225C44467DDD52F00371B0721398E541359F7AF15F2B0177F93FB24CA", - "chain_id": "cosmoshub-4", - "origin_denom": "uqsomm", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-467", - "is_cw20": false, - "is_evm": false, - "symbol": "qSOMM", - "name": "qSOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", - "decimals": 6, - "recommended_symbol": "qSOMM" + "coingecko_id": "stader", + "recommended_symbol": "SD.grv" }, { - "denom": "ibc/187ED12F225EB7178ED4ED4DAA09BA5912569B0C71AD48F2F9F58A9CB1B17436", + "denom": "ibc/97F15E1BC69D4AAD938CAAA6CA5C963F6159C93059481246A8A26A113BC6BD2C", "chain_id": "cosmoshub-4", - "origin_denom": "busd.1.6.754a80", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-342", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "recommended_symbol": "BUSD.carbon" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/932D6003DA334ECBC5B23A071B4287D0A5CC97331197FE9F1C0689BA002A8421", + "denom": "ibc/9833C415A84AABD455F8FB57779D9E97881B4350D6DD7D109483A528E2AF9E62", "chain_id": "cosmoshub-4", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-293", + "origin_denom": "cusdc", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.sif" }, { "denom": "ibc/A47E814B0E8AE12D044637BCB4576FCA675EF66300864873FA712E1B28492B78", @@ -9148,6 +10175,7 @@ "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USK", "name": "USK", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", @@ -9156,412 +10184,445 @@ "recommended_symbol": "USK" }, { - "denom": "poolE71FE13681A283B7015E4E4C4852B0EDA72CC97A5CDE2ECA2A6C8C06C86AC775", + "denom": "ibc/98D08BB74578514C9A97A76A3470A09FCC3698821581621A984110D820FF478A", "chain_id": "cosmoshub-4", - "origin_denom": "poolE71FE13681A283B7015E4E4C4852B0EDA72CC97A5CDE2ECA2A6C8C06C86AC775", - "origin_chain_id": "cosmoshub-4", - "trace": "", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-623", "is_cw20": false, "is_evm": false, - "symbol": "GDEX-2", - "name": "GDEX-2", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", - "decimals": 6, - "recommended_symbol": "GDEX-2" - } - ] - }, - "crescent-1": { - "assets": [ + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, { - "denom": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", - "chain_id": "crescent-1", - "origin_denom": "uaxl", + "denom": "ibc/E8F578B93A25BAE12A8BAD4C6973CF6D3BEB9AC019C8C77E566CE1FFB8F010F3", + "chain_id": "cosmoshub-4", + "origin_denom": "wavax-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "description": "Axelar Staking Coin", - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", + "decimals": 18, + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "ibc/531804EA11DBF043843E20CC6498B5C4C2B19726A33891CAB919545DD3D612E0", - "chain_id": "crescent-1", - "origin_denom": "ujkl", - "origin_chain_id": "jackal-1", - "trace": "transfer/channel-63", + "denom": "ibc/B38AAA0F7A3EC4D7C8E12DFA33FF93205FE7A42738A4B0590E2FF15BC60A612B", + "chain_id": "cosmoshub-4", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "JKL", - "name": "JKL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", - "decimals": 6, - "coingecko_id": "jackal-protocol", - "recommended_symbol": "JKL" + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "description": "Stride Staked Evmos", + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" }, { - "denom": "ibc/CD01034D6749F20AAC5330EF4FD8B8CA7C40F7527AB8C4A302FBD2A070852EE1", - "chain_id": "crescent-1", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-2", + "denom": "ibc/FFF845579E4353507803BC907A40EB15F2864FEAC9454B68D58D32354DB64FED", + "chain_id": "cosmoshub-4", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/DUVFMY2neJdL8aE4d3stcpttDDm5aoyfGyVvm29iA9Yp", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-584", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "USDCpo", + "name": "USDCpo", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "coingecko_id": "usd-coin-pos-wormhole", + "recommended_symbol": "USDCpo" }, { - "denom": "ibc/F47D6F6C38DC1B5B72FFB71CC4D8A12FC4C57A5A79BAFA65286723D56B85197D", - "chain_id": "crescent-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-38", + "denom": "ibc/CDAB23DA5495290063363BD1C3499E26189036302DC689985A7E23F8DF8D8DB0", + "chain_id": "cosmoshub-4", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-207", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "ibc/11F940BCDFD7CFBFD7EDA13F25DA95D308286D441209D780C9863FD4271514EB", - "chain_id": "crescent-1", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-11", + "denom": "ibc/BDE239A5E78A7F8E0FCB01775B0DA1E853D99880FE1DE7BFDC395238086D2CD6", + "chain_id": "cosmoshub-4", + "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "AUTISM", + "name": "AUTISM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "coingecko_id": "autism", + "recommended_symbol": "AUTISM" }, { - "denom": "ucre", - "chain_id": "crescent-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", + "denom": "poolBD5F1AF7A8B1F068C178F1D637DF126968EC10AB204A10116E320B2B8AF4FAC2", + "chain_id": "cosmoshub-4", + "origin_denom": "poolBD5F1AF7A8B1F068C178F1D637DF126968EC10AB204A10116E320B2B8AF4FAC2", + "origin_chain_id": "cosmoshub-4", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "GDEX-9", + "name": "GDEX-9", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/cosmos/asset/pool.png", "decimals": 6, - "description": "The native token of Crescent", - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "recommended_symbol": "GDEX-9" }, { - "denom": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", - "chain_id": "crescent-1", - "origin_denom": "uluna", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-0", + "denom": "ibc/19DD710119533524061885A6F190B18AF28D9537E2BAE37F32A62C1A25979287", + "chain_id": "cosmoshub-4", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-292", "is_cw20": false, "is_evm": false, - "symbol": "LUNC", - "name": "LUNC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", - "decimals": 6, - "coingecko_id": "terra-luna-classic", - "recommended_symbol": "LUNC" + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "description": "Evmos Staking Coin", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "ibc/7861B62CCDC4C599149C85B978A5B647FD8B6FB604EB826ADFA762A75404AF4E", - "chain_id": "crescent-1", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-2", + "denom": "ibc/7E0ADA0EDC26AF69BBE277D6843232838E391672F7B98E38D264E87148CEA54D", + "chain_id": "cosmoshub-4", + "origin_denom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-220", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "KIRA", + "name": "KIRA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/kira.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.grv" + "coingecko_id": "kira-the-injective-cat", + "recommended_symbol": "KIRA" }, { - "denom": "ibc/7FFC60524C4513A3A8E0A407CC89BFF5A861EC624209D72EB26FC10ADAEBA70E", - "chain_id": "crescent-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", + "denom": "ibc/A6AEF9D63AE05D661B134C7BB3821B8223A26788B3731A76DE7F78D2DEF4457E", + "chain_id": "cosmoshub-4", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-400", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "decimals": 6, + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/A39C7A94E7955808E135BD13B36DFF8DF722F46E2B90CEB4F88488C0F4B5ABE5", - "chain_id": "crescent-1", - "origin_denom": "stuumee", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-29", + "denom": "ibc/F8215CF2CD97294057DBECAA45E3ABEB6012D25550750DA8EC56BEC73F0E522F", + "chain_id": "cosmoshub-4", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-660", "is_cw20": false, "is_evm": false, - "symbol": "stUMEE", - "name": "stUMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", "decimals": 6, - "coingecko_id": "stride-staked-umee", - "recommended_symbol": "stUMEE" + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "ibc/AB9FF5725CC5333B7873425E45B8EABE8757B310B2712B630D032BCB3B4B65DB", - "chain_id": "crescent-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-64", + "denom": "ibc/3792246C7C422C037C603C955F8383B4E32E7555D693344F9A029A67FE221C57", + "chain_id": "cosmoshub-4", + "origin_denom": "frax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "FRAX", + "name": "FRAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", + "decimals": 18, + "coingecko_id": "frax", + "recommended_symbol": "FRAX.axl" }, { - "denom": "ibc/D41B902B4702503E90B345A66B6B9630AAA1B31574F5DF30717EF2649E1A84D3", - "chain_id": "crescent-1", - "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-23", + "denom": "ibc/83AC6D47CA1313421724B51572BBB92F6A74998F1971B4E5B4E4E48F8462DF32", + "chain_id": "cosmoshub-4", + "origin_denom": "clink", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "AUTISM", - "name": "AUTISM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/link.png", + "decimals": 18, + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.sif" + }, + { + "denom": "ibc/846223382750371E8FF6C67760D2AF420F5699A57F583C90F807BF2B3CAB1FD2", + "chain_id": "cosmoshub-4", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-584", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDCet", + "name": "USDCet", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "coingecko_id": "autism", - "recommended_symbol": "AUTISM" + "coingecko_id": "usd-coin-wormhole-from-ethereum", + "recommended_symbol": "USDCet" }, { - "denom": "ibc/DBF5FA602C46392DE9F4796A0FC7D02F3A8A3D32CA3FAA50B761D4AA6F619E95", - "chain_id": "crescent-1", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "denom": "ibc/BCF0829A456C232DA6AFDC167C9F1DCF63A6620C8ED258C61DA9EA94293E9771", + "chain_id": "cosmoshub-4", + "origin_denom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-2", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, - "symbol": "gWETH", - "name": "gWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "UNI", + "name": "UNI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uni.png", "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "gWETH.grv" + "coingecko_id": "uniswap", + "recommended_symbol": "UNI.grv" }, { - "denom": "ibc/BAEA8E5E532DD3442D8938DA6E3C456EEE52CFD2CCC1B3512B0A77E7BEDB2F45", - "chain_id": "crescent-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-26", + "denom": "ibc/EFC92BF4E8765B49370AED116A1B30C320E12CC04B515567D885B363F235747A", + "chain_id": "cosmoshub-4", + "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "LOCAL", + "name": "LOCAL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", "decimals": 6, - "description": "Harbor Protocol Governance Token", - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "recommended_symbol": "LOCAL" }, { - "denom": "ibc/E32F6485CDAE995FC492010770936119D0BF90F5226C9AED727988DF03B5F569", - "chain_id": "crescent-1", - "origin_denom": "stk/uatom", - "origin_chain_id": "core-1", - "trace": "transfer/channel-30", + "denom": "ibc/6A1EC847A2EB79C101A4730BD87CE9CC54AF9166A333C43B9DFAB10DC8226CC5", + "chain_id": "cosmoshub-4", + "origin_denom": "uqregen", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-467", "is_cw20": false, "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "is_svm": false, + "symbol": "qREGEN", + "name": "qREGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", "decimals": 6, - "description": "PSTAKE Liquid-Staked ATOM", - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" + "recommended_symbol": "qREGEN" }, { - "denom": "ubcre", - "chain_id": "crescent-1", - "origin_denom": "ubcre", - "origin_chain_id": "crescent-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "bCRE", - "name": "bCRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", - "decimals": 6, - "description": "The bonded token of Crescent", - "coingecko_id": "liquid-staking-crescent", - "recommended_symbol": "bCRE" - }, - { - "denom": "ibc/4171A6F59F8A708D807E03B43FA0E16EC7041C189557B7A8E519757424367D41", - "chain_id": "crescent-1", - "origin_denom": "staevmos", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-29", + "denom": "ibc/05A95379CE9BBE1A208E492095569205474C2332F4777F224F73EC0FC13796CC", + "chain_id": "cosmoshub-4", + "origin_denom": "afet", + "origin_chain_id": "fetchhub-4", + "trace": "transfer/channel-526", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "is_svm": false, + "symbol": "FET", + "name": "FET", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", "decimals": 18, - "description": "Stride Staked Evmos", - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "coingecko_id": "fetch-ai", + "recommended_symbol": "FET" }, { - "denom": "ibc/2017AFA149C1C42DBF54EC910DA168E9E4F928DF0D3A8E841189994A9339FED9", - "chain_id": "crescent-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", + "denom": "ibc/49ACCECDED4A6A2B5DD683FA048235F4F66B65F58CD558C9A441195502191D01", + "chain_id": "cosmoshub-4", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-794", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "ibc/6F4968A73F90CF7DE6394BF937D6DF7C7D162D74D839C13F53B41157D315E05F", - "chain_id": "crescent-1", - "origin_denom": "uusd", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-0", + "denom": "ibc/4CC44260793F84006656DD868E017578F827A492978161DA31D7572BCB3F4289", + "chain_id": "cosmoshub-4", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "coingecko_id": "terraclassicusd", - "recommended_symbol": "USTC" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/7C80C41847B0A6BC37D66C13B2EDAF716217BE894FEC3FF11E76FE02D4E7BAA3", - "chain_id": "crescent-1", + "denom": "ibc/81D08BC39FB520EBD948CF017910DD69702D34BF5AC160F76D3B5CFC444EBCE0", + "chain_id": "cosmoshub-4", "origin_denom": "uxprt", "origin_chain_id": "core-1", - "trace": "transfer/channel-30", + "trace": "transfer/channel-190", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "XPRT", "name": "XPRT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, + "description": "Persistence Staking Coin", "coingecko_id": "persistence", "recommended_symbol": "XPRT" }, { - "denom": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", - "chain_id": "crescent-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-9", + "denom": "ibc/8558CA5E183C44947A9B63FC9BD75A18D0A2407025898A3B64AD782C4F3DBBCB", + "chain_id": "cosmoshub-4", + "origin_denom": "pepe-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-293", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "is_svm": false, + "symbol": "PEPE", + "name": "PEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "decimals": 18, + "coingecko_id": "pepe", + "recommended_symbol": "PEPE.axl" }, { - "denom": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", - "chain_id": "crescent-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", + "denom": "ibc/AE07DE43C4743BA0CE79576B70B280516F395F2F45B905668B150A022DDA4080", + "chain_id": "cosmoshub-4", + "origin_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-292", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "is_svm": false, + "symbol": "BERLIN", + "name": "BERLIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png", + "decimals": 18, + "recommended_symbol": "BERLIN" }, { - "denom": "ibc/C322C7D0867CC3EE6FA3495DC9685E5A0F49B506369341287FDA1E110841A950", - "chain_id": "crescent-1", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", + "denom": "ibc/B2E09ADEE9816B9949E6CAAEE38E5BD24624BD99F5D07DE11BD6A104B2BB57C4", + "chain_id": "cosmoshub-4", + "origin_denom": "cust", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "is_svm": false, + "symbol": "USTC", + "name": "USTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ust.png", "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "coingecko_id": "wrapped-ust", + "recommended_symbol": "USTC.sif" }, { - "denom": "ibc/FD3F18CCF6ACF00E523B0B15C83B26417053A69D223E12A957711DC6CA35510A", - "chain_id": "crescent-1", - "origin_denom": "uaud", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-0", + "denom": "ibc/2682B8E2919183CA5B32A7BD32BBDE4710FAEFAA0830690E50C41F63A5BFDD8E", + "chain_id": "cosmoshub-4", + "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-343", "is_cw20": false, "is_evm": false, - "symbol": "AUTC", - "name": "AUTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.png", + "is_svm": false, + "symbol": "ampMNTA", + "name": "ampMNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", "decimals": 6, - "recommended_symbol": "AUTC" + "recommended_symbol": "ampMNTA" }, { - "denom": "ibc/3208C8E45C27903988E437162134A172880BE112C0530B86117FB5DA7A5DF8B9", - "chain_id": "crescent-1", - "origin_denom": "dot-planck", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", + "denom": "ibc/26D5710650B26F38CD59EDDC2E85830BC47BD727F23747EB41F350263F08DCF7", + "chain_id": "cosmoshub-4", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-405", "is_cw20": false, "is_evm": false, - "symbol": "DOT", - "name": "DOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "decimals": 6, + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { - "denom": "ibc/3924A79BA22DE73ECFB91DD1168FFC00F30C6BE46B7BF2987DBF1CAF54067C90", - "chain_id": "crescent-1", + "denom": "ibc/3F0A41ECB6FAF27E315583DBF39B5B69A7149D23959A0E4B319F7EF5C618DCD7", + "chain_id": "cosmoshub-4", + "origin_denom": "stadym", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stDYM", + "name": "stDYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png", + "decimals": 18, + "coingecko_id": "stride-staked-dym", + "recommended_symbol": "stDYM" + }, + { + "denom": "ibc/61FC0A61BE2D01C74D558AE0174DD7F749137B9D6E6BFAA73FE574086EC44DC9", + "chain_id": "cosmoshub-4", "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-2", + "trace": "transfer/channel-281", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DAI", "name": "DAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", @@ -9570,114 +10631,74 @@ "recommended_symbol": "DAI.grv" }, { - "denom": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", - "chain_id": "crescent-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-23", + "denom": "ibc/846DA1EDBF6317F76E248386B000F027DC30FB2C3E3B6E7B0B00D808627ADD7F", + "chain_id": "cosmoshub-4", + "origin_denom": "cwfil", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-192", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "is_svm": false, + "symbol": "WFIL", + "name": "WFIL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wfil.png", "decimals": 18, - "description": "Injective Staking Coin", - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" - }, - { - "denom": "ibc/1620B95419728A7DEF482DEB9462DD6B9FA120BCB49CCCF74209A56AB9835E59", - "chain_id": "crescent-1", - "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-2", - "is_cw20": false, - "is_evm": false, - "symbol": "gWBTC", - "name": "gWBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "gravity-bridge-wbtc", - "recommended_symbol": "gWBTC.grv" + "coingecko_id": "wrapped-filecoin", + "recommended_symbol": "WFIL.sif" }, { - "denom": "ibc/9EC8A1701813BB7B73BFED2496009ABB2C8BF187E6CDFA788D77F68E08BC05CD", - "chain_id": "crescent-1", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-26", + "denom": "ibc/A4D99E716D91A579AC3A9684AAB7B5CB0A0861DD3DD942901D970EDB6787860E", + "chain_id": "cosmoshub-4", + "origin_denom": "stusomm", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-391", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "stSOMM", + "name": "stSOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", "decimals": 6, - "description": "Harbor Protocol Stablecoin", - "coingecko_id": "composite", - "recommended_symbol": "CMST" - }, - { - "denom": "ibc/3D4499D811B055223D0EFB06D2211F84772CAEF0FB987F71BAE716191714B391", - "chain_id": "crescent-1", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", - "is_cw20": false, - "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" - }, - { - "denom": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", - "chain_id": "crescent-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-7", - "is_cw20": false, - "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "description": "Evmos Staking Coin", - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "description": "Stride Staked SOMM", + "coingecko_id": "stride-staked-sommelier", + "recommended_symbol": "stSOMM" }, { - "denom": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", - "chain_id": "crescent-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-27", + "denom": "ibc/9EA9BCC30570DC3198317BB6B5561AB41DDC17AFC342087022C128C57EFE19BA", + "chain_id": "cosmoshub-4", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-405", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", "decimals": 6, - "description": "Terra Staking Coin", - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" - }, + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" + } + ] + }, + "crescent-1": { + "assets": [ { - "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", + "denom": "ubcre", "chain_id": "crescent-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-3", + "origin_denom": "ubcre", + "origin_chain_id": "crescent-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "bCRE", + "name": "bCRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "description": "The bonded token of Crescent", + "coingecko_id": "liquid-staking-crescent", + "recommended_symbol": "bCRE" }, { "denom": "ibc/C8597ECBB1156C89A9CCEA8B3704F9E196926030371BE919BB9167FE3E6BAE29", @@ -9687,6 +10708,7 @@ "trace": "transfer/channel-38", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "FRNZ", "name": "FRNZ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", @@ -9695,51 +10717,86 @@ "recommended_symbol": "FRNZ" }, { - "denom": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", + "denom": "ibc/2AB7D3FAE795E5DD7ACDE80D215DE076AE4DF64367E2D4B801B595F504002A9E", "chain_id": "crescent-1", - "origin_denom": "ugraviton", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-44", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "decimals": 6, + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" + }, + { + "denom": "ibc/5EDC10227E40B52D893F5A26C107E2A338C4A643615C10B356DC62B5F4FE1DB1", + "chain_id": "crescent-1", + "origin_denom": "basecro", + "origin_chain_id": "crypto-org-chain-mainnet-1", + "trace": "transfer/channel-40", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 8, + "description": "Cronos", + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO" + }, + { + "denom": "ibc/5F999C145B3800DC8215811064A8E209829F0DEF6B82E1BFBEE39A03C2DD09AB", + "chain_id": "crescent-1", + "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", "origin_chain_id": "gravity-bridge-3", "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "GRAVITON", - "name": "GRAVITON", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", - "decimals": 6, - "description": "Gravity-bridge Staking Coin", - "coingecko_id": "graviton", - "recommended_symbol": "GRAVITON" + "is_svm": false, + "symbol": "PSTAKE", + "name": "PSTAKE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "decimals": 18, + "coingecko_id": "pstake-finance", + "recommended_symbol": "PSTAKE.grv" }, { - "denom": "ibc/CA1261224952DF089EFD363D8DBB30A8AB6D8CD181E60EE9E68E432F8DE14FE3", + "denom": "ucre", "chain_id": "crescent-1", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-11", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "description": "The native token of Crescent", + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/10A0DD366A472B098DFD93FBAE62E65DA387F314872C4AD3AE43185154738D8D", + "denom": "ibc/11F940BCDFD7CFBFD7EDA13F25DA95D308286D441209D780C9863FD4271514EB", "chain_id": "crescent-1", - "origin_denom": "umars", - "origin_chain_id": "mars-1", - "trace": "transfer/channel-35", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, - "symbol": "MARS", - "name": "MARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", "decimals": 6, - "description": "Mars Staking Coin", - "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", - "recommended_symbol": "MARS" + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { "denom": "ibc/11FB4C0BC2FCCFF2B01976C0070F468D82DAE8D1F565F80E64063BFDBEE4A5BD", @@ -9749,6 +10806,7 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDT", "name": "USDT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", @@ -9757,35 +10815,69 @@ "recommended_symbol": "USDT.axl" }, { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "ibc/D41B902B4702503E90B345A66B6B9630AAA1B31574F5DF30717EF2649E1A84D3", "chain_id": "crescent-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", + "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "AUTISM", + "name": "AUTISM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "autism", + "recommended_symbol": "AUTISM" }, { - "denom": "ibc/DA8D591FFA8836FDF3AD0F9F8AF4EAA77D9D4F23DA3D10DFD1FC3B9A3644B26D", + "denom": "ibc/E32F6485CDAE995FC492010770936119D0BF90F5226C9AED727988DF03B5F569", "chain_id": "crescent-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-36", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-30", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "description": "PSTAKE Liquid-Staked ATOM", + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" + }, + { + "denom": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", + "chain_id": "crescent-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-9", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/DBF5FA602C46392DE9F4796A0FC7D02F3A8A3D32CA3FAA50B761D4AA6F619E95", + "chain_id": "crescent-1", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "gWETH", + "name": "gWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "coingecko_id": "weth", + "recommended_symbol": "gWETH.grv" }, { "denom": "ibc/F1806958CA98757B91C3FA1573ECECD24F6FA3804F074A6977658914A49E65A3", @@ -9795,6 +10887,7 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "axlWETH", "name": "axlWETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", @@ -9802,6 +10895,38 @@ "coingecko_id": "weth", "recommended_symbol": "WETH.axl" }, + { + "denom": "ibc/531804EA11DBF043843E20CC6498B5C4C2B19726A33891CAB919545DD3D612E0", + "chain_id": "crescent-1", + "origin_denom": "ujkl", + "origin_chain_id": "jackal-1", + "trace": "transfer/channel-63", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JKL", + "name": "JKL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "decimals": 6, + "coingecko_id": "jackal-protocol", + "recommended_symbol": "JKL" + }, + { + "denom": "ibc/CA1261224952DF089EFD363D8DBB30A8AB6D8CD181E60EE9E68E432F8DE14FE3", + "chain_id": "crescent-1", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-11", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "decimals": 6, + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" + }, { "denom": "ibc/2A77A6AA536FC1D505B29C61CC41FEF4058C4ED0CE9D8C48178263087A985B22", "chain_id": "crescent-1", @@ -9810,6 +10935,7 @@ "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STRD", "name": "STRD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", @@ -9818,35 +10944,186 @@ "recommended_symbol": "STRD" }, { - "denom": "ibc/2AB7D3FAE795E5DD7ACDE80D215DE076AE4DF64367E2D4B801B595F504002A9E", + "denom": "ibc/4DD3698C2FCEA87CDE843D3EA6228F2589A4DF6655A7C16D766010D9CA2E69FB", "chain_id": "crescent-1", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-44", + "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "NEOK", + "name": "NEOK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "decimals": 18, + "recommended_symbol": "NEOK" + }, + { + "denom": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", + "chain_id": "crescent-1", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-27", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "description": "Terra Staking Coin", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/D64F87FAE0B35C1954DD7921BA7A2939705DE77CBF72B8002F2E3552EDE4DE52", + "denom": "ibc/A39C7A94E7955808E135BD13B36DFF8DF722F46E2B90CEB4F88488C0F4B5ABE5", "chain_id": "crescent-1", - "origin_denom": "stuatom", + "origin_denom": "stuumee", "origin_chain_id": "stride-1", "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "stUMEE", + "name": "stUMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", "decimals": 6, - "description": "Stride Staked Atom", - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "coingecko_id": "stride-staked-umee", + "recommended_symbol": "stUMEE" + }, + { + "denom": "ibc/AB9FF5725CC5333B7873425E45B8EABE8757B310B2712B630D032BCB3B4B65DB", + "chain_id": "crescent-1", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-64", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" + }, + { + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_id": "crescent-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, + { + "denom": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", + "chain_id": "crescent-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GRAVITON", + "name": "GRAVITON", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "decimals": 6, + "description": "Gravity-bridge Staking Coin", + "coingecko_id": "graviton", + "recommended_symbol": "GRAVITON" + }, + { + "denom": "ibc/2017AFA149C1C42DBF54EC910DA168E9E4F928DF0D3A8E841189994A9339FED9", + "chain_id": "crescent-1", + "origin_denom": "dai-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.axl" + }, + { + "denom": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", + "chain_id": "crescent-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "description": "Axelar Staking Coin", + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + }, + { + "denom": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", + "chain_id": "crescent-1", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-23", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "description": "Injective Staking Coin", + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" + }, + { + "denom": "ibc/61DF64ADF65230540C14C63D64897BE08A3DC9A516A91425913F01240E2F432F", + "chain_id": "crescent-1", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-26", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "decimals": 6, + "description": "Comdex Staking Coin", + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" + }, + { + "denom": "ibc/4171A6F59F8A708D807E03B43FA0E16EC7041C189557B7A8E519757424367D41", + "chain_id": "crescent-1", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-29", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "description": "Stride Staked Evmos", + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" }, { "denom": "ibc/493974D2BC8E21A0AA6DCCBE404E2C3C851B166296E24360F06D8F7221D2BAAA", @@ -9856,6 +11133,7 @@ "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDT", "name": "USDT", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", @@ -9864,18 +11142,119 @@ "recommended_symbol": "USDT.peggy" }, { - "denom": "ibc/4DD3698C2FCEA87CDE843D3EA6228F2589A4DF6655A7C16D766010D9CA2E69FB", + "denom": "ibc/3D4499D811B055223D0EFB06D2211F84772CAEF0FB987F71BAE716191714B391", "chain_id": "crescent-1", - "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" + }, + { + "denom": "ibc/1620B95419728A7DEF482DEB9462DD6B9FA120BCB49CCCF74209A56AB9835E59", + "chain_id": "crescent-1", + "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "gWBTC", + "name": "gWBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "gravity-bridge-wbtc", + "recommended_symbol": "gWBTC.grv" + }, + { + "denom": "ibc/DA8D591FFA8836FDF3AD0F9F8AF4EAA77D9D4F23DA3D10DFD1FC3B9A3644B26D", + "chain_id": "crescent-1", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-36", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "decimals": 6, + "coingecko_id": "umee", + "recommended_symbol": "UMEE" + }, + { + "denom": "ibc/10A0DD366A472B098DFD93FBAE62E65DA387F314872C4AD3AE43185154738D8D", + "chain_id": "crescent-1", + "origin_denom": "umars", + "origin_chain_id": "mars-1", + "trace": "transfer/channel-35", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MARS", + "name": "MARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "decimals": 6, + "description": "Mars Staking Coin", + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "recommended_symbol": "MARS" + }, + { + "denom": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", + "chain_id": "crescent-1", + "origin_denom": "aevmos", "origin_chain_id": "evmos_9001-2", "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "NEOK", - "name": "NEOK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "decimals": 18, - "recommended_symbol": "NEOK" + "description": "Evmos Staking Coin", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" + }, + { + "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", + "chain_id": "crescent-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, + { + "denom": "ibc/CD01034D6749F20AAC5330EF4FD8B8CA7C40F7527AB8C4A302FBD2A070852EE1", + "chain_id": "crescent-1", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" }, { "denom": "ibc/4DF678EF85F1FD3CEFF41429E14B22E5D7730B00230688E6783AF06112415620", @@ -9885,6 +11264,7 @@ "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CANTO", "name": "CANTO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", @@ -9894,66 +11274,184 @@ "recommended_symbol": "CANTO" }, { - "denom": "ibc/00E92D34B818C0415E60DF07071FCE9222890E888876B814F9DF0DE7372823D2", + "denom": "ibc/7861B62CCDC4C599149C85B978A5B647FD8B6FB604EB826ADFA762A75404AF4E", "chain_id": "crescent-1", - "origin_denom": "ukrw", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-0", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "KRTC", - "name": "KRTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "terrakrw", - "recommended_symbol": "KRTC" + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv" }, { - "denom": "ibc/5EDC10227E40B52D893F5A26C107E2A338C4A643615C10B356DC62B5F4FE1DB1", + "denom": "ibc/7C80C41847B0A6BC37D66C13B2EDAF716217BE894FEC3FF11E76FE02D4E7BAA3", "chain_id": "crescent-1", - "origin_denom": "basecro", - "origin_chain_id": "crypto-org-chain-mainnet-1", - "trace": "transfer/channel-40", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-30", "is_cw20": false, "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "decimals": 6, + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" + }, + { + "denom": "ibc/7FFC60524C4513A3A8E0A407CC89BFF5A861EC624209D72EB26FC10ADAEBA70E", + "chain_id": "crescent-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", "decimals": 8, - "description": "Cronos", - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO" + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/5F999C145B3800DC8215811064A8E209829F0DEF6B82E1BFBEE39A03C2DD09AB", + "denom": "ibc/9EC8A1701813BB7B73BFED2496009ABB2C8BF187E6CDFA788D77F68E08BC05CD", "chain_id": "crescent-1", - "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-2", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-26", "is_cw20": false, "is_evm": false, - "symbol": "PSTAKE", - "name": "PSTAKE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", - "decimals": 18, - "coingecko_id": "pstake-finance", - "recommended_symbol": "PSTAKE.grv" + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "decimals": 6, + "description": "Harbor Protocol Stablecoin", + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/61DF64ADF65230540C14C63D64897BE08A3DC9A516A91425913F01240E2F432F", + "denom": "ibc/BAEA8E5E532DD3442D8938DA6E3C456EEE52CFD2CCC1B3512B0A77E7BEDB2F45", "chain_id": "crescent-1", - "origin_denom": "ucmdx", + "origin_denom": "uharbor", "origin_chain_id": "comdex-1", "trace": "transfer/channel-26", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "decimals": 6, - "description": "Comdex Staking Coin", - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "description": "Harbor Protocol Governance Token", + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" + }, + { + "denom": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", + "chain_id": "crescent-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/C322C7D0867CC3EE6FA3495DC9685E5A0F49B506369341287FDA1E110841A950", + "chain_id": "crescent-1", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" + }, + { + "denom": "ibc/D64F87FAE0B35C1954DD7921BA7A2939705DE77CBF72B8002F2E3552EDE4DE52", + "chain_id": "crescent-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-29", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "decimals": 6, + "description": "Stride Staked Atom", + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" + }, + { + "denom": "ibc/F47D6F6C38DC1B5B72FFB71CC4D8A12FC4C57A5A79BAFA65286723D56B85197D", + "chain_id": "crescent-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-38", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" + }, + { + "denom": "ibc/3208C8E45C27903988E437162134A172880BE112C0530B86117FB5DA7A5DF8B9", + "chain_id": "crescent-1", + "origin_denom": "dot-planck", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DOT", + "name": "DOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" + }, + { + "denom": "ibc/3924A79BA22DE73ECFB91DD1168FFC00F30C6BE46B7BF2987DBF1CAF54067C90", + "chain_id": "crescent-1", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" }, { "denom": "ibc/21DB3093824F38A29399E7466B5870559AEC683D0D09D746F9EC47BB8505CBF7", @@ -9963,6 +11461,7 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "FRAX", "name": "FRAX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", @@ -9978,6 +11477,7 @@ "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "sDAI", "name": "sDAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", @@ -9988,21 +11488,6 @@ }, "cronosmainnet_25-1": { "assets": [ - { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_id": "cronosmainnet_25-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", - "is_cw20": false, - "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" - }, { "denom": "ibc/BE9125D6E248B9BE897F732722E9EAF67F2050020FF44CD4D59BB1E0DCDBE874", "chain_id": "cronosmainnet_25-1", @@ -10011,6 +11496,7 @@ "trace": "transfer/channel-13", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "TIA", "name": "TIA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", @@ -10026,6 +11512,7 @@ "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "JUNO", "name": "JUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", @@ -10033,21 +11520,6 @@ "coingecko_id": "juno-network", "recommended_symbol": "JUNO" }, - { - "denom": "ibc/6411AE2ADA1E73DB59DB151A8988F9B7D5E7E233D8414DB6817F8F1A01611F86", - "chain_id": "cronosmainnet_25-1", - "origin_denom": "basecro", - "origin_chain_id": "crypto-org-chain-mainnet-1", - "trace": "transfer/channel-0", - "is_cw20": false, - "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", - "decimals": 8, - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO" - }, { "denom": "basecro", "chain_id": "cronosmainnet_25-1", @@ -10056,6 +11528,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CRO", "name": "CRO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", @@ -10071,6 +11544,7 @@ "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CANTO", "name": "CANTO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", @@ -10078,6 +11552,22 @@ "coingecko_id": "canto", "recommended_symbol": "CANTO" }, + { + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_id": "cronosmainnet_25-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, { "denom": "ibc/4DAE26570FD24ABA40E2BE4137E39D946C78B00B248D3F78B0919567C4371156", "chain_id": "cronosmainnet_25-1", @@ -10086,25 +11576,58 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "AKT", "name": "AKT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, "coingecko_id": "akash-network", "recommended_symbol": "AKT" + }, + { + "denom": "ibc/6411AE2ADA1E73DB59DB151A8988F9B7D5E7E233D8414DB6817F8F1A01611F86", + "chain_id": "cronosmainnet_25-1", + "origin_denom": "basecro", + "origin_chain_id": "crypto-org-chain-mainnet-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 8, + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO" } ] }, "crypto-org-chain-mainnet-1": { "assets": [ { - "denom": "ibc/80D5E86278CE910A7A9653CCA7DEB62C817E07AF9C0C657B43191C43DE60B107", + "denom": "ibc/1E3DBF6C75EEA6A7BFF418B2E4CFA13B647641E8CB90A5373A76EDD4A2B1978F", "chain_id": "crypto-org-chain-mainnet-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-57", - "is_cw20": false, - "is_evm": false, + "origin_denom": "basecro", + "origin_chain_id": "cronosmainnet_25-1", + "trace": "transfer/channel-44", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 18, + "recommended_symbol": "CRO" + }, + { + "denom": "ibc/80D5E86278CE910A7A9653CCA7DEB62C817E07AF9C0C657B43191C43DE60B107", + "chain_id": "crypto-org-chain-mainnet-1", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-57", + "is_cw20": false, + "is_evm": false, + "is_svm": false, "symbol": "EVMOS", "name": "EVMOS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", @@ -10113,6 +11636,23 @@ "coingecko_id": "evmos", "recommended_symbol": "EVMOS" }, + { + "denom": "basecro", + "chain_id": "crypto-org-chain-mainnet-1", + "origin_denom": "basecro", + "origin_chain_id": "crypto-org-chain-mainnet-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 8, + "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO" + }, { "denom": "ibc/0433997003A2CFE10E483B93743BEC37F2F13B89854FD69599482E6DB8E6CE22", "chain_id": "crypto-org-chain-mainnet-1", @@ -10121,6 +11661,7 @@ "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ION", "name": "ION", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", @@ -10129,35 +11670,6 @@ "coingecko_id": "ion", "recommended_symbol": "ION" }, - { - "denom": "ibc/78D68F66DCFD8FA5536260BED1A118217B03D8D872B7D53489616D2CC8817A56", - "chain_id": "crypto-org-chain-mainnet-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-61", - "is_cw20": false, - "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" - }, - { - "denom": "ibc/1E3DBF6C75EEA6A7BFF418B2E4CFA13B647641E8CB90A5373A76EDD4A2B1978F", - "chain_id": "crypto-org-chain-mainnet-1", - "origin_denom": "basecro", - "origin_chain_id": "cronosmainnet_25-1", - "trace": "transfer/channel-44", - "is_cw20": false, - "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", - "decimals": 18, - "recommended_symbol": "CRO" - }, { "denom": "ibc/1E9C664CD4D386F833177EC91CA23FFC4F1E902DD982725AD537EC4CECBF7274", "chain_id": "crypto-org-chain-mainnet-1", @@ -10166,6 +11678,7 @@ "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "UMEE", "name": "UMEE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", @@ -10173,22 +11686,6 @@ "coingecko_id": "umee", "recommended_symbol": "UMEE" }, - { - "denom": "basecro", - "chain_id": "crypto-org-chain-mainnet-1", - "origin_denom": "basecro", - "origin_chain_id": "crypto-org-chain-mainnet-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", - "decimals": 8, - "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO" - }, { "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", "chain_id": "crypto-org-chain-mainnet-1", @@ -10197,6 +11694,7 @@ "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -10213,6 +11711,7 @@ "trace": "transfer/channel-27", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -10220,40 +11719,74 @@ "description": "Cosmos Staking Coin", "coingecko_id": "cosmos", "recommended_symbol": "ATOM" + }, + { + "denom": "ibc/78D68F66DCFD8FA5536260BED1A118217B03D8D872B7D53489616D2CC8817A56", + "chain_id": "crypto-org-chain-mainnet-1", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-61", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "decimals": 6, + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" } ] }, "dimension_37-1": { "assets": [ { - "denom": "ibc/FEC1C247382FE8A2E67AC699D8AADC01AD1DE04A860D85A2C68BF5BFCB7D8468", + "denom": "ibc/2CC0B1B7A981ACC74854717F221008484603BB8360E81B262411B0D830EDE9B0", "chain_id": "dimension_37-1", - "origin_denom": "wbnb-wei", + "origin_denom": "uaxl", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + }, + { + "denom": "ibc/6771714762A6F8F541DE7C461F09C68F310621315FA70C70799F66A0DE6B95D2", + "chain_id": "dimension_37-1", + "origin_denom": "wavax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "denom": "ibc/8BCD6BB5E8AD820584B798724B16398C413D7B7C475E1B676DEC223FCD32F7E5", "chain_id": "dimension_37-1", - "origin_denom": "uusdc", + "origin_denom": "wmatic-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { "denom": "ibc/ADD91F7979979B9DBBF383BD556BD15E73D4FEECE4210FF80929ADFEBCCF110B", @@ -10263,6 +11796,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WETH", "name": "WETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", @@ -10271,115 +11805,137 @@ "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/2CC0B1B7A981ACC74854717F221008484603BB8360E81B262411B0D830EDE9B0", + "denom": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", "chain_id": "dimension_37-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-0", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "axpla", + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", "chain_id": "dimension_37-1", - "origin_denom": "axpla", - "origin_chain_id": "dimension_37-1", - "trace": "", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "XPLA", - "name": "XPLA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", - "decimals": 18, - "description": "The native staking token of XPLA.", - "coingecko_id": "xpla", - "recommended_symbol": "XPLA" + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/6771714762A6F8F541DE7C461F09C68F310621315FA70C70799F66A0DE6B95D2", + "denom": "ibc/FEC1C247382FE8A2E67AC699D8AADC01AD1DE04A860D85A2C68BF5BFCB7D8468", "chain_id": "dimension_37-1", - "origin_denom": "wavax-wei", + "origin_denom": "wbnb-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "ibc/B4F8297D4C270E82BDF11D51FD51A9FD23B0958B98B1E08346477452119E7D70", + "denom": "axpla", "chain_id": "dimension_37-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-9", + "origin_denom": "axpla", + "origin_chain_id": "dimension_37-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "is_svm": false, + "symbol": "XPLA", + "name": "XPLA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", + "decimals": 18, + "description": "The native staking token of XPLA.", + "coingecko_id": "xpla", + "recommended_symbol": "XPLA" } ] }, "dydx-mainnet-1": { "assets": [ { - "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "denom": "ibc/3FE70329521E882682D5FE840A1FA0FF65AC1A2FBDEA9B7E38F767FD3C5C90A3", "chain_id": "dydx-mainnet-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-0", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "description": "USD Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/DFF74686C97987740A277FBEBAC8BB053A7C76DDF9D8B402DEB92E89B6FD23EB", + "denom": "ibc/8987D810D4122AE7DF743595BEBD4D67AB9265BD19F248E34E4A220BA8EFFEE1", "chain_id": "dydx-mainnet-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-24", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "decimals": 6, + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "denom": "ibc/A1CA75737A469737878C6A3CCD0D47738E85CCE0C4C341B298928DE7DADE3CDF", "chain_id": "dydx-mainnet-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-23", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "decimals": 6, + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" + }, + { + "denom": "ibc/1D9EAAB186DBFC1FF7A42053CEE692E16992D05B42CF36502340CEB113B55A37", + "chain_id": "dydx-mainnet-1", + "origin_denom": "stk/adydx", + "origin_chain_id": "core-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stkDYDX", + "name": "stkDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png", "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "coingecko_id": "stkdydx", + "recommended_symbol": "stkDYDX" }, { "denom": "ibc/97C2ED62A70BA1452186EB40B6510E00560E465A679AEF1CEEE1419B4628AB92", @@ -10389,6 +11945,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "FRNZ", "name": "FRNZ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", @@ -10396,34 +11953,100 @@ "recommended_symbol": "FRNZ" }, { - "denom": "ibc/3FE70329521E882682D5FE840A1FA0FF65AC1A2FBDEA9B7E38F767FD3C5C90A3", + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", "chain_id": "dydx-mainnet-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-8", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/49D0858EB94005A4DB308330F2498999E03A23058AD08E27B0BD2917B2E0C7AC", + "denom": "ibc/A95EBDF88AC1E3FDECAA1D6E250B07C0C86475A3E2BFA2E7DC94A6CDE23DF6D6", "chain_id": "dydx-mainnet-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-1", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "coingecko_id": "tether", + "recommended_symbol": "USDT" + }, + { + "denom": "ibc/BCEFD8175B8C47D712FB639034128CB43776364B79E3251F073CB3A2A32582A0", + "chain_id": "dydx-mainnet-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, + { + "denom": "ibc/E901426A5E7A5251282345748F08CA91A3D8F35D074A9FE9B7BBFF7884E1E246", + "chain_id": "dydx-mainnet-1", + "origin_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-14", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "XRP", + "name": "XRP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", + "decimals": 6, + "coingecko_id": "pulsara", + "recommended_symbol": "XRP" + }, + { + "denom": "ibc/EE1C03BBEE626F362C6FCA86A7128A6B937C385820740E7A789BD047CDD818D2", + "chain_id": "dydx-mainnet-1", + "origin_denom": "rowan", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-10", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ROWAN", + "name": "ROWAN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", + "decimals": 18, + "coingecko_id": "sifchain", + "recommended_symbol": "ROWAN" + }, + { + "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "chain_id": "dydx-mainnet-1", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-23", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { "denom": "ibc/15781DDDCD499274C978F31A0DBD6DA93D8EE0F7200891898549AFC7C5B5948A", @@ -10433,10 +12056,12 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stDYDX", "name": "stDYDX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", "decimals": 18, + "description": "Stride Staked DYDX", "coingecko_id": "stride-staked-dydx", "recommended_symbol": "stDYDX" }, @@ -10448,6 +12073,7 @@ "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -10456,49 +12082,53 @@ "recommended_symbol": "OSMO" }, { - "denom": "ibc/BCEFD8175B8C47D712FB639034128CB43776364B79E3251F073CB3A2A32582A0", + "denom": "ibc/49D0858EB94005A4DB308330F2498999E03A23058AD08E27B0BD2917B2E0C7AC", "chain_id": "dydx-mainnet-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-2", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/EE1C03BBEE626F362C6FCA86A7128A6B937C385820740E7A789BD047CDD818D2", + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", "chain_id": "dydx-mainnet-1", - "origin_denom": "rowan", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-10", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "ROWAN", - "name": "ROWAN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", - "decimals": 18, - "coingecko_id": "sifchain", - "recommended_symbol": "ROWAN" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "description": "USD Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/1D9EAAB186DBFC1FF7A42053CEE692E16992D05B42CF36502340CEB113B55A37", + "denom": "ibc/DFF74686C97987740A277FBEBAC8BB053A7C76DDF9D8B402DEB92E89B6FD23EB", "chain_id": "dydx-mainnet-1", - "origin_denom": "stk/adydx", - "origin_chain_id": "core-1", - "trace": "transfer/channel-4", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-24", "is_cw20": false, "is_evm": false, - "symbol": "stkDYDX", - "name": "stkDYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png", + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", "decimals": 18, - "coingecko_id": "stkdydx", - "recommended_symbol": "stkDYDX" + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { "denom": "adydx", @@ -10508,6 +12138,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DYDX", "name": "DYDX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", @@ -10517,99 +12148,137 @@ "recommended_symbol": "DYDX" }, { - "denom": "ibc/A1CA75737A469737878C6A3CCD0D47738E85CCE0C4C341B298928DE7DADE3CDF", - "chain_id": "dydx-mainnet-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-9", - "is_cw20": false, - "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" - }, - { - "denom": "ibc/A95EBDF88AC1E3FDECAA1D6E250B07C0C86475A3E2BFA2E7DC94A6CDE23DF6D6", + "denom": "ibc/976C73350F6F48A69DE740784C8A92931C696581A5C720D96DDF4AFA860FFF97", "chain_id": "dydx-mainnet-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-7", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" } ] }, "dymension_1100-1": { "assets": [ { - "denom": "ibc/BEE9A8F835D60717548FFE9AC9E90F18AB8096574EB1211F88074CB3511B7860", + "denom": "adym", "chain_id": "dymension_1100-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-2", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC" + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "decimals": 18, + "description": "The native governance and staking token of the Dymension Hub", + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", + "denom": "ibc/054A44EC8D9B68B9A6F0D5708375E00A5569A28F21E0064FF12CADC3FEF1D04F", "chain_id": "dymension_1100-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-2", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/14ACCAD1750327C74BB35978AD0C3E97B184DAB9F0BF4BD876FBD1F782B57110", + "denom": "ibc/2CC29C87BAF5E5E5E26EEA24B87F1863BFB13B29927B9A3625892EA1795337AA", "chain_id": "dymension_1100-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-10", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "decimals": 8, + "recommended_symbol": "SOL.wh" }, { - "denom": "ibc/B72B5B3F7AD44783584921DC33354BCE07C8EB0A7F0349247C3DAD38C3B6E6A5", + "denom": "ibc/4263C1D1EEEA066572F679EF212BDD522ADF0E57C86819AF260C8BC82BD87602", "chain_id": "dymension_1100-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-3", - "is_cw20": false, + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-0", + "is_cw20": false, "is_evm": false, - "symbol": "USDt", - "name": "USDt", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "description": "Tether USDt", - "coingecko_id": "tether", - "recommended_symbol": "USDt" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" + }, + { + "denom": "ibc/27A5DE18D796A595123D97078F9AB9EAEFC23540724384F219EACED2BD5511F5", + "chain_id": "dymension_1100-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-35", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, + { + "denom": "ibc/45C87C0C3027BD5E5BBECF6A6BF8570857E555ABCB6689130AC90D391016AD17", + "chain_id": "dymension_1100-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" + }, + { + "denom": "ibc/45D6B52CAD911A15BD9C2F5FFDA80E26AFCB05C7CD520070790ABC86D2B24229", + "chain_id": "dymension_1100-1", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "decimals": 6, + "description": "Celestia Staking Coin", + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { "denom": "ibc/567D01F41E7047F60174CD64D10E8D85E09E1B831023BC75622A8F67C540DCD4", @@ -10619,6 +12288,7 @@ "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KAVA", "name": "KAVA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", @@ -10626,6 +12296,55 @@ "coingecko_id": "kava", "recommended_symbol": "KAVA" }, + { + "denom": "ibc/5C58CC109FB067073F1B80481EE9C3A8484330FECB35D2591B28E7E1A6FCF64C", + "chain_id": "dymension_1100-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-45", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, + { + "denom": "ibc/AB30D2F9C131AE1EFA8449C74490326BD5ACC40EF69A2D8563994AA05CE0B258", + "chain_id": "dymension_1100-1", + "origin_denom": "stadym", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stDYM", + "name": "stDYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png", + "decimals": 18, + "coingecko_id": "stride-staked-dym", + "recommended_symbol": "stDYM" + }, + { + "denom": "ibc/B3504E092456BA618CC28AC671A71FB08C6CA0FD0BE7C8A5B5A3E2DD933CC9E4", + "chain_id": "dymension_1100-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-6", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" + }, { "denom": "ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65", "chain_id": "dymension_1100-1", @@ -10634,6 +12353,7 @@ "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", @@ -10649,6 +12369,7 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -10665,6 +12386,7 @@ "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SAIL", "name": "SAIL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", @@ -10672,35 +12394,20 @@ "recommended_symbol": "SAIL" }, { - "denom": "ibc/E3AB0DFDE9E782262B770C32DF94AC2A92B93DC4825376D6F6C874D3C877864E", + "denom": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", "chain_id": "dymension_1100-1", - "origin_denom": "weth-wei", + "origin_denom": "uaxl", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" - }, - { - "denom": "ibc/B3504E092456BA618CC28AC671A71FB08C6CA0FD0BE7C8A5B5A3E2DD933CC9E4", - "chain_id": "dymension_1100-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-6", - "is_cw20": false, - "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { "denom": "ibc/B22B4DD21586965DAEF42A7600BA371EA77C02E90FC8A7F2330BF9F9DE129B07", @@ -10710,6 +12417,7 @@ "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KUJI", "name": "KUJI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", @@ -10718,50 +12426,37 @@ "recommended_symbol": "KUJI" }, { - "denom": "ibc/F428C5D24BEF8CA22EE74810A583422C12F02865ADAC185678C73015A88227B3", + "denom": "ibc/B72B5B3F7AD44783584921DC33354BCE07C8EB0A7F0349247C3DAD38C3B6E6A5", "chain_id": "dymension_1100-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-2", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "USDt", + "name": "USDt", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" - }, - { - "denom": "ibc/04E01477A69DF1E5EE99F85C15B66D68D23292275357CAA44B2E0527310A405E", - "chain_id": "dymension_1100-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-37", - "is_cw20": false, - "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "description": "Tether USDt", + "coingecko_id": "tether", + "recommended_symbol": "USDt" }, { - "denom": "adym", + "denom": "ibc/BEE9A8F835D60717548FFE9AC9E90F18AB8096574EB1211F88074CB3511B7860", "chain_id": "dymension_1100-1", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", - "decimals": 18, - "description": "The native governance and staking token of the Dymension Hub", - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" }, { "denom": "ibc/2F2F132E47342479A8B7A8DB241F276609C53A1478CEB9A57411A910C9B061DB", @@ -10771,6 +12466,7 @@ "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NTRN", "name": "NTRN", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", @@ -10780,35 +12476,36 @@ "recommended_symbol": "NTRN" }, { - "denom": "ibc/45D6B52CAD911A15BD9C2F5FFDA80E26AFCB05C7CD520070790ABC86D2B24229", + "denom": "ibc/E3AB0DFDE9E782262B770C32DF94AC2A92B93DC4825376D6F6C874D3C877864E", "chain_id": "dymension_1100-1", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-4", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", - "decimals": 6, - "description": "Celestia Staking Coin", - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "decimals": 18, + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", + "denom": "ibc/F428C5D24BEF8CA22EE74810A583422C12F02865ADAC185678C73015A88227B3", "chain_id": "dymension_1100-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-5", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { "denom": "ibc/F46BA5EDCA6DAA5F7EFD3838430E03647CDC786BB1B89BC9FDD1CBE16B099645", @@ -10818,6 +12515,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stTIA", "name": "stTIA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", @@ -10833,6 +12531,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STRD", "name": "STRD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", @@ -10841,19 +12540,56 @@ "recommended_symbol": "STRD" }, { - "denom": "ibc/27A5DE18D796A595123D97078F9AB9EAEFC23540724384F219EACED2BD5511F5", + "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", "chain_id": "dymension_1100-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-35", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/14ACCAD1750327C74BB35978AD0C3E97B184DAB9F0BF4BD876FBD1F782B57110", + "chain_id": "dymension_1100-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" + } + ] + }, + "ebony-2": { + "assets": [ + { + "denom": "tcony", + "chain_id": "ebony-2", + "origin_denom": "tcony", + "origin_chain_id": "ebony-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TFNSA", + "name": "TFNSA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/finschia/images/fnsa.png", + "decimals": 6, + "description": "The native token of Ebony", + "recommended_symbol": "TFNSA" } ] }, @@ -10867,6 +12603,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STARS", "name": "STARS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", @@ -10874,190 +12611,190 @@ "description": "The native token of Stargaze", "coingecko_id": "stargaze", "recommended_symbol": "STARS" + }, + { + "denom": "ibc/0111CB75A7B4B571EE05839EB7226D2E7303923F5B04C98B81DE6213DF8C6A98", + "chain_id": "elgafar-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmo-test-5", + "trace": "transfer/channel-848", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" } ] }, - "evmos_9001-2": { + "empowerchain-1": { "assets": [ { - "denom": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", - "chain_id": "evmos_9001-2", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-5", + "denom": "ibc/7C0807A56073C4A27B0DE1C21BA3EB75DF75FD763F4AD37BC159917FC01145F0", + "chain_id": "empowerchain-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" - }, - { - "denom": "ibc/9B89949D69EB1552815A25EC9CA5F4F48946F5FF368341B2F8E61A0AEDAA6242", - "chain_id": "evmos_9001-2", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-109", - "is_cw20": false, - "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", - "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/8F2438D04845BBC7081127D45F527EA624E635018D8740874724CC5AC1A0B8E4", - "chain_id": "evmos_9001-2", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-85", + "denom": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "chain_id": "empowerchain-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "chain_id": "evmos_9001-2", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "chain_id": "empowerchain-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/F96A7F81E8F82E4EE81F94D507CD257319EFB70FE46E23B4953F63B62E855603", - "chain_id": "evmos_9001-2", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "gravity-bridge-3", + "denom": "ibc/5B44CB19921A84F2A780E38972318AEB1CC7EF7EA9FE36B505594DA0664F4A9A", + "chain_id": "empowerchain-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "gDAI", - "name": "gDAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "gDAI.grv" + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/A7F9A6DC7C7889BF083D778AF579757FC9F4E35911D8A6E8AF3E81A38C819D6D", - "chain_id": "evmos_9001-2", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-82", + "denom": "umpwr", + "chain_id": "empowerchain-1", + "origin_denom": "umpwr", + "origin_chain_id": "empowerchain-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "MPWR", + "name": "MPWR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", + "decimals": 6, + "description": "The native staking and governance token of Empower.", + "recommended_symbol": "MPWR" }, { - "denom": "ibc/B5AB26FB63C08E1C14B91B4DDC15CA4FE59737052B4432D8A3B328B66F6FE7A1", - "chain_id": "evmos_9001-2", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-11", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "chain_id": "empowerchain-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" - }, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + } + ] + }, + "evmos_9001-2": { + "assets": [ { - "denom": "ibc/B926F947F6602A60D007CD12424D39FE9EB86641024E007857999C36967ADAA2", + "denom": "ibc/A3ABC733BECAEA02484AFB992F689DF8B8820DD4845EE4BCEBA680AEAE03E3FA", "chain_id": "evmos_9001-2", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_denom": "ukuji", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", - "decimals": 6, - "recommended_symbol": "WINK" - }, - { - "denom": "ibc/F11C8CB7743E4B5FDCEA7C97F3B2C115E1931C5614B84C183DAC439B4C919D94", - "chain_id": "evmos_9001-2", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-21", - "is_cw20": false, - "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/356EDE917394B2AEF7F915EB24FA683A0CCB8D16DD4ECCEDC2AD0CEC6B66AC81", + "denom": "ibc/BBB3CFC23ADA993A3FC300675C9440F58FDBECCA13578B0840F36D9C495EE886", "chain_id": "evmos_9001-2", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-21", + "origin_denom": "xrpl11278ecf9e-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "axlWETH", - "name": "axlWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.axl" + "is_svm": false, + "symbol": "SOLO", + "name": "SOLO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/coreum/asset/solo.png", + "decimals": 15, + "coingecko_id": "solo-coin", + "recommended_symbol": "SOLO" }, { - "denom": "ibc/B133F4D2682AD7BD9F215892532C391B58128142B7341E5F8672AE27DDC09A56", + "denom": "ibc/DF63978F803A2E27CA5CC9B7631654CCF0BBC788B3B7F0A10200508E37C70992", "chain_id": "evmos_9001-2", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-18", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "gUSDT", + "name": "gUSDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "coingecko_id": "tether", + "recommended_symbol": "gUSDT.grv" }, { - "denom": "ibc/BAEA8E5E532DD3442D8938DA6E3C456EEE52CFD2CCC1B3512B0A77E7BEDB2F45", + "denom": "ibc/9EC8A1701813BB7B73BFED2496009ABB2C8BF187E6CDFA788D77F68E08BC05CD", "chain_id": "evmos_9001-2", - "origin_denom": "uharbor", + "origin_denom": "ucmst", "origin_chain_id": "comdex-1", "trace": "transfer/channel-26", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { "denom": "ibc/CBA4784581AD4BEF308C536A3CD44D4A940A520E61B0D1E4FB115C539F61DEE5", @@ -11067,6 +12804,7 @@ "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "axlDAI", "name": "axlDAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", @@ -11075,156 +12813,130 @@ "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/0830AFFC2F4F7CD24F9CEC07024FEA64CE3C5ABBC520DBD803BFA97BC3DCCA85", + "denom": "ibc/C9364B2C453F0428D04FD40B6CF486BA138FA462FE43A116268A7B695AFCFE7F", "chain_id": "evmos_9001-2", - "origin_denom": "stuatom", + "origin_denom": "stuosmo", "origin_chain_id": "stride-1", "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", + "denom": "ibc/44E85975827951920BB797F41CA3A0638C8C2C4986238514C4999317B8623C52", "chain_id": "evmos_9001-2", - "origin_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", - "origin_chain_id": "evmos_9001-2", - "trace": "", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "BERLIN", - "name": "BERLIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png", - "decimals": 18, - "description": "The token of Teledisko DAO.", - "recommended_symbol": "BERLIN" + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "decimals": 6, + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "denom": "ibc/E1136B918D1D8CD8ADAA7C6B73A98588AE28F2A3E1F89FD2DC4E5FB7D8CA1E82", "chain_id": "evmos_9001-2", - "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", - "origin_chain_id": "evmos_9001-2", - "trace": "", + "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "NEOK", - "name": "NEOK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", - "decimals": 18, - "description": "The token of Neokingdom DAO.", - "recommended_symbol": "NEOK" - }, - { - "denom": "ibc/0308F75D30E08D1F7CF05FB8892C3AA6102CD4DDADBE3D4795C9ADE2710D2AF4", - "chain_id": "evmos_9001-2", - "origin_denom": "stuluna", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-25", - "is_cw20": false, - "is_evm": false, - "symbol": "stLUNA", - "name": "stLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "decimals": 6, - "coingecko_id": "stride-staked-luna", - "recommended_symbol": "stLUNA" + "is_svm": false, + "symbol": "PAGE", + "name": "PAGE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "decimals": 8, + "coingecko_id": "page", + "recommended_symbol": "PAGE.grv" }, { - "denom": "ibc/21C0C3E238D48E370841635ADC3322F5D3D26342679102D5865DA8A56BD9524E", + "denom": "ibc/46B84AA4117FD41E8AF1171BD4D49981F45E0407DC5D38A1A9FE07607A98801F", "chain_id": "evmos_9001-2", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-25", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "is_svm": false, + "symbol": "SUI", + "name": "SUI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", + "decimals": 8, + "recommended_symbol": "SUI.wh" }, { - "denom": "ibc/1FA2E811AA853A2AE028D82D490B1E967312DB871C9A40B19684FACB1DDD7881", + "denom": "ibc/46C5DA1CB61C5BAA8730ABA467ADD58DE0333B075CACE28BC87E64AE8C9CA051", "chain_id": "evmos_9001-2", - "origin_denom": "basecro", - "origin_chain_id": "crypto-org-chain-mainnet-1", - "trace": "transfer/channel-31", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", "decimals": 8, - "description": "Cronos", - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO" + "recommended_symbol": "WBTC.wh" }, { - "denom": "ibc/473351B37CC9D7BA7B247800EF04D255E442C4C9C93976E3631B190A8F3C5570", + "denom": "ibc/4D6975AACA0DA11B982F539300687B86B3E3AEF509C0D4F6D5AC2A27BFB236D8", "chain_id": "evmos_9001-2", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-21", + "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "tether", + "recommended_symbol": "USDT.peggy" }, { - "denom": "ibc/4FCDD6D71CAB4F6BBEAB781D036977E1158075297671345055BC342D46819640", + "denom": "ibc/6B3FCE336C3465D3B72F7EFB4EB92FC521BC480FE9653F627A0BD0237DF213F3", "chain_id": "evmos_9001-2", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-25", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "is_svm": false, + "symbol": "gWETH", + "name": "gWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", "decimals": 18, - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" - }, - { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", - "chain_id": "evmos_9001-2", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", - "is_cw20": false, - "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" + "coingecko_id": "weth", + "recommended_symbol": "gWETH.grv" }, { - "denom": "ibc/5724BDCD2C1A4D3D32C814DED15948B0BD18D241D78AB7AF39493794371DDB65", + "denom": "ibc/1F2479B19F57032D4E294A2B84C7973E47C1D4F85B08577DBC659B4DC70B5590", "chain_id": "evmos_9001-2", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-106", + "origin_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "XRP", + "name": "XRP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "coingecko_id": "pulsara", + "recommended_symbol": "XRP" }, { "denom": "ibc/5BDA280DA1EA865301F0DB343F87971D6E6C399152B335D8CE475EEA2BA38D21", @@ -11234,6 +12946,7 @@ "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WBNB", "name": "WBNB", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", @@ -11242,64 +12955,19 @@ "recommended_symbol": "WBNB.axl" }, { - "denom": "ibc/61DF64ADF65230540C14C63D64897BE08A3DC9A516A91425913F01240E2F432F", - "chain_id": "evmos_9001-2", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-26", - "is_cw20": false, - "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", - "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" - }, - { - "denom": "ibc/63C53CBDF471D4E867366ABE2E631197257118D1B2BEAD1946C8A408F96464C3", - "chain_id": "evmos_9001-2", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-21", - "is_cw20": false, - "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" - }, - { - "denom": "ibc/7F0C2CB6E79CC36D29DA7592899F98E3BEFD2CF77A94340C317032A78812393D", + "denom": "ibc/AA054FD00F476B91C63F27F591B410CCC8F9DB1FC829B51353C51458E2817434", "chain_id": "evmos_9001-2", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", + "origin_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "GRAVITON", - "name": "GRAVITON", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "ampOSMO", + "name": "ampOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", "decimals": 6, - "description": "Gravity-bridge Staking Coin", - "coingecko_id": "graviton", - "recommended_symbol": "GRAVITON" - }, - { - "denom": "ibc/80C08D2C375C81A49291031B5865939C098502D6BF822FF31A3E042AC739512E", - "chain_id": "evmos_9001-2", - "origin_denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", - "is_cw20": false, - "is_evm": false, - "symbol": "OCC", - "name": "OCC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", - "decimals": 18, - "recommended_symbol": "OCC.grv" + "recommended_symbol": "ampOSMO" }, { "denom": "ibc/95F4898F70B1E3765715808C57E955034419200A7BB6DDECBEAA5FD3AA3DF7D5", @@ -11309,6 +12977,7 @@ "trace": "transfer/channel-83", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDT", "name": "USDT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", @@ -11317,155 +12986,147 @@ "recommended_symbol": "USDT" }, { - "denom": "ibc/9628FDBB922ECDBAFBE316667E21D6A5D2EFB9412A8F39666A8127708DCCA8FC", + "denom": "ibc/E7A722DF0BC6EDE626E1C7DC852564BA7058828764B71D76F3BA5E4AC45A09E9", "chain_id": "evmos_9001-2", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-85", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "PYTH", + "name": "PYTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "recommended_symbol": "PYTH.wh" }, { - "denom": "ibc/990770DB97A9567A0B794EB5A3A9BD02C939CE538661FA2DB44DD791CF16DC0E", + "denom": "ibc/F11C8CB7743E4B5FDCEA7C97F3B2C115E1931C5614B84C183DAC439B4C919D94", "chain_id": "evmos_9001-2", - "origin_denom": "wavax-wei", + "origin_denom": "uusdt", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "decimals": 6, + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "ibc/9EC8A1701813BB7B73BFED2496009ABB2C8BF187E6CDFA788D77F68E08BC05CD", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "chain_id": "evmos_9001-2", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-26", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "ibc/D9C9DFD2B4021D16B01AC16ECD5A7933383C38F8331160583E0A5F34B30E1BA9", + "denom": "ibc/F96A7F81E8F82E4EE81F94D507CD257319EFB70FE46E23B4953F63B62E855603", "chain_id": "evmos_9001-2", - "origin_denom": "stujuno", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-25", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", - "decimals": 6, - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" + "is_svm": false, + "symbol": "gDAI", + "name": "gDAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "gDAI.grv" }, { - "denom": "ibc/A3ABC733BECAEA02484AFB992F689DF8B8820DD4845EE4BCEBA680AEAE03E3FA", + "denom": "ibc/63C53CBDF471D4E867366ABE2E631197257118D1B2BEAD1946C8A408F96464C3", "chain_id": "evmos_9001-2", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-18", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", + "denom": "ibc/63D794036C8752D569A25A05CD2319F3C9103ED9FC936E93AFE50C832E358CA3", "chain_id": "evmos_9001-2", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-3", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 8, + "recommended_symbol": "DAI.wh" }, { - "denom": "ibc/A724CE2BEAEBE04851510EEA6DC436ED3A824D1681AF14E7A706C66E9F39D741", + "denom": "ibc/9628FDBB922ECDBAFBE316667E21D6A5D2EFB9412A8F39666A8127708DCCA8FC", "chain_id": "evmos_9001-2", - "origin_denom": "ukava", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-83", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-85", "is_cw20": false, "is_evm": false, - "symbol": "KAVA", - "name": "KAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", "decimals": 6, - "coingecko_id": "kava", - "recommended_symbol": "KAVA" + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { - "denom": "ibc/B389DF077401C819F7A4235167AC1399790FB819983191A3AFC646C7364D24C9", + "denom": "ibc/990770DB97A9567A0B794EB5A3A9BD02C939CE538661FA2DB44DD791CF16DC0E", "chain_id": "evmos_9001-2", - "origin_denom": "wftm-wei", + "origin_denom": "wavax-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "WFTM", - "name": "WFTM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "coingecko_id": "wrapped-fantom", - "recommended_symbol": "WFTM.axl" - }, - { - "denom": "ibc/1464C6BD4C7ADB0A15BE85F48EE1E04A5371F4727F609FBAB788CF5137FDAAB7", - "chain_id": "evmos_9001-2", - "origin_denom": "stustars", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-25", - "is_cw20": false, - "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", - "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "ibc/7564B7F838579DD4517A225978C623504F852A6D0FF7984AFB28F10D36022BE8", + "denom": "ibc/A7F9A6DC7C7889BF083D778AF579757FC9F4E35911D8A6E8AF3E81A38C819D6D", "chain_id": "evmos_9001-2", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-13", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-82", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { "denom": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", @@ -11475,6 +13136,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WOSMO", "name": "WOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", @@ -11489,6 +13151,7 @@ "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "INJ", "name": "INJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", @@ -11497,6 +13160,38 @@ "coingecko_id": "injective-protocol", "recommended_symbol": "INJ" }, + { + "denom": "ibc/B389DF077401C819F7A4235167AC1399790FB819983191A3AFC646C7364D24C9", + "chain_id": "evmos_9001-2", + "origin_denom": "wftm-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-21", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WFTM", + "name": "WFTM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "decimals": 18, + "coingecko_id": "wrapped-fantom", + "recommended_symbol": "WFTM.axl" + }, + { + "denom": "ibc/B133F4D2682AD7BD9F215892532C391B58128142B7341E5F8672AE27DDC09A56", + "chain_id": "evmos_9001-2", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-18", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" + }, { "denom": "ibc/E7ACCD2A1F427753394331E2D7A5E49203FBB022D42FFCA02B8194B4E5893D55", "chain_id": "evmos_9001-2", @@ -11505,6 +13200,7 @@ "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "FRNZ", "name": "FRNZ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", @@ -11512,109 +13208,115 @@ "recommended_symbol": "FRNZ" }, { - "denom": "ibc/26E6508A1757E12B15A087E951F5D35E73CF036F0D97BC809E1598D1DD870BED", + "denom": "ibc/473351B37CC9D7BA7B247800EF04D255E442C4C9C93976E3631B190A8F3C5570", "chain_id": "evmos_9001-2", - "origin_denom": "pepe-wei", + "origin_denom": "uaxl", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "PEPE", - "name": "PEPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", - "decimals": 18, - "coingecko_id": "pepe", - "recommended_symbol": "PEPE.axl" + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/693989F95CF3279ADC113A6EF21B02A51EC054C95A9083F2E290126668149433", + "denom": "ibc/39913E647C3549D663B1ED7F0745E1779515170C5215B98B2C8410B4C073AD30", "chain_id": "evmos_9001-2", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "gUSDC", - "name": "gUSDC", + "is_svm": false, + "symbol": "avalanche.USDC.wh", + "name": "avalanche.USDC.wh", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "gUSDC.grv" + "recommended_symbol": "avalanche.USDC.wh" }, { - "denom": "ibc/6A3538834873D16F00D0268B295A8D6FD9B005952787AA14726D0013A51042AC", + "denom": "ibc/4FCDD6D71CAB4F6BBEAB781D036977E1158075297671345055BC342D46819640", "chain_id": "evmos_9001-2", - "origin_denom": "reth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-21", + "origin_denom": "stinj", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "rETH", - "name": "rETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", "decimals": 18, - "coingecko_id": "rocket-pool-eth", - "recommended_symbol": "rETH.axl" + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "ibc/6B3FCE336C3465D3B72F7EFB4EB92FC521BC480FE9653F627A0BD0237DF213F3", + "denom": "ibc/5724BDCD2C1A4D3D32C814DED15948B0BD18D241D78AB7AF39493794371DDB65", "chain_id": "evmos_9001-2", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-106", "is_cw20": false, "is_evm": false, - "symbol": "gWETH", - "name": "gWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "gWETH.grv" + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "decimals": 6, + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "ibc/7883D6C40128A175BF42226F013671C0B190F2AC2CA9215896EBD6F7F7097A77", + "denom": "ibc/531CDB0665EF0096E6CD4D80E7D6546791680EE8A1E8523CE54EE54E1281C8B5", "chain_id": "evmos_9001-2", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-21", + "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "is_svm": false, + "symbol": "PLNK", + "name": "PLNK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "decimals": 6, + "recommended_symbol": "PLNK" }, { - "denom": "ibc/8AD12CDC6AF25B57238DFA8C5E46920E42411F27D3A31F55E6C082784E3464A5", + "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", "chain_id": "evmos_9001-2", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-18", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/C49FDA9CB980D813492E2DFFF255B01C46E629C73B2B468131F6FE6E14F55754", + "denom": "ibc/A724CE2BEAEBE04851510EEA6DC436ED3A824D1681AF14E7A706C66E9F39D741", "chain_id": "evmos_9001-2", - "origin_denom": "staevmos", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-25", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-83", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "decimals": 6, + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { "denom": "ibc/C834CD421B4FD910BBC97E06E86B5E6F64EA2FE36D6AE0E4304C2E1FB1E7333C", @@ -11624,6 +13326,7 @@ "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "axlWBTC", "name": "axlWBTC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", @@ -11632,1007 +13335,1026 @@ "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/C9364B2C453F0428D04FD40B6CF486BA138FA462FE43A116268A7B695AFCFE7F", + "denom": "ibc/C9072A294F5649D64E87A6998DD750576881E454CACCDAF7376EFC0FA243808D", "chain_id": "evmos_9001-2", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-25", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "recommended_symbol": "USDT.wh" }, { - "denom": "aevmos", + "denom": "ibc/8AD12CDC6AF25B57238DFA8C5E46920E42411F27D3A31F55E6C082784E3464A5", "chain_id": "evmos_9001-2", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "description": "The native EVM, governance and staking token of the Evmos Hub", - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "decimals": 6, + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" }, { - "denom": "ibc/350B6DC0FF48E3BDB856F40A8259909E484259ED452B3F4F39A0FEF874F30F61", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "evmos_9001-2", - "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "gWBTC", - "name": "gWBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "gWBTC.grv" + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/35357FE55D81D88054E135529BB2AEB1BB20D207292775A19BD82D83F27BE9B4", + "denom": "ibc/5EFE20DD152EB85A1EDF2A5D8CFD75B6698495A1ED9284C54373D25E9DFA6C58", "chain_id": "evmos_9001-2", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-64", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "is_svm": false, + "symbol": "tBTC", + "name": "tBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg", + "decimals": 8, + "recommended_symbol": "tBTC.wh" }, { - "denom": "ibc/D884FE6B2F0B0E5267D460A49235A2AF0824F1B62FC22E4F32AB8C2F7619D40F", + "denom": "ibc/61DF64ADF65230540C14C63D64897BE08A3DC9A516A91425913F01240E2F432F", "chain_id": "evmos_9001-2", - "origin_denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-26", "is_cw20": false, "is_evm": false, - "symbol": "STETH", - "name": "STETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", - "decimals": 18, - "coingecko_id": "staked-ether", - "recommended_symbol": "STETH.grv" + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "decimals": 6, + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "ibc/4D6975AACA0DA11B982F539300687B86B3E3AEF509C0D4F6D5AC2A27BFB236D8", + "denom": "ibc/64A2ACA8FA70CA31C679AFE096AA34614B2D38144FFADC2DC8CF5FCB29438A02", "chain_id": "evmos_9001-2", - "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-10", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.peggy" + "is_svm": false, + "symbol": "APT", + "name": "APT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg", + "decimals": 8, + "recommended_symbol": "APT.wh" }, { - "denom": "ibc/7D58FD33646AB30EB0042C9D4F718820BC27E0F437133FB5824EC9FBA3B3847E", + "denom": "ibc/7883D6C40128A175BF42226F013671C0B190F2AC2CA9215896EBD6F7F7097A77", "chain_id": "evmos_9001-2", - "origin_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "PAXG", - "name": "PAXG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/paxg.png", + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", "decimals": 18, - "coingecko_id": "pax-gold", - "recommended_symbol": "PAXG.grv" + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { - "denom": "ibc/531CDB0665EF0096E6CD4D80E7D6546791680EE8A1E8523CE54EE54E1281C8B5", + "denom": "aevmos", "chain_id": "evmos_9001-2", - "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-18", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PLNK", - "name": "PLNK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", - "decimals": 6, - "recommended_symbol": "PLNK" + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "description": "The native EVM, governance and staking token of the Evmos Hub", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "ibc/6904C593513EF1B656414367DAA962E10BE8382E40F0F65170D12678A606D949", + "denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", "chain_id": "evmos_9001-2", - "origin_denom": "eth.1.2.942d87", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-23", + "origin_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", + "origin_chain_id": "evmos_9001-2", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", + "is_svm": false, + "symbol": "BERLIN", + "name": "BERLIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png", "decimals": 18, - "recommended_symbol": "ETH.carbon" + "description": "The token of Teledisko DAO.", + "recommended_symbol": "BERLIN" }, { - "denom": "ibc/3A7C0D680D0F50A98115966A22C01594897FAE924FAF324E13C5FFB89F6864BF", + "denom": "ibc/04FFDEB203D15080B4703F36166CBA1C83471E73D43DD85B979236DCC6C5AF3D", "chain_id": "evmos_9001-2", - "origin_denom": "busd-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-21", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD.axl" + "is_svm": false, + "symbol": "Bonk", + "name": "Bonk", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", + "decimals": 5, + "recommended_symbol": "Bonk.wh" }, { - "denom": "ibc/43BD3A576550CDCD183BC093AEB610B3C2057AD12BA3C27D67AE9F4BCA74F2C8", + "denom": "ibc/1464C6BD4C7ADB0A15BE85F48EE1E04A5371F4727F609FBAB788CF5137FDAAB7", "chain_id": "evmos_9001-2", - "origin_denom": "wsteth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-21", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH.axl" + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "decimals": 6, + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" }, { - "denom": "ibc/DF63978F803A2E27CA5CC9B7631654CCF0BBC788B3B7F0A10200508E37C70992", + "denom": "ibc/1FA2E811AA853A2AE028D82D490B1E967312DB871C9A40B19684FACB1DDD7881", "chain_id": "evmos_9001-2", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", + "origin_denom": "basecro", + "origin_chain_id": "crypto-org-chain-mainnet-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "gUSDT", - "name": "gUSDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "gUSDT.grv" + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 8, + "description": "Cronos", + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO" }, { - "denom": "ibc/E1136B918D1D8CD8ADAA7C6B73A98588AE28F2A3E1F89FD2DC4E5FB7D8CA1E82", + "denom": "ibc/350B6DC0FF48E3BDB856F40A8259909E484259ED452B3F4F39A0FEF874F30F61", "chain_id": "evmos_9001-2", - "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", "origin_chain_id": "gravity-bridge-3", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "PAGE", - "name": "PAGE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "is_svm": false, + "symbol": "gWBTC", + "name": "gWBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", "decimals": 8, - "coingecko_id": "page", - "recommended_symbol": "PAGE.grv" - } - ] - }, - "fetchhub-4": { - "assets": [ + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "gWBTC.grv" + }, { - "denom": "ibc/8AF69BC1E1D72B447738B50C28B382F62F2AF65DE303021E45C0B7C851B4B2E1", - "chain_id": "fetchhub-4", + "denom": "ibc/35357FE55D81D88054E135529BB2AEB1BB20D207292775A19BD82D83F27BE9B4", + "chain_id": "evmos_9001-2", "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-14", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "nanomobx", - "chain_id": "fetchhub-4", - "origin_denom": "nanomobx", - "origin_chain_id": "fetchhub-4", - "trace": "", + "denom": "ibc/4442A8E0D487A49E76EA6606F5DADCF8D0DBDD8499112340C964970DB745EDA2", + "chain_id": "evmos_9001-2", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "MOBX", - "name": "MOBX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png", - "decimals": 9, - "description": "The MOBX coin rewards the use of eco-friendly micromobility transportation.", - "coingecko_id": "mobix", - "recommended_symbol": "MOBX" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "decimals": 8, + "recommended_symbol": "WETH.wh" }, { - "denom": "ibc/BD3F897C555871388A0F8CCA1B4AA0F02280FA9DD2F34E62BBCC7947A89442AD", - "chain_id": "fetchhub-4", - "origin_denom": "wglmr-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-14", + "denom": "ibc/4443218F584A7AB2DFBCF93872D6E5B6967A11C53515DDF45A2CF387C54BD73A", + "chain_id": "evmos_9001-2", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "WGLMR", - "name": "WGLMR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", - "decimals": 18, - "coingecko_id": "wrapped-moonbeam", - "recommended_symbol": "WGLMR.axl" + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "decimals": 8, + "recommended_symbol": "SOL.wh" }, { - "denom": "ibc/D3D50F09F6F9A6339A8827A8A89462CAA0C349754B94EABC46D0AEEAF0E41E11", - "chain_id": "fetchhub-4", - "origin_denom": "wavax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-14", + "denom": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", + "chain_id": "evmos_9001-2", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4", - "chain_id": "fetchhub-4", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-16", + "denom": "ibc/7564B7F838579DD4517A225978C623504F852A6D0FF7984AFB28F10D36022BE8", + "chain_id": "evmos_9001-2", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-13", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/2253DE2F950B35D9AB9B403F58F30B970ABDFE1A35AD23E9AB20AE575C68984A", - "chain_id": "fetchhub-4", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-14", + "denom": "ibc/7F0C2CB6E79CC36D29DA7592899F98E3BEFD2CF77A94340C317032A78812393D", + "chain_id": "evmos_9001-2", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "GRAVITON", + "name": "GRAVITON", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "description": "Gravity-bridge Staking Coin", + "coingecko_id": "graviton", + "recommended_symbol": "GRAVITON" }, { - "denom": "afet", - "chain_id": "fetchhub-4", - "origin_denom": "afet", - "origin_chain_id": "fetchhub-4", - "trace": "", + "denom": "ibc/80C08D2C375C81A49291031B5865939C098502D6BF822FF31A3E042AC739512E", + "chain_id": "evmos_9001-2", + "origin_denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "FET", - "name": "FET", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", + "is_svm": false, + "symbol": "OCC", + "name": "OCC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", "decimals": 18, - "description": "The native staking and governance token of the Fetch Hub.", - "coingecko_id": "fetch-ai", - "recommended_symbol": "FET" + "recommended_symbol": "OCC.grv" }, { - "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "chain_id": "fetchhub-4", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-10", + "denom": "ibc/21C0C3E238D48E370841635ADC3322F5D3D26342679102D5865DA8A56BD9524E", + "chain_id": "evmos_9001-2", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" - } - ] - }, - "gitopia": { - "assets": [ + "coingecko_id": "stride", + "recommended_symbol": "STRD" + }, { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "chain_id": "gitopia", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "denom": "ibc/177AE036468AC52F6CFA06D4B36BF0743D906836CD983EC6CA77A0DBC3A7D03E", + "chain_id": "evmos_9001-2", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "solana.USDC.wh", + "name": "solana.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "recommended_symbol": "solana.USDC.wh" }, { - "denom": "ulore", - "chain_id": "gitopia", - "origin_denom": "ulore", - "origin_chain_id": "gitopia", + "denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "chain_id": "evmos_9001-2", + "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "origin_chain_id": "evmos_9001-2", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LORE", - "name": "LORE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", - "decimals": 6, - "description": "The native token of Gitopia", - "coingecko_id": "gitopia", - "recommended_symbol": "LORE" - } - ] - }, - "grand-1": { - "assets": [ + "is_svm": false, + "symbol": "NEOK", + "name": "NEOK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "decimals": 18, + "description": "The token of Neokingdom DAO.", + "recommended_symbol": "NEOK" + }, { - "denom": "uusdc", - "chain_id": "grand-1", - "origin_denom": "uusdc", - "origin_chain_id": "grand-1", - "trace": "", + "denom": "ibc/0308F75D30E08D1F7CF05FB8892C3AA6102CD4DDADBE3D4795C9ADE2710D2AF4", + "chain_id": "evmos_9001-2", + "origin_denom": "stuluna", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "stLUNA", + "name": "stLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", "decimals": 6, - "description": "USD Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "coingecko_id": "stride-staked-luna", + "recommended_symbol": "stLUNA" }, { - "denom": "ibc/3BE2FAC8F3441EE590D7E1A4025A137CA5563A4746EEBB16C289C51DE201DE15", - "chain_id": "grand-1", - "origin_denom": "uusdc", - "origin_chain_id": "mahalo-1", - "trace": "transfer/channel-39", + "denom": "ibc/0C19171CDC59451F91D2749CDEA63355532DCD5D8904CCBAC4953290E16AB8FD", + "chain_id": "evmos_9001-2", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-94", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "recommended_symbol": "USDC" - } - ] - }, - "gravity-bridge-3": { - "assets": [ + "recommended_symbol": "USDC.wh" + }, { - "denom": "ibc/74A48437840E981DD7789856D97EE5E3751DF474D22EDCD66DB046AF0B725A64", - "chain_id": "gravity-bridge-3", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-24", + "denom": "ibc/26E6508A1757E12B15A087E951F5D35E73CF036F0D97BC809E1598D1DD870BED", + "chain_id": "evmos_9001-2", + "origin_denom": "pepe-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", - "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "is_svm": false, + "symbol": "PEPE", + "name": "PEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "decimals": 18, + "coingecko_id": "pepe", + "recommended_symbol": "PEPE.axl" }, { - "denom": "ibc/E05A4DAEA5681A09067DC213F32464639D18007215C87964EC45FF876B5EE82B", - "chain_id": "gravity-bridge-3", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-145", + "denom": "ibc/356EDE917394B2AEF7F915EB24FA683A0CCB8D16DD4ECCEDC2AD0CEC6B66AC81", + "chain_id": "evmos_9001-2", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "is_svm": false, + "symbol": "axlWETH", + "name": "axlWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "coingecko_id": "weth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/DF8D00B4B31B55AFCA9BAF192BC36C67AA06D9987DCB96490661BCAB63C27006", - "chain_id": "gravity-bridge-3", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-8", + "denom": "ibc/8F2438D04845BBC7081127D45F527EA624E635018D8740874724CC5AC1A0B8E4", + "chain_id": "evmos_9001-2", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-85", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" }, { - "denom": "ibc/E454DB0DE3911167C50E0FD3A14660AF9CFFEE4B267485165FB81FF100306346", - "chain_id": "gravity-bridge-3", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-107", + "denom": "ibc/B5AB26FB63C08E1C14B91B4DDC15CA4FE59737052B4432D8A3B328B66F6FE7A1", + "chain_id": "evmos_9001-2", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/7907EA1A11FD4FC2A815FCAA54948C42F08E3F3C874EE48861386286FEB80160", - "chain_id": "gravity-bridge-3", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-79", + "denom": "ibc/B926F947F6602A60D007CD12424D39FE9EB86641024E007857999C36967ADAA2", + "chain_id": "evmos_9001-2", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", "decimals": 6, - "description": "Secret Staking Coin", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "recommended_symbol": "WINK" }, { - "denom": "ibc/BA2E5377495C267FDE42EA8121977A1BAAC5A623A433243EEFABF738485EDE64", - "chain_id": "gravity-bridge-3", - "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-107", + "denom": "ibc/BAEA8E5E532DD3442D8938DA6E3C456EEE52CFD2CCC1B3512B0A77E7BEDB2F45", + "chain_id": "evmos_9001-2", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-26", "is_cw20": false, "is_evm": false, - "symbol": "PLNK", - "name": "PLNK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "decimals": 6, - "recommended_symbol": "PLNK" + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" }, { - "denom": "ibc/6BEE6DBC35E5CCB3C8ADA943CF446735E6A3D48B174FEE027FAB3410EDE6319C", - "chain_id": "gravity-bridge-3", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-107", + "denom": "ibc/C49FDA9CB980D813492E2DFFF255B01C46E629C73B2B468131F6FE6E14F55754", + "chain_id": "evmos_9001-2", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" }, { - "denom": "ibc/25DC7FDF5A05ED9F66FB17FCD9F659D97EC609B8C15A184E6258EE8E91322E50", - "chain_id": "gravity-bridge-3", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-91", + "denom": "ibc/D884FE6B2F0B0E5267D460A49235A2AF0824F1B62FC22E4F32AB8C2F7619D40F", + "chain_id": "evmos_9001-2", + "origin_denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", - "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "is_svm": false, + "symbol": "STETH", + "name": "STETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", + "decimals": 18, + "coingecko_id": "staked-ether", + "recommended_symbol": "STETH.grv" }, { - "denom": "ibc/3057B265ED4FA22EB274071BB43B6143DB4D5B128BE1A5AC067E662EAFC37873", - "chain_id": "gravity-bridge-3", - "origin_denom": "stk/uatom", - "origin_chain_id": "core-1", - "trace": "transfer/channel-24", + "denom": "ibc/D9C9DFD2B4021D16B01AC16ECD5A7933383C38F8331160583E0A5F34B30E1BA9", + "chain_id": "evmos_9001-2", + "origin_denom": "stujuno", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "ibc/CB59A3CF572D31B5B531C305A0386A262FEFF2ADCC44551654E1344C3C236507", - "chain_id": "gravity-bridge-3", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-10", + "denom": "ibc/0830AFFC2F4F7CD24F9CEC07024FEA64CE3C5ABBC520DBD803BFA97BC3DCCA85", + "chain_id": "evmos_9001-2", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "denom": "ibc/693989F95CF3279ADC113A6EF21B02A51EC054C95A9083F2E290126668149433", + "chain_id": "evmos_9001-2", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", "origin_chain_id": "gravity-bridge-3", - "trace": "", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "PSTAKE", - "name": "PSTAKE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", - "decimals": 18, - "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", - "coingecko_id": "pstake-finance", - "recommended_symbol": "PSTAKE.grv" + "is_svm": false, + "symbol": "gUSDC", + "name": "gUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "gUSDC.grv" }, { - "denom": "ibc/4CD51DA94425EB1C8D1983832E46F410528DB2AAFBFC0C646845DAC2DB7D97AE", - "chain_id": "gravity-bridge-3", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-62", + "denom": "ibc/6A3538834873D16F00D0268B295A8D6FD9B005952787AA14726D0013A51042AC", + "chain_id": "evmos_9001-2", + "origin_denom": "reth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "is_svm": false, + "symbol": "rETH", + "name": "rETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", + "decimals": 18, + "coingecko_id": "rocket-pool-eth", + "recommended_symbol": "rETH.axl" }, { - "denom": "ibc/2E5D0AC026AC1AFA65A23023BA4F24BB8DDF94F118EDC0BAD6F625BFC557CDED", - "chain_id": "gravity-bridge-3", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-17", + "denom": "ibc/7D58FD33646AB30EB0042C9D4F718820BC27E0F437133FB5824EC9FBA3B3847E", + "chain_id": "evmos_9001-2", + "origin_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "is_svm": false, + "symbol": "PAXG", + "name": "PAXG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "decimals": 18, + "coingecko_id": "pax-gold", + "recommended_symbol": "PAXG.grv" }, { - "denom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "denom": "ibc/6904C593513EF1B656414367DAA962E10BE8382E40F0F65170D12678A606D949", + "chain_id": "evmos_9001-2", + "origin_denom": "eth.1.2.942d87", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "UNI", - "name": "UNI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uni.png", + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", "decimals": 18, - "coingecko_id": "uniswap", - "recommended_symbol": "UNI.grv" + "recommended_symbol": "ETH.carbon" }, { - "denom": "ibc/6B207CDA2448604B83A0674AADD830C490C1AAB7D568135E52589E96A00B6EEF", - "chain_id": "gravity-bridge-3", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-65", + "denom": "ibc/3A7C0D680D0F50A98115966A22C01594897FAE924FAF324E13C5FFB89F6864BF", + "chain_id": "evmos_9001-2", + "origin_denom": "busd-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD.axl" }, { - "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", - "chain_id": "gravity-bridge-3", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-7", + "denom": "ibc/43BD3A576550CDCD183BC093AEB610B3C2057AD12BA3C27D67AE9F4BCA74F2C8", + "chain_id": "evmos_9001-2", + "origin_denom": "wsteth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "decimals": 6, - "description": "Stargaze Staking Coin", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" - }, + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH.axl" + } + ] + }, + "fetchhub-4": { + "assets": [ { - "denom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "denom": "ibc/BD3F897C555871388A0F8CCA1B4AA0F02280FA9DD2F34E62BBCC7947A89442AD", + "chain_id": "fetchhub-4", + "origin_denom": "wglmr-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "SD", - "name": "SD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sd.png", + "is_svm": false, + "symbol": "WGLMR", + "name": "WGLMR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", "decimals": 18, - "coingecko_id": "stader", - "recommended_symbol": "SD.grv" + "coingecko_id": "wrapped-moonbeam", + "recommended_symbol": "WGLMR.axl" }, { - "denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "denom": "ibc/D3D50F09F6F9A6339A8827A8A89462CAA0C349754B94EABC46D0AEEAF0E41E11", + "chain_id": "fetchhub-4", + "origin_denom": "wavax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "PAXG", - "name": "PAXG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/paxg.png", + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "coingecko_id": "pax-gold", - "recommended_symbol": "PAXG.grv" + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "ibc/0ABECBC250BF86223FD62A81A5FB530984DE563D4DFC030508E06C78BD65A34B", - "chain_id": "gravity-bridge-3", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-107", + "denom": "ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4", + "chain_id": "fetchhub-4", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-16", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/AD355DD10DF3C25CD42B5812F34077A1235DF343ED49A633B4E76AE98F3B78BC", - "chain_id": "gravity-bridge-3", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-107", + "denom": "nanomobx", + "chain_id": "fetchhub-4", + "origin_denom": "nanomobx", + "origin_chain_id": "fetchhub-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "is_svm": false, + "symbol": "MOBX", + "name": "MOBX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png", + "decimals": 9, + "description": "The MOBX coin rewards the use of eco-friendly micromobility transportation.", + "coingecko_id": "mobix", + "recommended_symbol": "MOBX" }, { - "denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", + "denom": "afet", + "chain_id": "fetchhub-4", + "origin_denom": "afet", + "origin_chain_id": "fetchhub-4", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "FET", + "name": "FET", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", "decimals": 18, - "description": "Gravity Bridge WETH", - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" + "description": "The native staking and governance token of the Fetch Hub.", + "coingecko_id": "fetch-ai", + "recommended_symbol": "FET" }, { - "denom": "ibc/0433997003A2CFE10E483B93743BEC37F2F13B89854FD69599482E6DB8E6CE22", - "chain_id": "gravity-bridge-3", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-10", + "denom": "ibc/8AF69BC1E1D72B447738B50C28B382F62F2AF65DE303021E45C0B7C851B4B2E1", + "chain_id": "fetchhub-4", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/5AEBA89C7BEEF2C56EE23AC2138661C2EE7AB33C48CDE4C3C1E2E3218C4A2C41", - "chain_id": "gravity-bridge-3", - "origin_denom": "ubcre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-62", + "denom": "ibc/26786027D954FD05D66A965F3081891D513001B5B2487BD01820E0109598E07E", + "chain_id": "fetchhub-4", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "bCRE", - "name": "bCRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", - "decimals": 6, - "coingecko_id": "liquid-staking-crescent", - "recommended_symbol": "bCRE" + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "ibc/CB4A35E5D55B3DE73C735E44FD7C23FA236A26D1335E616127FCEDFD4B9C30D0", - "chain_id": "gravity-bridge-3", - "origin_denom": "unyx", - "origin_chain_id": "nyx", - "trace": "transfer/channel-18", + "denom": "ibc/2253DE2F950B35D9AB9B403F58F30B970ABDFE1A35AD23E9AB20AE575C68984A", + "chain_id": "fetchhub-4", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "NYX", - "name": "NYX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "recommended_symbol": "NYX" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "chain_id": "gravity-bridge-3", + "chain_id": "fetchhub-4", "origin_denom": "uosmo", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "description": "Osmosis Staking Coin", "coingecko_id": "osmosis", "recommended_symbol": "OSMO" - }, + } + ] + }, + "gitopia": { + "assets": [ { - "denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "chain_id": "gitopia", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "description": "Gravity Bridge WBTC", - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.grv" + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/8742168B257D3764940013452F8D909C5D8DD54F682028428CBF3899E794C7EE", - "chain_id": "gravity-bridge-3", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-28", + "denom": "ulore", + "chain_id": "gitopia", + "origin_denom": "ulore", + "origin_chain_id": "gitopia", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "LORE", + "name": "LORE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" - }, + "description": "The native token of Gitopia", + "coingecko_id": "gitopia", + "recommended_symbol": "LORE" + } + ] + }, + "grand-1": { + "assets": [ { - "denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "origin_chain_id": "gravity-bridge-3", + "denom": "uusdc", + "chain_id": "grand-1", + "origin_denom": "uusdc", + "origin_chain_id": "grand-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PAGE", - "name": "PAGE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", - "decimals": 8, - "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", - "coingecko_id": "page", - "recommended_symbol": "PAGE.grv" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "description": "USD Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "denom": "ibc/D73D168790F3C072F38CFD35BCC72C356C1B300FBA32CF7B0199C75601FCC8BA", + "chain_id": "grand-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmo-test-5", + "trace": "transfer/channel-22", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "description": "Gravity Bridge USDT", - "coingecko_id": "tether", - "recommended_symbol": "USDT.grv" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/4809BB876D59F1FABF173738E90A7AEDC74961E580156FBFC6971CD83FB0BB63", - "chain_id": "gravity-bridge-3", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-107", + "denom": "ibc/3BE2FAC8F3441EE590D7E1A4025A137CA5563A4746EEBB16C289C51DE201DE15", + "chain_id": "grand-1", + "origin_denom": "uusdc", + "origin_chain_id": "mahalo-1", + "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", "decimals": 6, - "recommended_symbol": "WINK" - }, + "recommended_symbol": "USDC" + } + ] + }, + "gravity-bridge-3": { + "assets": [ { - "denom": "ugraviton", + "denom": "ibc/74A48437840E981DD7789856D97EE5E3751DF474D22EDCD66DB046AF0B725A64", "chain_id": "gravity-bridge-3", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-24", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "description": "The native token of Gravity Bridge", - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" - }, - { - "denom": "gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", - "origin_chain_id": "gravity-bridge-3", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "STORJ", - "name": "STORJ", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/storj.png", - "decimals": 8, - "coingecko_id": "storj", - "recommended_symbol": "STORJ.grv" - }, - { - "denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", - "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", - "origin_chain_id": "gravity-bridge-3", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "OCC", - "name": "OCC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", - "decimals": 18, - "description": "Gravity Bridge OCC", - "recommended_symbol": "OCC.grv" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "denom": "ibc/7907EA1A11FD4FC2A815FCAA54948C42F08E3F3C874EE48861386286FEB80160", "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-79", "is_cw20": false, "is_evm": false, - "symbol": "STETH", - "name": "STETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", - "decimals": 18, - "coingecko_id": "staked-ether", - "recommended_symbol": "STETH.grv" + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "description": "Secret Staking Coin", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "gravity0x2C5Bcad9Ade17428874855913Def0A02D8bE2324", + "denom": "ibc/8742168B257D3764940013452F8D909C5D8DD54F682028428CBF3899E794C7EE", "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x2C5Bcad9Ade17428874855913Def0A02D8bE2324", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-28", "is_cw20": false, "is_evm": false, - "symbol": "stkETH", - "name": "stkETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/stketh.png", - "decimals": 18, - "coingecko_id": "pstake-staked-eth", - "recommended_symbol": "stkETH.grv" + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "decimals": 6, + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e", + "denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FRAX", - "name": "FRAX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/frax.png", + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", "decimals": 18, - "coingecko_id": "frax", - "recommended_symbol": "FRAX.grv" + "description": "Gravity Bridge WETH", + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" }, { - "denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "denom": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "description": "Gravity Bridge USDC", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "recommended_symbol": "WOSMO" }, { - "denom": "ibc/5012B1C96F286E8A6604A87037CE51241C6F1CA195B71D1E261FCACB69FB6BC2", + "denom": "ibc/AD355DD10DF3C25CD42B5812F34077A1235DF343ED49A633B4E76AE98F3B78BC", "chain_id": "gravity-bridge-3", - "origin_denom": "ncheq", - "origin_chain_id": "cheqd-mainnet-1", - "trace": "transfer/channel-43", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "CHEQ", - "name": "CHEQ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", - "decimals": 9, - "description": "cheqd Network Token", - "coingecko_id": "cheqd-network", - "recommended_symbol": "CHEQ" + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "ibc/0C273962C274B2C05B22D9474BFE5B84D6A6FCAD198CB9B0ACD35EA521A36606", + "denom": "ibc/E454DB0DE3911167C50E0FD3A14660AF9CFFEE4B267485165FB81FF100306346", "chain_id": "gravity-bridge-3", - "origin_denom": "unym", - "origin_chain_id": "nyx", - "trace": "transfer/channel-18", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "NYM", - "name": "NYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "nym", - "recommended_symbol": "NYM" + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { - "denom": "ibc/64BBBEB97DA04B6CF7A29A5454E43E101B29F506C117E800E128E0B32BA3FE3D", + "denom": "ibc/A1481E16B62E1C2614E5FB945BABCBDD89E4F8C4E78B60016F531E57BA6B8E21", "chain_id": "gravity-bridge-3", - "origin_denom": "acanto", - "origin_chain_id": "canto_7700-1", - "trace": "transfer/channel-88", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "CANTO", - "name": "CANTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", - "decimals": 18, - "coingecko_id": "canto", - "recommended_symbol": "CANTO" + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "decimals": 6, + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { "denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", @@ -12642,6 +14364,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "sDAI", "name": "sDAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", @@ -12650,919 +14373,1139 @@ "recommended_symbol": "sDAI.grv" }, { - "denom": "ibc/00F2B62EB069321A454B708876476AFCD9C23C8C9C4A5A206DDF1CD96B645057", + "denom": "ibc/6BEE6DBC35E5CCB3C8ADA943CF446735E6A3D48B174FEE027FAB3410EDE6319C", "chain_id": "gravity-bridge-3", - "origin_denom": "umntl", - "origin_chain_id": "mantle-1", - "trace": "transfer/channel-82", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "MNTL", - "name": "MNTL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "coingecko_id": "assetmantle", - "recommended_symbol": "MNTL" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "denom": "ibc/29A7122D024B5B8FA8A2EFBB4FA47272C25C8926AA005A96807127208082DAB3", "chain_id": "gravity-bridge-3", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-21", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "decimals": 6, + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" + }, + { + "denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "is_svm": false, + "symbol": "OCC", + "name": "OCC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", "decimals": 18, - "description": "Gravity Bridge DAI", - "coingecko_id": "dai", - "recommended_symbol": "DAI.grv" - } - ] - }, - "indigo-1": { - "assets": [ + "description": "Gravity Bridge OCC", + "recommended_symbol": "OCC.grv" + }, { - "denom": "upryzm", - "chain_id": "indigo-1", - "origin_denom": "upryzm", - "origin_chain_id": "indigo-1", + "denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PRYZM", - "name": "PRYZM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.png", - "decimals": 6, - "description": "The native token of PRYZM", - "recommended_symbol": "PRYZM" + "is_svm": false, + "symbol": "PAXG", + "name": "PAXG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "decimals": 18, + "description": "Gravity Bridge Paxos Gold", + "coingecko_id": "pax-gold", + "recommended_symbol": "PAXG.grv" }, { - "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", - "chain_id": "indigo-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmo-test-5", - "trace": "transfer/channel-8", + "denom": "ibc/0ABECBC250BF86223FD62A81A5FB530984DE563D4DFC030508E06C78BD65A34B", + "chain_id": "gravity-bridge-3", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" - } - ] - }, - "injective-1": { - "assets": [ + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" + }, { - "denom": "ibc/48D1DA9AA68C949E27BAB39B409681292035ABF63EAB663017C7BEF98A3D118E", - "chain_id": "injective-1", - "origin_denom": "umyrk", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-214", + "denom": "ibc/3057B265ED4FA22EB274071BB43B6143DB4D5B128BE1A5AC067E662EAFC37873", + "chain_id": "gravity-bridge-3", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-24", "is_cw20": false, "is_evm": false, - "symbol": "MYRK", - "name": "MYRK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", "decimals": 6, - "recommended_symbol": "MYRK" + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" }, { - "denom": "ibc/8E4953E506CF135A3ACDF6D6556ED1DB4F6A749F3910D2B4A77E2E851C4B2638", - "chain_id": "injective-1", - "origin_denom": "mGeo", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-214", + "denom": "ibc/4CD51DA94425EB1C8D1983832E46F410528DB2AAFBFC0C646845DAC2DB7D97AE", + "chain_id": "gravity-bridge-3", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, - "symbol": "GEO", - "name": "GEO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "recommended_symbol": "GEO" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/AA206C13A2AD46401BD1E8E65F96EC9BF86051A8156A92DD08BEF70381D39CE2", - "chain_id": "injective-1", - "origin_denom": "mO9W", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-214", + "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "chain_id": "gravity-bridge-3", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "O9W", - "name": "O9W", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "recommended_symbol": "O9W" + "description": "Stargaze Staking Coin", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "peggy0xa670d7237398238DE01267472C6f13e5B8010FD1", - "chain_id": "injective-1", - "origin_denom": "peggy0xa670d7237398238DE01267472C6f13e5B8010FD1", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/5AEBA89C7BEEF2C56EE23AC2138661C2EE7AB33C48CDE4C3C1E2E3218C4A2C41", + "chain_id": "gravity-bridge-3", + "origin_denom": "ubcre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, - "symbol": "SOMM", - "name": "SOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/sommelier/asset/somm.png", + "is_svm": false, + "symbol": "bCRE", + "name": "bCRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", "decimals": 6, - "description": "Sommelier Staking Coin", - "coingecko_id": "sommelier", - "recommended_symbol": "SOMM.peggy" + "coingecko_id": "liquid-staking-crescent", + "recommended_symbol": "bCRE" }, { - "denom": "ibc/5CB35B165F689DD57F836C6C5ED3AB268493AA5A810740446C4F2141664714F4", - "chain_id": "injective-1", - "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-118", + "denom": "ibc/00F2B62EB069321A454B708876476AFCD9C23C8C9C4A5A206DDF1CD96B645057", + "chain_id": "gravity-bridge-3", + "origin_denom": "umntl", + "origin_chain_id": "mantle-1", + "trace": "transfer/channel-82", "is_cw20": false, "is_evm": false, - "symbol": "CUB", - "name": "CUB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "is_svm": false, + "symbol": "MNTL", + "name": "MNTL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", "decimals": 6, - "recommended_symbol": "CUB" + "coingecko_id": "assetmantle", + "recommended_symbol": "MNTL" }, { - "denom": "ibc/D9353C3B1407A7F7FE0A5CCB7D06249B57337888C95C6648AEAF2C83F4F3074E", - "chain_id": "injective-1", - "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-118", + "denom": "ibc/4809BB876D59F1FABF173738E90A7AEDC74961E580156FBFC6971CD83FB0BB63", + "chain_id": "gravity-bridge-3", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "BMOS", - "name": "BMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", "decimals": 6, - "recommended_symbol": "BMOS" + "recommended_symbol": "WINK" }, { - "denom": "ibc/16618B7F7AC551F48C057A13F4CA5503693FBFF507719A85BC6876B8BD75F821", - "chain_id": "injective-1", + "denom": "ibc/6B207CDA2448604B83A0674AADD830C490C1AAB7D568135E52589E96A00B6EEF", + "chain_id": "gravity-bridge-3", "origin_denom": "aevmos", "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-83", + "trace": "transfer/channel-65", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "EVMOS", "name": "EVMOS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "decimals": 18, - "description": "Evmos Staking Coin", "coingecko_id": "evmos", "recommended_symbol": "EVMOS" }, { - "denom": "peggy0x50f09629d0afDF40398a3F317cc676cA9132055c", - "chain_id": "injective-1", - "origin_denom": "peggy0x50f09629d0afDF40398a3F317cc676cA9132055c", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/BA2E5377495C267FDE42EA8121977A1BAAC5A623A433243EEFABF738485EDE64", + "chain_id": "gravity-bridge-3", + "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "EVAI", - "name": "EVAI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/evai.png", - "decimals": 8, - "recommended_symbol": "EVAI.peggy" + "is_svm": false, + "symbol": "PLNK", + "name": "PLNK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "decimals": 6, + "recommended_symbol": "PLNK" }, { - "denom": "peggy0x6b7f87279982d919Bbf85182DDeAB179B366D8f2", - "chain_id": "injective-1", - "origin_denom": "peggy0x6b7f87279982d919Bbf85182DDeAB179B366D8f2", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/0433997003A2CFE10E483B93743BEC37F2F13B89854FD69599482E6DB8E6CE22", + "chain_id": "gravity-bridge-3", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "ETHBTCTrend", - "name": "ETHBTCTrend", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ethbtctrend.png", - "decimals": 18, - "recommended_symbol": "ETHBTCTrend.peggy" + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "decimals": 6, + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "peggy0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "chain_id": "injective-1", - "origin_denom": "peggy0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "injective-1", + "denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.peggy" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "decimals": 6, + "description": "Gravity Bridge USDT", + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv" }, { - "denom": "peggy0xE41d2489571d322189246DaFA5ebDe1F4699F498", - "chain_id": "injective-1", - "origin_denom": "peggy0xE41d2489571d322189246DaFA5ebDe1F4699F498", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "ZRX", - "name": "ZRX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zrx.png", - "decimals": 18, - "coingecko_id": "0x", - "recommended_symbol": "ZRX.peggy" + "denom": "ibc/5012B1C96F286E8A6604A87037CE51241C6F1CA195B71D1E261FCACB69FB6BC2", + "chain_id": "gravity-bridge-3", + "origin_denom": "ncheq", + "origin_chain_id": "cheqd-mainnet-1", + "trace": "transfer/channel-43", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CHEQ", + "name": "CHEQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "decimals": 9, + "description": "cheqd Network Token", + "coingecko_id": "cheqd-network", + "recommended_symbol": "CHEQ" }, { - "denom": "peggy0x4a220E6096B25EADb88358cb44068A3248254675", - "chain_id": "injective-1", - "origin_denom": "peggy0x4a220E6096B25EADb88358cb44068A3248254675", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/CB4A35E5D55B3DE73C735E44FD7C23FA236A26D1335E616127FCEDFD4B9C30D0", + "chain_id": "gravity-bridge-3", + "origin_denom": "unyx", + "origin_chain_id": "nyx", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "QNT", - "name": "QNT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/qnt.png", - "decimals": 18, - "coingecko_id": "quant-network", - "recommended_symbol": "QNT.peggy" + "is_svm": false, + "symbol": "NYX", + "name": "NYX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", + "decimals": 6, + "recommended_symbol": "NYX" }, { - "denom": "peggy0x4d224452801ACEd8B2F0aebE155379bb5D594381", - "chain_id": "injective-1", - "origin_denom": "peggy0x4d224452801ACEd8B2F0aebE155379bb5D594381", - "origin_chain_id": "injective-1", + "denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "APE", - "name": "APE", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ape.png", - "decimals": 18, - "coingecko_id": "apecoin", - "recommended_symbol": "APE.peggy" + "is_svm": false, + "symbol": "PAGE", + "name": "PAGE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "decimals": 8, + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "coingecko_id": "page", + "recommended_symbol": "PAGE.grv" }, { - "denom": "peggy0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", - "chain_id": "injective-1", - "origin_denom": "peggy0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", - "origin_chain_id": "injective-1", + "denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WSTETH", - "name": "WSTETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wsteth.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "WSTETH.peggy" + "description": "Gravity Bridge DAI", + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" }, { - "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", - "chain_id": "injective-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "denom": "ibc/25DC7FDF5A05ED9F66FB17FCD9F659D97EC609B8C15A184E6258EE8E91322E50", + "chain_id": "gravity-bridge-3", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-91", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { - "denom": "peggy0x3506424F91fD33084466F402d5D97f05F8e3b4AF", - "chain_id": "injective-1", - "origin_denom": "peggy0x3506424F91fD33084466F402d5D97f05F8e3b4AF", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/2E5D0AC026AC1AFA65A23023BA4F24BB8DDF94F118EDC0BAD6F625BFC557CDED", + "chain_id": "gravity-bridge-3", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "CHZ", - "name": "CHZ", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/chz.png", - "decimals": 18, - "coingecko_id": "chiliz", - "recommended_symbol": "CHZ.peggy" + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "peggy0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "chain_id": "injective-1", - "origin_denom": "peggy0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "origin_chain_id": "injective-1", + "denom": "ugraviton", + "chain_id": "gravity-bridge-3", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PAXG", - "name": "PAXG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/paxg.png", - "decimals": 18, - "coingecko_id": "pax-gold", - "recommended_symbol": "PAXG.peggy" + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "decimals": 6, + "description": "The native token of Gravity Bridge", + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" }, { - "denom": "peggy0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", - "chain_id": "injective-1", - "origin_denom": "peggy0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", - "origin_chain_id": "injective-1", + "denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/shib.png", - "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.peggy" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "description": "Gravity Bridge WBTC", + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.grv" }, { - "denom": "peggy0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", - "chain_id": "injective-1", - "origin_denom": "peggy0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/0C273962C274B2C05B22D9474BFE5B84D6A6FCAD198CB9B0ACD35EA521A36606", + "chain_id": "gravity-bridge-3", + "origin_denom": "unym", + "origin_chain_id": "nyx", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "SNX", - "name": "SNX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/snx.png", - "decimals": 18, - "coingecko_id": "havven", - "recommended_symbol": "SNX.peggy" + "is_svm": false, + "symbol": "NYM", + "name": "NYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "nym", + "recommended_symbol": "NYM" }, { - "denom": "ibc/A8F39212ED30B6A8C2AC736665835720D3D7BE4A1D18D68566525EC25ECF1C9B", - "chain_id": "injective-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-89", + "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "chain_id": "gravity-bridge-3", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "peggy0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d", - "chain_id": "injective-1", - "origin_denom": "peggy0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/3F3FBD0AAC2E301BF8461A44D4533C4C1EA8883136A9699C2E951FC643B485F9", + "chain_id": "gravity-bridge-3", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-142", "is_cw20": false, "is_evm": false, - "symbol": "CEL", - "name": "CEL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cel.png", - "decimals": 4, - "coingecko_id": "celsius-degree-token", - "recommended_symbol": "CEL.peggy" + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "decimals": 6, + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "factory/inj1lucykkh3kv3wf6amckf205rg5jl8rprdcq8v83/HRBE", - "chain_id": "injective-1", - "origin_denom": "factory/inj1lucykkh3kv3wf6amckf205rg5jl8rprdcq8v83/HRBE", - "origin_chain_id": "injective-1", + "denom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HRBE", - "name": "HRBE", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/HRBE.png", - "decimals": 6, - "recommended_symbol": "HRBE" + "is_svm": false, + "symbol": "SD", + "name": "SD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sd.png", + "decimals": 18, + "coingecko_id": "stader", + "recommended_symbol": "SD.grv" }, { - "denom": "ibc/3FDD002A3A4019B05A33D324B2F29748E77AF501BEA5C96D1F28B2D6755F9F25", - "chain_id": "injective-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-89", + "denom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e", + "origin_chain_id": "gravity-bridge-3", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", - "decimals": 6, - "description": "Stride Staking Coin", - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "is_svm": false, + "symbol": "FRAX", + "name": "FRAX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/frax.png", + "decimals": 18, + "coingecko_id": "frax", + "recommended_symbol": "FRAX.grv" }, { - "denom": "peggy0xb2617246d0c6c0087f18703d576831899ca94f01", - "chain_id": "injective-1", - "origin_denom": "peggy0xb2617246d0c6c0087f18703d576831899ca94f01", - "origin_chain_id": "injective-1", + "denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ZIG", - "name": "ZIG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zig.png", - "decimals": 18, - "description": "ZigCoin", - "coingecko_id": "zignaly", - "recommended_symbol": "ZIG.peggy" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "description": "Gravity Bridge USDC", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" }, { - "denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "chain_id": "injective-1", - "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "origin_chain_id": "injective-1", + "denom": "gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AUTISM", - "name": "AUTISM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", - "decimals": 6, - "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", - "coingecko_id": "autism", - "recommended_symbol": "AUTISM" + "is_svm": false, + "symbol": "STORJ", + "name": "STORJ", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/storj.png", + "decimals": 8, + "coingecko_id": "storj", + "recommended_symbol": "STORJ.grv" }, { - "denom": "factory/inj1zhevrrwywg3az9ulxd9u233eyy4m2mmr6vegsg/INJEX", - "chain_id": "injective-1", - "origin_denom": "factory/inj1zhevrrwywg3az9ulxd9u233eyy4m2mmr6vegsg/INJEX", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/CB59A3CF572D31B5B531C305A0386A262FEFF2ADCC44551654E1344C3C236507", + "chain_id": "gravity-bridge-3", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "INJEX", - "name": "INJEX", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/INJEX.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "recommended_symbol": "INJEX" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "peggy0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5", - "chain_id": "injective-1", - "origin_denom": "peggy0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5", - "origin_chain_id": "injective-1", + "denom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LYM", - "name": "LYM", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lym.png", + "is_svm": false, + "symbol": "UNI", + "name": "UNI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uni.png", "decimals": 18, - "coingecko_id": "lympo", - "recommended_symbol": "LYM.peggy" + "coingecko_id": "uniswap", + "recommended_symbol": "UNI.grv" }, { - "denom": "peggy0xc944E90C64B2c07662A292be6244BDf05Cda44a7", - "chain_id": "injective-1", - "origin_denom": "peggy0xc944E90C64B2c07662A292be6244BDf05Cda44a7", - "origin_chain_id": "injective-1", + "denom": "gravity0x2C5Bcad9Ade17428874855913Def0A02D8bE2324", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0x2C5Bcad9Ade17428874855913Def0A02D8bE2324", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GRT", - "name": "GRT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/grt.png", + "is_svm": false, + "symbol": "stkETH", + "name": "stkETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/stketh.png", "decimals": 18, - "coingecko_id": "the-graph", - "recommended_symbol": "GRT.peggy" + "coingecko_id": "pstake-staked-eth", + "recommended_symbol": "stkETH.grv" }, { - "denom": "inj", - "chain_id": "injective-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", + "denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "is_svm": false, + "symbol": "STETH", + "name": "STETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", "decimals": 18, - "description": "The INJ token is the native governance token for the Injective chain.", - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "coingecko_id": "staked-ether", + "recommended_symbol": "STETH.grv" }, { - "denom": "peggy0xfa6de2697D59E88Ed7Fc4dFE5A33daC43565ea41", - "chain_id": "injective-1", - "origin_denom": "peggy0xfa6de2697D59E88Ed7Fc4dFE5A33daC43565ea41", - "origin_chain_id": "injective-1", + "denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "chain_id": "gravity-bridge-3", + "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "origin_chain_id": "gravity-bridge-3", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DEFI5", - "name": "DEFI5", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/defi5.png", + "is_svm": false, + "symbol": "PSTAKE", + "name": "PSTAKE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", "decimals": 18, - "recommended_symbol": "DEFI5.peggy" + "description": "pSTAKE is a liquid staking protocol unlocking the liquidity of staked assets.", + "coingecko_id": "pstake-finance", + "recommended_symbol": "PSTAKE.grv" }, { - "denom": "peggy0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", - "chain_id": "injective-1", - "origin_denom": "peggy0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/64BBBEB97DA04B6CF7A29A5454E43E101B29F506C117E800E128E0B32BA3FE3D", + "chain_id": "gravity-bridge-3", + "origin_denom": "acanto", + "origin_chain_id": "canto_7700-1", + "trace": "transfer/channel-88", "is_cw20": false, "is_evm": false, - "symbol": "UMA", - "name": "UMA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uma.png", + "is_svm": false, + "symbol": "CANTO", + "name": "CANTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", "decimals": 18, - "coingecko_id": "uma", - "recommended_symbol": "UMA.peggy" + "coingecko_id": "canto", + "recommended_symbol": "CANTO" }, { - "denom": "peggy0x0D8775F648430679A709E98d2b0Cb6250d2887EF", - "chain_id": "injective-1", - "origin_denom": "peggy0x0D8775F648430679A709E98d2b0Cb6250d2887EF", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/DF8D00B4B31B55AFCA9BAF192BC36C67AA06D9987DCB96490661BCAB63C27006", + "chain_id": "gravity-bridge-3", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "BAT", - "name": "BAT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bat.png", - "decimals": 18, - "coingecko_id": "basic-attention-token", - "recommended_symbol": "BAT.peggy" + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "peggy0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", - "chain_id": "injective-1", - "origin_denom": "peggy0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", - "origin_chain_id": "injective-1", - "trace": "", + "denom": "ibc/E05A4DAEA5681A09067DC213F32464639D18007215C87964EC45FF876B5EE82B", + "chain_id": "gravity-bridge-3", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-145", "is_cw20": false, "is_evm": false, - "symbol": "stETH", - "name": "stETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", "decimals": 18, - "coingecko_id": "staked-ether", - "recommended_symbol": "stETH.peggy" - }, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + } + ] + }, + "indigo-1": { + "assets": [ { - "denom": "factory/inj1esz96ru3guug4ctmn5chjmkymt979sfvufq0hs/PUNK", - "chain_id": "injective-1", - "origin_denom": "factory/inj1esz96ru3guug4ctmn5chjmkymt979sfvufq0hs/PUNK", - "origin_chain_id": "injective-1", + "denom": "upryzm", + "chain_id": "indigo-1", + "origin_denom": "upryzm", + "origin_chain_id": "indigo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PUNK", - "name": "PUNK", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/PUNK.png", + "is_svm": false, + "symbol": "PRYZM", + "name": "PRYZM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.png", "decimals": 6, - "recommended_symbol": "PUNK" - }, + "description": "The native token of PRYZM", + "recommended_symbol": "PRYZM" + } + ] + }, + "injective-1": { + "assets": [ { - "denom": "ibc/9A115B56E769B92621FFF90567E2D60EFD146E86E867491DB69EEDA9ADC36204", + "denom": "ibc/FECCDCFA89278B117C76A11A946A7991A68E5DD12DED6EB938ADC1B1286AC591", "chain_id": "injective-1", - "origin_denom": "ukuji", + "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "LOCAL", + "name": "LOCAL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", "decimals": 6, - "description": "Kujira Staking Coin", - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "recommended_symbol": "LOCAL" }, { - "denom": "ibc/9C2212CB87241A8D038222CF66BBCFABDD08330DFA0AC9B451135287DCBDC7A8", + "denom": "peggy0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", "chain_id": "injective-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-145", - "is_cw20": false, - "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "origin_denom": "peggy0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "injective-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", + "decimals": 18, + "coingecko_id": "weth", + "recommended_symbol": "WETH.peggy" }, { - "denom": "peggy0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "denom": "peggy0xC08512927D12348F6620a698105e1BAac6EcD911", "chain_id": "injective-1", - "origin_denom": "peggy0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "origin_denom": "peggy0xC08512927D12348F6620a698105e1BAac6EcD911", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OCEAN", - "name": "OCEAN", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ocean.png", - "decimals": 18, - "coingecko_id": "ocean-protocol", - "recommended_symbol": "OCEAN.peggy" + "is_svm": false, + "symbol": "GYEN", + "name": "GYEN", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/gyen.png", + "decimals": 6, + "description": "GMO JPY", + "coingecko_id": "gyen", + "recommended_symbol": "GYEN.peggy" }, { - "denom": "peggy0xAaEf88cEa01475125522e117BFe45cF32044E238", + "denom": "ibc/F16F0F685BEF7BC6A145F16CBE78C6EC8C7C3A5F3066A98A9E57DCEA0903E537", "chain_id": "injective-1", - "origin_denom": "peggy0xAaEf88cEa01475125522e117BFe45cF32044E238", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "W", + "name": "W", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png", + "decimals": 6, + "recommended_symbol": "W" + }, + { + "denom": "peggy0x3F07A84eCdf494310D397d24c1C78B041D2fa622", + "chain_id": "injective-1", + "origin_denom": "peggy0x3F07A84eCdf494310D397d24c1C78B041D2fa622", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GF", - "name": "GF", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/gf.png", + "is_svm": false, + "symbol": "SteadyETH", + "name": "SteadyETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steadyeth.png", "decimals": 18, - "coingecko_id": "guildfi", - "recommended_symbol": "GF.peggy" + "recommended_symbol": "SteadyETH.peggy" }, { - "denom": "peggy0xf9a06dE3F6639E6ee4F079095D5093644Ad85E8b", + "denom": "peggy0x6B175474E89094C44Da98b954EedeAC495271d0F", "chain_id": "injective-1", - "origin_denom": "peggy0xf9a06dE3F6639E6ee4F079095D5093644Ad85E8b", + "origin_denom": "peggy0x6B175474E89094C44Da98b954EedeAC495271d0F", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PUG", - "name": "Puggo", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/pug.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dai.png", "decimals": 18, - "recommended_symbol": "PUG.peggy" + "coingecko_id": "dai", + "recommended_symbol": "DAI.peggy" }, { - "denom": "ibc/9C6E75FE14DF8959B7CC6E77398DF825B9815C753BB49D2860E303EA2FD803DD", + "denom": "peggy0x6f259637dcD74C767781E37Bc6133cd6A68aa161", "chain_id": "injective-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-211", + "origin_denom": "peggy0x6f259637dcD74C767781E37Bc6133cd6A68aa161", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "is_svm": false, + "symbol": "HT", + "name": "HT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ht.png", "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "coingecko_id": "huobi-token", + "recommended_symbol": "HT.peggy" }, { - "denom": "peggy0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b", + "denom": "peggy0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", "chain_id": "injective-1", - "origin_denom": "peggy0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b", + "origin_denom": "peggy0x7f39C581F595B53c5cb19bD0b3f8dA6c935E2Ca0", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AXS", - "name": "AXS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/axs.png", + "is_svm": false, + "symbol": "WSTETH", + "name": "WSTETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wsteth.png", "decimals": 18, - "coingecko_id": "axie-infinity", - "recommended_symbol": "AXS.peggy" + "coingecko_id": "wrapped-steth", + "recommended_symbol": "WSTETH.peggy" }, { - "denom": "ibc/EBD5A24C554198EBAF44979C5B4D2C2D312E6EBAB71962C92F735499C7575839", + "denom": "peggy0xC5d27F27F08D1FD1E3EbBAa50b3442e6c0D50439", "chain_id": "injective-1", - "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-104", + "origin_denom": "peggy0xC5d27F27F08D1FD1E3EbBAa50b3442e6c0D50439", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ASTRO", - "name": "ASTRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png", - "decimals": 6, - "coingecko_id": "astroport-fi", - "recommended_symbol": "ASTRO" + "is_svm": false, + "symbol": "APP", + "name": "APP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/app.png", + "decimals": 18, + "description": "Moon App", + "coingecko_id": "moon-app", + "recommended_symbol": "APP.peggy" }, { - "denom": "peggy0x080B12E80C9b45e97C23b6ad10a16B3e2a123949", + "denom": "peggy0xE41d2489571d322189246DaFA5ebDe1F4699F498", "chain_id": "injective-1", - "origin_denom": "peggy0x080B12E80C9b45e97C23b6ad10a16B3e2a123949", + "origin_denom": "peggy0xE41d2489571d322189246DaFA5ebDe1F4699F498", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "XBX", - "name": "XBX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/xbx.png", + "is_svm": false, + "symbol": "ZRX", + "name": "ZRX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zrx.png", "decimals": 18, - "recommended_symbol": "XBX.peggy" + "coingecko_id": "0x", + "recommended_symbol": "ZRX.peggy" }, { - "denom": "peggy0x4986fD36b6b16f49b43282Ee2e24C5cF90ed166d", + "denom": "peggy0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", "chain_id": "injective-1", - "origin_denom": "peggy0x4986fD36b6b16f49b43282Ee2e24C5cF90ed166d", + "origin_denom": "peggy0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SteadyBTC", - "name": "SteadyBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steadybtc.png", + "is_svm": false, + "symbol": "ENJ", + "name": "ENJ", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/enj.png", "decimals": 18, - "recommended_symbol": "SteadyBTC.peggy" + "coingecko_id": "enjincoin", + "recommended_symbol": "ENJ.peggy" }, { - "denom": "factory/inj1wu5464syj9xmud55u99hfwhyjd5u8fxfmurs8j/shiro", + "denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", "chain_id": "injective-1", - "origin_denom": "factory/inj1wu5464syj9xmud55u99hfwhyjd5u8fxfmurs8j/shiro", + "origin_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SHIRO", - "name": "Shiro", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/ShiroLogo.png", + "is_svm": false, + "symbol": "TALIS", + "name": "TALIS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/talis.png", "decimals": 6, - "recommended_symbol": "SHIRO" + "description": "Talis governance token", + "coingecko_id": "talis-protocol", + "recommended_symbol": "TALIS" }, { - "denom": "ibc/0DDC992F19041FC1D499CCA1486721479EBAA7270604E15EDDFABA89D1E772E5", + "denom": "ibc/A8B0B746B5AB736C2D8577259B510D56B8AF598008F68041E3D634BCDE72BE97", "chain_id": "injective-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-151", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "decimals": 8, + "description": "Solana", + "coingecko_id": "solana", + "recommended_symbol": "SOL.wh" + }, + { + "denom": "ibc/F3330C1B8BD1886FE9509B94C7B5398B892EA41420D2BC0B7C6A53CB8ED761D6", + "chain_id": "injective-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PYTH", + "name": "PYTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "description": "PYTH", + "coingecko_id": "pyth-network", + "recommended_symbol": "PYTH.wh" }, { - "denom": "peggy0x6f259637dcD74C767781E37Bc6133cd6A68aa161", + "denom": "ibc/F51BB221BAA275F2EBF654F70B005627D7E713AFFD6D86AFD1E43CAA886149F4", "chain_id": "injective-1", - "origin_denom": "peggy0x6f259637dcD74C767781E37Bc6133cd6A68aa161", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-152", "is_cw20": false, "is_evm": false, - "symbol": "HT", - "name": "HT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ht.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "decimals": 6, + "description": "Celestia Staking Coin", + "coingecko_id": "celestia", + "recommended_symbol": "TIA" + }, + { + "denom": "ibc/F6CC233E5C0EA36B1F74AB1AF98471A2D6A80E2542856639703E908B4D93E7C4", + "chain_id": "injective-1", + "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-83", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NEOK", + "name": "NEOK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", "decimals": 18, - "coingecko_id": "huobi-token", - "recommended_symbol": "HT.peggy" + "recommended_symbol": "NEOK" }, { - "denom": "peggy0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", + "denom": "ibc/F96C68219E987465D9EB253DACD385855827C5705164DAFDB0161429F8B95780", "chain_id": "injective-1", - "origin_denom": "peggy0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SUI", + "name": "SUI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", + "decimals": 8, + "recommended_symbol": "SUI.wh" + }, + { + "denom": "ibc/FF3CF830E60679530072C4787A76D18E81C04F9725C3523F941DF0D8B7EB24F0", + "chain_id": "injective-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "solana.USDC.wh", + "name": "solana.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "recommended_symbol": "solana.USDC.wh" + }, + { + "denom": "inj", + "chain_id": "injective-1", + "origin_denom": "inj", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MATIC", - "name": "MATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/matic.png", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", "decimals": 18, - "coingecko_id": "matic-network", - "recommended_symbol": "MATIC.peggy" + "description": "The INJ token is the native governance token for the Injective chain.", + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { - "denom": "peggy0x92D6C1e31e14520e676a687F0a93788B716BEff5", + "denom": "peggy0x080B12E80C9b45e97C23b6ad10a16B3e2a123949", "chain_id": "injective-1", - "origin_denom": "peggy0x92D6C1e31e14520e676a687F0a93788B716BEff5", + "origin_denom": "peggy0x080B12E80C9b45e97C23b6ad10a16B3e2a123949", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dydx.png", + "is_svm": false, + "symbol": "XBX", + "name": "XBX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/xbx.png", "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX.peggy" + "recommended_symbol": "XBX.peggy" }, { - "denom": "peggy0xC5d27F27F08D1FD1E3EbBAa50b3442e6c0D50439", + "denom": "peggy0x0D8775F648430679A709E98d2b0Cb6250d2887EF", "chain_id": "injective-1", - "origin_denom": "peggy0xC5d27F27F08D1FD1E3EbBAa50b3442e6c0D50439", + "origin_denom": "peggy0x0D8775F648430679A709E98d2b0Cb6250d2887EF", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "APP", - "name": "APP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/app.png", + "is_svm": false, + "symbol": "BAT", + "name": "BAT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bat.png", "decimals": 18, - "description": "Moon App", - "coingecko_id": "moon-app", - "recommended_symbol": "APP.peggy" + "coingecko_id": "basic-attention-token", + "recommended_symbol": "BAT.peggy" }, { - "denom": "peggy0xc55c2175E90A46602fD42e931f62B3Acc1A013Ca", + "denom": "peggy0x3506424F91fD33084466F402d5D97f05F8e3b4AF", "chain_id": "injective-1", - "origin_denom": "peggy0xc55c2175E90A46602fD42e931f62B3Acc1A013Ca", + "origin_denom": "peggy0x3506424F91fD33084466F402d5D97f05F8e3b4AF", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/stars.png", + "is_svm": false, + "symbol": "CHZ", + "name": "CHZ", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/chz.png", "decimals": 18, - "coingecko_id": "mogul-productions", - "recommended_symbol": "STARS.peggy" + "coingecko_id": "chiliz", + "recommended_symbol": "CHZ.peggy" }, { - "denom": "peggy0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e", + "denom": "factory/inj1xz4h76wctruu6l0hezq3dhtfkxzv56ztg4l29t/HANZO", "chain_id": "injective-1", - "origin_denom": "peggy0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e", + "origin_denom": "factory/inj1xz4h76wctruu6l0hezq3dhtfkxzv56ztg4l29t/HANZO", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OMI", - "name": "OMI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/omi.png", + "is_svm": false, + "symbol": "HANZO", + "name": "Hattori Hanzo", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/hanzo.png", + "decimals": 6, + "recommended_symbol": "HANZO" + }, + { + "denom": "ibc/AC87717EA002B0123B10A05063E69BCA274BA2C44D842AEEB41558D2856DCE93", + "chain_id": "injective-1", + "origin_denom": "stinj", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-89", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", "decimals": 18, - "coingecko_id": "ecomi", - "recommended_symbol": "OMI.peggy" + "description": "Stride Staked Injective", + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "factory/inj10zdjt8ylfln5xr3a2ruf9nwn6d5q2d2r3v6mh8/galaxy", + "denom": "ibc/16618B7F7AC551F48C057A13F4CA5503693FBFF507719A85BC6876B8BD75F821", "chain_id": "injective-1", - "origin_denom": "factory/inj10zdjt8ylfln5xr3a2ruf9nwn6d5q2d2r3v6mh8/galaxy", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-83", "is_cw20": false, "is_evm": false, - "symbol": "GALAXY", - "name": "GALAXY", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/galaxy.webp", + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "description": "Evmos Staking Coin", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" + }, + { + "denom": "ibc/AEE5A4EF1B28693C4FF12F046C17197E509030B18F70FE3D74F6C3542BB008AD", + "chain_id": "injective-1", + "origin_denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-177", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CIRCUS", + "name": "CIRCUS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", "decimals": 6, - "recommended_symbol": "GALAXY" + "recommended_symbol": "CIRCUS" }, { - "denom": "ibc/4C8A332AE4FDE42709649B5F9A2A336192158C4465DF74B4513F5AD0C583EA6F", + "denom": "ibc/3384DCE14A72BBD0A47107C19A30EDD5FD1AC50909C632CB807680DBC798BB30", "chain_id": "injective-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "decimals": 6, + "recommended_symbol": "USDT.wh" }, { - "denom": "ibc/61FA42C3F0B0F8768ED2CE380EDD3BE0E4CB7E67688F81F70DE9ECF5F8684E1E", + "denom": "ibc/35366063B530778DC37A16AAED4DDC14C0DCA161FBF55B5B69F5171FEE19BF93", "chain_id": "injective-1", - "origin_denom": "uandr", - "origin_chain_id": "andromeda-1", - "trace": "transfer/channel-213", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "ANDR", - "name": "ANDR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "coingecko_id": "andromeda-2", - "recommended_symbol": "ANDR" + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { - "denom": "ibc/EA7CE127E1CFD7822AD169019CAFDD63D0F5A278DCE974F438099BF16C99FB8B", + "denom": "ibc/6488808F32B07F6E8DCE7B700B92D9F7287D0FA1D0F76A25B11276E09DB0E626", "chain_id": "injective-1", - "origin_denom": "udoki", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-214", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-177", "is_cw20": false, "is_evm": false, - "symbol": "DOKI", - "name": "DOKI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "recommended_symbol": "DOKI" + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "peggy0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206", + "denom": "ibc/695B1D16DE4D0FD293E6B79451640974080B59AA60942974C1CC906568DED795", "chain_id": "injective-1", - "origin_denom": "peggy0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "cw20:terra164ssz60yvsxey0ku9mtcaegdeyxwzuwwqyrp238nvflwqve0pvxsra7fa2", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "NEXO", - "name": "NEXO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/nexo.png", - "decimals": 18, - "coingecko_id": "nexo", - "recommended_symbol": "NEXO.peggy" + "is_svm": false, + "symbol": "CLON", + "name": "CLON", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/clon1.png", + "decimals": 6, + "recommended_symbol": "CLON" + }, + { + "denom": "ibc/B692197280D4E62F8D9F8E5C0B697DC4C2C680ED6DE8FFF0368E0552C9215607", + "chain_id": "injective-1", + "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-118", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BLUE", + "name": "BLUE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", + "decimals": 6, + "recommended_symbol": "BLUE" }, { "denom": "ibc/B786E7CBBF026F6F15A8DA248E0F18C62A0F7A70CB2DABD9239398C8B5150ABB", @@ -13572,6 +15515,7 @@ "trace": "transfer/channel-82", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "XPRT", "name": "XPRT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", @@ -13588,6 +15532,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "POOL", "name": "POOL", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/pool.png", @@ -13596,181 +15541,195 @@ "recommended_symbol": "POOL.peggy" }, { - "denom": "peggy0x111111111117dC0aa78b770fA6A738034120C302", + "denom": "peggy0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", "chain_id": "injective-1", - "origin_denom": "peggy0x111111111117dC0aa78b770fA6A738034120C302", + "origin_denom": "peggy0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "1INCH", - "name": "1INCH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/1inch.png", + "is_svm": false, + "symbol": "UNI", + "name": "UNI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uni.png", "decimals": 18, - "coingecko_id": "1inch", - "recommended_symbol": "1INCH.peggy" - }, - { - "denom": "ibc/624BA9DD171915A2B9EA70F69638B2CEA179959850C1A586F6C485498F29EDD4", - "chain_id": "injective-1", - "origin_denom": "dot-planck", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", - "is_cw20": false, - "is_evm": false, - "symbol": "axlDOT", - "name": "axlDOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "coingecko_id": "uniswap", + "recommended_symbol": "UNI.peggy" }, { - "denom": "ibc/A07BB73539F556DA5238F1B7E9471B34DD19897B1EE7050B959989F13EFE73B3", + "denom": "peggy0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", "chain_id": "injective-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", + "origin_denom": "peggy0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WBTC", "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", "decimals": 8, "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC" + "recommended_symbol": "WBTC.peggy" }, { - "denom": "ibc/A4495880A4A2E3C242F63C710F447BAE072E1A4C2A22F1851E0BB7ABDD26B43D", + "denom": "peggy0x4986fD36b6b16f49b43282Ee2e24C5cF90ed166d", "chain_id": "injective-1", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-98", + "origin_denom": "peggy0x4986fD36b6b16f49b43282Ee2e24C5cF90ed166d", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", - "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "is_svm": false, + "symbol": "SteadyBTC", + "name": "SteadyBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steadybtc.png", + "decimals": 18, + "recommended_symbol": "SteadyBTC.peggy" }, { - "denom": "ibc/E68343A4DEF4AFBE7C5A9004D4C11888EE755A7B43B3F1AFA52F2C34C07990D5", + "denom": "peggy0x4E15361FD6b4BB609Fa63C81A2be19d873717870", "chain_id": "injective-1", - "origin_denom": "shib-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", + "origin_denom": "peggy0x4E15361FD6b4BB609Fa63C81A2be19d873717870", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "is_svm": false, + "symbol": "FTM", + "name": "FTM", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ftm.png", "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" + "coingecko_id": "fantom", + "recommended_symbol": "FTM.peggy" }, { - "denom": "peggy0x3155BA85D5F96b2d030a4966AF206230e46849cb", + "denom": "peggy0x4Fabb145d64652a948d72533023f6E7A623C7C53", "chain_id": "injective-1", - "origin_denom": "peggy0x3155BA85D5F96b2d030a4966AF206230e46849cb", + "origin_denom": "peggy0x4Fabb145d64652a948d72533023f6E7A623C7C53", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RUNE", - "name": "RUNE", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rune.png", + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/busd.png", "decimals": 18, - "coingecko_id": "thorchain-erc20", - "recommended_symbol": "RUNE.peggy" + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD.peggy" }, { - "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", + "denom": "peggy0x4a220E6096B25EADb88358cb44068A3248254675", "chain_id": "injective-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", + "origin_denom": "peggy0x4a220E6096B25EADb88358cb44068A3248254675", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "is_svm": false, + "symbol": "QNT", + "name": "QNT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/qnt.png", + "decimals": 18, + "coingecko_id": "quant-network", + "recommended_symbol": "QNT.peggy" }, { - "denom": "peggy0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "denom": "peggy0x4c9EDD5852cd905f086C759E8383e09bff1E68B3", "chain_id": "injective-1", - "origin_denom": "peggy0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "origin_denom": "peggy0x4c9EDD5852cd905f086C759E8383e09bff1E68B3", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.peggy" + "is_svm": false, + "symbol": "USDe", + "name": "USDe", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usde.png", + "decimals": 18, + "description": "Ethena USDe", + "coingecko_id": "ethena-usde", + "recommended_symbol": "USDe.peggy" }, { - "denom": "ibc/01A69EE21F6A76CAA8D0DB900AF2789BF665B5B67D89A7D69E7ECF7F513CD0CA", + "denom": "peggy0x6b7f87279982d919Bbf85182DDeAB179B366D8f2", "chain_id": "injective-1", - "origin_denom": "cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-118", + "origin_denom": "peggy0x6b7f87279982d919Bbf85182DDeAB179B366D8f2", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BITZ", - "name": "BITZ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/BITZ.png", - "decimals": 6, - "recommended_symbol": "BITZ" + "is_svm": false, + "symbol": "ETHBTCTrend", + "name": "ETHBTCTrend", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ethbtctrend.png", + "decimals": 18, + "recommended_symbol": "ETHBTCTrend.peggy" }, { - "denom": "ibc/020098CDEC3D7555210CBC1593A175A6B24253823B0B711D072EC95F76FA4D42", + "denom": "peggy0x967da4048cD07aB37855c090aAF366e4ce1b9F48", "chain_id": "injective-1", - "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-98", + "origin_denom": "peggy0x967da4048cD07aB37855c090aAF366e4ce1b9F48", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PLNK", - "name": "PLNK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", - "decimals": 6, - "recommended_symbol": "PLNK" + "is_svm": false, + "symbol": "OCEAN", + "name": "OCEAN", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ocean.png", + "decimals": 18, + "coingecko_id": "ocean-protocol", + "recommended_symbol": "OCEAN.peggy" }, { - "denom": "ibc/6B7E243C586784E1BE150B71F541A3880F0409E994365AF31FF63A2764B72556", + "denom": "peggy0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206", "chain_id": "injective-1", - "origin_denom": "yieldeth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", + "origin_denom": "peggy0xB62132e35a6c13ee1EE0f84dC5d40bad8d815206", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "YieldETH", - "name": "YieldETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "is_svm": false, + "symbol": "NEXO", + "name": "NEXO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/nexo.png", "decimals": 18, - "recommended_symbol": "YieldETH.axl" + "coingecko_id": "nexo", + "recommended_symbol": "NEXO.peggy" }, { - "denom": "ibc/FE87E1E1BB401EC35CD02A57FE5DEF872FA309C018172C4E7DA07F194EAC6F19", + "denom": "peggy0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b", "chain_id": "injective-1", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-98", + "origin_denom": "peggy0xBB0E17EF65F82Ab018d8EDd776e8DD940327B28b", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FUZN", - "name": "FUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", - "decimals": 6, - "recommended_symbol": "FUZN" + "is_svm": false, + "symbol": "AXS", + "name": "AXS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/axs.png", + "decimals": 18, + "coingecko_id": "axie-infinity", + "recommended_symbol": "AXS.peggy" + }, + { + "denom": "peggy0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", + "chain_id": "injective-1", + "origin_denom": "peggy0xC011a73ee8576Fb46F5E1c5751cA3B9Fe0af2a6F", + "origin_chain_id": "injective-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SNX", + "name": "SNX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/snx.png", + "decimals": 18, + "coingecko_id": "havven", + "recommended_symbol": "SNX.peggy" }, { "denom": "peggy0xCC4304A31d09258b0029eA7FE63d032f52e44EFe", @@ -13780,6 +15739,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SWAP", "name": "SWAP", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/swap.png", @@ -13788,570 +15748,597 @@ "recommended_symbol": "SWAP.peggy" }, { - "denom": "peggy0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca", + "denom": "peggy0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d", "chain_id": "injective-1", - "origin_denom": "peggy0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca", + "origin_denom": "peggy0xaaAEBE6Fe48E54f431b0C390CfaF0b017d09D42d", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NOIA", - "name": "NOIA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/noia.png", - "decimals": 18, - "coingecko_id": "noia-network", - "recommended_symbol": "NOIA.peggy" + "is_svm": false, + "symbol": "CEL", + "name": "CEL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cel.png", + "decimals": 4, + "coingecko_id": "celsius-degree-token", + "recommended_symbol": "CEL.peggy" }, { - "denom": "peggy0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd", + "denom": "peggy0xb2617246d0c6c0087f18703d576831899ca94f01", "chain_id": "injective-1", - "origin_denom": "peggy0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd", + "origin_denom": "peggy0xb2617246d0c6c0087f18703d576831899ca94f01", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "STT", - "name": "STT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/stt.png", + "is_svm": false, + "symbol": "ZIG", + "name": "ZIG", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zig.png", "decimals": 18, - "recommended_symbol": "STT.peggy" + "description": "ZigCoin", + "coingecko_id": "zignaly", + "recommended_symbol": "ZIG.peggy" }, { - "denom": "ibc/1B2D7E4261A7E2130E8E3506058E3081D3154998413F0DB2F82B04035B3FE676", + "denom": "peggy0xc55c2175E90A46602fD42e931f62B3Acc1A013Ca", "chain_id": "injective-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", + "origin_denom": "peggy0xc55c2175E90A46602fD42e931f62B3Acc1A013Ca", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/stars.png", + "decimals": 18, + "coingecko_id": "mogul-productions", + "recommended_symbol": "STARS.peggy" }, { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "denom": "peggy0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5", "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "origin_denom": "peggy0xc690F7C7FcfFA6a82b79faB7508c466FEfdfc8c5", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ARB", - "name": "ARB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/arbitrum/asset/arb.png", - "decimals": 8, - "description": "Arbitrum", - "coingecko_id": "arbitrum", - "recommended_symbol": "ARB" + "is_svm": false, + "symbol": "LYM", + "name": "LYM", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lym.png", + "decimals": 18, + "coingecko_id": "lympo", + "recommended_symbol": "LYM.peggy" }, { - "denom": "factory/inj172ccd0gddgz203e4pf86ype7zjx573tn8g0df9/GINGER", + "denom": "peggy0xc944E90C64B2c07662A292be6244BDf05Cda44a7", "chain_id": "injective-1", - "origin_denom": "factory/inj172ccd0gddgz203e4pf86ype7zjx573tn8g0df9/GINGER", + "origin_denom": "peggy0xc944E90C64B2c07662A292be6244BDf05Cda44a7", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GINGER", - "name": "GINGER", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/ginger.png", - "decimals": 6, - "description": "GINGER", - "coingecko_id": "ginger", - "recommended_symbol": "GINGER" + "is_svm": false, + "symbol": "GRT", + "name": "GRT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/grt.png", + "decimals": 18, + "coingecko_id": "the-graph", + "recommended_symbol": "GRT.peggy" }, { - "denom": "factory/inj1vwn4x08hlactxj3y3kuqddafs2hhqzapruwt87/katana", + "denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", "chain_id": "injective-1", - "origin_denom": "factory/inj1vwn4x08hlactxj3y3kuqddafs2hhqzapruwt87/katana", + "origin_denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KATANA", - "name": "KATANA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/katana.png", + "is_svm": false, + "symbol": "GLTO", + "name": "GLTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", "decimals": 6, - "description": "Dog Wif Katana", - "coingecko_id": "dogwifkatana", - "recommended_symbol": "KATANA" + "description": "GLTO-ERC20 on injective", + "recommended_symbol": "GLTO.peggy" }, { - "denom": "ibc/565FE65B82C091F8BAD1379FA1B4560C036C07913355ED4BD8D156DA63F43712", + "denom": "ibc/34346A60A95EB030D62D6F5BDD4B745BE18E8A693372A8A347D5D53DBBB1328B", "chain_id": "injective-1", - "origin_denom": "cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-118", + "origin_denom": "usomm", + "origin_chain_id": "sommelier-3", + "trace": "transfer/channel-93", "is_cw20": false, "is_evm": false, - "symbol": "DROGO", - "name": "DROGO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/drogo.png", + "is_svm": false, + "symbol": "SOMM", + "name": "SOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", "decimals": 6, - "recommended_symbol": "DROGO" + "description": "Sommelier Staking Coin", + "coingecko_id": "sommelier", + "recommended_symbol": "SOMM" }, { - "denom": "ibc/E6CFB0AC1D339A8CBA3353DF0D7E080B4B14D026D1C90F63F666C223B04D548C", + "denom": "ibc/D807D81AB6C2983C9DCC2E1268051C4195405A030E1999549C562BCB7E1251A5", "chain_id": "injective-1", - "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "APT", + "name": "APT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg", + "decimals": 8, + "recommended_symbol": "APT.wh" + }, + { + "denom": "ibc/5CB35B165F689DD57F836C6C5ED3AB268493AA5A810740446C4F2141664714F4", + "chain_id": "injective-1", + "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", "origin_chain_id": "phoenix-1", "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "ROAR", - "name": "ROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "is_svm": false, + "symbol": "CUB", + "name": "CUB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", "decimals": 6, - "coingecko_id": "lion-dao", - "recommended_symbol": "ROAR" + "recommended_symbol": "CUB" }, { - "denom": "ibc/FECCDCFA89278B117C76A11A946A7991A68E5DD12DED6EB938ADC1B1286AC591", + "denom": "peggy0xf9a06dE3F6639E6ee4F079095D5093644Ad85E8b", "chain_id": "injective-1", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-98", + "origin_denom": "peggy0xf9a06dE3F6639E6ee4F079095D5093644Ad85E8b", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", - "decimals": 6, - "recommended_symbol": "LOCAL" + "is_svm": false, + "symbol": "PUG", + "name": "Puggo", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/pug.png", + "decimals": 18, + "recommended_symbol": "PUG.peggy" }, { - "denom": "peggy0x4Fabb145d64652a948d72533023f6E7A623C7C53", + "denom": "peggy0xfa6de2697D59E88Ed7Fc4dFE5A33daC43565ea41", "chain_id": "injective-1", - "origin_denom": "peggy0x4Fabb145d64652a948d72533023f6E7A623C7C53", + "origin_denom": "peggy0xfa6de2697D59E88Ed7Fc4dFE5A33daC43565ea41", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/busd.png", + "is_svm": false, + "symbol": "DEFI5", + "name": "DEFI5", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/defi5.png", "decimals": 18, - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD.peggy" + "recommended_symbol": "DEFI5.peggy" }, { - "denom": "factory/inj1fpl63h7at2epr55yn5svmqkq4fkye32vmxq8ry/MILK", + "denom": "factory/inj13zsd797dnkgpxcrf3zxxjzykzcz55tw7kk5x3y/CHAKRA", "chain_id": "injective-1", - "origin_denom": "factory/inj1fpl63h7at2epr55yn5svmqkq4fkye32vmxq8ry/MILK", + "origin_denom": "factory/inj13zsd797dnkgpxcrf3zxxjzykzcz55tw7kk5x3y/CHAKRA", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MILK", - "name": "Got Milk?", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/milk.png", + "is_svm": false, + "symbol": "CHAKRA", + "name": "CHAKRA", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CHAKRA.png", "decimals": 6, - "recommended_symbol": "MILK" + "recommended_symbol": "CHAKRA" }, { - "denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", + "denom": "ibc/348633370BE07A623D7FC9CD229150936ADCD3A4E842DAD246BBA817D21FF6C7", "chain_id": "injective-1", - "origin_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", "is_cw20": false, "is_evm": false, - "symbol": "TALIS", - "name": "TALIS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/talis.png", + "is_svm": false, + "symbol": "avalanche.USDC.wh", + "name": "avalanche.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "description": "Talis governance token", - "coingecko_id": "talis-protocol", - "recommended_symbol": "TALIS" + "recommended_symbol": "avalanche.USDC.wh" }, { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "denom": "factory/inj16fsle0ywczyf8h4xfpwntg3mnv7cukd48nnjjp/CHELE", "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "origin_denom": "factory/inj16fsle0ywczyf8h4xfpwntg3mnv7cukd48nnjjp/CHELE", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SOL", - "name": "SOL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/sol.png", - "decimals": 8, - "description": "Solana", - "coingecko_id": "solana", - "recommended_symbol": "SOL" + "is_svm": false, + "symbol": "CHELE", + "name": "Cheelee", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/cheele.png", + "decimals": 6, + "recommended_symbol": "CHELE" }, { - "denom": "factory/inj1h4usvhhva6dgmun9rk4haeh8lynln7yhk6ym00/PIKA", + "denom": "peggy0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e", "chain_id": "injective-1", - "origin_denom": "factory/inj1h4usvhhva6dgmun9rk4haeh8lynln7yhk6ym00/PIKA", + "origin_denom": "peggy0xeD35af169aF46a02eE13b9d79Eb57d6D68C1749e", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PIKA", - "name": "Pikachu", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/pikachu.png", - "decimals": 6, - "recommended_symbol": "PIKA" + "is_svm": false, + "symbol": "OMI", + "name": "OMI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/omi.png", + "decimals": 18, + "coingecko_id": "ecomi", + "recommended_symbol": "OMI.peggy" }, { - "denom": "ibc/8FF72FB47F07B4AFA8649500A168683BEFCB9EE164BD331FA597D26224D51055", + "denom": "ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8", "chain_id": "injective-1", - "origin_denom": "wglmr-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", + "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "WGLMR", - "name": "WGLMR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", - "decimals": 18, - "coingecko_id": "wrapped-moonbeam", - "recommended_symbol": "WGLMR.axl" + "is_svm": false, + "symbol": "BADKID", + "name": "BADKID", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "decimals": 6, + "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + "recommended_symbol": "BADKID" }, { - "denom": "ibc/65A6973F7A4013335AE5FFE623FE019A78A1FEEE9B8982985099978837D764A7", + "denom": "ibc/BC3AD52E42C6E1D13D2BDCEB497CF5AB9FEE24D804F5563B9E7DCFB825246947", "chain_id": "injective-1", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", + "origin_denom": "peaka", + "origin_chain_id": "vota-ash", + "trace": "transfer/channel-182", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "is_svm": false, + "symbol": "DORA", + "name": "DORA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" + "recommended_symbol": "DORA" }, { - "denom": "peggy0x3F07A84eCdf494310D397d24c1C78B041D2fa622", + "denom": "peggy0xa670d7237398238DE01267472C6f13e5B8010FD1", "chain_id": "injective-1", - "origin_denom": "peggy0x3F07A84eCdf494310D397d24c1C78B041D2fa622", + "origin_denom": "peggy0xa670d7237398238DE01267472C6f13e5B8010FD1", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SteadyETH", - "name": "SteadyETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steadyeth.png", - "decimals": 18, - "recommended_symbol": "SteadyETH.peggy" + "is_svm": false, + "symbol": "SOMM", + "name": "SOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/sommelier/asset/somm.png", + "decimals": 6, + "description": "Sommelier Staking Coin", + "coingecko_id": "sommelier", + "recommended_symbol": "SOMM.peggy" }, { - "denom": "peggy0x4E15361FD6b4BB609Fa63C81A2be19d873717870", + "denom": "peggy0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd", "chain_id": "injective-1", - "origin_denom": "peggy0x4E15361FD6b4BB609Fa63C81A2be19d873717870", + "origin_denom": "peggy0xaC9Bb427953aC7FDDC562ADcA86CF42D988047Fd", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FTM", - "name": "FTM", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ftm.png", + "is_svm": false, + "symbol": "STT", + "name": "STT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/stt.png", "decimals": 18, - "coingecko_id": "fantom", - "recommended_symbol": "FTM.peggy" + "recommended_symbol": "STT.peggy" }, { - "denom": "ibc/B0A75E6F4606C844C05ED9E08335AFC50E814F210C03CABAD31562F606C69C46", + "denom": "factory/inj1z5utcc5u90n8a5m8gv30char6j4hdzxz6t3pke/ramen", "chain_id": "injective-1", - "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-177", + "origin_denom": "factory/inj1z5utcc5u90n8a5m8gv30char6j4hdzxz6t3pke/ramen", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NEWT", - "name": "NEWT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "is_svm": false, + "symbol": "RAMEN", + "name": "RAMEN", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/ramen.jpeg", "decimals": 6, - "coingecko_id": "newt", - "recommended_symbol": "NEWT" + "recommended_symbol": "RAMEN" }, { - "denom": "factory/inj13zsd797dnkgpxcrf3zxxjzykzcz55tw7kk5x3y/CHAKRA", + "denom": "ibc/8E4953E506CF135A3ACDF6D6556ED1DB4F6A749F3910D2B4A77E2E851C4B2638", "chain_id": "injective-1", - "origin_denom": "factory/inj13zsd797dnkgpxcrf3zxxjzykzcz55tw7kk5x3y/CHAKRA", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "mGeo", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-214", "is_cw20": false, "is_evm": false, - "symbol": "CHAKRA", - "name": "CHAKRA", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CHAKRA.png", + "is_svm": false, + "symbol": "GEO", + "name": "GEO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", "decimals": 6, - "recommended_symbol": "CHAKRA" + "recommended_symbol": "GEO" }, { - "denom": "ibc/58BC643F2EB5758C08D8B1569C7948A5DA796802576005F676BBFB7526E520EB", + "denom": "ibc/C951FBB321708183F5A14811A3D099B3D73457D12E193E2B8429BDDCC6810D5A", "chain_id": "injective-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-98", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "is_svm": false, + "symbol": "Bonk", + "name": "Bonk", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", + "decimals": 5, + "recommended_symbol": "Bonk.wh" }, { - "denom": "ibc/6488808F32B07F6E8DCE7B700B92D9F7287D0FA1D0F76A25B11276E09DB0E626", + "denom": "ibc/7BE71BB68C781453F6BB10114F8E2DF8DC37BA791C502F5389EA10E7BEA68323", "chain_id": "injective-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-177", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "recommended_symbol": "USDC.wh" }, { - "denom": "ibc/AC87717EA002B0123B10A05063E69BCA274BA2C44D842AEEB41558D2856DCE93", + "denom": "ibc/EBD5A24C554198EBAF44979C5B4D2C2D312E6EBAB71962C92F735499C7575839", "chain_id": "injective-1", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-89", + "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-104", "is_cw20": false, "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "decimals": 18, - "description": "Stride Staked Injective", - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "is_svm": false, + "symbol": "ASTRO", + "name": "ASTRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", + "decimals": 6, + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO" }, { - "denom": "peggy0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", + "denom": "ibc/F28C5C931D2673B7A2F06FC74934F7BDC0D2906D2AF40D582ED27D1E5C48D475", "chain_id": "injective-1", - "origin_denom": "peggy0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "arb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "AAVE", - "name": "AAVE", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/aave.png", + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", "decimals": 18, - "coingecko_id": "aave", - "recommended_symbol": "AAVE.peggy" + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB.axl" }, { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", + "denom": "peggy0x3155BA85D5F96b2d030a4966AF206230e46849cb", "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", + "origin_denom": "peggy0x3155BA85D5F96b2d030a4966AF206230e46849cb", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDCET", - "name": "USDCET", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", - "decimals": 6, - "description": "Bridged USD Coin (Wormhole Ethereum)", - "coingecko_id": "usd-coin-wormhole-from-ethereum", - "recommended_symbol": "USDCET" + "is_svm": false, + "symbol": "RUNE", + "name": "RUNE", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rune.png", + "decimals": 18, + "coingecko_id": "thorchain-erc20", + "recommended_symbol": "RUNE.peggy" }, { - "denom": "factory/inj1any4rpwq7r850u6feajg5payvhwpunu9cxqevc/DOJO", + "denom": "peggy0x45804880De22913dAFE09f4980848ECE6EcbAf78", "chain_id": "injective-1", - "origin_denom": "factory/inj1any4rpwq7r850u6feajg5payvhwpunu9cxqevc/DOJO", + "origin_denom": "peggy0x45804880De22913dAFE09f4980848ECE6EcbAf78", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DOJO", - "name": "Dojo Bot", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/dojo.png", - "decimals": 6, - "recommended_symbol": "DOJO" + "is_svm": false, + "symbol": "PAXG", + "name": "PAXG", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/paxg.png", + "decimals": 18, + "coingecko_id": "pax-gold", + "recommended_symbol": "PAXG.peggy" }, { - "denom": "factory/inj1ktq0gf7altpsf0l2qzql4sfs0vc0ru75cnj3a6/moonify", + "denom": "peggy0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", "chain_id": "injective-1", - "origin_denom": "factory/inj1ktq0gf7altpsf0l2qzql4sfs0vc0ru75cnj3a6/moonify", + "origin_denom": "peggy0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MOONIFY", - "name": "MOONIFY", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/moonify.png", - "decimals": 6, - "recommended_symbol": "MOONIFY" + "is_svm": false, + "symbol": "stETH", + "name": "stETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", + "decimals": 18, + "coingecko_id": "staked-ether", + "recommended_symbol": "stETH.peggy" }, { - "denom": "factory/inj1s9pckznjz4hmgtxu5t9gerxtalch7wtle4y3a6/MIB", + "denom": "factory/inj1lucykkh3kv3wf6amckf205rg5jl8rprdcq8v83/HRBE", "chain_id": "injective-1", - "origin_denom": "factory/inj1s9pckznjz4hmgtxu5t9gerxtalch7wtle4y3a6/MIB", + "origin_denom": "factory/inj1lucykkh3kv3wf6amckf205rg5jl8rprdcq8v83/HRBE", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MIB", - "name": "MIB", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/MIB.png", + "is_svm": false, + "symbol": "HRBE", + "name": "HRBE", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/HRBE.png", "decimals": 6, - "recommended_symbol": "MIB" + "recommended_symbol": "HRBE" }, { - "denom": "factory/inj1s9smy53dtqq087usaf02sz984uddndwuj2f0wt/injussy", + "denom": "factory/inj1zq37mfquqgud2uqemqdkyv36gdstkxl27pj5e3/bulls", "chain_id": "injective-1", - "origin_denom": "factory/inj1s9smy53dtqq087usaf02sz984uddndwuj2f0wt/injussy", + "origin_denom": "factory/inj1zq37mfquqgud2uqemqdkyv36gdstkxl27pj5e3/bulls", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "INJUSSY", - "name": "INJUSSY", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injussy.png", + "is_svm": false, + "symbol": "BULLS", + "name": "Alpha Bulls", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/bulls.png", "decimals": 6, - "recommended_symbol": "INJUSSY" + "recommended_symbol": "BULLS" }, { - "denom": "factory/inj1sg3yjgjlwhtrepeuusj4jwv209rh6cmk882cw3/LIOR", + "denom": "factory/inj1h4usvhhva6dgmun9rk4haeh8lynln7yhk6ym00/PIKA", "chain_id": "injective-1", - "origin_denom": "factory/inj1sg3yjgjlwhtrepeuusj4jwv209rh6cmk882cw3/LIOR", + "origin_denom": "factory/inj1h4usvhhva6dgmun9rk4haeh8lynln7yhk6ym00/PIKA", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LIOR", - "name": "LIOR", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/lior.png", - "decimals": 6, - "recommended_symbol": "LIOR" - }, - { - "denom": "ibc/90C6F06139D663CFD7949223D257C5B5D241E72ED61EBD12FFDDA6F068715E47", - "chain_id": "injective-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", - "is_cw20": false, - "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "PIKA", + "name": "Pikachu", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/pikachu.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "recommended_symbol": "PIKA" }, { - "denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "denom": "factory/inj1kgyxepqnymx8hy7nydl65w3ecyut566pl70swj/crinj", "chain_id": "injective-1", - "origin_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "origin_denom": "factory/inj1kgyxepqnymx8hy7nydl65w3ecyut566pl70swj/crinj", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NINJA", - "name": "NINJA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", + "is_svm": false, + "symbol": "CRINJ", + "name": "CRINJ", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CRINJ.png", "decimals": 6, - "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", - "coingecko_id": "dog-wif-nuchucks", - "recommended_symbol": "NINJA" + "recommended_symbol": "CRINJ" }, { - "denom": "factory/inj1z08usf75ecfp3cqtwey6gx7nr79s3agal3k8xf/MILA", + "denom": "ibc/1B2D7E4261A7E2130E8E3506058E3081D3154998413F0DB2F82B04035B3FE676", "chain_id": "injective-1", - "origin_denom": "factory/inj1z08usf75ecfp3cqtwey6gx7nr79s3agal3k8xf/MILA", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "MILA", - "name": "Mila", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/Mila.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "recommended_symbol": "MILA" + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "factory/inj1zq37mfquqgud2uqemqdkyv36gdstkxl27pj5e3/bulls", + "denom": "ibc/3FDD002A3A4019B05A33D324B2F29748E77AF501BEA5C96D1F28B2D6755F9F25", "chain_id": "injective-1", - "origin_denom": "factory/inj1zq37mfquqgud2uqemqdkyv36gdstkxl27pj5e3/bulls", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, - "symbol": "BULLS", - "name": "Alpha Bulls", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/bulls.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "recommended_symbol": "BULLS" + "description": "Stride Staking Coin", + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/34346A60A95EB030D62D6F5BDD4B745BE18E8A693372A8A347D5D53DBBB1328B", + "denom": "ibc/4AC4A819B0BFCB25497E83B92A7D124F24C4E8B32B0E4B45704CC4D224A085A0", "chain_id": "injective-1", - "origin_denom": "usomm", - "origin_chain_id": "sommelier-3", - "trace": "transfer/channel-93", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", "is_cw20": false, "is_evm": false, - "symbol": "SOMM", - "name": "SOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", - "decimals": 6, - "description": "Sommelier Staking Coin", - "coingecko_id": "sommelier", - "recommended_symbol": "SOMM" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "decimals": 8, + "recommended_symbol": "WETH.wh" }, { - "denom": "ibc/35366063B530778DC37A16AAED4DDC14C0DCA161FBF55B5B69F5171FEE19BF93", + "denom": "factory/inj1sjmplasxl9zgj6yh45j3ndskgdhcfcss9djkdn/INJER", "chain_id": "injective-1", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-98", + "origin_denom": "factory/inj1sjmplasxl9zgj6yh45j3ndskgdhcfcss9djkdn/INJER", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "INJER", + "name": "INJINEER", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/INJINEER.png", "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "recommended_symbol": "INJER" }, { - "denom": "ibc/4971C5E4786D5995EC7EF894FCFA9CF2E127E95D5D53A982F6A062F3F410EDB8", + "denom": "ibc/7E1AF94AD246BE522892751046F0C959B768642E5671CC3742264068D49553C0", "chain_id": "injective-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "Levana", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "denom": "ibc/7E23647941230DA0AB4ED10F599647D9BE34E1C991D0DA032B5A1522941EBA73", "chain_id": "injective-1", - "origin_denom": "ukava", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "KAVA", - "name": "KAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", - "decimals": 6, - "description": "Kava Staking Coin", - "coingecko_id": "kava", - "recommended_symbol": "KAVA" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { "denom": "ibc/9144D78830C5ABD7B7D9E219EA7600E3A0E0AD5FC50C007668160595E94789AB", @@ -14361,6 +16348,7 @@ "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PEPE", "name": "PEPE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", @@ -14369,35 +16357,21 @@ "recommended_symbol": "PEPE.axl" }, { - "denom": "ibc/B68C1D2682A8B69E20BB921E34C6A3A2B6D1E13E3E8C0092E373826F546DEE65", + "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", "chain_id": "injective-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "description": "Axelar Staking Coin", - "coingecko_id": "axelar", - "recommended_symbol": "AXL" - }, - { - "denom": "ibc/B877B8EF095028B807370AB5C7790CA0C328777C9FF09AA7F5436BA7FAE4A86F", - "chain_id": "injective-1", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", - "is_cw20": false, - "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { "denom": "ibc/D6E6A20ABDD600742D22464340A7701558027759CE14D12590F8EA869CCCF445", @@ -14407,183 +16381,138 @@ "trace": "transfer/channel-102", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WHALE", "name": "WHALE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", "decimals": 6, + "description": "WHALE Staking Coin", "coingecko_id": "white-whale", "recommended_symbol": "WHALE" }, { - "denom": "ibc/ECB0AA28D6001EF985047558C410B65581FC85BD92D4E3CFCCA0D3D964C67CC2", - "chain_id": "injective-1", - "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-102", - "is_cw20": false, - "is_evm": false, - "symbol": "bWHALE", - "name": "bWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", - "decimals": 6, - "recommended_symbol": "bWHALE" - }, - { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h", - "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/polygon/asset/wmatic.png", - "decimals": 8, - "description": "Wrapped Matic", - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC" - }, - { - "denom": "factory/inj1d0zfq42409a5mhdagjutl8u6u9rgcm4h8zfmfq/nbla", - "chain_id": "injective-1", - "origin_denom": "factory/inj1d0zfq42409a5mhdagjutl8u6u9rgcm4h8zfmfq/nbla", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "NBLA", - "name": "Nebula", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/nbla.PNG", - "decimals": 6, - "recommended_symbol": "NBLA" - }, - { - "denom": "factory/inj1ezzzfm2exjz57hxuc65sl8s3d5y6ee0kxvu67n/ninjb", + "denom": "factory/inj1zpgcfma4ynpte8lwfxqfszddf4nveq95prqyht/NCACTE", "chain_id": "injective-1", - "origin_denom": "factory/inj1ezzzfm2exjz57hxuc65sl8s3d5y6ee0kxvu67n/ninjb", + "origin_denom": "factory/inj1zpgcfma4ynpte8lwfxqfszddf4nveq95prqyht/NCACTE", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NINJB", - "name": "NINJB", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/NINJB.png", + "is_svm": false, + "symbol": "NCACTE", + "name": "NCACToken", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/NCACTE.png", "decimals": 6, - "recommended_symbol": "NINJB" + "recommended_symbol": "NCACTE" }, { - "denom": "factory/inj1td7t8spd4k6uev6uunu40qvrrcwhr756d5qw59/ipepe", + "denom": "ibc/01A69EE21F6A76CAA8D0DB900AF2789BF665B5B67D89A7D69E7ECF7F513CD0CA", "chain_id": "injective-1", - "origin_denom": "factory/inj1td7t8spd4k6uev6uunu40qvrrcwhr756d5qw59/ipepe", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "cw20:terra18vp5s0r7keezm35hdxsgw8zgfnyn8wejdkk893ag2kqncgpqxhjqwjpc0v", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "IPEPE", - "name": "Injective Pepe", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injpepe.png", + "is_svm": false, + "symbol": "BITZ", + "name": "BITZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/BITZ.png", "decimals": 6, - "recommended_symbol": "IPEPE" + "recommended_symbol": "BITZ" }, { - "denom": "factory/inj18nm3q7r2rckklp7h8hgfzu2dlc20sftvd2893w/nUSD", + "denom": "ibc/65A6973F7A4013335AE5FFE623FE019A78A1FEEE9B8982985099978837D764A7", "chain_id": "injective-1", - "origin_denom": "factory/inj18nm3q7r2rckklp7h8hgfzu2dlc20sftvd2893w/nUSD", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "nUSD", - "name": "nUSD", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/nUSD.png", + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", "decimals": 18, - "recommended_symbol": "nUSD" - }, - { - "denom": "factory/inj1j7zt6g03vpmg9p7g7qngvylfxqeuds73utsjnk/INJECT", - "chain_id": "injective-1", - "origin_denom": "factory/inj1j7zt6g03vpmg9p7g7qngvylfxqeuds73utsjnk/INJECT", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "INJECT", - "name": "Injectools", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/INJECT.png", - "decimals": 6, - "recommended_symbol": "INJECT" + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" }, { - "denom": "factory/inj1kgyxepqnymx8hy7nydl65w3ecyut566pl70swj/crinj", + "denom": "ibc/6B7E243C586784E1BE150B71F541A3880F0409E994365AF31FF63A2764B72556", "chain_id": "injective-1", - "origin_denom": "factory/inj1kgyxepqnymx8hy7nydl65w3ecyut566pl70swj/crinj", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "yieldeth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "CRINJ", - "name": "CRINJ", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CRINJ.png", - "decimals": 6, - "recommended_symbol": "CRINJ" + "is_svm": false, + "symbol": "YieldETH", + "name": "YieldETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "decimals": 18, + "recommended_symbol": "YieldETH.axl" }, { - "denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", + "denom": "ibc/75F64E20A70C5059F8EA792F1C47260DC7C6CBAC69DBA60E151AD5416E93C34C", "chain_id": "injective-1", - "origin_denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, - "symbol": "WGMI", - "name": "WGMI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png", - "decimals": 6, - "description": "The $WGMI Token - We Gonna Make It. Are you ready?", - "recommended_symbol": "WGMI" + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" }, { - "denom": "factory/inj164jk46xjwsn6x4rzu6sfuvtlzy2nza0nxfj0nz/MAX", + "denom": "ibc/B877B8EF095028B807370AB5C7790CA0C328777C9FF09AA7F5436BA7FAE4A86F", "chain_id": "injective-1", - "origin_denom": "factory/inj164jk46xjwsn6x4rzu6sfuvtlzy2nza0nxfj0nz/MAX", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "MAX", - "name": "MAX", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/max.jpg", - "decimals": 6, - "recommended_symbol": "MAX" + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "factory/inj1ga982yy0wumrlt4nnj79wcgmw7mzvw6jcyecl0/NPEPE", + "denom": "factory/inj1vjppa6h9lf75pt0v6qnxtej4xcl0qevnxzcrvm/INJINU", "chain_id": "injective-1", - "origin_denom": "factory/inj1ga982yy0wumrlt4nnj79wcgmw7mzvw6jcyecl0/NPEPE", + "origin_denom": "factory/inj1vjppa6h9lf75pt0v6qnxtej4xcl0qevnxzcrvm/INJINU", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NPEPE", - "name": "NinjaPepe", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/NPEPE.png", + "is_svm": false, + "symbol": "INJINU", + "name": "INJINU", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injinu.png", "decimals": 6, - "recommended_symbol": "NPEPE" + "recommended_symbol": "INJINU" }, { - "denom": "ibc/B692197280D4E62F8D9F8E5C0B697DC4C2C680ED6DE8FFF0368E0552C9215607", + "denom": "ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3", "chain_id": "injective-1", - "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-118", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "BLUE", - "name": "BLUE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "recommended_symbol": "BLUE" + "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + "recommended_symbol": "WOSMO" }, { "denom": "peggy0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", @@ -14593,6 +16522,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", @@ -14601,118 +16531,113 @@ "recommended_symbol": "USDC.peggy" }, { - "denom": "factory/inj1cxcjn04l2vxg4zwrlhpghh32fdel856xn3a3rr/BONK", + "denom": "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", "chain_id": "injective-1", - "origin_denom": "factory/inj1cxcjn04l2vxg4zwrlhpghh32fdel856xn3a3rr/BONK", + "origin_denom": "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BONK", - "name": "Inj Bonk", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injbonk.png", + "is_svm": false, + "symbol": "BEAST", + "name": "BEAST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png", "decimals": 6, - "recommended_symbol": "BONK" + "description": "BEAST-ERC20 on injective", + "recommended_symbol": "BEAST.peggy" }, { - "denom": "peggy0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "denom": "peggy0xAaEf88cEa01475125522e117BFe45cF32044E238", "chain_id": "injective-1", - "origin_denom": "peggy0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "origin_denom": "peggy0xAaEf88cEa01475125522e117BFe45cF32044E238", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UNI", - "name": "UNI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uni.png", + "is_svm": false, + "symbol": "GF", + "name": "GF", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/gf.png", "decimals": 18, - "coingecko_id": "uniswap", - "recommended_symbol": "UNI.peggy" - }, - { - "denom": "factory/inj13ze65lwstqrz4qy6vvxx3lglnkkuan436aw45e/HACHI", - "chain_id": "injective-1", - "origin_denom": "factory/inj13ze65lwstqrz4qy6vvxx3lglnkkuan436aw45e/HACHI", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "HACHI", - "name": "Hachi", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/HACHI.jpg", - "decimals": 9, - "recommended_symbol": "HACHI" + "coingecko_id": "guildfi", + "recommended_symbol": "GF.peggy" }, { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj12pwnhtv7yat2s30xuf4gdk9qm85v4j3e60dgvu", + "denom": "factory/inj1zhevrrwywg3az9ulxd9u233eyy4m2mmr6vegsg/INJEX", "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj12pwnhtv7yat2s30xuf4gdk9qm85v4j3e60dgvu", + "origin_denom": "factory/inj1zhevrrwywg3az9ulxd9u233eyy4m2mmr6vegsg/INJEX", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDCso", - "name": "USDCso", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "INJEX", + "name": "INJEX", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/INJEX.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDCso" + "recommended_symbol": "INJEX" }, { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1mhmln627samtkuwe459ylq763r4n7n69gxxc9x", + "denom": "peggy0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1mhmln627samtkuwe459ylq763r4n7n69gxxc9x", + "origin_denom": "peggy0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ASTR", - "name": "Astar Network", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/astar.svg", + "is_svm": false, + "symbol": "USTC", + "name": "USTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ustc.png", "decimals": 18, - "recommended_symbol": "ASTR" + "coingecko_id": "terrausd", + "recommended_symbol": "USTC.peggy" }, { - "denom": "factory/inj1d4ld9w7mf8wjyv5y7fnhpate07fguv3s3tmngm/karmainj", + "denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", "chain_id": "injective-1", - "origin_denom": "factory/inj1d4ld9w7mf8wjyv5y7fnhpate07fguv3s3tmngm/karmainj", + "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KARMA", - "name": "KARMA", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/karma.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "recommended_symbol": "KARMA" + "coingecko_id": "tether", + "recommended_symbol": "USDT.peggy" }, { - "denom": "factory/inj1spdy83ds5ezq9rvtg0ndy8480ad5rlczcpvtu2/YUKI", + "denom": "factory/inj1muuaghrdm2rfss9cdpxzhk3v7xqj8ltngrm0xd/RKO", "chain_id": "injective-1", - "origin_denom": "factory/inj1spdy83ds5ezq9rvtg0ndy8480ad5rlczcpvtu2/YUKI", + "origin_denom": "factory/inj1muuaghrdm2rfss9cdpxzhk3v7xqj8ltngrm0xd/RKO", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "YUKI", - "name": "Yuki Dog", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/yuki.png", + "is_svm": false, + "symbol": "RKO", + "name": "RKO", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/RKO.png", "decimals": 6, - "recommended_symbol": "YUKI" + "recommended_symbol": "RKO" }, { - "denom": "factory/inj1t02au5gsk40ev9jaq0ggcyry9deuvvza6s4wav/Shinobi", + "denom": "factory/inj1s9smy53dtqq087usaf02sz984uddndwuj2f0wt/injussy", "chain_id": "injective-1", - "origin_denom": "factory/inj1t02au5gsk40ev9jaq0ggcyry9deuvvza6s4wav/Shinobi", + "origin_denom": "factory/inj1s9smy53dtqq087usaf02sz984uddndwuj2f0wt/injussy", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NOBI", - "name": "Shinobi Inu", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SHINOBIINU.png", + "is_svm": false, + "symbol": "INJUSSY", + "name": "INJUSSY", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injussy.png", "decimals": 6, - "recommended_symbol": "NOBI" + "recommended_symbol": "INJUSSY" }, { "denom": "factory/inj1eucxlpy6c387g5wrn4ee7ppshdzg3rh4t50ahf/COCK", @@ -14722,6 +16647,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "COCK", "name": "ROOSTER NINJA", "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/cock.png", @@ -14729,136 +16655,84 @@ "recommended_symbol": "COCK" }, { - "denom": "factory/inj1uvfpvnmuqhx8jwg4786y59tkagmph827h38mst/WIZZ", + "denom": "ibc/020098CDEC3D7555210CBC1593A175A6B24253823B0B711D072EC95F76FA4D42", "chain_id": "injective-1", - "origin_denom": "factory/inj1uvfpvnmuqhx8jwg4786y59tkagmph827h38mst/WIZZ", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "WIZZ", - "name": "WIZZ", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/WIZZ.png", - "decimals": 6, - "recommended_symbol": "WIZZ" - }, - { - "denom": "factory/inj1mly2ykhf6f9tdj58pvndjf4q8dzdl4myjqm9t6/ALIEN", - "chain_id": "injective-1", - "origin_denom": "factory/inj1mly2ykhf6f9tdj58pvndjf4q8dzdl4myjqm9t6/ALIEN", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "ALIEN", - "name": "ALIEN", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/alien.png", + "is_svm": false, + "symbol": "PLNK", + "name": "PLNK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", "decimals": 6, - "recommended_symbol": "ALIEN" + "recommended_symbol": "PLNK" }, { - "denom": "ibc/32F6EDA3E2B2A7F9C4A62F11935CF5D25948372A5A85281D7ABB9A2D0F0B7182", + "denom": "ibc/063F4461F7317CFF10F50AB044E44932D22AAD84FA7107082744946E6DB7B7A8", "chain_id": "injective-1", - "origin_denom": "stutia", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-89", + "origin_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-177", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "stTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "is_svm": false, + "symbol": "ASTRO", + "name": "ASTRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", "decimals": 6, - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO" }, { - "denom": "factory/inj1z5utcc5u90n8a5m8gv30char6j4hdzxz6t3pke/ramen", + "denom": "ibc/3A6DD3358D9F7ADD18CDE79BA10B400511A5DE4AE2C037D7C9639B52ADAF35C6", "chain_id": "injective-1", - "origin_denom": "factory/inj1z5utcc5u90n8a5m8gv30char6j4hdzxz6t3pke/ramen", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-90", "is_cw20": false, "is_evm": false, - "symbol": "RAMEN", - "name": "RAMEN", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/ramen.jpeg", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "recommended_symbol": "RAMEN" - }, - { - "denom": "ibc/7E23647941230DA0AB4ED10F599647D9BE34E1C991D0DA032B5A1522941EBA73", - "chain_id": "injective-1", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", - "is_cw20": false, - "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "description": "Crescent Staking Coin", + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "ibc/58BC643F2EB5758C08D8B1569C7948A5DA796802576005F676BBFB7526E520EB", "chain_id": "injective-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "factory/inj13yzzxz90naqer4utnp03zlj5rguhu7v0hd2jzl/SHIBINJ", + "denom": "factory/inj1rrg35k5g58vunyze4tqvqhef2fgrurkpxxdr43/KiraWifHat", "chain_id": "injective-1", - "origin_denom": "factory/inj13yzzxz90naqer4utnp03zlj5rguhu7v0hd2jzl/SHIBINJ", + "origin_denom": "factory/inj1rrg35k5g58vunyze4tqvqhef2fgrurkpxxdr43/KiraWifHat", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SHIBINJ", - "name": "ShibInuINJ", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SHIBINJ.png", + "is_svm": false, + "symbol": "KiraWifHat", + "name": "KiraWifHat", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/Kira-Wif-Hat.png", "decimals": 6, - "recommended_symbol": "SHIBINJ" - }, - { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj14cl67lprqkt3pncjav070gavaxslc0tzpc56f4", - "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj14cl67lprqkt3pncjav070gavaxslc0tzpc56f4", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "wKLAY", - "name": "Wrapped Klay (Wormhole)", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/wklay.png", - "decimals": 18, - "recommended_symbol": "wKLAY" - }, - { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh", - "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "CHZ", - "name": "CHZ", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/chz.png", - "decimals": 8, - "description": "Chiliz", - "coingecko_id": "chiliz", - "recommended_symbol": "CHZ" + "recommended_symbol": "KiraWifHat" }, { "denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", @@ -14868,6 +16742,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ampINJ", "name": "ampINJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", @@ -14876,214 +16751,163 @@ "recommended_symbol": "ampINJ" }, { - "denom": "factory/inj1vgrf5mcvvg9p5c6jajqefn840nq74wjzgkt30z/GROK", - "chain_id": "injective-1", - "origin_denom": "factory/inj1vgrf5mcvvg9p5c6jajqefn840nq74wjzgkt30z/GROK", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "GROK", - "name": "GROK", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/GROK.png", - "decimals": 6, - "recommended_symbol": "GROK" - }, - { - "denom": "factory/inj1vjppa6h9lf75pt0v6qnxtej4xcl0qevnxzcrvm/INJINU", - "chain_id": "injective-1", - "origin_denom": "factory/inj1vjppa6h9lf75pt0v6qnxtej4xcl0qevnxzcrvm/INJINU", - "origin_chain_id": "injective-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "INJINU", - "name": "INJINU", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injinu.png", - "decimals": 6, - "recommended_symbol": "INJINU" - }, - { - "denom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", + "denom": "factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro", "chain_id": "injective-1", - "origin_denom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", + "origin_denom": "factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KIRA", - "name": "KIRA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/kira.png", + "is_svm": false, + "symbol": "HDRO", + "name": "HDRO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/hdro.png", "decimals": 6, - "description": "KIRA", - "coingecko_id": "kira-the-injective-cat", - "recommended_symbol": "KIRA" + "description": "Hydro Protocol", + "recommended_symbol": "HDRO" }, { - "denom": "ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E", + "denom": "ibc/48D1DA9AA68C949E27BAB39B409681292035ABF63EAB663017C7BEF98A3D118E", "chain_id": "injective-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-148", + "origin_denom": "umyrk", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-214", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "MYRK", + "name": "MYRK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "recommended_symbol": "MYRK" }, { - "denom": "ibc/2FF3DC3A0265B9A220750E75E75E5D44ED2F716B8AC4EDC378A596CC958ABF6B", + "denom": "ibc/61FA42C3F0B0F8768ED2CE380EDD3BE0E4CB7E67688F81F70DE9ECF5F8684E1E", "chain_id": "injective-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-159", + "origin_denom": "uandr", + "origin_chain_id": "andromeda-1", + "trace": "transfer/channel-213", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "ANDR", + "name": "ANDR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "description": "PYTH", + "coingecko_id": "andromeda-2", + "recommended_symbol": "ANDR" }, { - "denom": "ibc/3A6DD3358D9F7ADD18CDE79BA10B400511A5DE4AE2C037D7C9639B52ADAF35C6", + "denom": "ibc/BCE43BA530FBE35282B62C1E1EA4AD1F51522C61D40FB761005E1A02F18E0E58", "chain_id": "injective-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-90", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-180", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "SEI", + "name": "SEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", "decimals": 6, - "description": "Crescent Staking Coin", - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" }, { - "denom": "ibc/3D99439444ACDEE71DBC4A774E49DB74B58846CCE31B9A868A7A61E4C14D321E", + "denom": "ibc/D9353C3B1407A7F7FE0A5CCB7D06249B57337888C95C6648AEAF2C83F4F3074E", "chain_id": "injective-1", - "origin_denom": "cw20:terra19p20mfnvwh9yvyr7aus3a6z6g6uk28fv4jhx9kmnc2m7krg27q2qkfenjw", + "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", "origin_chain_id": "phoenix-1", "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "ORNE", - "name": "Orne", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/orne.png", + "is_svm": false, + "symbol": "BMOS", + "name": "Bitmos", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", "decimals": 6, - "coingecko_id": "orne", - "recommended_symbol": "ORNE" + "recommended_symbol": "BMOS" }, { - "denom": "ibc/6ED95AEFA5D9A6F9EF9CDD05FED7D7C9D7F42D9892E7236EB9B251CE9E999701", + "denom": "ibc/DD9182E8E2B13C89D6B4707C7B43E8DB6193F9FF486AFA0E6CF86B427B0D231A", "chain_id": "injective-1", - "origin_denom": "loki", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-214", + "origin_denom": "unois", + "origin_chain_id": "nois-1", + "trace": "transfer/channel-138", "is_cw20": false, "is_evm": false, - "symbol": "ODIN", - "name": "ODIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "is_svm": false, + "symbol": "NOIS", + "name": "NOIS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", "decimals": 6, - "coingecko_id": "odin-protocol", - "recommended_symbol": "ODIN" + "description": "Nois Staking Coin", + "recommended_symbol": "NOIS" }, { - "denom": "ibc/A0C5AD197FECAF6636F589071338DC7ECD6B0809CD3A5AB131EAAA5395E7E5E8", + "denom": "ibc/E68343A4DEF4AFBE7C5A9004D4C11888EE755A7B43B3F1AFA52F2C34C07990D5", "chain_id": "injective-1", - "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", + "origin_denom": "shib-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "BADKID", - "name": "BADKID", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", - "decimals": 6, - "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", - "recommended_symbol": "BADKID" + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "decimals": 18, + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" }, { - "denom": "ibc/BCE43BA530FBE35282B62C1E1EA4AD1F51522C61D40FB761005E1A02F18E0E58", + "denom": "ibc/E6CFB0AC1D339A8CBA3353DF0D7E080B4B14D026D1C90F63F666C223B04D548C", "chain_id": "injective-1", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-180", + "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "SEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "is_svm": false, + "symbol": "ROAR", + "name": "ROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", "decimals": 6, - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "coingecko_id": "lion-dao", + "recommended_symbol": "ROAR" }, { - "denom": "ibc/C2A70D6717D595F388B115200E789DC6E7EE409167B918B5F4E73838B8451A71", + "denom": "ibc/EA7CE127E1CFD7822AD169019CAFDD63D0F5A278DCE974F438099BF16C99FB8B", "chain_id": "injective-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", + "origin_denom": "udoki", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-214", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "DOKI", + "name": "DOKI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" - }, - { - "denom": "ibc/F28C5C931D2673B7A2F06FC74934F7BDC0D2906D2AF40D582ED27D1E5C48D475", - "chain_id": "injective-1", - "origin_denom": "arb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", - "is_cw20": false, - "is_evm": false, - "symbol": "ARB", - "name": "ARB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", - "decimals": 18, - "coingecko_id": "arbitrum", - "recommended_symbol": "ARB.axl" + "coingecko_id": "doki", + "recommended_symbol": "DOKI" }, { - "denom": "ibc/F51BB221BAA275F2EBF654F70B005627D7E713AFFD6D86AFD1E43CAA886149F4", + "denom": "ibc/ECB0AA28D6001EF985047558C410B65581FC85BD92D4E3CFCCA0D3D964C67CC2", "chain_id": "injective-1", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-152", + "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-102", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "bWHALE", + "name": "bWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", "decimals": 6, - "description": "Celestia Staking Coin", - "coingecko_id": "celestia", - "recommended_symbol": "TIA" - }, - { - "denom": "ibc/F6CC233E5C0EA36B1F74AB1AF98471A2D6A80E2542856639703E908B4D93E7C4", - "chain_id": "injective-1", - "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-83", - "is_cw20": false, - "is_evm": false, - "symbol": "NEOK", - "name": "NEOK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", - "decimals": 18, - "recommended_symbol": "NEOK" + "coingecko_id": "backbone-labs-staked-whale", + "recommended_symbol": "bWHALE" }, { "denom": "ibc/FC8E98DF998AE88129183094E49383F94B3E5F1844C939D380AF18061FEF41EB", @@ -15093,6 +16917,7 @@ "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stUMEE", "name": "stUMEE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", @@ -15101,934 +16926,1003 @@ "recommended_symbol": "stUMEE" }, { - "denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", + "denom": "ibc/FE87E1E1BB401EC35CD02A57FE5DEF872FA309C018172C4E7DA07F194EAC6F19", "chain_id": "injective-1", - "origin_denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "GLTO", - "name": "GLTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", + "is_svm": false, + "symbol": "FUZN", + "name": "FUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", "decimals": 6, - "description": "GLTO-ERC20 on injective", - "recommended_symbol": "GLTO.peggy" + "recommended_symbol": "FUZN" }, { - "denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "denom": "peggy0x4d224452801ACEd8B2F0aebE155379bb5D594381", "chain_id": "injective-1", - "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_denom": "peggy0x4d224452801ACEd8B2F0aebE155379bb5D594381", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.peggy" + "is_svm": false, + "symbol": "APE", + "name": "APE", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ape.png", + "decimals": 18, + "coingecko_id": "apecoin", + "recommended_symbol": "APE.peggy" }, { - "denom": "peggy0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c", + "denom": "peggy0x50f09629d0afDF40398a3F317cc676cA9132055c", "chain_id": "injective-1", - "origin_denom": "peggy0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c", + "origin_denom": "peggy0x50f09629d0afDF40398a3F317cc676cA9132055c", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UTK", - "name": "UTK", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/utk.png", - "decimals": 18, - "coingecko_id": "utrust", - "recommended_symbol": "UTK.peggy" + "is_svm": false, + "symbol": "EVAI", + "name": "EVAI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/evai.png", + "decimals": 8, + "recommended_symbol": "EVAI.peggy" }, { - "denom": "factory/inj169ed97mcnf8ay6rgvskn95n6tyt46uwvy5qgs0/aoi", + "denom": "peggy0x514910771AF9Ca656af840dff83E8264EcF986CA", "chain_id": "injective-1", - "origin_denom": "factory/inj169ed97mcnf8ay6rgvskn95n6tyt46uwvy5qgs0/aoi", + "origin_denom": "peggy0x514910771AF9Ca656af840dff83E8264EcF986CA", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AOI", - "name": "AOI", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/aoi.webp", - "decimals": 6, - "recommended_symbol": "AOI" + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/link.png", + "decimals": 18, + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.peggy" }, { - "denom": "factory/inj17g4j3geupy762u0wrewqwprvtzar7k5et2zqsh/incel", + "denom": "peggy0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", "chain_id": "injective-1", - "origin_denom": "factory/inj17g4j3geupy762u0wrewqwprvtzar7k5et2zqsh/incel", + "origin_denom": "peggy0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "INCEL", - "name": "InjectiveCelestiaNoFapLadyBoy420Inu", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/incel.png", - "decimals": 6, - "recommended_symbol": "INCEL" + "is_svm": false, + "symbol": "SUSHI", + "name": "SUSHI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sushi.png", + "decimals": 18, + "coingecko_id": "sushi", + "recommended_symbol": "SUSHI.peggy" }, { - "denom": "factory/inj188veuqed0dygkcmq5d24u3807n6csv4wdv28gh/wagmi", + "denom": "peggy0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", "chain_id": "injective-1", - "origin_denom": "factory/inj188veuqed0dygkcmq5d24u3807n6csv4wdv28gh/wagmi", + "origin_denom": "peggy0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WAGMI", - "name": "WAGMI Coin", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/WAGMI.png", - "decimals": 9, - "recommended_symbol": "WAGMI" + "is_svm": false, + "symbol": "MATIC", + "name": "MATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/matic.png", + "decimals": 18, + "coingecko_id": "matic-network", + "recommended_symbol": "MATIC.peggy" }, { - "denom": "factory/inj1898t0vtmul3tcn3t0v8qe3pat47ca937jkpezv/karate", + "denom": "peggy0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", "chain_id": "injective-1", - "origin_denom": "factory/inj1898t0vtmul3tcn3t0v8qe3pat47ca937jkpezv/karate", + "origin_denom": "peggy0x7Fc66500c84A76Ad7e9c93437bFc5Ac33E2DDaE9", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KARATE", - "name": "Doge Wif Karate", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/karate.png", - "decimals": 6, - "recommended_symbol": "KARATE" + "is_svm": false, + "symbol": "AAVE", + "name": "AAVE", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/aave.png", + "decimals": 18, + "coingecko_id": "aave", + "recommended_symbol": "AAVE.peggy" }, { - "denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "denom": "peggy0x92D6C1e31e14520e676a687F0a93788B716BEff5", "chain_id": "injective-1", - "origin_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "origin_denom": "peggy0x92D6C1e31e14520e676a687F0a93788B716BEff5", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HAVA", - "name": "HAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", - "decimals": 6, - "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/", - "recommended_symbol": "HAVA" + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX.peggy" }, { - "denom": "factory/inj1h3y27yhly6a87d95937jztc3tupl3nt8fg3lcp/BABYNINJA", + "denom": "factory/inj147s5vh6ck67zjtpgd674c7efd47jqck55chw4l/inj-GODS", "chain_id": "injective-1", - "origin_denom": "factory/inj1h3y27yhly6a87d95937jztc3tupl3nt8fg3lcp/BABYNINJA", + "origin_denom": "factory/inj147s5vh6ck67zjtpgd674c7efd47jqck55chw4l/inj-GODS", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BABYNINJA", - "name": "BABYNINJA", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/BABYNINJA.png", + "is_svm": false, + "symbol": "GODS", + "name": "GODS", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/GODS.png", "decimals": 6, - "recommended_symbol": "BABYNINJA" + "recommended_symbol": "GODS" }, { - "denom": "factory/inj1nf43yjjx7sjc3eulffgfyxqhcraywwgrnqmqjc/INJDOGE", + "denom": "factory/inj1ezzzfm2exjz57hxuc65sl8s3d5y6ee0kxvu67n/ninjb", "chain_id": "injective-1", - "origin_denom": "factory/inj1nf43yjjx7sjc3eulffgfyxqhcraywwgrnqmqjc/INJDOGE", + "origin_denom": "factory/inj1ezzzfm2exjz57hxuc65sl8s3d5y6ee0kxvu67n/ninjb", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "INJDoge", - "name": "Inject Doge", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injectdoge.png", + "is_svm": false, + "symbol": "NINJB", + "name": "NINJB", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/NINJB.png", "decimals": 6, - "recommended_symbol": "INJDoge" + "recommended_symbol": "NINJB" }, { - "denom": "factory/inj18lh8zx4hx0pyksyu74srktv4vgxskkkafknggl/LAMA", + "denom": "ibc/2FF3DC3A0265B9A220750E75E75E5D44ED2F716B8AC4EDC378A596CC958ABF6B", "chain_id": "injective-1", - "origin_denom": "factory/inj18lh8zx4hx0pyksyu74srktv4vgxskkkafknggl/LAMA", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-159", "is_cw20": false, "is_evm": false, - "symbol": "LAMA", - "name": "LAMA", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/lama_logo.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "recommended_symbol": "LAMA" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/7E1AF94AD246BE522892751046F0C959B768642E5671CC3742264068D49553C0", + "denom": "ibc/B0A75E6F4606C844C05ED9E08335AFC50E814F210C03CABAD31562F606C69C46", "chain_id": "injective-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", + "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-177", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "NEWT", + "name": "NEWT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "coingecko_id": "newt", + "recommended_symbol": "NEWT" }, { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tjcf9497fwmrnk22jfu5hsdq82qshga54ajvzy", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tjcf9497fwmrnk22jfu5hsdq82qshga54ajvzy", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, + { + "denom": "peggy0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", + "chain_id": "injective-1", + "origin_denom": "peggy0x04Fa0d235C4abf4BcF4787aF4CF447DE572eF828", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PYTH", - "name": "PYTH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/pyth.png", - "decimals": 6, - "description": "pyth-network", - "coingecko_id": "pyth-network", - "recommended_symbol": "PYTH" + "is_svm": false, + "symbol": "UMA", + "name": "UMA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uma.png", + "decimals": 18, + "coingecko_id": "uma", + "recommended_symbol": "UMA.peggy" }, { - "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tn457ed2gg5vj2cur5khjjw63w73y3xhyhtaay", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", "chain_id": "injective-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tn457ed2gg5vj2cur5khjjw63w73y3xhyhtaay", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6zlut7gtkzknkk773jecujwsdkgq882akqksk", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "VATRENI", - "name": "Vatreni Token", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/vatreni.png", - "decimals": 8, - "recommended_symbol": "VATRENI" + "is_svm": false, + "symbol": "USDCET", + "name": "USDCET", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "decimals": 6, + "description": "Bridged USD Coin (Wormhole Ethereum)", + "coingecko_id": "usd-coin-wormhole-from-ethereum", + "recommended_symbol": "USDCET" }, { - "denom": "factory/inj13jjdsa953w03dvecsr43dj5r6a2vzt7n0spncv/brett", + "denom": "factory/inj1vwn4x08hlactxj3y3kuqddafs2hhqzapruwt87/katana", "chain_id": "injective-1", - "origin_denom": "factory/inj13jjdsa953w03dvecsr43dj5r6a2vzt7n0spncv/brett", + "origin_denom": "factory/inj1vwn4x08hlactxj3y3kuqddafs2hhqzapruwt87/katana", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BRETT", - "name": "BluePepe", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/Brett.png", + "is_svm": false, + "symbol": "KATANA", + "name": "KATANA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/katana.png", "decimals": 6, - "recommended_symbol": "BRETT" + "description": "Dog Wif Katana", + "coingecko_id": "dogwifkatana", + "recommended_symbol": "KATANA" }, { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "denom": "ibc/2CBC2EA121AE42563B08028466F37B600F2D7D4282342DE938283CC3FB2BC00E", "chain_id": "injective-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-88", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-148", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "factory/inj13vau2mgx6mg7ams9nngjhyng58tl9zyw0n8s93/BABYKIRA", + "denom": "ibc/624BA9DD171915A2B9EA70F69638B2CEA179959850C1A586F6C485498F29EDD4", "chain_id": "injective-1", - "origin_denom": "factory/inj13vau2mgx6mg7ams9nngjhyng58tl9zyw0n8s93/BABYKIRA", + "origin_denom": "dot-planck", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlDOT", + "name": "axlDOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" + }, + { + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "chain_id": "injective-1", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "Babykira", - "name": "Babykira", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/babykira.png", - "decimals": 6, - "recommended_symbol": "Babykira" + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/sol.png", + "decimals": 8, + "description": "Solana", + "coingecko_id": "solana", + "recommended_symbol": "SOL" }, { - "denom": "ibc/168C3904C45C6FE3539AE85A8892DF87371D00EA7942515AFC50AA43C4BB0A32", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1zdj9kqnknztl2xclm5ssv25yre09f8908d4923", "chain_id": "injective-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-102", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1zdj9kqnknztl2xclm5ssv25yre09f8908d4923", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ampWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", - "decimals": 6, - "recommended_symbol": "ampWHALE" + "is_svm": false, + "symbol": "DOJO", + "name": "DOJO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/dojo.png", + "decimals": 18, + "description": "DOJO", + "recommended_symbol": "DOJO" }, { - "denom": "factory/inj16fsle0ywczyf8h4xfpwntg3mnv7cukd48nnjjp/CHELE", + "denom": "factory/inj1esz96ru3guug4ctmn5chjmkymt979sfvufq0hs/PUNK", "chain_id": "injective-1", - "origin_denom": "factory/inj16fsle0ywczyf8h4xfpwntg3mnv7cukd48nnjjp/CHELE", + "origin_denom": "factory/inj1esz96ru3guug4ctmn5chjmkymt979sfvufq0hs/PUNK", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CHELE", - "name": "Cheelee", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/cheele.png", + "is_svm": false, + "symbol": "PUNK", + "name": "PUNK", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/PUNK.png", "decimals": 6, - "recommended_symbol": "CHELE" + "recommended_symbol": "PUNK" }, { - "denom": "factory/inj1qczkutnsy3nmt909xtyjy4rsrkl2q4dm6aq960/coping", + "denom": "ibc/B68C1D2682A8B69E20BB921E34C6A3A2B6D1E13E3E8C0092E373826F546DEE65", "chain_id": "injective-1", - "origin_denom": "factory/inj1qczkutnsy3nmt909xtyjy4rsrkl2q4dm6aq960/coping", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "CPINJ", - "name": "CopingInj", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CopingInj.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "recommended_symbol": "CPINJ" + "description": "Axelar Staking Coin", + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "factory/inj147s5vh6ck67zjtpgd674c7efd47jqck55chw4l/inj-GODS", + "denom": "factory/inj1z08usf75ecfp3cqtwey6gx7nr79s3agal3k8xf/MILA", "chain_id": "injective-1", - "origin_denom": "factory/inj147s5vh6ck67zjtpgd674c7efd47jqck55chw4l/inj-GODS", + "origin_denom": "factory/inj1z08usf75ecfp3cqtwey6gx7nr79s3agal3k8xf/MILA", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GODS", - "name": "GODS", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/GODS.png", + "is_svm": false, + "symbol": "MILA", + "name": "Mila", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/Mila.png", "decimals": 6, - "recommended_symbol": "GODS" + "recommended_symbol": "MILA" }, { - "denom": "factory/inj10edtfelcttj3s98f755ntfplt0da5xv4z8z0lf/dogwifshoes", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj12pwnhtv7yat2s30xuf4gdk9qm85v4j3e60dgvu", "chain_id": "injective-1", - "origin_denom": "factory/inj10edtfelcttj3s98f755ntfplt0da5xv4z8z0lf/dogwifshoes", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj12pwnhtv7yat2s30xuf4gdk9qm85v4j3e60dgvu", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WIFS", - "name": "Dog Wif Shoes", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/wifs.png", + "is_svm": false, + "symbol": "USDCso", + "name": "USDCso", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "recommended_symbol": "WIFS" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDCso" }, { - "denom": "ibc/DD648F5D3CDA56D0D8D8820CF703D246B9FC4007725D8B38D23A21FF1A1477E3", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tjcf9497fwmrnk22jfu5hsdq82qshga54ajvzy", "chain_id": "injective-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tjcf9497fwmrnk22jfu5hsdq82qshga54ajvzy", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "PYTH", + "name": "PYTH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/pyth.png", "decimals": 6, - "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", - "recommended_symbol": "WOSMO" + "description": "pyth-network", + "coingecko_id": "pyth-network", + "recommended_symbol": "PYTH" }, { - "denom": "ibc/DD9182E8E2B13C89D6B4707C7B43E8DB6193F9FF486AFA0E6CF86B427B0D231A", + "denom": "ibc/90C6F06139D663CFD7949223D257C5B5D241E72ED61EBD12FFDDA6F068715E47", "chain_id": "injective-1", - "origin_denom": "unois", - "origin_chain_id": "nois-1", - "trace": "transfer/channel-138", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "NOIS", - "name": "NOIS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", "decimals": 6, - "description": "Nois Staking Coin", - "recommended_symbol": "NOIS" + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "peggy0x514910771AF9Ca656af840dff83E8264EcF986CA", + "denom": "peggy0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca", "chain_id": "injective-1", - "origin_denom": "peggy0x514910771AF9Ca656af840dff83E8264EcF986CA", + "origin_denom": "peggy0xa8c8CfB141A3bB59FEA1E2ea6B79b5ECBCD7b6ca", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/link.png", + "is_svm": false, + "symbol": "NOIA", + "name": "NOIA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/noia.png", "decimals": 18, - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.peggy" + "coingecko_id": "noia-network", + "recommended_symbol": "NOIA.peggy" }, { - "denom": "peggy0x6B175474E89094C44Da98b954EedeAC495271d0F", + "denom": "ibc/9A115B56E769B92621FFF90567E2D60EFD146E86E867491DB69EEDA9ADC36204", "chain_id": "injective-1", - "origin_denom": "peggy0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "injective-1", - "trace": "", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dai.png", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.peggy" + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "decimals": 6, + "description": "Kujira Staking Coin", + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "peggy0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", + "denom": "peggy0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", "chain_id": "injective-1", - "origin_denom": "peggy0x6B3595068778DD592e39A122f4f5a5cF09C90fE2", + "origin_denom": "peggy0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SUSHI", - "name": "SUSHI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sushi.png", + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/shib.png", "decimals": 18, - "coingecko_id": "sushi", - "recommended_symbol": "SUSHI.peggy" + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.peggy" }, { - "denom": "peggy0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", + "denom": "peggy0x96F6eF951840721AdBF46Ac996b59E0235CB985C", "chain_id": "injective-1", - "origin_denom": "peggy0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c", + "origin_denom": "peggy0x96F6eF951840721AdBF46Ac996b59E0235CB985C", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ENJ", - "name": "ENJ", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/enj.png", + "is_svm": false, + "symbol": "USDY", + "name": "USDY", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdy.png", "decimals": 18, - "coingecko_id": "enjincoin", - "recommended_symbol": "ENJ.peggy" + "description": "Ondo US Dollar Yield", + "coingecko_id": "ondo-us-dollar-yield", + "recommended_symbol": "USDY.peggy" }, { - "denom": "peggy0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", + "denom": "peggy0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c", "chain_id": "injective-1", - "origin_denom": "peggy0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", + "origin_denom": "peggy0xdc9Ac3C20D1ed0B540dF9b1feDC10039Df13F99c", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ustc.png", + "is_svm": false, + "symbol": "UTK", + "name": "UTK", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/utk.png", "decimals": 18, - "coingecko_id": "terrausd", - "recommended_symbol": "USTC.peggy" + "coingecko_id": "utrust", + "recommended_symbol": "UTK.peggy" }, { - "denom": "factory/inj1xz4h76wctruu6l0hezq3dhtfkxzv56ztg4l29t/HANZO", + "denom": "ibc/9C2212CB87241A8D038222CF66BBCFABDD08330DFA0AC9B451135287DCBDC7A8", "chain_id": "injective-1", - "origin_denom": "factory/inj1xz4h76wctruu6l0hezq3dhtfkxzv56ztg4l29t/HANZO", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-145", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" + }, + { + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1mhmln627samtkuwe459ylq763r4n7n69gxxc9x", + "chain_id": "injective-1", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1mhmln627samtkuwe459ylq763r4n7n69gxxc9x", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HANZO", - "name": "Hattori Hanzo", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/hanzo.png", - "decimals": 6, - "recommended_symbol": "HANZO" + "is_svm": false, + "symbol": "ASTR", + "name": "Astar Network", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/astar.svg", + "decimals": 18, + "recommended_symbol": "ASTR" }, { - "denom": "factory/inj1y3g4wpgnc4s28gd9ure3vwm9cmvmdphml6mtul/ipdai", + "denom": "factory/inj1d0zfq42409a5mhdagjutl8u6u9rgcm4h8zfmfq/nbla", "chain_id": "injective-1", - "origin_denom": "factory/inj1y3g4wpgnc4s28gd9ure3vwm9cmvmdphml6mtul/ipdai", + "origin_denom": "factory/inj1d0zfq42409a5mhdagjutl8u6u9rgcm4h8zfmfq/nbla", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "IPDAI", - "name": "Injective Panda AI", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/IPANDAI.png", + "is_svm": false, + "symbol": "NBLA", + "name": "Nebula", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/nbla.PNG", "decimals": 6, - "recommended_symbol": "IPDAI" + "recommended_symbol": "NBLA" }, { - "denom": "factory/inj1y6zxg76ltrjdx7xppvtrdqlc5ujyhfra8aqr3f/CROCO", + "denom": "factory/inj1ktq0gf7altpsf0l2qzql4sfs0vc0ru75cnj3a6/moonify", "chain_id": "injective-1", - "origin_denom": "factory/inj1y6zxg76ltrjdx7xppvtrdqlc5ujyhfra8aqr3f/CROCO", + "origin_denom": "factory/inj1ktq0gf7altpsf0l2qzql4sfs0vc0ru75cnj3a6/moonify", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CROCO", - "name": "CROCO Token", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CRO.png", + "is_svm": false, + "symbol": "MOONIFY", + "name": "MOONIFY", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/moonify.png", "decimals": 6, - "recommended_symbol": "CROCO" + "recommended_symbol": "MOONIFY" }, { - "denom": "ibc/75F64E20A70C5059F8EA792F1C47260DC7C6CBAC69DBA60E151AD5416E93C34C", + "denom": "ibc/32F6EDA3E2B2A7F9C4A62F11935CF5D25948372A5A85281D7ABB9A2D0F0B7182", "chain_id": "injective-1", - "origin_denom": "staevmos", + "origin_denom": "stutia", "origin_chain_id": "stride-1", "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "decimals": 6, + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" }, { - "denom": "factory/inj1sjmplasxl9zgj6yh45j3ndskgdhcfcss9djkdn/INJER", + "denom": "factory/inj1d4ld9w7mf8wjyv5y7fnhpate07fguv3s3tmngm/karmainj", "chain_id": "injective-1", - "origin_denom": "factory/inj1sjmplasxl9zgj6yh45j3ndskgdhcfcss9djkdn/INJER", + "origin_denom": "factory/inj1d4ld9w7mf8wjyv5y7fnhpate07fguv3s3tmngm/karmainj", "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "INJER", - "name": "INJINEER", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/INJINEER.png", + "is_svm": false, + "symbol": "KARMA", + "name": "KARMA", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/karma.png", "decimals": 6, - "recommended_symbol": "INJER" + "recommended_symbol": "KARMA" }, { - "denom": "ibc/B8E30AECB0FB5BA1B02747BE003E55934A9E42488495412C7E9934FBEC06B201", + "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", "chain_id": "injective-1", - "origin_denom": "stk/uatom", - "origin_chain_id": "core-1", - "trace": "transfer/channel-82", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-88", "is_cw20": false, "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/BC3AD52E42C6E1D13D2BDCEB497CF5AB9FEE24D804F5563B9E7DCFB825246947", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj14cl67lprqkt3pncjav070gavaxslc0tzpc56f4", "chain_id": "injective-1", - "origin_denom": "peaka", - "origin_chain_id": "vota-ash", - "trace": "transfer/channel-182", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj14cl67lprqkt3pncjav070gavaxslc0tzpc56f4", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DORA", - "name": "DORA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", + "is_svm": false, + "symbol": "wKLAY", + "name": "Wrapped Klay (Wormhole)", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/wklay.png", "decimals": 18, - "recommended_symbol": "DORA" + "recommended_symbol": "wKLAY" }, { - "denom": "ibc/7AF90EDF6F5328C6C33B03DB7E33445708A46FF006932472D00D5076F5504B67", + "denom": "peggy0x111111111117dC0aa78b770fA6A738034120C302", "chain_id": "injective-1", - "origin_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", + "origin_denom": "peggy0x111111111117dC0aa78b770fA6A738034120C302", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MBRN", - "name": "MBRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", - "decimals": 6, - "coingecko_id": "membrane", - "recommended_symbol": "MBRN" + "is_svm": false, + "symbol": "1INCH", + "name": "1INCH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/1inch.png", + "decimals": 18, + "coingecko_id": "1inch", + "recommended_symbol": "1INCH.peggy" }, { - "denom": "ibc/265ABC4B9F767AF45CAC6FB76E930548D835EDA3E94BC56B70582A55A73D8C90", + "denom": "ibc/0DDC992F19041FC1D499CCA1486721479EBAA7270604E15EDDFABA89D1E772E5", "chain_id": "injective-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-84", - "is_cw20": false, - "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" - } - ] - }, - "jackal-1": { - "assets": [ - { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "chain_id": "jackal-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-151", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/FF1A8C50966D7CFA19D7D2E513E6938D77ED272B12BB8696B9953520826BD738", - "chain_id": "jackal-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-38", + "denom": "ibc/168C3904C45C6FE3539AE85A8892DF87371D00EA7942515AFC50AA43C4BB0A32", + "chain_id": "injective-1", + "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-102", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "ampWHALE", + "name": "ampWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "recommended_symbol": "ampWHALE" }, { - "denom": "ujkl", - "chain_id": "jackal-1", - "origin_denom": "ujkl", - "origin_chain_id": "jackal-1", + "denom": "factory/inj164jk46xjwsn6x4rzu6sfuvtlzy2nza0nxfj0nz/MAX", + "chain_id": "injective-1", + "origin_denom": "factory/inj164jk46xjwsn6x4rzu6sfuvtlzy2nza0nxfj0nz/MAX", + "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "JKL", - "name": "JKL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "is_svm": false, + "symbol": "MAX", + "name": "MAX", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/max.jpg", "decimals": 6, - "description": "The native staking and governance token of Jackal.", - "coingecko_id": "jackal-protocol", - "recommended_symbol": "JKL" + "recommended_symbol": "MAX" }, { - "denom": "ibc/BCEFD8175B8C47D712FB639034128CB43776364B79E3251F073CB3A2A32582A0", - "chain_id": "jackal-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-2", + "denom": "factory/inj1y3g4wpgnc4s28gd9ure3vwm9cmvmdphml6mtul/ipdai", + "chain_id": "injective-1", + "origin_denom": "factory/inj1y3g4wpgnc4s28gd9ure3vwm9cmvmdphml6mtul/ipdai", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "IPDAI", + "name": "Injective Panda AI", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/IPANDAI.png", "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "recommended_symbol": "IPDAI" }, { - "denom": "ibc/00230C58F1540708067850B3362C8A67A273FC52F0C7305B802D7255495C86FD", - "chain_id": "jackal-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-41", + "denom": "factory/inj1y6zxg76ltrjdx7xppvtrdqlc5ujyhfra8aqr3f/CROCO", + "chain_id": "injective-1", + "origin_denom": "factory/inj1y6zxg76ltrjdx7xppvtrdqlc5ujyhfra8aqr3f/CROCO", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" - } - ] - }, - "juno-1": { - "assets": [ + "is_svm": false, + "symbol": "CROCO", + "name": "CROCO Token", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CRO.png", + "decimals": 6, + "recommended_symbol": "CROCO" + }, { - "denom": "ibc/9B990F95D85E7CA8C46544975776CAA20A3DEE3507EEA829A4000D8D65617F6D", - "chain_id": "juno-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-70", + "denom": "factory/inj10edtfelcttj3s98f755ntfplt0da5xv4z8z0lf/dogwifshoes", + "chain_id": "injective-1", + "origin_denom": "factory/inj10edtfelcttj3s98f755ntfplt0da5xv4z8z0lf/dogwifshoes", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "is_svm": false, + "symbol": "WIFS", + "name": "Dog Wif Shoes", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/wifs.png", + "decimals": 6, + "recommended_symbol": "WIFS" }, { - "denom": "ibc/9BD7260831054F5756FD8737818BBF99713DE39F0E86B100A54A509D7B785F0B", - "chain_id": "juno-1", - "origin_denom": "cdai", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-5", + "denom": "factory/inj13vau2mgx6mg7ams9nngjhyng58tl9zyw0n8s93/BABYKIRA", + "chain_id": "injective-1", + "origin_denom": "factory/inj13vau2mgx6mg7ams9nngjhyng58tl9zyw0n8s93/BABYKIRA", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dai.png", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.sif" + "is_svm": false, + "symbol": "Babykira", + "name": "Babykira", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/babykira.png", + "decimals": 6, + "recommended_symbol": "Babykira" }, { - "denom": "ibc/DB6DBDC8D96401B46E67C334EE3BB099E5B6FE143AC12B260EFD73BA2BFC339D", - "chain_id": "juno-1", - "origin_denom": "uqsomm", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-272", + "denom": "factory/inj1vgrf5mcvvg9p5c6jajqefn840nq74wjzgkt30z/GROK", + "chain_id": "injective-1", + "origin_denom": "factory/inj1vgrf5mcvvg9p5c6jajqefn840nq74wjzgkt30z/GROK", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "qSOMM", - "name": "qSOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", + "is_svm": false, + "symbol": "GROK", + "name": "GROK", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/GROK.png", "decimals": 6, - "recommended_symbol": "qSOMM" + "recommended_symbol": "GROK" }, { - "denom": "ujuno", - "chain_id": "juno-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", + "denom": "factory/inj13yzzxz90naqer4utnp03zlj5rguhu7v0hd2jzl/SHIBINJ", + "chain_id": "injective-1", + "origin_denom": "factory/inj13yzzxz90naqer4utnp03zlj5rguhu7v0hd2jzl/SHIBINJ", + "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "SHIBINJ", + "name": "ShibInuINJ", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SHIBINJ.png", "decimals": 6, - "description": "The native token of JUNO Chain", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "recommended_symbol": "SHIBINJ" }, { - "denom": "ibc/30602D8AFA040F9FB3AC242F88EC93F5BD07FF79FC95265A6EE878ADD61F92E8", - "chain_id": "juno-1", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-31", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h", + "chain_id": "injective-1", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/polygon/asset/wmatic.png", + "decimals": 8, + "description": "Wrapped Matic", + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC" }, { - "denom": "ibc/5D681936B803C055E34687752EE1AA3117EACCA98260F98CC1706E040DCBAC4D", - "chain_id": "juno-1", - "origin_denom": "dot-planck", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh", + "chain_id": "injective-1", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1q6kpxy6ar5lkxqudjvryarrrttmakwsvzkvcyh", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DOT", - "name": "DOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "is_svm": false, + "symbol": "CHZ", + "name": "CHZ", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/chz.png", + "decimals": 8, + "description": "Chiliz", + "coingecko_id": "chiliz", + "recommended_symbol": "CHZ" }, { - "denom": "ibc/946AD96F278770521526D7283F58268DA2F6ACDDE40324A9D1C86811D78C86A0", - "chain_id": "juno-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-36", + "denom": "factory/inj188veuqed0dygkcmq5d24u3807n6csv4wdv28gh/wagmi", + "chain_id": "injective-1", + "origin_denom": "factory/inj188veuqed0dygkcmq5d24u3807n6csv4wdv28gh/wagmi", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", - "decimals": 6, - "description": "Comdex Staking Coin", - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "is_svm": false, + "symbol": "WAGMI", + "name": "WAGMI Coin", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/WAGMI.png", + "decimals": 9, + "recommended_symbol": "WAGMI" }, { - "denom": "ibc/D836B191CDAE8EDACDEBE7B64B504C5E06CC17C6A072DAF278F9A96DF66F6241", - "chain_id": "juno-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-28", + "denom": "factory/inj1898t0vtmul3tcn3t0v8qe3pat47ca937jkpezv/karate", + "chain_id": "injective-1", + "origin_denom": "factory/inj1898t0vtmul3tcn3t0v8qe3pat47ca937jkpezv/karate", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "is_svm": false, + "symbol": "KARATE", + "name": "Doge Wif Karate", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/karate.png", "decimals": 6, - "description": "Chihuahua Staking Coin", - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "recommended_symbol": "KARATE" }, { - "denom": "ibc/5DC7EFFDC879FEA9298FC4C953B12171EB93708EA9239FC58FB8020C9937A2ED", - "chain_id": "juno-1", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-31", + "denom": "factory/inj1ga982yy0wumrlt4nnj79wcgmw7mzvw6jcyecl0/NPEPE", + "chain_id": "injective-1", + "origin_denom": "factory/inj1ga982yy0wumrlt4nnj79wcgmw7mzvw6jcyecl0/NPEPE", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "NPEPE", + "name": "NinjaPepe", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/NPEPE.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "recommended_symbol": "NPEPE" }, { - "denom": "ibc/5D4A40F8030304C8CDEB0E8FACF4328373D371F9B7D5BE7A41489467C7C68668", - "chain_id": "juno-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-208", + "denom": "factory/inj1h3y27yhly6a87d95937jztc3tupl3nt8fg3lcp/BABYNINJA", + "chain_id": "injective-1", + "origin_denom": "factory/inj1h3y27yhly6a87d95937jztc3tupl3nt8fg3lcp/BABYNINJA", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "BABYNINJA", + "name": "BABYNINJA", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/BABYNINJA.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "recommended_symbol": "BABYNINJA" }, { - "denom": "ibc/C19D8F369BE4279B727B58D225DB6D4916625BDE024D415B79288AC6705E0BB0", - "chain_id": "juno-1", - "origin_denom": "staevmos", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-139", + "denom": "factory/inj1sg3yjgjlwhtrepeuusj4jwv209rh6cmk882cw3/LIOR", + "chain_id": "injective-1", + "origin_denom": "factory/inj1sg3yjgjlwhtrepeuusj4jwv209rh6cmk882cw3/LIOR", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "is_svm": false, + "symbol": "LIOR", + "name": "LIOR", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/lior.png", + "decimals": 6, + "recommended_symbol": "LIOR" }, { - "denom": "ibc/2F7C2A3D5D42553ED46F57D8B0DE3733B1B5FF571E2C6A051D34525904B4C0AF", - "chain_id": "juno-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-210", + "denom": "factory/inj1spdy83ds5ezq9rvtg0ndy8480ad5rlczcpvtu2/YUKI", + "chain_id": "injective-1", + "origin_denom": "factory/inj1spdy83ds5ezq9rvtg0ndy8480ad5rlczcpvtu2/YUKI", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ampWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "is_svm": false, + "symbol": "YUKI", + "name": "Yuki Dog", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/yuki.png", "decimals": 6, - "recommended_symbol": "ampWHALE" + "recommended_symbol": "YUKI" }, { - "denom": "ibc/5E025576619CF9BEB0327C4E074EE7E52E1F5587AC210D423E4A9343F81B44CA", - "chain_id": "juno-1", - "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-87", + "denom": "factory/inj1t02au5gsk40ev9jaq0ggcyry9deuvvza6s4wav/Shinobi", + "chain_id": "injective-1", + "origin_denom": "factory/inj1t02au5gsk40ev9jaq0ggcyry9deuvvza6s4wav/Shinobi", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampKUJI", - "name": "ampKUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "is_svm": false, + "symbol": "NOBI", + "name": "Shinobi Inu", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SHINOBIINU.png", "decimals": 6, - "recommended_symbol": "ampKUJI" + "recommended_symbol": "NOBI" }, { - "denom": "ibc/F57A2240E9A45C03DF0F9230B6D4427A644B4B2424356ECF98BEF72D49C21FF1", - "chain_id": "juno-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-87", + "denom": "factory/inj1uvfpvnmuqhx8jwg4786y59tkagmph827h38mst/WIZZ", + "chain_id": "injective-1", + "origin_denom": "factory/inj1uvfpvnmuqhx8jwg4786y59tkagmph827h38mst/WIZZ", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "WIZZ", + "name": "WIZZ", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/WIZZ.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "recommended_symbol": "WIZZ" }, { - "denom": "ibc/95A45A81521EAFDBEDAEEB6DA975C02E55B414C95AD3CE50709272366A90CA17", - "chain_id": "juno-1", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "denom": "factory/inj17g4j3geupy762u0wrewqwprvtzar7k5et2zqsh/incel", + "chain_id": "injective-1", + "origin_denom": "factory/inj17g4j3geupy762u0wrewqwprvtzar7k5et2zqsh/incel", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "axlWETH", - "name": "axlWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.axl" + "is_svm": false, + "symbol": "INCEL", + "name": "InjectiveCelestiaNoFapLadyBoy420Inu", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/incel.png", + "decimals": 6, + "recommended_symbol": "INCEL" }, { - "denom": "ibc/171E8F6687D290D378678310F9F15D367DCD245BF06184532B703A92054A8A4F", - "chain_id": "juno-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "denom": "factory/inj18nm3q7r2rckklp7h8hgfzu2dlc20sftvd2893w/nUSD", + "chain_id": "injective-1", + "origin_denom": "factory/inj18nm3q7r2rckklp7h8hgfzu2dlc20sftvd2893w/nUSD", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "is_svm": false, + "symbol": "nUSD", + "name": "nUSD", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/nUSD.png", "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" - }, - { - "denom": "ibc/281FEE887CDF71EB9C1FEFC554822DCB06BE4E8A8BFF944ED64E3D03437E9384", - "chain_id": "juno-1", - "origin_denom": "umars", - "origin_chain_id": "mars-1", - "trace": "transfer/channel-209", - "is_cw20": false, - "is_evm": false, - "symbol": "MARS", - "name": "MARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", - "decimals": 6, - "description": "Mars Staking Coin", - "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", - "recommended_symbol": "MARS" + "recommended_symbol": "nUSD" }, { - "denom": "ibc/2D8FA8721F44AE790D2A4D07775C16DD275B6FD83DA6FF29E76FED5BB6A92764", - "chain_id": "juno-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-36", + "denom": "factory/inj1s9pckznjz4hmgtxu5t9gerxtalch7wtle4y3a6/MIB", + "chain_id": "injective-1", + "origin_denom": "factory/inj1s9pckznjz4hmgtxu5t9gerxtalch7wtle4y3a6/MIB", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "MIB", + "name": "MIB", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/MIB.png", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "recommended_symbol": "MIB" }, { - "denom": "ibc/5EF597EA4E863132BFD3E051AC6BAA0175F00913D3256A41F11DC425C39527D6", - "chain_id": "juno-1", - "origin_denom": "wbtc-satoshi", + "denom": "ibc/8FF72FB47F07B4AFA8649500A168683BEFCB9EE164BD331FA597D26224D51055", + "chain_id": "injective-1", + "origin_denom": "wglmr-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "WGLMR", + "name": "WGLMR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "decimals": 18, + "coingecko_id": "wrapped-moonbeam", + "recommended_symbol": "WGLMR.axl" }, { - "denom": "ibc/537D8D8BF13799FBB38CACDF8090063E3C79CDCC6A70AE493F12A3F9E44DD074", - "chain_id": "juno-1", + "denom": "ibc/9C6E75FE14DF8959B7CC6E77398DF825B9815C753BB49D2860E303EA2FD803DD", + "chain_id": "injective-1", "origin_denom": "aarch", "origin_chain_id": "archway-1", - "trace": "transfer/channel-290", + "trace": "transfer/channel-211", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARCH", "name": "ARCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -16037,719 +17931,865 @@ "recommended_symbol": "ARCH" }, { - "denom": "ibc/680F35B5D3DC99BA4A6BD8A1106847DC4CF42D2A20B42AEB1931CC8F0918B013", - "chain_id": "juno-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-139", + "denom": "ibc/A07BB73539F556DA5238F1B7E9471B34DD19897B1EE7050B959989F13EFE73B3", + "chain_id": "injective-1", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" }, { - "denom": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "chain_id": "juno-1", - "origin_denom": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", - "origin_chain_id": "juno-1", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tn457ed2gg5vj2cur5khjjw63w73y3xhyhtaay", + "chain_id": "injective-1", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tn457ed2gg5vj2cur5khjjw63w73y3xhyhtaay", + "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BANANA", - "name": "BANANA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png", - "decimals": 6, - "recommended_symbol": "BANANA" + "is_svm": false, + "symbol": "VATRENI", + "name": "Vatreni Token", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/vatreni.png", + "decimals": 8, + "recommended_symbol": "VATRENI" }, { - "denom": "ibc/266D1A31785C3E815879EC32AB3B812F0CDFBF3514C5058275C626C9A18AF1FB", - "chain_id": "juno-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-139", + "denom": "ibc/A4495880A4A2E3C242F63C710F447BAE072E1A4C2A22F1851E0BB7ABDD26B43D", + "chain_id": "injective-1", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" }, { - "denom": "ibc/444DA2B73B4F7B6E36A0FE6BF599BBA25098E9437CF634D3DC93BC8FA2C4A0C6", - "chain_id": "juno-1", - "origin_denom": "uqck", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-272", + "denom": "ibc/A8F39212ED30B6A8C2AC736665835720D3D7BE4A1D18D68566525EC25ECF1C9B", + "chain_id": "injective-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, - "symbol": "QCK", - "name": "QCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "coingecko_id": "quicksilver", - "recommended_symbol": "QCK" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/834E91B7753EC3A7E2D90B9C06E482B72B5B39B621C25DA2043445D80B663931", - "chain_id": "juno-1", - "origin_denom": "uqregen", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-272", + "denom": "ibc/AA206C13A2AD46401BD1E8E65F96EC9BF86051A8156A92DD08BEF70381D39CE2", + "chain_id": "injective-1", + "origin_denom": "mO9W", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-214", "is_cw20": false, "is_evm": false, - "symbol": "qREGEN", - "name": "qREGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "is_svm": false, + "symbol": "O9W", + "name": "O9W", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", "decimals": 6, - "recommended_symbol": "qREGEN" + "recommended_symbol": "O9W" }, { - "denom": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", - "chain_id": "juno-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "denom": "factory/inj1nf43yjjx7sjc3eulffgfyxqhcraywwgrnqmqjc/INJDOGE", + "chain_id": "injective-1", + "origin_denom": "factory/inj1nf43yjjx7sjc3eulffgfyxqhcraywwgrnqmqjc/INJDOGE", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "INJDoge", + "name": "Inject Doge", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injectdoge.png", "decimals": 6, - "recommended_symbol": "WOSMO" + "recommended_symbol": "INJDoge" }, { - "denom": "ibc/DD057BB58DCBEE8F7C0CDF0B9AE4A2656B00E3C9745341180400B60833EEC9FD", - "chain_id": "juno-1", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-36", + "denom": "factory/inj1nmc5namhwszx0yartvjm6evsxrj0ctq2qa30l7/NBOY", + "chain_id": "injective-1", + "origin_denom": "factory/inj1nmc5namhwszx0yartvjm6evsxrj0ctq2qa30l7/NBOY", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "NBOY", + "name": "NINJABOY", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/NBOY.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "recommended_symbol": "NBOY" }, { - "denom": "ibc/AEC6690629B7EAF808D1A0B3EEF7C9B9229315F175FE8900AD5C4F7B6FD62E29", - "chain_id": "juno-1", - "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-153", + "denom": "factory/inj1j7zt6g03vpmg9p7g7qngvylfxqeuds73utsjnk/INJECT", + "chain_id": "injective-1", + "origin_denom": "factory/inj1j7zt6g03vpmg9p7g7qngvylfxqeuds73utsjnk/INJECT", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CUB", - "name": "CUB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "is_svm": false, + "symbol": "INJECT", + "name": "Injectools", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/INJECT.png", "decimals": 6, - "recommended_symbol": "CUB" + "recommended_symbol": "INJECT" }, { - "denom": "ibc/B22D08F0E3D08968FB3CBEE2C1E993581A99AAAA60D0490C1AF7DCE567D5FDDA", - "chain_id": "juno-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "denom": "factory/inj1mly2ykhf6f9tdj58pvndjf4q8dzdl4myjqm9t6/ALIEN", + "chain_id": "injective-1", + "origin_denom": "factory/inj1mly2ykhf6f9tdj58pvndjf4q8dzdl4myjqm9t6/ALIEN", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "ALIEN", + "name": "ALIEN", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/alien.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "recommended_symbol": "ALIEN" }, { - "denom": "ibc/B55B08EF3667B0C6F029C2CC9CAA6B00788CF639EBB84B34818C85CBABA33ABD", - "chain_id": "juno-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-48", + "denom": "factory/inj1wu5464syj9xmud55u99hfwhyjd5u8fxfmurs8j/shiro", + "chain_id": "injective-1", + "origin_denom": "factory/inj1wu5464syj9xmud55u99hfwhyjd5u8fxfmurs8j/shiro", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "SHIRO", + "name": "Shiro", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/ShiroLogo.png", "decimals": 6, - "description": "Secret Staking Coin", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "recommended_symbol": "SHIRO" }, { - "denom": "ibc/BA4A1ED1B96AEEC6A583509AF1B076BB76958621A628D31D174087A411DFBE89", - "chain_id": "juno-1", - "origin_denom": "cusdc", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-5", + "denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", + "chain_id": "injective-1", + "origin_denom": "factory/inj1rmjzj9fn47kdmfk4f3z39qr6czexxe0yjyc546/WGMI", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "WGMI", + "name": "WGMI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/wgmi.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.sif" + "description": "The $WGMI Token - We Gonna Make It. Are you ready?", + "recommended_symbol": "WGMI" }, { - "denom": "ibc/D8D6271EC54E3A96C6B9FB6C2BA9E99692B07CEB42754638029657072EA48337", - "chain_id": "juno-1", - "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-210", + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "chain_id": "injective-1", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", "is_cw20": false, "is_evm": false, - "symbol": "RAC", - "name": "RAC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "recommended_symbol": "RAC" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/EAC38D55372F38F1AFD68DF7FE9EF762DCF69F26520643CF3F9D292A738D8034", - "chain_id": "juno-1", - "origin_denom": "uusdc", + "denom": "ibc/4C8A332AE4FDE42709649B5F9A2A336192158C4465DF74B4513F5AD0C583EA6F", + "chain_id": "injective-1", + "origin_denom": "wbtc-satoshi", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.axl" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/EBE900AED8FF6BB2E186B17B066138F647CDD9647EF4FBE2DE6C8D4013A2C990", - "chain_id": "juno-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "denom": "ibc/4DEFEB42BAAB2788723759D95B7550BCE460855563ED977036248F5B94C842FC", + "chain_id": "injective-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/4gn1J9pchUGh63ez1VwiuTmU4nfJ8Rr8o5HgBC5TMdMk", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/polygon/asset/wmatic.png", + "decimals": 8, + "description": "Wrapped Matic", + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.wh" }, { - "denom": "ibc/F4F5F27F40F927F8A4FF9F5601F80AD5D77B366570E7C59856B8CE4135AC1F59", - "chain_id": "juno-1", - "origin_denom": "stujuno", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-139", + "denom": "ibc/565FE65B82C091F8BAD1379FA1B4560C036C07913355ED4BD8D156DA63F43712", + "chain_id": "injective-1", + "origin_denom": "cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "is_svm": false, + "symbol": "DROGO", + "name": "DROGO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/drogo.png", "decimals": 6, - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" + "recommended_symbol": "DROGO" }, { - "denom": "ibc/CC48AE4C0DD7BDEBFE6F5E388A0106408A26938A85FFD166A433DA9221D825DB", - "chain_id": "juno-1", - "origin_denom": "uqstars", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-272", + "denom": "ibc/4971C5E4786D5995EC7EF894FCFA9CF2E127E95D5D53A982F6A062F3F410EDB8", + "chain_id": "injective-1", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "qSTARS", - "name": "qSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", + "is_svm": false, + "symbol": "LVN", + "name": "Levana", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "recommended_symbol": "qSTARS" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/5F421DDB9D7F74541986E200A681368CF0766EF0CCFFAACA5E8959C09325E304", - "chain_id": "juno-1", - "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-31", + "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "chain_id": "injective-1", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", "is_cw20": false, "is_evm": false, - "symbol": "PAGE", - "name": "PAGE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", - "decimals": 8, - "coingecko_id": "page", - "recommended_symbol": "PAGE.grv" + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "decimals": 6, + "description": "Kava Staking Coin", + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/5FBE215F19468B01245B0CDECF453E7615305FAE8C7556C2982C75CF1A6E4BC4", - "chain_id": "juno-1", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "transfer/channel-78", + "denom": "factory/inj13ze65lwstqrz4qy6vvxx3lglnkkuan436aw45e/HACHI", + "chain_id": "injective-1", + "origin_denom": "factory/inj13ze65lwstqrz4qy6vvxx3lglnkkuan436aw45e/HACHI", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", - "decimals": 6, - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "is_svm": false, + "symbol": "HACHI", + "name": "Hachi", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/HACHI.jpg", + "decimals": 9, + "recommended_symbol": "HACHI" }, { - "denom": "ibc/B7EA961307B6915512F1204B78B6180851DD7474469EB21F16D30DF74DA22903", - "chain_id": "juno-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-81", + "denom": "factory/inj1fpl63h7at2epr55yn5svmqkq4fkye32vmxq8ry/MILK", + "chain_id": "injective-1", + "origin_denom": "factory/inj1fpl63h7at2epr55yn5svmqkq4fkye32vmxq8ry/MILK", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "MILK", + "name": "Got Milk?", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/milk.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "recommended_symbol": "MILK" }, { - "denom": "ibc/1BD0E01F75B69E5F7F8C6E26AD8FC36087EDCFF06B95C48B0C437BC665EB922B", - "chain_id": "juno-1", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-31", + "denom": "ibc/8CF0E4184CA3105798EDB18CAA3981ADB16A9951FE9B05C6D830C746202747E1", + "chain_id": "injective-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/4jq5m8FR6W6nJygDj8NMMbB48mqX4LQHc3j5uEb9syDe", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-183", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", - "decimals": 6, - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/arbitrum/asset/arb.png", + "decimals": 8, + "description": "Arbitrum", + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB.wh" }, { - "denom": "ibc/C3A8C0BA97F3CD808F828E422CCBB39A5206644DF0A65FA79160E4413684EE14", - "chain_id": "juno-1", - "origin_denom": "wmatic-wei", + "denom": "ibc/265ABC4B9F767AF45CAC6FB76E930548D835EDA3E94BC56B70582A55A73D8C90", + "chain_id": "injective-1", + "origin_denom": "dai-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "coingecko_id": "dai", + "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/DFC6F33796D5D0075C5FB54A4D7B8E76915ACF434CB1EE2A1BA0BB8334E17C3A", - "chain_id": "juno-1", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-29", + "denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "chain_id": "injective-1", + "origin_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "NINJA", + "name": "NINJA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", "decimals": 6, - "description": "Akash Staking Coin", - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", + "coingecko_id": "dog-wif-nuchucks", + "recommended_symbol": "NINJA" }, { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", - "chain_id": "juno-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "denom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", + "chain_id": "injective-1", + "origin_denom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "KIRA", + "name": "KIRA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/kira.png", "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "description": "KIRA", + "coingecko_id": "kira-the-injective-cat", + "recommended_symbol": "KIRA" }, { - "denom": "ibc/7E4A6EEFA0425CF99DE169A586D9BADF39C40153194CD6784BF8C9F6123BF5D0", - "chain_id": "juno-1", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-139", + "denom": "factory/inj169ed97mcnf8ay6rgvskn95n6tyt46uwvy5qgs0/aoi", + "chain_id": "injective-1", + "origin_denom": "factory/inj169ed97mcnf8ay6rgvskn95n6tyt46uwvy5qgs0/aoi", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "decimals": 18, - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "is_svm": false, + "symbol": "AOI", + "name": "AOI", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/aoi.webp", + "decimals": 6, + "recommended_symbol": "AOI" }, { - "denom": "ibc/8CBAE8833FA65F04A64B4179F9BB8DCD9B7DEA9E6C66E0774252D6A1D84256AC", - "chain_id": "juno-1", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-139", + "denom": "factory/inj18lh8zx4hx0pyksyu74srktv4vgxskkkafknggl/LAMA", + "chain_id": "injective-1", + "origin_denom": "factory/inj18lh8zx4hx0pyksyu74srktv4vgxskkkafknggl/LAMA", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "LAMA", + "name": "LAMA", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/lama_logo.png", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "recommended_symbol": "LAMA" }, { - "denom": "ibc/9DCFA4FB796C9C996E83301E1DEB4A11EC05147F9E94D1FB61C99A361CC95B5E", - "chain_id": "juno-1", - "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-153", + "denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "chain_id": "injective-1", + "origin_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ROAR", - "name": "ROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "is_svm": false, + "symbol": "HAVA", + "name": "HAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", "decimals": 6, - "coingecko_id": "lion-dao", - "recommended_symbol": "ROAR" + "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters.", + "coingecko_id": "hava-coin", + "recommended_symbol": "HAVA" }, { - "denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", - "chain_id": "juno-1", - "origin_denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", - "origin_chain_id": "juno-1", + "denom": "factory/inj1qczkutnsy3nmt909xtyjy4rsrkl2q4dm6aq960/coping", + "chain_id": "injective-1", + "origin_denom": "factory/inj1qczkutnsy3nmt909xtyjy4rsrkl2q4dm6aq960/coping", + "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DGL", - "name": "DGL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", + "is_svm": false, + "symbol": "CPINJ", + "name": "CopingInj", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CopingInj.png", "decimals": 6, - "recommended_symbol": "DGL" + "recommended_symbol": "CPINJ" }, { - "denom": "ibc/92E4AB82E3B2AF2D5181AC69C74F9F6D890442C7B7B02CC8634B9D3ED7CF936D", - "chain_id": "juno-1", - "origin_denom": "rowan", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-5", + "denom": "factory/inj172ccd0gddgz203e4pf86ype7zjx573tn8g0df9/GINGER", + "chain_id": "injective-1", + "origin_denom": "factory/inj172ccd0gddgz203e4pf86ype7zjx573tn8g0df9/GINGER", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ROWAN", - "name": "ROWAN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", - "decimals": 18, - "coingecko_id": "sifchain", - "recommended_symbol": "ROWAN" + "is_svm": false, + "symbol": "GINGER", + "name": "GINGER", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/ginger.png", + "decimals": 6, + "description": "GINGER", + "coingecko_id": "ginger", + "recommended_symbol": "GINGER" }, { - "denom": "ibc/935315FB6394554CEB9AA671A4E79C49DC8C6207C3AEE283C9241A2C89CF9853", - "chain_id": "juno-1", - "origin_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-210", + "denom": "ibc/C20C0A822BD22B2CEF0D067400FCCFB6FAEEE9E91D360B4E0725BD522302D565", + "chain_id": "injective-1", + "origin_denom": "orai", + "origin_chain_id": "Oraichain", + "trace": "transfer/channel-147", "is_cw20": false, "is_evm": false, - "symbol": "FABLE", - "name": "FABLE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg", + "is_svm": false, + "symbol": "ORAI", + "name": "ORAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", "decimals": 6, - "recommended_symbol": "FABLE" + "coingecko_id": "oraichain-token", + "recommended_symbol": "ORAI" }, { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_id": "juno-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", + "denom": "ibc/C2A70D6717D595F388B115200E789DC6E7EE409167B918B5F4E73838B8451A71", + "chain_id": "injective-1", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/0A3FD262BFF3F7CBDE8DD8F0B45DF6D28E339ACBBC92D37A3726534C79C7E016", - "chain_id": "juno-1", - "origin_denom": "stustars", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-139", + "denom": "ibc/7AF90EDF6F5328C6C33B03DB7E33445708A46FF006932472D00D5076F5504B67", + "chain_id": "injective-1", + "origin_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "is_svm": false, + "symbol": "MBRN", + "name": "MBRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "coingecko_id": "membrane", + "recommended_symbol": "MBRN" }, { - "denom": "ibc/738D8F365F1CA9CA6B5851E77EEB878FC6FCC784EE687A10A933F0D1FAC960C0", - "chain_id": "juno-1", - "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-153", + "denom": "ibc/B8E30AECB0FB5BA1B02747BE003E55934A9E42488495412C7E9934FBEC06B201", + "chain_id": "injective-1", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-82", "is_cw20": false, "is_evm": false, - "symbol": "BLUE", - "name": "BLUE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", "decimals": 6, - "recommended_symbol": "BLUE" + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" }, { - "denom": "ibc/7455B3F2F2737906BACF4AE980069A4CAB7C7F9FDAABAEFBA439DF037AEC5898", - "chain_id": "juno-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-33", + "denom": "factory/inj13jjdsa953w03dvecsr43dj5r6a2vzt7n0spncv/brett", + "chain_id": "injective-1", + "origin_denom": "factory/inj13jjdsa953w03dvecsr43dj5r6a2vzt7n0spncv/brett", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "BRETT", + "name": "BluePepe", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/Brett.png", "decimals": 6, - "description": "Persistence Staking Coin", - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "recommended_symbol": "BRETT" }, { - "denom": "ibc/776CD3A2A02DE41B2A5D6DEF2D89851B69A458D1937C7A0F6F8A8326FFF5F72B", - "chain_id": "juno-1", - "origin_denom": "busd.1.6.754a80", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-92", + "denom": "factory/inj1cxcjn04l2vxg4zwrlhpghh32fdel856xn3a3rr/BONK", + "chain_id": "injective-1", + "origin_denom": "factory/inj1cxcjn04l2vxg4zwrlhpghh32fdel856xn3a3rr/BONK", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "recommended_symbol": "BUSD.carbon" + "is_svm": false, + "symbol": "BONK", + "name": "Inj Bonk", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injbonk.png", + "decimals": 6, + "recommended_symbol": "BONK" }, { - "denom": "ibc/7A05B01003796639FE6B17E7192BE69618E580DA9A0FC781AAD9754B4B6B647F", - "chain_id": "juno-1", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-31", + "denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "chain_id": "injective-1", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.grv" + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/arbitrum/asset/arb.png", + "decimals": 8, + "description": "Arbitrum", + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB" }, { - "denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", - "chain_id": "juno-1", - "origin_denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", - "origin_chain_id": "juno-1", + "denom": "factory/inj1td7t8spd4k6uev6uunu40qvrrcwhr756d5qw59/ipepe", + "chain_id": "injective-1", + "origin_denom": "factory/inj1td7t8spd4k6uev6uunu40qvrrcwhr756d5qw59/ipepe", + "origin_chain_id": "injective-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NEXX", - "name": "NEXX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png", + "is_svm": false, + "symbol": "IPEPE", + "name": "Injective Pepe", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injpepe.png", "decimals": 6, - "recommended_symbol": "NEXX" + "recommended_symbol": "IPEPE" }, { - "denom": "ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C", - "chain_id": "juno-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-210", + "denom": "factory/inj1any4rpwq7r850u6feajg5payvhwpunu9cxqevc/DOJO", + "chain_id": "injective-1", + "origin_denom": "factory/inj1any4rpwq7r850u6feajg5payvhwpunu9cxqevc/DOJO", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "DOJO", + "name": "Dojo Bot", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/dojo.png", "decimals": 6, - "description": "WHALE Staking Coin", - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "recommended_symbol": "DOJO" }, { - "denom": "ibc/513DD9F90791156E2DCD66C5CA001DA6EEC9EF2DFAFCAA1BBA4993AE8CEC33EC", - "chain_id": "juno-1", - "origin_denom": "cusdt", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-5", + "denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "chain_id": "injective-1", + "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "AUTISM", + "name": "AUTISM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.sif" + "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", + "coingecko_id": "autism", + "recommended_symbol": "AUTISM" }, { - "denom": "ibc/735AFF12D7AF5EEC8F4339448BBF001547AEA05CCA6F1CAA60C139AE87828EB1", - "chain_id": "juno-1", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "denom": "factory/inj10zdjt8ylfln5xr3a2ruf9nwn6d5q2d2r3v6mh8/galaxy", + "chain_id": "injective-1", + "origin_denom": "factory/inj10zdjt8ylfln5xr3a2ruf9nwn6d5q2d2r3v6mh8/galaxy", + "origin_chain_id": "injective-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "is_svm": false, + "symbol": "GALAXY", + "name": "GALAXY", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/galaxy.webp", + "decimals": 6, + "recommended_symbol": "GALAXY" + }, + { + "denom": "factory/inj127l5a2wmkyvucxdlupqyac3y0v6wqfhq03ka64/qunt", + "chain_id": "injective-1", + "origin_denom": "factory/inj127l5a2wmkyvucxdlupqyac3y0v6wqfhq03ka64/qunt", + "origin_chain_id": "injective-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "QUNT", + "name": "QUNT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/qunt.png", + "decimals": 6, + "description": "QUNT", + "recommended_symbol": "QUNT" + }, + { + "denom": "ibc/3D99439444ACDEE71DBC4A774E49DB74B58846CCE31B9A868A7A61E4C14D321E", + "chain_id": "injective-1", + "origin_denom": "cw20:terra19p20mfnvwh9yvyr7aus3a6z6g6uk28fv4jhx9kmnc2m7krg27q2qkfenjw", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-118", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ORNE", + "name": "Orne", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/orne.png", + "decimals": 6, + "coingecko_id": "orne", + "recommended_symbol": "ORNE" + }, + { + "denom": "ibc/6ED95AEFA5D9A6F9EF9CDD05FED7D7C9D7F42D9892E7236EB9B251CE9E999701", + "chain_id": "injective-1", + "origin_denom": "loki", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-214", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ODIN", + "name": "ODIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "decimals": 6, + "coingecko_id": "odin-protocol", + "recommended_symbol": "ODIN" + } + ] + }, + "jackal-1": { + "assets": [ + { + "denom": "ibc/00230C58F1540708067850B3362C8A67A273FC52F0C7305B802D7255495C86FD", + "chain_id": "jackal-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-41", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/F6B367385300865F654E110976B838502504231705BAC0849B0651C226385885", - "chain_id": "juno-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-20", + "denom": "ibc/BCEFD8175B8C47D712FB639034128CB43776364B79E3251F073CB3A2A32582A0", + "chain_id": "jackal-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "description": "Stargaze Staking Coin", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/01BAE2E69D02670B22758FBA74E4114B6E88FC1878936C919DA345E6C6C92ABF", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "chain_id": "jackal-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/FF1A8C50966D7CFA19D7D2E513E6938D77ED272B12BB8696B9953520826BD738", + "chain_id": "jackal-1", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-38", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "decimals": 6, + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" + }, + { + "denom": "ujkl", + "chain_id": "jackal-1", + "origin_denom": "ujkl", + "origin_chain_id": "jackal-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JKL", + "name": "JKL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "decimals": 6, + "description": "The native staking and governance token of Jackal.", + "coingecko_id": "jackal-protocol", + "recommended_symbol": "JKL" + } + ] + }, + "juno-1": { + "assets": [ + { + "denom": "ibc/0A3FD262BFF3F7CBDE8DD8F0B45DF6D28E339ACBBC92D37A3726534C79C7E016", "chain_id": "juno-1", - "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-210", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-139", "is_cw20": false, "is_evm": false, - "symbol": "bWHALE", - "name": "bWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", "decimals": 6, - "recommended_symbol": "bWHALE" + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" }, { - "denom": "ibc/02B88E41C96FCADA33F15642CEE961EE17A63866EDCA4098EDDB6F9C6671EB92", + "denom": "ibc/735AFF12D7AF5EEC8F4339448BBF001547AEA05CCA6F1CAA60C139AE87828EB1", "chain_id": "juno-1", - "origin_denom": "wavax-wei", + "origin_denom": "wbnb-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "ibc/0409596DFE559E1B05D821CA3A5F8E290A7C2C3408B4872595CA0E22F13A09FE", + "denom": "ibc/02B88E41C96FCADA33F15642CEE961EE17A63866EDCA4098EDDB6F9C6671EB92", "chain_id": "juno-1", - "origin_denom": "link-wei", + "origin_denom": "wavax-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.axl" + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "ibc/1D9E14A1F00613ED39E4B8A8763A20C9BE5B5EA0198F2FE47EAE43CD91A0137B", + "denom": "ibc/AEC6690629B7EAF808D1A0B3EEF7C9B9229315F175FE8900AD5C4F7B6FD62E29", "chain_id": "juno-1", - "origin_denom": "unois", - "origin_chain_id": "nois-1", - "trace": "transfer/channel-225", + "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-153", "is_cw20": false, "is_evm": false, - "symbol": "NOIS", - "name": "NOIS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "is_svm": false, + "symbol": "CUB", + "name": "CUB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", "decimals": 6, - "description": "Nois Staking Coin", - "recommended_symbol": "NOIS" + "recommended_symbol": "CUB" }, { - "denom": "ibc/4786BEBBFDD989C467C4552AD73065D8B2578230B8428B3B9275D540EB04C851", + "denom": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", "chain_id": "juno-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "recommended_symbol": "WOSMO" }, { - "denom": "ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF", + "denom": "ibc/C09D990E59E6B16946BE23DF3B869D2145F84BD47FCF0ACA21247E2849574D28", "chain_id": "juno-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-224", + "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-153", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "ASTRO.cw20", + "name": "ASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "recommended_symbol": "ASTRO.cw20" }, { - "denom": "ibc/B8EE79E4CABC454512974F71D20725BCEEDA42FB2251729EE30E528132152508", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "chain_id": "juno-1", - "origin_denom": "ubcre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-81", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "bCRE", - "name": "bCRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "coingecko_id": "liquid-staking-crescent", - "recommended_symbol": "bCRE" - }, - { - "denom": "ibc/BCA8E085B8D4D9D89D5316165E51545B826C5E034EACD6C00A7464C58F318379", - "chain_id": "juno-1", - "origin_denom": "wftm-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", - "is_cw20": false, - "is_evm": false, - "symbol": "WFTM", - "name": "WFTM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", - "decimals": 18, - "coingecko_id": "wrapped-fantom", - "recommended_symbol": "WFTM.axl" + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", @@ -16759,6 +18799,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -16768,224 +18809,219 @@ "recommended_symbol": "OSMO" }, { - "denom": "ibc/ED5C62BE7D20C4B53779300805744223DDBFFF538C2A60B106AF95D7BE1AEE1F", + "denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", "chain_id": "juno-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-280", + "origin_denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", + "origin_chain_id": "juno-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "DGL", + "name": "DGL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", + "decimals": 6, + "recommended_symbol": "DGL" }, { - "denom": "ibc/7F7D3698E2E3484D576001608BB84D13F5C8B02B97359716ECC60A29A7523BF3", + "denom": "ibc/513DD9F90791156E2DCD66C5CA001DA6EEC9EF2DFAFCAA1BBA4993AE8CEC33EC", "chain_id": "juno-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-87", + "origin_denom": "cusdt", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "tether", + "recommended_symbol": "USDT.sif" }, { - "denom": "ibc/85577FFAB759F224B4A61E67E31EBD1DE2FE4266CA5635AFB8AB4F58C75F7F20", + "denom": "ibc/266D1A31785C3E815879EC32AB3B812F0CDFBF3514C5058275C626C9A18AF1FB", "chain_id": "juno-1", - "origin_denom": "cust", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-5", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-139", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ust.png", - "decimals": 18, - "coingecko_id": "wrapped-ust", - "recommended_symbol": "USTC.sif" + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/C09D990E59E6B16946BE23DF3B869D2145F84BD47FCF0ACA21247E2849574D28", + "denom": "ibc/2DC7B6AEF09879D236F9875450B9ADB80603236EEA9A46EBBB84838ABA401583", "chain_id": "juno-1", - "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-153", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "ASTRO", - "name": "ASTRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png", + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "decimals": 6, - "coingecko_id": "astroport-fi", - "recommended_symbol": "ASTRO" + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" }, { - "denom": "ibc/C09F4DA2D82F7710AAE230CEFAA2AA3CA8E246AE3D9A00A3969F3D6CEB6C952B", + "denom": "ibc/387BEF3BD21B53A98708ABEBB0DAA4FCD90B612CF0568983F293E6A7A4DF3DA5", "chain_id": "juno-1", - "origin_denom": "ufrienzies", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-224", + "origin_denom": "cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-163", "is_cw20": false, "is_evm": false, - "symbol": "FRNZ", - "name": "FRNZ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "is_svm": false, + "symbol": "SHILL", + "name": "SHILL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png", "decimals": 6, - "recommended_symbol": "FRNZ" + "recommended_symbol": "SHILL" }, { - "denom": "ibc/2FA88C4FB4FAD0829E1EA27B93E53D1C0BF0629B4CE1387916F7058C0B1682F9", + "denom": "ibc/834E91B7753EC3A7E2D90B9C06E482B72B5B39B621C25DA2043445D80B663931", "chain_id": "juno-1", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-87", + "origin_denom": "uqregen", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-272", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "is_svm": false, + "symbol": "qREGEN", + "name": "qREGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", "decimals": 6, - "recommended_symbol": "LOCAL" + "recommended_symbol": "qREGEN" }, { - "denom": "ibc/3406FBBAEB20E62FF238FF6FD061BCF21F515E1546D3E9FF8571B12BDA29DDBB", + "denom": "ibc/9BD7260831054F5756FD8737818BBF99713DE39F0E86B100A54A509D7B785F0B", "chain_id": "juno-1", - "origin_denom": "pepe-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-71", + "origin_denom": "cdai", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "PEPE", - "name": "PEPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dai.png", "decimals": 18, - "coingecko_id": "pepe", - "recommended_symbol": "PEPE.axl" + "coingecko_id": "dai", + "recommended_symbol": "DAI.sif" }, { - "denom": "ibc/008BFD000A10BCE5F0D4DD819AE1C1EC2942396062DABDD6AE64A655ABC7085B", + "denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", "chain_id": "juno-1", - "origin_denom": "ubtsg", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-17", + "origin_denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", + "origin_chain_id": "juno-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BTSG", - "name": "BTSG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "is_svm": false, + "symbol": "NEXX", + "name": "NEXX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png", "decimals": 6, - "description": "Bitsong Staking Coin", - "coingecko_id": "bitsong", - "recommended_symbol": "BTSG" + "recommended_symbol": "NEXX" }, { - "denom": "ibc/107D152BB3176FAEBF4C2A84C5FFDEEA7C7CB4FE1BBDAB710F1FD25BCD055CBF", + "denom": "ibc/0409596DFE559E1B05D821CA3A5F8E290A7C2C3408B4872595CA0E22F13A09FE", "chain_id": "juno-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-86", + "origin_denom": "link-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "decimals": 18, + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.axl" }, { - "denom": "ibc/1CE6EF1191FF9ACFF1EAD3F0B8A8B61D7DA30602F1095052548C812303796E60", + "denom": "ibc/B22D08F0E3D08968FB3CBEE2C1E993581A99AAAA60D0490C1AF7DCE567D5FDDA", "chain_id": "juno-1", - "origin_denom": "swth", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-92", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "SWTH", - "name": "SWTH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "decimals": 8, - "coingecko_id": "switcheo", - "recommended_symbol": "SWTH" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "decimals": 6, + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "ibc/DB5E3B4A8FAADFAC384BB888D6391ACC3DB22E8F5C705F9BAE188F428B7B38AF", + "denom": "ujuno", "chain_id": "juno-1", - "origin_denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-153", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GEM", - "name": "GEM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "recommended_symbol": "GEM" - } - ] - }, - "kaiyo-1": { - "assets": [ - { - "denom": "ibc/B4B3B08FE5FEA65CB25E467C9D95D180A6CDB0EBE730E7BB20CA1BF6C9A80D9B", - "chain_id": "kaiyo-1", - "origin_denom": "yieldeth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", - "is_cw20": false, - "is_evm": false, - "symbol": "YieldETH", - "name": "YieldETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", - "decimals": 18, - "recommended_symbol": "YieldETH.axl" + "description": "The native token of JUNO Chain", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", - "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", - "origin_chain_id": "kaiyo-1", - "trace": "", + "denom": "ibc/3A6ADE78FB8169C034C29C4F2E1A61CE596EC8235366F22381D981A98F1F5A5C", + "chain_id": "juno-1", + "origin_denom": "uwhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-210", "is_cw20": false, "is_evm": false, - "symbol": "ampMNTA", - "name": "ampMNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "is_svm": false, + "symbol": "WHALE", + "name": "WHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", "decimals": 6, - "description": "ERIS Liquid Staked MNTA", - "recommended_symbol": "ampMNTA" + "description": "WHALE Staking Coin", + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" }, { - "denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", - "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", - "origin_chain_id": "kaiyo-1", - "trace": "", + "denom": "ibc/CC48AE4C0DD7BDEBFE6F5E388A0106408A26938A85FFD166A433DA9221D825DB", + "chain_id": "juno-1", + "origin_denom": "uqstars", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-272", "is_cw20": false, "is_evm": false, - "symbol": "qcFUZN", - "name": "qcFUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", + "is_svm": false, + "symbol": "qSTARS", + "name": "qSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", "decimals": 6, - "description": "Quark's auto-compounding FUZN derivative", - "recommended_symbol": "qcFUZN" + "recommended_symbol": "qSTARS" }, { - "denom": "ibc/0447761C090DB521DAC0268E8CB4EBF567E519B937DE6FECD2472AA6A1EDE658", - "chain_id": "kaiyo-1", + "denom": "ibc/3406FBBAEB20E62FF238FF6FD061BCF21F515E1546D3E9FF8571B12BDA29DDBB", + "chain_id": "juno-1", "origin_denom": "pepe-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PEPE", "name": "PEPE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", @@ -16994,187 +19030,193 @@ "recommended_symbol": "PEPE.axl" }, { - "denom": "ibc/06AB154D88A95D7165682A56B69561CA5078EA2D6C9620EC4F34DB6C48346A59", - "chain_id": "kaiyo-1", - "origin_denom": "mGeo", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-157", + "denom": "ibc/4786BEBBFDD989C467C4552AD73065D8B2578230B8428B3B9275D540EB04C851", + "chain_id": "juno-1", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "GEO", - "name": "GEO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "recommended_symbol": "GEO" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/0C86C1202E29CBB6356E86E0A641ECC068DC98DBDF32150CE05A5E8D4EDC8A6F", - "chain_id": "kaiyo-1", - "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-58", + "denom": "ibc/ED5C62BE7D20C4B53779300805744223DDBFFF538C2A60B106AF95D7BE1AEE1F", + "chain_id": "juno-1", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-280", "is_cw20": false, "is_evm": false, - "symbol": "bWHALE", - "name": "bWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", - "decimals": 6, - "recommended_symbol": "bWHALE" + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { - "denom": "ibc/1AE6C91DF755F63FB9E8393F7AE6A1725B2389730C0A46ECE247D761A72DA80D", - "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1x62mjnme4y0rdnag3r8rfgjuutsqlkkyuh4ndgex0wl3wue25uksau39q8", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-43", + "denom": "ibc/F6B367385300865F654E110976B838502504231705BAC0849B0651C226385885", + "chain_id": "juno-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "xASTRO", - "name": "xASTRO", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/xAstro.svg", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "recommended_symbol": "xASTRO" + "description": "Stargaze Staking Coin", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/217755344C0D40C75036110E20B0427CC6505760F071BE4080DAD5AC845969EE", - "chain_id": "kaiyo-1", - "origin_denom": "uusd", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-71", + "denom": "ibc/281FEE887CDF71EB9C1FEFC554822DCB06BE4E8A8BFF944ED64E3D03437E9384", + "chain_id": "juno-1", + "origin_denom": "umars", + "origin_chain_id": "mars-1", + "trace": "transfer/channel-209", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png", + "is_svm": false, + "symbol": "MARS", + "name": "MARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", "decimals": 6, - "coingecko_id": "terrausd", - "recommended_symbol": "USTC" + "description": "Mars Staking Coin", + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "recommended_symbol": "MARS" }, { - "denom": "ibc/3B75D0590D8691FF6C682F7E2E7A177DC36CBC49C9848FBF06959E8F42FA9193", - "chain_id": "kaiyo-1", - "origin_denom": "ubcre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-67", + "denom": "ibc/C3A8C0BA97F3CD808F828E422CCBB39A5206644DF0A65FA79160E4413684EE14", + "chain_id": "juno-1", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "bCRE", - "name": "bCRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", - "decimals": 6, - "coingecko_id": "liquid-staking-crescent", - "recommended_symbol": "bCRE" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { - "denom": "ibc/640E1C3E28FD45F611971DF891AE3DC90C825DF759DF8FAA8F33F7F72B35AD56", - "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-43", + "denom": "ibc/EAC38D55372F38F1AFD68DF7FE9EF762DCF69F26520643CF3F9D292A738D8034", + "chain_id": "juno-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "ASTRO", - "name": "ASTRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png", + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "coingecko_id": "astroport-fi", - "recommended_symbol": "ASTRO" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/3CF31CB1729FD2011718F66B20861D23A7FB6492C29FFADE2C1E58D10C3D225F", - "chain_id": "kaiyo-1", - "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-75", + "denom": "ibc/EC324F1CEEA2587DC6D6A3D2ABDE04B37F2EDC3945553FF7B3F8D03FA5E5576D", + "chain_id": "juno-1", + "origin_denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-153", "is_cw20": false, "is_evm": false, - "symbol": "NEWT", - "name": "NEWT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "is_svm": false, + "symbol": "ampLUNA", + "name": "ampLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg", "decimals": 6, - "coingecko_id": "newt", - "recommended_symbol": "NEWT" + "coingecko_id": "eris-amplified-luna", + "recommended_symbol": "ampLUNA" }, { - "denom": "ibc/65CD60D7E37EF830BC6B6A6DF4E3E3884A96C0905A7D271C48DC0440B1989EC7", - "chain_id": "kaiyo-1", - "origin_denom": "busd-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "denom": "ibc/008BFD000A10BCE5F0D4DD819AE1C1EC2942396062DABDD6AE64A655ABC7085B", + "chain_id": "juno-1", + "origin_denom": "ubtsg", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD.axl" + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "decimals": 6, + "description": "Bitsong Staking Coin", + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG" }, { - "denom": "ibc/66203460FBBC476BD670C1DED75B7FF8D05F407C18B31F6D67E9202D529C6E96", - "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra17gck626vgax9jpe6utm7dhx4vdzawfkt0jhru03l7a3dzu98wedsfad4sz", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-43", + "denom": "ibc/01BAE2E69D02670B22758FBA74E4114B6E88FC1878936C919DA345E6C6C92ABF", + "chain_id": "juno-1", + "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-210", "is_cw20": false, "is_evm": false, - "symbol": "dUST", - "name": "dUST", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/dUST.png", + "is_svm": false, + "symbol": "bWHALE", + "name": "bWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", "decimals": 6, - "recommended_symbol": "dUST" + "coingecko_id": "backbone-labs-staked-whale", + "recommended_symbol": "bWHALE" }, { - "denom": "ibc/665F3EBB89B38FB4A1D3B0C7FB6523F92DCDAACB38FF43C6607CA6E009B81603", - "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "denom": "ibc/107D152BB3176FAEBF4C2A84C5FFDEEA7C7CB4FE1BBDAB710F1FD25BCD055CBF", + "chain_id": "juno-1", + "origin_denom": "uluna", "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "trace": "transfer/channel-86", "is_cw20": false, "is_evm": false, - "symbol": "bLUNA", - "name": "bLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "recommended_symbol": "bLUNA" - }, - { - "denom": "ibc/6A4CEDCEA40B587A4BCF7FDFB1D5A13D13F8A807A22A4E759EA702640CE086B0", - "chain_id": "kaiyo-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-118", - "is_cw20": false, - "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/A0D3354FEE016A4C95710FFF127DD73A50C0F26474A833061F80A86F4B59B41C", - "chain_id": "kaiyo-1", - "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "denom": "ibc/444DA2B73B4F7B6E36A0FE6BF599BBA25098E9437CF634D3DC93BC8FA2C4A0C6", + "chain_id": "juno-1", + "origin_denom": "uqck", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-272", "is_cw20": false, "is_evm": false, - "symbol": "BADKID", - "name": "BADKID", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", "decimals": 6, - "recommended_symbol": "BADKID" + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" }, { - "denom": "ibc/90D9BE4D0D9BFD6AE61FCACF84765820EDA9EE795548324AD60FF416E6685ECF", - "chain_id": "kaiyo-1", + "denom": "ibc/C09F4DA2D82F7710AAE230CEFAA2AA3CA8E246AE3D9A00A3969F3D6CEB6C952B", + "chain_id": "juno-1", "origin_denom": "ufrienzies", "origin_chain_id": "noble-1", - "trace": "transfer/channel-62", + "trace": "transfer/channel-224", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "FRNZ", "name": "FRNZ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", @@ -17182,573 +19224,560 @@ "recommended_symbol": "FRNZ" }, { - "denom": "ibc/C7610F4CC26949D958355832981F78C1362AF627F39E0EB5DC7C3198B6755C4D", - "chain_id": "kaiyo-1", - "origin_denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-7", + "denom": "ibc/680F35B5D3DC99BA4A6BD8A1106847DC4CF42D2A20B42AEB1931CC8F0918B013", + "chain_id": "juno-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-139", "is_cw20": false, "is_evm": false, - "symbol": "SNEAKY", - "name": "SNEAKY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "recommended_symbol": "SNEAKY" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", - "chain_id": "kaiyo-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-62", + "denom": "ibc/B8EE79E4CABC454512974F71D20725BCEEDA42FB2251729EE30E528132152508", + "chain_id": "juno-1", + "origin_denom": "ubcre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-81", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "bCRE", + "name": "bCRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", "decimals": 6, - "description": "USD Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "coingecko_id": "liquid-staking-crescent", + "recommended_symbol": "bCRE" }, { - "denom": "ukuji", - "chain_id": "kaiyo-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "", + "denom": "ibc/1BD0E01F75B69E5F7F8C6E26AD8FC36087EDCFF06B95C48B0C437BC665EB922B", + "chain_id": "juno-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "description": "The native staking and governance token of the Kujira chain.", - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" }, { - "denom": "ibc/A805A35333912DC7910E8BC433AA37B819B6CD9BC6C95BD3D05CF3B98A8C0F79", - "chain_id": "kaiyo-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-158", + "denom": "ibc/5D4A40F8030304C8CDEB0E8FACF4328373D371F9B7D5BE7A41489467C7C68668", + "chain_id": "juno-1", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/68265FDB4DD30F302E4CBECBB9EA772BC92A210C0E11A6CB3847E9C1CFCA157B", - "chain_id": "kaiyo-1", - "origin_denom": "uidr", - "origin_chain_id": "columbus-5", + "denom": "ibc/5D681936B803C055E34687752EE1AA3117EACCA98260F98CC1706E040DCBAC4D", + "chain_id": "juno-1", + "origin_denom": "dot-planck", + "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "IDTC", - "name": "IDTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png", - "decimals": 6, - "recommended_symbol": "IDTC" + "is_svm": false, + "symbol": "DOT", + "name": "DOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" }, { - "denom": "ibc/68C6671BC8A27E137FD2E254F1C09A6147567D30B3490BB261F861EEC8843080", - "chain_id": "kaiyo-1", - "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-75", + "denom": "ibc/DFC6F33796D5D0075C5FB54A4D7B8E76915ACF434CB1EE2A1BA0BB8334E17C3A", + "chain_id": "juno-1", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, - "symbol": "APOLLO", - "name": "APOLLO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "recommended_symbol": "APOLLO" + "description": "Akash Staking Coin", + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/8ACBD59272835F06D7083A1D0AB866D9B09BF76754A1C7DC6AEBE0DB3D84EA3B", - "chain_id": "kaiyo-1", - "origin_denom": "ukava", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-95", + "denom": "ibc/1D9E14A1F00613ED39E4B8A8763A20C9BE5B5EA0198F2FE47EAE43CD91A0137B", + "chain_id": "juno-1", + "origin_denom": "unois", + "origin_chain_id": "nois-1", + "trace": "transfer/channel-225", "is_cw20": false, "is_evm": false, - "symbol": "KAVA", - "name": "KAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "is_svm": false, + "symbol": "NOIS", + "name": "NOIS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", "decimals": 6, - "coingecko_id": "kava", - "recommended_symbol": "KAVA" + "description": "Nois Staking Coin", + "recommended_symbol": "NOIS" }, { - "denom": "ibc/8B2745EE933D5CD1DB592701FD4A1F0E534BD9A6B2F369DB86FAE0342A2857A6", - "chain_id": "kaiyo-1", - "origin_denom": "staevmos", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", - "is_cw20": false, - "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", - "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" - }, - { - "denom": "ibc/F2331645B9683116188EF36FC04A809C28BD36B54555E8705A37146D0182F045", - "chain_id": "kaiyo-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "denom": "ibc/946AD96F278770521526D7283F58268DA2F6ACDDE40324A9D1C86811D78C86A0", + "chain_id": "juno-1", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDT", - "name": "axlUSDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.axl" + "description": "Comdex Staking Coin", + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "ibc/FC59D6840A41252352263CEA2B832BB86D68D03CBA194263CB9F3C15946796FB", - "chain_id": "kaiyo-1", - "origin_denom": "link-wei", + "denom": "ibc/95A45A81521EAFDBEDAEEB6DA975C02E55B414C95AD3CE50709272366A90CA17", + "chain_id": "juno-1", + "origin_denom": "weth-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "is_svm": false, + "symbol": "axlWETH", + "name": "axlWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", "decimals": 18, - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.axl" - }, - { - "denom": "ibc/423DE4133F8676069BC9550FF251F1F870F6885621C8E363A9F70257BF3AA638", - "chain_id": "kaiyo-1", - "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-54", - "is_cw20": false, - "is_evm": false, - "symbol": "AUTISM", - "name": "AUTISM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", - "decimals": 6, - "coingecko_id": "autism", - "recommended_symbol": "AUTISM" + "coingecko_id": "weth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/43BF3152103ED706E207005E7C433AB3440572C1D444FFE49321A0EF6A8EFC82", - "chain_id": "kaiyo-1", - "origin_denom": "shib-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "denom": "ibc/9AFC3B24C30BE40250D3F40818CFED98C74EA320F744AA6CF2129F0D109E6FF5", + "chain_id": "juno-1", + "origin_denom": "aplanq", + "origin_chain_id": "planq_7070-2", + "trace": "transfer/channel-204", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "is_svm": false, + "symbol": "PLQ", + "name": "PLQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" + "coingecko_id": "planq", + "recommended_symbol": "PLQ" }, { - "denom": "ibc/66067F32E360170FD610960452FE4265D9A57F6C1BA1D657960F4D676C5ADE77", - "chain_id": "kaiyo-1", - "origin_denom": "umnt", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-71", + "denom": "ibc/BA4A1ED1B96AEEC6A583509AF1B076BB76958621A628D31D174087A411DFBE89", + "chain_id": "juno-1", + "origin_denom": "cusdc", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "MNTC", - "name": "MNTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "recommended_symbol": "MNTC" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.sif" }, { - "denom": "ibc/CC4EF9E26EC1C0BDEA058F5F08778C38E140353AF6E360B079EE3124018A1CC9", - "chain_id": "kaiyo-1", - "origin_denom": "uregen", - "origin_chain_id": "regen-1", - "trace": "transfer/channel-68", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_id": "juno-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "REGEN", - "name": "REGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "regen", - "recommended_symbol": "REGEN" + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", - "chain_id": "kaiyo-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-1", + "denom": "ibc/DB6DBDC8D96401B46E67C334EE3BB099E5B6FE143AC12B260EFD73BA2BFC339D", + "chain_id": "juno-1", + "origin_denom": "uqsomm", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-272", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "qSOMM", + "name": "qSOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", "decimals": 6, - "description": "The native token of JUNO Chain", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "recommended_symbol": "qSOMM" }, { - "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", - "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", - "origin_chain_id": "kaiyo-1", - "trace": "", + "denom": "ibc/DD057BB58DCBEE8F7C0CDF0B9AE4A2656B00E3C9745341180400B60833EEC9FD", + "chain_id": "juno-1", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "rFUZN", - "name": "rFUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "description": "The receipt token of Fuzion", - "recommended_symbol": "rFUZN" + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", - "chain_id": "kaiyo-1", - "origin_denom": "stuosmo", + "denom": "ibc/F4F5F27F40F927F8A4FF9F5601F80AD5D77B366570E7C59856B8CE4135AC1F59", + "chain_id": "juno-1", + "origin_denom": "stujuno", "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "trace": "transfer/channel-139", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "ibc/CEA34137DEBFFFB534CAAD7CEB5A96A9F8847CBD8CAE9030DB987437DC324362", - "chain_id": "kaiyo-1", - "origin_denom": "hard", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-95", + "denom": "ibc/F57A2240E9A45C03DF0F9230B6D4427A644B4B2424356ECF98BEF72D49C21FF1", + "chain_id": "juno-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "HARD", - "name": "HARD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "coingecko_id": "kava-lend", - "recommended_symbol": "HARD" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", - "chain_id": "kaiyo-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-10", + "denom": "ibc/EBE900AED8FF6BB2E186B17B066138F647CDD9647EF4FBE2DE6C8D4013A2C990", + "chain_id": "juno-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "description": "The native token of Secret Network", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/BEEBCB44C03068B40BD4709196D5205ED2F78878611D41BC56DD223410AEF4AF", - "chain_id": "kaiyo-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "denom": "ibc/7A05B01003796639FE6B17E7192BE69618E580DA9A0FC781AAD9754B4B6B647F", + "chain_id": "juno-1", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", - "decimals": 6, - "recommended_symbol": "WOSMO" + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" }, { - "denom": "ibc/188DF2324F244BFA92CB272B9FEEB0A580E2F32F5303D31C1B4C7EB348EED14F", - "chain_id": "kaiyo-1", - "origin_denom": "usek", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-71", + "denom": "ibc/7F7D3698E2E3484D576001608BB84D13F5C8B02B97359716ECC60A29A7523BF3", + "chain_id": "juno-1", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "SETC", - "name": "SETC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "recommended_symbol": "SETC" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/AB5A3681C25F2FEE9F167C0345D6E7C52DBDFE6D6ADD38A76BF6A0028F42426D", - "chain_id": "kaiyo-1", - "origin_denom": "uandr", - "origin_chain_id": "andromeda-1", - "trace": "transfer/channel-123", + "denom": "ibc/82822E87DFB76EDBF5FEA7AF35A5DE48F19C6C60D59F3B08B24A347A67C50383", + "chain_id": "juno-1", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-163", "is_cw20": false, "is_evm": false, - "symbol": "ANDR", - "name": "ANDR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", - "decimals": 6, - "coingecko_id": "andromeda-2", - "recommended_symbol": "ANDR" + "is_svm": false, + "symbol": "SHD", + "name": "SHD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" }, { - "denom": "ibc/E41F596AC5F1BF0298758CC40CBF1DB2DA0615F10BF28E4D9E82B9EEE7A0DBF2", - "chain_id": "kaiyo-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-67", + "denom": "ibc/92E4AB82E3B2AF2D5181AC69C74F9F6D890442C7B7B02CC8634B9D3ED7CF936D", + "chain_id": "juno-1", + "origin_denom": "rowan", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "is_svm": false, + "symbol": "ROWAN", + "name": "ROWAN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", + "decimals": 18, + "coingecko_id": "sifchain", + "recommended_symbol": "ROWAN" }, { - "denom": "ibc/212E3EA99376AE1E668F6CF16A2C533843845C4DC00FAA9BA353A8EEA8E9D443", - "chain_id": "kaiyo-1", - "origin_denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-75", + "denom": "ibc/9DCFA4FB796C9C996E83301E1DEB4A11EC05147F9E94D1FB61C99A361CC95B5E", + "chain_id": "juno-1", + "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-153", "is_cw20": false, "is_evm": false, - "symbol": "JIMMY", - "name": "JIMMY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", + "is_svm": false, + "symbol": "ROAR", + "name": "ROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", "decimals": 6, - "recommended_symbol": "JIMMY" + "coingecko_id": "lion-dao", + "recommended_symbol": "ROAR" }, { - "denom": "ibc/15D88A4E859585FB10718607066653BDE2491AB7CFD6E9A578A799F6BC9B82CC", - "chain_id": "kaiyo-1", - "origin_denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-75", + "denom": "ibc/5DC7EFFDC879FEA9298FC4C953B12171EB93708EA9239FC58FB8020C9937A2ED", + "chain_id": "juno-1", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "CORGI", - "name": "CORGI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "recommended_symbol": "CORGI" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" }, { - "denom": "ibc/6C36037FCE972E968E7A76DA55B4704707E8283E2429A539C0F6F27231F5A939", - "chain_id": "kaiyo-1", - "origin_denom": "stucmdx", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "denom": "ibc/5EF597EA4E863132BFD3E051AC6BAA0175F00913D3256A41F11DC425C39527D6", + "chain_id": "juno-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "stCMDX", - "name": "stCMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", - "decimals": 6, - "recommended_symbol": "stCMDX" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/6F8A3946F249E725EEF75926140F49884484BE86E29661DE9681218F212C4B1A", - "chain_id": "kaiyo-1", - "origin_denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-54", + "denom": "ibc/5FBE215F19468B01245B0CDECF453E7615305FAE8C7556C2982C75CF1A6E4BC4", + "chain_id": "juno-1", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "transfer/channel-78", "is_cw20": false, "is_evm": false, - "symbol": "ampINJ", - "name": "ampINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", "decimals": 6, - "recommended_symbol": "ampINJ" + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" }, { - "denom": "ibc/7023F9629A70F8112764D959D04F52EA3115A0AED3CEE59694799FD8C91A97FA", - "chain_id": "kaiyo-1", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-64", + "denom": "ibc/7455B3F2F2737906BACF4AE980069A4CAB7C7F9FDAABAEFBA439DF037AEC5898", + "chain_id": "juno-1", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "description": "Persistence Staking Coin", + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/B618D0F4CBB4AF5E21B4FF163CCBFBC278C037D1DA3E1D848EDF32716A216BE4", - "chain_id": "kaiyo-1", - "origin_denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-31", + "denom": "ibc/776CD3A2A02DE41B2A5D6DEF2D89851B69A458D1937C7A0F6F8A8326FFF5F72B", + "chain_id": "juno-1", + "origin_denom": "busd.1.6.754a80", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-92", "is_cw20": false, "is_evm": false, - "symbol": "GLTO", - "name": "GLTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", - "decimals": 6, - "recommended_symbol": "GLTO" + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "decimals": 18, + "recommended_symbol": "BUSD.carbon" }, { - "denom": "ibc/B64A07C006C0F5E260A8AD50BD53568F1FD4A0D75B7A9F8765C81BEAFDA62053", - "chain_id": "kaiyo-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "denom": "ibc/935315FB6394554CEB9AA671A4E79C49DC8C6207C3AEE283C9241A2C89CF9853", + "chain_id": "juno-1", + "origin_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-210", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "FABLE", + "name": "FABLE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "recommended_symbol": "FABLE" }, { - "denom": "ibc/C19813F6D22F91CC64D2EEDF8702904DD61E0D022972EDFE0039F70C8A6EAD24", - "chain_id": "kaiyo-1", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "denom": "ibc/9B990F95D85E7CA8C46544975776CAA20A3DEE3507EEA829A4000D8D65617F6D", + "chain_id": "juno-1", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-70", "is_cw20": false, "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "decimals": 18, - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "ibc/35C18EBF8C2691FA9AAAAD0E8B9ECA8C3C903D681429C6017E3F6CE49B786E81", - "chain_id": "kaiyo-1", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", + "denom": "ibc/D836B191CDAE8EDACDEBE7B64B504C5E06CC17C6A072DAF278F9A96DF66F6241", + "chain_id": "juno-1", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-28", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "decimals": 6, + "description": "Chihuahua Staking Coin", + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" }, { - "denom": "ibc/6D84A72C48A3EA8A690083487F1586628F443FAE5F92175E4684B0744490A356", - "chain_id": "kaiyo-1", - "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-7", + "denom": "ibc/D8D6271EC54E3A96C6B9FB6C2BA9E99692B07CEB42754638029657072EA48337", + "chain_id": "juno-1", + "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-210", "is_cw20": false, "is_evm": false, - "symbol": "STRDST", - "name": "STRDST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", + "is_svm": false, + "symbol": "RAC", + "name": "RAC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", "decimals": 6, - "recommended_symbol": "STRDST" + "recommended_symbol": "RAC" }, { - "denom": "ibc/DEB81A21B8112F2D29BF9A516AC853276F7AAD22B0DF3EE95E9E26FBA8F7B15B", - "chain_id": "kaiyo-1", - "origin_denom": "eth.1.2.942d87", + "denom": "ibc/1CE6EF1191FF9ACFF1EAD3F0B8A8B61D7DA30602F1095052548C812303796E60", + "chain_id": "juno-1", + "origin_denom": "swth", "origin_chain_id": "carbon-1", - "trace": "transfer/channel-46", + "trace": "transfer/channel-92", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", - "decimals": 18, - "recommended_symbol": "ETH.carbon" + "is_svm": false, + "symbol": "SWTH", + "name": "SWTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "decimals": 8, + "coingecko_id": "switcheo", + "recommended_symbol": "SWTH" }, { - "denom": "ibc/5AC4326C7FC7A84864FA5631928811F58C92475C429FEF4F1FCB3328D68039D1", - "chain_id": "kaiyo-1", - "origin_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-75", - "is_cw20": false, - "is_evm": false, - "symbol": "ASTROPEPE", - "name": "ASTROPEPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", - "decimals": 6, - "recommended_symbol": "ASTROPEPE" - }, - { - "denom": "ibc/E02A6F2BA8DD3F861DF43EB2F55F64A6B87E6F4838651000E20E9DC9FF0CB628", - "chain_id": "kaiyo-1", - "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", - "is_cw20": false, - "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.grv" - }, - { - "denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", - "chain_id": "kaiyo-1", - "origin_denom": "wavax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "denom": "ibc/B55B08EF3667B0C6F029C2CC9CAA6B00788CF639EBB84B34818C85CBABA33ABD", + "chain_id": "juno-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-48", "is_cw20": false, "is_evm": false, - "symbol": "wAVAX", - "name": "wAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "wAVAX.axl" + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "description": "Secret Staking Coin", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/65BBFDCFCB97F876E3C0415379117A830E144E5A2FC53CEF2C6CA0C56C239F83", - "chain_id": "kaiyo-1", - "origin_denom": "stustars", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "denom": "ibc/B7EA961307B6915512F1204B78B6180851DD7474469EB21F16D30DF74DA22903", + "chain_id": "juno-1", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-81", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/E67ADA2204A941CD4743E70771BA08E24885E1ADD6FD140CE1F9E0FEBB68C6B2", - "chain_id": "kaiyo-1", + "denom": "ibc/BCA8E085B8D4D9D89D5316165E51545B826C5E034EACD6C00A7464C58F318379", + "chain_id": "juno-1", "origin_denom": "wftm-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WFTM", "name": "WFTM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", @@ -17757,1181 +19786,1186 @@ "recommended_symbol": "WFTM.axl" }, { - "denom": "ibc/ED2B26865124554B3DFCA21B72A86B2864669295696C8684171CD54E1C7C67A4", - "chain_id": "kaiyo-1", - "origin_denom": "usc", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-46", - "is_cw20": false, - "is_evm": false, - "symbol": "USC", - "name": "USC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", - "decimals": 8, - "coingecko_id": "carbon-usd", - "recommended_symbol": "USC" - }, - { - "denom": "ibc/119334C55720942481F458C9C462F5C0CD1F1E7EEAC4679D674AA67221916AEA", - "chain_id": "kaiyo-1", - "origin_denom": "uluna", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-71", - "is_cw20": false, - "is_evm": false, - "symbol": "LUNC", - "name": "LUNC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", - "decimals": 6, - "coingecko_id": "terra-luna", - "recommended_symbol": "LUNC" - }, - { - "denom": "ibc/21F041CFE99994E0D027D0C5F72A9EB6224CBCAF5A6AD5DDB75F67A781D46C68", - "chain_id": "kaiyo-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-58", + "denom": "ibc/C19D8F369BE4279B727B58D225DB6D4916625BDE024D415B79288AC6705E0BB0", + "chain_id": "juno-1", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-139", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", - "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" }, { - "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", - "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", - "origin_chain_id": "kaiyo-1", + "denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", + "chain_id": "juno-1", + "origin_denom": "factory/juno1vwmnqk0vyxc96qgffrure4nqxupjrql0zut8s02hadgp0n79r8xq5xdsxy/ARENA", + "origin_chain_id": "juno-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FUZN", - "name": "FUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", + "is_svm": false, + "symbol": "ARENA", + "name": "ARENA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/arena.png", "decimals": 6, - "description": "The staking and governance token of Fuzion", - "recommended_symbol": "FUZN" + "description": "The token for the Arena DAO", + "recommended_symbol": "ARENA" }, { - "denom": "ibc/3458D4A2653918EAE5926A6F7CB6DCE91C13DAECDB05AA40F050F8867A6649FE", - "chain_id": "kaiyo-1", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", + "denom": "ibc/537D8D8BF13799FBB38CACDF8090063E3C79CDCC6A70AE493F12A3F9E44DD074", + "chain_id": "juno-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-290", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", - "chain_id": "kaiyo-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-23", + "denom": "ibc/85577FFAB759F224B4A61E67E31EBD1DE2FE4266CA5635AFB8AB4F58C75F7F20", + "chain_id": "juno-1", + "origin_denom": "cust", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "is_svm": false, + "symbol": "USTC", + "name": "USTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ust.png", "decimals": 18, - "description": "The native EVM, governance and staking token of the Evmos Hub", - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "coingecko_id": "wrapped-ust", + "recommended_symbol": "USTC.sif" }, { - "denom": "ibc/782817D588181841C9EB508E14B9A8A984E21590B83FEAC86BB44B0BA58C37F5", - "chain_id": "kaiyo-1", - "origin_denom": "ncheq", - "origin_chain_id": "cheqd-mainnet-1", - "trace": "transfer/channel-124", + "denom": "ibc/2D8FA8721F44AE790D2A4D07775C16DD275B6FD83DA6FF29E76FED5BB6A92764", + "chain_id": "juno-1", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "CHEQ", - "name": "CHEQ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", - "decimals": 9, - "coingecko_id": "cheqd-network", - "recommended_symbol": "CHEQ" + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "decimals": 6, + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" }, { - "denom": "ibc/8AB88C0D359840C50442995B8053323F94BAC6AF040E12F7F2517EDD5475A909", - "chain_id": "kaiyo-1", - "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "denom": "ibc/2F7C2A3D5D42553ED46F57D8B0DE3733B1B5FF571E2C6A051D34525904B4C0AF", + "chain_id": "juno-1", + "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-210", "is_cw20": false, "is_evm": false, - "symbol": "SAIL", - "name": "SAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "is_svm": false, + "symbol": "ampWHALE", + "name": "ampWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", "decimals": 6, - "recommended_symbol": "SAIL" + "recommended_symbol": "ampWHALE" }, { - "denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "chain_id": "kaiyo-1", + "denom": "ibc/2FA88C4FB4FAD0829E1EA27B93E53D1C0BF0629B4CE1387916F7058C0B1682F9", + "chain_id": "juno-1", "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", "origin_chain_id": "kaiyo-1", - "trace": "", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "LOCAL", "name": "LOCAL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", "decimals": 6, - "description": "Local Money", "recommended_symbol": "LOCAL" }, { - "denom": "ibc/950993C6DA64F5A60A48D65A18CAB2D8190DE2DC1B861E70E8B03C61F7D5FBDC", - "chain_id": "kaiyo-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-99", + "denom": "ibc/171E8F6687D290D378678310F9F15D367DCD245BF06184532B703A92054A8A4F", + "chain_id": "juno-1", + "origin_denom": "dai-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-71", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "coingecko_id": "dai", + "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/95531EBDDBA04EDD1341EF7BB84AD44145F0EAA1345D1FA83BE51EFE19EE01DD", - "chain_id": "kaiyo-1", - "origin_denom": "ukrw", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-71", + "denom": "ibc/5F421DDB9D7F74541986E200A681368CF0766EF0CCFFAACA5E8959C09325E304", + "chain_id": "juno-1", + "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "KRTC", - "name": "KRTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png", - "decimals": 6, - "coingecko_id": "terrakrw", - "recommended_symbol": "KRTC" + "is_svm": false, + "symbol": "PAGE", + "name": "PAGE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "decimals": 8, + "coingecko_id": "page", + "recommended_symbol": "PAGE.grv" }, { - "denom": "ibc/A7A5C44AA67317F1B3FFB27BAFC89C9CC04F61306F6F834F89A74B8F82D252A1", - "chain_id": "kaiyo-1", - "origin_denom": "usomm", - "origin_chain_id": "sommelier-3", - "trace": "transfer/channel-69", + "denom": "ibc/8CBAE8833FA65F04A64B4179F9BB8DCD9B7DEA9E6C66E0774252D6A1D84256AC", + "chain_id": "juno-1", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-139", "is_cw20": false, "is_evm": false, - "symbol": "SOMM", - "name": "SOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "coingecko_id": "sommelier", - "recommended_symbol": "SOMM" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "ibc/BA5445831952CB0FC61076A4FB14A64C8E022061DA4B591E6BF0ED37C5C909EA", - "chain_id": "kaiyo-1", - "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-75", + "denom": "ibc/30602D8AFA040F9FB3AC242F88EC93F5BD07FF79FC95265A6EE878ADD61F92E8", + "chain_id": "juno-1", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH" + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" }, { - "denom": "ibc/9DB49B033A9008E5E2C0476CE91C76CF9539DDD702B6C6BB3611927D7CCE530D", - "chain_id": "kaiyo-1", - "origin_denom": "usdx", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-95", + "denom": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "chain_id": "juno-1", + "origin_denom": "juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "origin_chain_id": "juno-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDX", - "name": "USDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", + "is_svm": false, + "symbol": "BANANA", + "name": "BANANA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png", "decimals": 6, - "coingecko_id": "usdx", - "recommended_symbol": "USDX" - }, - { - "denom": "ibc/A64467480BBE4CCFC3CF7E25AD1446AA9BDBD4F5BCB9EF6038B83D6964C784E6", - "chain_id": "kaiyo-1", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", - "is_cw20": false, - "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "recommended_symbol": "BANANA" }, { - "denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", + "denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "chain_id": "juno-1", + "origin_denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "origin_chain_id": "juno-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "wind", + "name": "wind", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/juno/asset/wind.png", "decimals": 6, - "description": "The native over-collateralized stablecoin from the Kujira chain.", - "coingecko_id": "usk", - "recommended_symbol": "USK" + "recommended_symbol": "wind" }, { - "denom": "ibc/46B7745F093B6185D871EBE8EA3B3EDE54E7CBFDF9B8DB6EE0F8DF3446B388A5", - "chain_id": "kaiyo-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-18", + "denom": "ibc/5E025576619CF9BEB0327C4E074EE7E52E1F5587AC210D423E4A9343F81B44CA", + "chain_id": "juno-1", + "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "ampKUJI", + "name": "ampKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "recommended_symbol": "ampKUJI" }, { - "denom": "ibc/4925CCFAD4FFBC63D7C52BB9AE2DE8CF7D0809124FBA1F44F4F2B7B4267D5E5A", - "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "denom": "ibc/738D8F365F1CA9CA6B5851E77EEB878FC6FCC784EE687A10A933F0D1FAC960C0", + "chain_id": "juno-1", + "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "trace": "transfer/channel-153", "is_cw20": false, "is_evm": false, - "symbol": "CUB", - "name": "CUB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "is_svm": false, + "symbol": "BLUE", + "name": "BLUE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", "decimals": 6, - "recommended_symbol": "CUB" + "recommended_symbol": "BLUE" }, { - "denom": "ibc/A8558A4C2F51A63B43509424886D9232375DD0105A7C448BFCC2A6791753DE2C", - "chain_id": "kaiyo-1", - "origin_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", + "denom": "ibc/7E4A6EEFA0425CF99DE169A586D9BADF39C40153194CD6784BF8C9F6123BF5D0", + "chain_id": "juno-1", + "origin_denom": "stinj", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-139", "is_cw20": false, "is_evm": false, - "symbol": "sDAI", - "name": "sDAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", "decimals": 18, - "recommended_symbol": "sDAI.grv" + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "ibc/BFDEE4E7F0E8371F195C2A6CFB70E54C18361E475FC26BE3A38B36E55FCEFDD6", - "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "denom": "ibc/4A482FA914A4B9B05801ED81C33713899F322B24F76A06F4B8FE872485EA22FF", + "chain_id": "juno-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-224", "is_cw20": false, "is_evm": false, - "symbol": "SAYVE", - "name": "SAYVE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "recommended_symbol": "SAYVE" + "description": "USD Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", - "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", - "origin_chain_id": "kaiyo-1", - "trace": "", + "denom": "ibc/DB5E3B4A8FAADFAC384BB888D6391ACC3DB22E8F5C705F9BAE188F428B7B38AF", + "chain_id": "juno-1", + "origin_denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-153", "is_cw20": false, "is_evm": false, - "symbol": "yFUZN", - "name": "yFUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg", + "is_svm": false, + "symbol": "GEM", + "name": "GEM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png", "decimals": 6, - "description": "The yield token of Fuzion", - "recommended_symbol": "yFUZN" - }, + "recommended_symbol": "GEM" + } + ] + }, + "kaiyo-1": { + "assets": [ { - "denom": "ibc/AF371F507606449381F82454241BF562E742312BE5744B08AF66D8840C12A5C6", + "denom": "factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp", "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "origin_denom": "factory/kujira1p7w9ncnnme9yzzhrvzv0hnsa5u5ga06v0ckt7lq9yfap04hc5k9sn2vf6w/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BMOS", - "name": "BMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", + "is_svm": false, + "symbol": "LP SCRT-MNTA", + "name": "LP SCRT-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "recommended_symbol": "BMOS" + "description": "LP Bow: SCRT-MNTA", + "recommended_symbol": "LP SCRT-MNTA" }, { - "denom": "ibc/C8D63703F5805CE6A2B20555139CF6ED9CDFA870389648EB08D688B94B0AE2C1", + "denom": "ibc/7B87E813A8B02F4BC5B448C96A5DE131F2F5F6BA7DEDF0D9D3F0F2CA5BB256FA", "chain_id": "kaiyo-1", - "origin_denom": "wglmr-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "WGLMR", - "name": "WGLMR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", "decimals": 18, - "coingecko_id": "wrapped-moonbeam", - "recommended_symbol": "WGLMR.axl" + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" }, { - "denom": "ibc/C905C540D8BEE0589D9442156F58D8BAA97CB549F44CFF68CB51AD0AEDD0B4EC", + "denom": "ibc/C5EADE2C526B9629D230AC02A97644984ACB7C2F9A6C85126D1025CB0DA42588", "chain_id": "kaiyo-1", - "origin_denom": "stujuno", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" + "recommended_symbol": "USDC.wh" }, { - "denom": "ibc/173E561B8E97AB49FBA540663C1D02DC1B2D2871B5C8434935982CB15B0C7765", + "denom": "ibc/721B42229246EEDA7A656DB17E494127F91E84AD63E21852737628321892A928", "chain_id": "kaiyo-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-75", + "origin_denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "wind", + "name": "wind", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/juno/asset/wind.png", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "recommended_symbol": "wind" }, { - "denom": "ibc/22F3DC562FEA2148D9D7B15E31FA1F00F211C241C0D367435D9AB61506FE5857", + "denom": "ibc/A0D3354FEE016A4C95710FFF127DD73A50C0F26474A833061F80A86F4B59B41C", "chain_id": "kaiyo-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-101", + "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "BADKID", + "name": "BADKID", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "decimals": 6, + "recommended_symbol": "BADKID" }, { - "denom": "ibc/2F58418402E70C3D834F5BEC622B703155FEE4CF4A2134EA6E93F6B5CA6EE8E5", + "denom": "ibc/A4D896411D473643AFBD9DB7F760FF616B614A038EEB7C1DF2899BF89C4D168D", "chain_id": "kaiyo-1", - "origin_denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-5", - "is_cw20": false, + "origin_denom": "stuumee", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", + "is_cw20": false, "is_evm": false, - "symbol": "ampROAR", - "name": "ampROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png", + "is_svm": false, + "symbol": "stUMEE", + "name": "stUMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", "decimals": 6, - "recommended_symbol": "ampROAR" + "coingecko_id": "stride-staked-umee", + "recommended_symbol": "stUMEE" }, { - "denom": "ibc/A8967E668E2BC3D603366FA33B3ADC8EFFD6E72CC9DB3827EAAD90245ADBAA45", + "denom": "ibc/9DB49B033A9008E5E2C0476CE91C76CF9539DDD702B6C6BB3611927D7CCE530D", "chain_id": "kaiyo-1", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", + "origin_denom": "usdx", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-95", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "USDX", + "name": "USDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.grv" + "coingecko_id": "usdx", + "recommended_symbol": "USDX" }, { - "denom": "ibc/B37E4D9FB5B30F3E1E20A4B2DE2A005E584C5C822C44527546556AE2470B4539", + "denom": "ibc/B7C002D971791D2B18FEAA2557F925BFA9DEB0B4E7CA2B414376CB39D3C1F92E", "chain_id": "kaiyo-1", - "origin_denom": "dot-planck", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "DOT", - "name": "DOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "decimals": 6, + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" }, { - "denom": "ibc/EA2F9730C3496ED83479D9238515311A9AFA60E3D24A3419BECDF2A2A8152F8C", + "denom": "factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp", "chain_id": "kaiyo-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "factory/kujira1lyyeyuw4qgan6nz45thw2m0nmxa457uz7cp9dqw5d9a0h7ccek7qavkm6g/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "LP wstETH.axl-wETH.axl", + "name": "LP wstETH.axl-wETH.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "description": "LP Bow: wstETH.axl-wETH.axl", + "recommended_symbol": "LP wstETH-wETH.axl" }, { - "denom": "ibc/B33CEB612F076CAF7898B7AA6C194197534A18FB81558E787CDDCEBC6868B522", + "denom": "ibc/66203460FBBC476BD670C1DED75B7FF8D05F407C18B31F6D67E9202D529C6E96", "chain_id": "kaiyo-1", - "origin_denom": "usdc.1.2.343151", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-46", + "origin_denom": "cw20:terra17gck626vgax9jpe6utm7dhx4vdzawfkt0jhru03l7a3dzu98wedsfad4sz", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-43", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "dUST", + "name": "dUST", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/dUST.png", "decimals": 6, - "recommended_symbol": "USDC.carbon" + "recommended_symbol": "dUST" }, { - "denom": "ibc/EB5ADB11D03C6FE1D02BC7F44ED543A8DCFD950A420C5DED1E2B23EE931A0248", + "denom": "ibc/675CC877238E9063F5C63D8AC9435AE2833B499200F541C6F0F2D4F07CD65261", "chain_id": "kaiyo-1", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-117", + "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "GUPPY", + "name": "GUPPY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "recommended_symbol": "GUPPY" }, { - "denom": "ibc/C01154C2547F4CB10A985EA78E7CD4BA891C1504360703A37E1D7043F06B5E1F", + "denom": "ibc/8893DB8A99E5A2EE8B01B6839ADF1809D75684D7749BCECFE5D814F9B376BDB7", "chain_id": "kaiyo-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "ASTRO", + "name": "ASTRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", "decimals": 6, - "description": "Axelar Staking Coin", - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO" }, { - "denom": "ibc/0A88A08F3E9573DB9D8CB74AA3746F6D23C41C3EE7B6CC5AA4695A1DD74FF86B", + "denom": "ibc/9012F7E79EACC34CE81A4404ECBEED5A5DFFD61CCEE23F2B8600BAC948C483E6", "chain_id": "kaiyo-1", - "origin_denom": "uni-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-160", "is_cw20": false, "is_evm": false, - "symbol": "UNI", - "name": "UNI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", "decimals": 18, - "coingecko_id": "uniswap", - "recommended_symbol": "UNI.axl" + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "ibc/15FF6DF1FA1790C9199EDB6F6DAAE0EEE93BA22B3B4E9326282C389074098B8A", + "denom": "ukuji", "chain_id": "kaiyo-1", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "transfer/channel-70", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "description": "The native staking and governance token of the Kujira chain.", + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/1603E8643A49AD47F536F645A4BF0E4C1E06C76F0A98CBE8054B177F1EE7C39A", + "denom": "ibc/46B7745F093B6185D871EBE8EA3B3EDE54E7CBFDF9B8DB6EE0F8DF3446B388A5", "chain_id": "kaiyo-1", - "origin_denom": "ucmst", + "origin_denom": "uharbor", "origin_chain_id": "comdex-1", "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" }, { - "denom": "ibc/239BFF83852F67DF5243DB89F339FF7FDBF858437F961CAB6DA5B5ADEFB2BC07", + "denom": "factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp", "chain_id": "kaiyo-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "origin_denom": "factory/kujira15pk8c09vcsgsdq4xlh2qfqxtu2r8pgdy7nggkqj8p3h2phke80pqwnvtzk/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "LP wAVAX.axl-MNTA", + "name": "LP wAVAX.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "description": "LP Bow: wAVAX.axl-MNTA", + "recommended_symbol": "LP wAVAX.axl-MNTA" }, { - "denom": "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", + "denom": "ibc/782817D588181841C9EB508E14B9A8A984E21590B83FEAC86BB44B0BA58C37F5", "chain_id": "kaiyo-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "ncheq", + "origin_chain_id": "cheqd-mainnet-1", + "trace": "transfer/channel-124", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "CHEQ", + "name": "CHEQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "decimals": 9, + "coingecko_id": "cheqd-network", + "recommended_symbol": "CHEQ" }, { - "denom": "ibc/9402F8323E9C77BB72544AF85EE181E55912BA26EBFFFA381D3DA19911C33FD8", + "denom": "ibc/786FFE69231839A18414FB32ACFCBB1B82C0FE76BC14CCBE8022D2C1727240C0", "chain_id": "kaiyo-1", - "origin_denom": "bnb", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-95", + "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, - "symbol": "BNB", - "name": "BNB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/bnb.png", - "decimals": 8, - "coingecko_id": "binancecoin", - "recommended_symbol": "BNB" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "decimals": 6, + "coingecko_id": "tether", + "recommended_symbol": "USDT.peggy" }, { - "denom": "ibc/FFA3D0E9C3CDE729559FB71A09E9E6CFA5A85AFABAC9F3CB5DD3942BFF935F9C", + "denom": "ibc/963532A97C3EF15733C579611D0A93D6B6789051330727EC3DEB173643236BEA", "chain_id": "kaiyo-1", - "origin_denom": "swth", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-46", + "origin_denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, - "symbol": "SWTH", - "name": "SWTH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "decimals": 8, - "coingecko_id": "switcheo", - "recommended_symbol": "SWTH" + "is_svm": false, + "symbol": "OPHIR", + "name": "OPHIR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png", + "decimals": 6, + "recommended_symbol": "OPHIR" }, { - "denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "denom": "ibc/B64A07C006C0F5E260A8AD50BD53568F1FD4A0D75B7A9F8765C81BEAFDA62053", "chain_id": "kaiyo-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-18", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "description": "Native Token of Comdex Protocol", - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/3766EE7E4A42BA83C4AB0DD26B144B26B7758BDAB4017E0924C95FBFC69A2589", + "denom": "ibc/BA7E3453C2855BF2EC7EB368C3A5F498C4194677EE789780D7F1F534686D1D6D", "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "origin_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, - "symbol": "BLUE", - "name": "BLUE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", + "is_svm": false, + "symbol": "ASH", + "name": "ASH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", "decimals": 6, - "recommended_symbol": "BLUE" + "recommended_symbol": "ASH" }, { - "denom": "ibc/0ABEC6EE026C0BEE3712CE58BC0A5D7A7B8B8130535094E459152CB562C1EC85", + "denom": "ibc/DADB399E742FCEE71853E98225D13E44E90292852CD0033DF5CABAB96F80B833", "chain_id": "kaiyo-1", - "origin_denom": "reth-wei", + "origin_denom": "wbnb-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "rETH", - "name": "rETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", "decimals": 18, - "coingecko_id": "rocket-pool-eth", - "recommended_symbol": "rETH.axl" + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "ibc/0B41F8EB39912A15611BC834EB98962B59EE03C4CA8F781E709BB875BC18DC4B", + "denom": "ibc/B656797488F96D75AC8B779DAE42CA9EEC4589E563772748184DCCCC37842BCD", "chain_id": "kaiyo-1", - "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-23", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "NEOK", - "name": "NEOK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", - "decimals": 18, - "recommended_symbol": "NEOK" + "is_svm": false, + "symbol": "PYTH", + "name": "PYTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg", + "decimals": 6, + "recommended_symbol": "PYTH.wh" }, { - "denom": "ibc/31ED168F5E93D988FCF223B1298113ACA818DB7BED8F7B73764C5C9FAC293609", + "denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "origin_denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ROAR", - "name": "ROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "is_svm": false, + "symbol": "qcKUJI", + "name": "qcKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg", "decimals": 6, - "coingecko_id": "lion-dao", - "recommended_symbol": "ROAR" + "description": "Quark's auto-compounding KUJI derivative", + "recommended_symbol": "qcKUJI" }, { - "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "denom": "ibc/2F58418402E70C3D834F5BEC622B703155FEE4CF4A2134EA6E93F6B5CA6EE8E5", "chain_id": "kaiyo-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "ampROAR", + "name": "ampROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png", "decimals": 6, - "description": "The native token of Osmosis", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "recommended_symbol": "ampROAR" }, { - "denom": "ibc/3914BDEF46F429A26917E4D8D434620EC4817DC6B6E68FB327E190902F1E9242", + "denom": "ibc/3B75D0590D8691FF6C682F7E2E7A177DC36CBC49C9848FBF06959E8F42FA9193", "chain_id": "kaiyo-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "ubcre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-67", "is_cw20": false, "is_evm": false, - "symbol": "axlDAI", - "name": "axlDAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" + "is_svm": false, + "symbol": "bCRE", + "name": "bCRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "decimals": 6, + "coingecko_id": "liquid-staking-crescent", + "recommended_symbol": "bCRE" }, { - "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "denom": "ibc/C19813F6D22F91CC64D2EEDF8702904DD61E0D022972EDFE0039F70C8A6EAD24", "chain_id": "kaiyo-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "stinj", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "description": "Circle's stablecoin on Axelar", - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "decimals": 18, + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "ibc/786FFE69231839A18414FB32ACFCBB1B82C0FE76BC14CCBE8022D2C1727240C0", + "denom": "ibc/C2786AAA8E49F710716E57DB2B092858B1C5EA8965428305B98F4C5A1A550F94", "chain_id": "kaiyo-1", - "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-54", + "origin_denom": "cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-44", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "SHILL", + "name": "SHILL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.peggy" + "recommended_symbol": "SHILL" }, { - "denom": "ibc/7B87E813A8B02F4BC5B448C96A5DE131F2F5F6BA7DEDF0D9D3F0F2CA5BB256FA", + "denom": "ibc/B2C7F21B604E3974A7DA5DAA9395905F2F3C85392F8A221CFDF62E4A9F4E48E4", "chain_id": "kaiyo-1", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.grv" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "recommended_symbol": "WBTC.wh" }, { - "denom": "ibc/8318B7E036E50C0CF799848F23ED84778AAA8749D9C0BCD4FF3F4AF73C53387F", + "denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", "chain_id": "kaiyo-1", - "origin_denom": "cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-31", + "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LOOP", - "name": "LOOP", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png", + "is_svm": false, + "symbol": "ampMNTA", + "name": "ampMNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", "decimals": 6, - "coingecko_id": "loop", - "recommended_symbol": "LOOP" + "description": "ERIS Liquid Staked MNTA", + "recommended_symbol": "ampMNTA" }, { - "denom": "ibc/8374139B2BFECF639A2C0A84E53B7492329C95123B21F84324E8825B50EF0E8F", + "denom": "ibc/15FF6DF1FA1790C9199EDB6F6DAAE0EEE93BA22B3B4E9326282C389074098B8A", "chain_id": "kaiyo-1", - "origin_denom": "cgt/1", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-46", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "transfer/channel-70", "is_cw20": false, "is_evm": false, - "symbol": "USD", - "name": "USD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", - "decimals": 18, - "recommended_symbol": "USD" + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "decimals": 6, + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" }, { - "denom": "ibc/8A1E8428A7196BE19FA7C749B0229019DB60B0776B81896803587BE00197322E", + "denom": "ibc/1AE6C91DF755F63FB9E8393F7AE6A1725B2389730C0A46ECE247D761A72DA80D", "chain_id": "kaiyo-1", - "origin_denom": "stuluna", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "origin_denom": "cw20:terra1x62mjnme4y0rdnag3r8rfgjuutsqlkkyuh4ndgex0wl3wue25uksau39q8", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-43", "is_cw20": false, "is_evm": false, - "symbol": "stLUNA", - "name": "stLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "is_svm": false, + "symbol": "xASTRO.cw20", + "name": "xASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/xastro-cw20.svg", "decimals": 6, - "coingecko_id": "stride-staked-luna", - "recommended_symbol": "stLUNA" + "recommended_symbol": "xASTRO.cw20" }, { - "denom": "ibc/F2A6A3D4C02E003CC3EDB84CFD1C6F8F0E21EE6815575C5FE82FAC7D96106239", + "denom": "ibc/EBA52E7239CC1BC7F8ECF4F41523B6DD477FF067FD953315704A9A4FD2131B48", "chain_id": "kaiyo-1", - "origin_denom": "aplanq", - "origin_chain_id": "planq_7070-2", - "trace": "transfer/channel-51", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "PLQ", - "name": "PLQ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", - "decimals": 18, - "coingecko_id": "planq", - "recommended_symbol": "PLQ" + "is_svm": false, + "symbol": "SUI", + "name": "SUI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", + "decimals": 8, + "recommended_symbol": "SUI.wh" }, { - "denom": "ibc/24DD547340629EACCFEFDE8461A0A40769239CBC9E2ADB2ED0C51C324EEB93A7", + "denom": "ibc/3CF31CB1729FD2011718F66B20861D23A7FB6492C29FFADE2C1E58D10C3D225F", "chain_id": "kaiyo-1", - "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", + "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "PSTAKE", - "name": "PSTAKE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", - "decimals": 18, - "coingecko_id": "pstake-finance", - "recommended_symbol": "PSTAKE.grv" + "is_svm": false, + "symbol": "NEWT", + "name": "NEWT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", + "decimals": 6, + "coingecko_id": "newt", + "recommended_symbol": "NEWT" }, { - "denom": "ibc/688C55F14585C398B453E88F0880EF99E93D6DCF7E2FE547E01C3A38B2CD9724", + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", "chain_id": "kaiyo-1", - "origin_denom": "stadydx", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "stDYDX", - "name": "stDYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", - "decimals": 18, - "coingecko_id": "stride-staked-dydx", - "recommended_symbol": "stDYDX" + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "The native token of Osmosis", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/91DAE8E9D19A6A770D2A787E54E1D388F8E603D89093FC4939CE36125CB8284D", + "denom": "factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp", "chain_id": "kaiyo-1", - "origin_denom": "utori", - "origin_chain_id": "teritori-1", - "trace": "transfer/channel-89", + "origin_denom": "factory/kujira17x2v39aut0paj5d6wc5jxvqqxrdhy9kvca4y5xn6vsfpsxkgc6gq7n4tg0/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TORI", - "name": "TORI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "is_svm": false, + "symbol": "LP wETH.axl-MNTA", + "name": "LP wETH.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "teritori", - "recommended_symbol": "TORI" + "description": "LP Bow: wETH.axl-MNTA", + "recommended_symbol": "LP wETH.axl-MNTA" }, { - "denom": "ibc/96179F5B44CCC15E03AB43D7118E714B4D5CE8F187F7D8A60F2A514299761EA9", + "denom": "factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp", "chain_id": "kaiyo-1", - "origin_denom": "arb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "factory/kujira1gnftck9586x0nhsqsj99k9zednl6tx4kezu9hpph0u6jtqnafpyqxha3me/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ARB", - "name": "ARB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", - "decimals": 18, - "coingecko_id": "arbitrum", - "recommended_symbol": "ARB.axl" + "is_svm": false, + "symbol": "LP AKT-MNTA", + "name": "LP AKT-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "decimals": 6, + "description": "LP Bow: AKT-MNTA", + "recommended_symbol": "LP AKT-MNTA" }, { - "denom": "ibc/963532A97C3EF15733C579611D0A93D6B6789051330727EC3DEB173643236BEA", + "denom": "ibc/31ED168F5E93D988FCF223B1298113ACA818DB7BED8F7B73764C5C9FAC293609", "chain_id": "kaiyo-1", - "origin_denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-58", + "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "OPHIR", - "name": "OPHIR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png", + "is_svm": false, + "symbol": "ROAR", + "name": "ROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", "decimals": 6, - "recommended_symbol": "OPHIR" + "coingecko_id": "lion-dao", + "recommended_symbol": "ROAR" }, { - "denom": "ibc/A4D896411D473643AFBD9DB7F760FF616B614A038EEB7C1DF2899BF89C4D168D", + "denom": "ibc/1603E8643A49AD47F536F645A4BF0E4C1E06C76F0A98CBE8054B177F1EE7C39A", "chain_id": "kaiyo-1", - "origin_denom": "stuumee", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "stUMEE", - "name": "stUMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "coingecko_id": "stride-staked-umee", - "recommended_symbol": "stUMEE" + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/9012F7E79EACC34CE81A4404ECBEED5A5DFFD61CCEE23F2B8600BAC948C483E6", + "denom": "ibc/173E561B8E97AB49FBA540663C1D02DC1B2D2871B5C8434935982CB15B0C7765", "chain_id": "kaiyo-1", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-160", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", - "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "decimals": 6, + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "ibc/BA7E3453C2855BF2EC7EB368C3A5F498C4194677EE789780D7F1F534686D1D6D", + "denom": "ibc/590CE97A3681BC2058FED1F69B613040209DF3F17B7BD31DFFB8671C4D2CD99B", "chain_id": "kaiyo-1", - "origin_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-58", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-44", "is_cw20": false, "is_evm": false, - "symbol": "ASH", - "name": "ASH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", - "decimals": 6, - "recommended_symbol": "ASH" + "is_svm": false, + "symbol": "SHD", + "name": "SHD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" }, { - "denom": "ibc/4618940637F818D07EEF445AF18CF1396EDB74590AD95D0921BA89427D00E634", + "denom": "ibc/614AE0D401204BA1792A01DDE46263BDEC6A4524CA6108137E2FA891640F6990", "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "origin_denom": "busd.1.6.754a80", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "SEAS", - "name": "SEAS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/SEAS.png", - "decimals": 6, - "recommended_symbol": "SEAS" + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "decimals": 18, + "recommended_symbol": "BUSD.carbon" }, { - "denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", + "denom": "ibc/640E1C3E28FD45F611971DF891AE3DC90C825DF759DF8FAA8F33F7F72B35AD56", "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1m96ucsfpt2yy72w09z2rxjdj38y5qd8lqx5jtggnejmdua2ynpnsxyvjex/urcpt", - "origin_chain_id": "kaiyo-1", - "trace": "", + "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-43", "is_cw20": false, "is_evm": false, - "symbol": "qcKUJI", - "name": "qcKUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qckuji.svg", + "is_svm": false, + "symbol": "ASTRO.cw20", + "name": "ASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", "decimals": 6, - "description": "Quark's auto-compounding KUJI derivative", - "recommended_symbol": "qcKUJI" + "recommended_symbol": "ASTRO.cw20" }, { - "denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "denom": "ibc/6500A6358F49FAB811A75E689D1B7C3B50AE6921F800569BF83929822EE7A828", "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "origin_chain_id": "kaiyo-1", - "trace": "", + "origin_denom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-44", "is_cw20": false, "is_evm": false, - "symbol": "ampKUJI", - "name": "ampKUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "is_svm": false, + "symbol": "SILK", + "name": "SILK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png", "decimals": 6, - "description": "ampKUJI", - "recommended_symbol": "ampKUJI" + "coingecko_id": "silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2", + "recommended_symbol": "SILK" }, { - "denom": "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", + "denom": "ibc/65BA5412B0FF40DABDCA5EBF26A1A6E04C49A8263BFD7961D72E2FC5CC3AD0DA", "chain_id": "kaiyo-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-32", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "is_svm": false, + "symbol": "APT", + "name": "APT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg", + "decimals": 8, + "recommended_symbol": "APT.wh" }, { - "denom": "ibc/034FBAB83B9B8AB35217DD59452C92EBC845ECD2E44AB17D260D9A2E7200AC79", + "denom": "ibc/65BBFDCFCB97F876E3C0415379117A830E144E5A2FC53CEF2C6CA0C56C239F83", "chain_id": "kaiyo-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-58", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ampWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", "decimals": 6, - "recommended_symbol": "ampWHALE" + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" }, { - "denom": "ibc/03E988788ED3EE6326C95151F4E3947820B2F40BDC8C4170FEF5FC75B56EB6DC", + "denom": "ibc/65CD60D7E37EF830BC6B6A6DF4E3E3884A96C0905A7D271C48DC0440B1989EC7", "chain_id": "kaiyo-1", - "origin_denom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-31", + "origin_denom": "busd-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "RAC", - "name": "RAC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png", - "decimals": 6, - "coingecko_id": "racoon", - "recommended_symbol": "RAC" + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "decimals": 18, + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD.axl" }, { - "denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "denom": "ibc/6C36037FCE972E968E7A76DA55B4704707E8283E2429A539C0F6F27231F5A939", "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", - "origin_chain_id": "kaiyo-1", - "trace": "", + "origin_denom": "stucmdx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "qcMNTA", - "name": "qcMNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg", + "is_svm": false, + "symbol": "stCMDX", + "name": "stCMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", "decimals": 6, - "description": "Quark's auto-compounding MNTA derivative", - "recommended_symbol": "qcMNTA" + "recommended_symbol": "stCMDX" }, { - "denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "denom": "ibc/A64467480BBE4CCFC3CF7E25AD1446AA9BDBD4F5BCB9EF6038B83D6964C784E6", "chain_id": "kaiyo-1", - "origin_denom": "weth-wei", + "origin_denom": "wmatic-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", "decimals": 18, - "description": "Wrapped Ether on Axelar", - "coingecko_id": "weth", - "recommended_symbol": "WETH.axl" + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { - "denom": "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", + "denom": "ibc/AB5A3681C25F2FEE9F167C0345D6E7C52DBDFE6D6ADD38A76BF6A0028F42426D", "chain_id": "kaiyo-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-95", + "origin_denom": "uandr", + "origin_chain_id": "andromeda-1", + "trace": "transfer/channel-123", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "ANDR", + "name": "ANDR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "coingecko_id": "andromeda-2", + "recommended_symbol": "ANDR" }, { - "denom": "ibc/2618165FB15523140C34365941366CBD2124D161A07B70E7B86071BD12A0E4AE", + "denom": "ibc/BD9492BC1470FA29CBAEB39BB384CAA2030B190362D0A16641465FCFD8A59FB2", "chain_id": "kaiyo-1", - "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-75", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "BAD", - "name": "BAD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", - "decimals": 6, - "recommended_symbol": "BAD" + "is_svm": false, + "symbol": "Bonk", + "name": "Bonk", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", + "decimals": 5, + "recommended_symbol": "Bonk.wh" }, { - "denom": "ibc/2661BA7AD557526A9BE35C7576EEF8E82B14A01ECCE36AD139979FD683D37C9D", + "denom": "ibc/E02A6F2BA8DD3F861DF43EB2F55F64A6B87E6F4838651000E20E9DC9FF0CB628", "chain_id": "kaiyo-1", - "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-58", + "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "RAC", - "name": "RAC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", - "decimals": 6, - "recommended_symbol": "RAC" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.grv" }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "denom": "ibc/E41F596AC5F1BF0298758CC40CBF1DB2DA0615F10BF28E4D9E82B9EEE7A0DBF2", "chain_id": "kaiyo-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-67", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/4EFD563C64F84F60AFB4BB7A8473AAA632CF5817FDF2CF51E68E4E3EDAE66430", + "denom": "ibc/EA2F9730C3496ED83479D9238515311A9AFA60E3D24A3419BECDF2A2A8152F8C", "chain_id": "kaiyo-1", - "origin_denom": "loki", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-157", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "ODIN", - "name": "ODIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "coingecko_id": "odin-protocol", - "recommended_symbol": "ODIN" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "denom": "ibc/EB5ADB11D03C6FE1D02BC7F44ED543A8DCFD950A420C5DED1E2B23EE931A0248", "chain_id": "kaiyo-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-7", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-117", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, - "description": "The native token of Stargaze", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "ibc/53796B3762678CD80784A7DD426EB45B89C024BE3D45224CC83FDE3DED7DA0A1", + "denom": "factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp", "chain_id": "kaiyo-1", - "origin_denom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-31", + "origin_denom": "factory/kujira1eqd96322ec258w7k9n9cfqkusrlvzwv38jkph3qs720egdv0epmq70j2zl/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FURY", - "name": "FURY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png", + "is_svm": false, + "symbol": "LP SOL.wh-MNTA", + "name": "LP SOL.wh-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "fanfury", - "recommended_symbol": "FURY" - }, - { - "denom": "ibc/614AE0D401204BA1792A01DDE46263BDEC6A4524CA6108137E2FA891640F6990", - "chain_id": "kaiyo-1", - "origin_denom": "busd.1.6.754a80", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-46", - "is_cw20": false, - "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "recommended_symbol": "BUSD.carbon" + "description": "LP Bow: SOL.wh-MNTA", + "recommended_symbol": "LP SOL.wh-MNTA" }, { - "denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", + "denom": "factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp", "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", + "origin_denom": "factory/kujira1qx3hcr297qmgjt5f6u9peldf4phxqufvmew8d3eey3ns29e8qp3snj6jfu/ulp", "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BLEND", - "name": "BLEND", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg", + "is_svm": false, + "symbol": "LP wstETH.axl-MNTA", + "name": "LP wstETH.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "Blend Token", - "recommended_symbol": "BLEND" + "description": "LP Bow: wstETH.axl-MNTA", + "recommended_symbol": "LP wstETH.axl-MNTA" }, { "denom": "ibc/086C1B2E9E611F23D3C9159C858D3F4C6A911D348DFB916A11AE306A865A77A8", @@ -18941,6 +20975,7 @@ "trace": "transfer/channel-158", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stkATOM", "name": "stkATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", @@ -18950,1558 +20985,1650 @@ "recommended_symbol": "stkATOM" }, { - "denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "denom": "ibc/4EFD563C64F84F60AFB4BB7A8473AAA632CF5817FDF2CF51E68E4E3EDAE66430", "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "", + "origin_denom": "loki", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-157", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "ODIN", + "name": "ODIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", "decimals": 6, - "description": "The Revenue & Governance token of Unstake.fi", - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "coingecko_id": "odin-protocol", + "recommended_symbol": "ODIN" }, { - "denom": "ibc/5A3DCF59BC9EC5C0BB7AA0CA0279FC2BB126640CB8B8F704F7BC2DC42495041B", + "denom": "factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp", "chain_id": "kaiyo-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-54", + "origin_denom": "factory/kujira1fg7wmsde7ygw3pm6hqmd29cdvp947anajmunsvk0guvjta3md25qdqk4fw/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "is_svm": false, + "symbol": "LP DYM-MNTA", + "name": "LP DYM-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "decimals": 6, + "description": "LP Bow: DYM-MNTA", + "recommended_symbol": "LP DYM-MNTA" }, { - "denom": "ibc/D20559F0071F4BFDFF519D0C12B77AFE2A4481D44214BD92808B0C36B1E223C9", + "denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", "chain_id": "kaiyo-1", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" + "description": "The native over-collateralized stablecoin from the Kujira chain.", + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "denom": "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", "chain_id": "kaiyo-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-5", + "origin_denom": "factory/kujira15w6jhxsv924mn9cfr0qg9z36hltmw4rzd68x40d9re6hzyhslumqjw9zqd/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "LP CHEQ-MNTA", + "name": "LP CHEQ-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "The native staking token of Terra.", - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "description": "LP Bow: CHEQ-MNTA", + "recommended_symbol": "LP CHEQ-MNTA" }, { - "denom": "ibc/DADB399E742FCEE71853E98225D13E44E90292852CD0033DF5CABAB96F80B833", + "denom": "factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp", "chain_id": "kaiyo-1", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "factory/kujira1h929g9e9vxhc5y8v7uexdrncacxdatjupr67velewafwepfyfaaq6s7l3v/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "is_svm": false, + "symbol": "LP AXL-MNTA", + "name": "LP AXL-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "decimals": 6, + "description": "LP Bow: AXL-MNTA", + "recommended_symbol": "LP AXL-MNTA" }, { - "denom": "ibc/5D98FB84A053607675006ED29A165F67B51FDFCEDDBEE1CFCB0F36BE5A78E44C", + "denom": "factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp", "chain_id": "kaiyo-1", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "factory/kujira1n648rfqqvjxm6c7zgfnfqay85rkapgg0z7da9pnmjazz5m5d7l0qxdtq90/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "is_svm": false, + "symbol": "LP wETH.axl-USK", + "name": "LP wETH.axl-USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "recommended_symbol": "sqOSMO" + "description": "LP Bow: wETH.axl-USK", + "recommended_symbol": "LP wETH.axl-USK" }, { - "denom": "ibc/DBE837E151E982B03AD5C311C7EF617FE69A435CE36DA3E93CC7BA5F5BC428B0", + "denom": "factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp", "chain_id": "kaiyo-1", - "origin_denom": "udoki", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-157", + "origin_denom": "factory/kujira1ygperwf0dc9ng2jffj0pwnnray3rscn9el6d78qjtt25qwgqukqszmdwtv/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DOKI", - "name": "DOKI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "is_svm": false, + "symbol": "LP OSMO-MNTA", + "name": "LP OSMO-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "recommended_symbol": "DOKI" + "description": "LP Bow: OSMO-MNTA", + "recommended_symbol": "LP OSMO-MNTA" }, { - "denom": "ibc/DBF6ABDB5F3D4267C039967515594453F4A31007FD838A566F563A01D2C2FB80", + "denom": "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", "chain_id": "kaiyo-1", - "origin_denom": "umars", - "origin_chain_id": "mars-1", - "trace": "transfer/channel-55", + "origin_denom": "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MARS", - "name": "MARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "is_svm": false, + "symbol": "LP SOMM-MNTA", + "name": "LP SOMM-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "Mars Staking Coin", - "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", - "recommended_symbol": "MARS" + "description": "LP Bow: SOMM-MNTA", + "recommended_symbol": "LP SOMM-MNTA" }, { - "denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "denom": "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_denom": "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "is_svm": false, + "symbol": "LP STARS-MNTA", + "name": "LP STARS-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "The content house of Kujira", - "recommended_symbol": "WINK" + "description": "LP Bow: STARS-MNTA", + "recommended_symbol": "LP STARS-MNTA" }, { - "denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "denom": "factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp", "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_denom": "factory/kujira1cpdyhrkwdnz38u45el3zq7007at9dm6h05tc36zpxvs6vrdwzrrskt0tgg/ulp", "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "LP TIA-MNTA", + "name": "LP TIA-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "MantaDAO Governance Token", - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "description": "LP Bow: TIA-MNTA", + "recommended_symbol": "LP TIA-MNTA" }, { - "denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "denom": "factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp", "chain_id": "kaiyo-1", - "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_denom": "factory/kujira1gnvja05kkmpeh9dnxl0c2p4sde7fpsy2r44njzyqgpsf72nqs78q3gzpzc/ulp", "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PLNK", - "name": "PLNK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "is_svm": false, + "symbol": "LP LINK.axl-MNTA", + "name": "LP LINK.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "Food for whales", - "recommended_symbol": "PLNK" + "description": "LP Bow: LINK.axl-MNTA", + "recommended_symbol": "LP LINK.axl-MNTA" }, { - "denom": "ibc/675CC877238E9063F5C63D8AC9435AE2833B499200F541C6F0F2D4F07CD65261", + "denom": "factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp", "chain_id": "kaiyo-1", - "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-58", + "origin_denom": "factory/kujira1jsjygyj8hwa4f0p9wwgct4yzmzzexe5x5u6l40l7ty2qzwwwsemqavhk3x/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GUPPY", - "name": "GUPPY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "is_svm": false, + "symbol": "LP WHALE-MNTA", + "name": "LP WHALE-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "recommended_symbol": "GUPPY" + "description": "LP Bow: WHALE-MNTA", + "recommended_symbol": "LP WHALE-MNTA" }, { - "denom": "ibc/AF4CF77A64B784DE1C40471BBB366722DBE7FFEB8C42C71D2B7FB447BA193549", + "denom": "factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp", "chain_id": "kaiyo-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "origin_denom": "factory/kujira1kc90tgn4ucvdv4c9xycktanwz2lna0nfel6244ylqjvhaetfntusnmyu3d/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC" + "is_svm": false, + "symbol": "LP ARB-MNTA", + "name": "LP ARB-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "decimals": 6, + "description": "LP Bow: ARB-MNTA", + "recommended_symbol": "LP ARB-MNTA" }, { - "denom": "ibc/B4DCACF7753C05040AF0A7BF2B583402C4B8C9B0A86FCECE32EF63CB7F0A46B3", + "denom": "ibc/96179F5B44CCC15E03AB43D7118E714B4D5CE8F187F7D8A60F2A514299761EA9", "chain_id": "kaiyo-1", - "origin_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-50", + "origin_denom": "arb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "PAXG", - "name": "PAXG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/paxg.png", + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", "decimals": 18, - "coingecko_id": "pax-gold", - "recommended_symbol": "PAXG.grv" + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB.axl" }, { - "denom": "ibc/B572E6F30E7C33D78A50D8B4E973A9C118C30F848DF31A95FAA5E4C7450A8BD0", + "denom": "factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp", "chain_id": "kaiyo-1", - "origin_denom": "wsteth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-9", + "origin_denom": "factory/kujira1vqdyup9zxxl9gqy5hwh593vvuc84lstldj7qzt7fylf3q3e3uemqlwpg9y/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH.axl" + "is_svm": false, + "symbol": "LP PAXG.grv-MNTA", + "name": "LP PAXG.grv-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "decimals": 6, + "description": "LP Bow: PAXG.grv-MNTA", + "recommended_symbol": "LP PAXG.grv-MNTA" }, { - "denom": "ibc/B5FDAFDE1235BBF5F03ACCB4C592A08607BCA0A317F38D4223869AB2C3961960", + "denom": "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", "chain_id": "kaiyo-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-102", + "origin_denom": "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "xUSK", + "name": "xUSK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "description": "Ghost Vault USK", + "recommended_symbol": "xUSK" }, { - "denom": "ibc/B3B78878425258831BDB0CB95CF8871E75E3CC80B15361A17108C2538816BC2F", + "denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", "chain_id": "kaiyo-1", - "origin_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-54", + "origin_denom": "wavax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "NINJA", - "name": "NINJA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", + "is_svm": false, + "symbol": "wAVAX", + "name": "wAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", + "decimals": 18, + "coingecko_id": "wrapped-avax", + "recommended_symbol": "wAVAX.axl" + }, + { + "denom": "ibc/03E988788ED3EE6326C95151F4E3947820B2F40BDC8C4170FEF5FC75B56EB6DC", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-31", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "RAC", + "name": "RAC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png", "decimals": 6, - "coingecko_id": "dog-wif-nuchucks", - "recommended_symbol": "NINJA" + "coingecko_id": "racoon", + "recommended_symbol": "RAC" }, { - "denom": "ibc/47212EE247EF64B87B0A7F61901CCF1EC05AC25DA0BA1989EA4A28955CD4FE8E", + "denom": "ibc/0447761C090DB521DAC0268E8CB4EBF567E519B937DE6FECD2472AA6A1EDE658", "chain_id": "kaiyo-1", - "origin_denom": "bnb.1.6.773edb", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-46", + "origin_denom": "pepe-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "BNB", - "name": "BNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "is_svm": false, + "symbol": "PEPE", + "name": "PEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", "decimals": 18, - "recommended_symbol": "BNB.carbon" + "coingecko_id": "pepe", + "recommended_symbol": "PEPE.axl" }, { - "denom": "ibc/464CE409C9710351EDEB880FF9323B7CE2E38DE791CA59E34FB3E9830E94C644", + "denom": "ibc/90D9BE4D0D9BFD6AE61FCACF84765820EDA9EE795548324AD60FF416E6685ECF", "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "origin_denom": "ufrienzies", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, - "symbol": "GEM", - "name": "GEM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png", + "is_svm": false, + "symbol": "FRNZ", + "name": "FRNZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", "decimals": 6, - "recommended_symbol": "GEM" + "recommended_symbol": "FRNZ" }, { - "denom": "ibc/39C46E9F45E72BA4B2DD0EF7DD7BA01B7461DEC9CDFCB7376765D824255FD30D", + "denom": "ibc/21F041CFE99994E0D027D0C5F72A9EB6224CBCAF5A6AD5DDB75F67A781D46C68", "chain_id": "kaiyo-1", - "origin_denom": "cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-36", + "origin_denom": "uwhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, - "symbol": "xxx", - "name": "xxx", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xxx3.png", - "decimals": 10, - "recommended_symbol": "xxx" + "is_svm": false, + "symbol": "WHALE", + "name": "WHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "decimals": 6, + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" }, { - "denom": "ibc/6EFB95337CFA11E7C27BA79FE1ACBD0AE153114FEFE575FEE9EF2989FC40507A", + "denom": "ibc/2618165FB15523140C34365941366CBD2124D161A07B70E7B86071BD12A0E4AE", "chain_id": "kaiyo-1", - "origin_denom": "eth.1.19.c3b805", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-46", + "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", - "decimals": 18, - "recommended_symbol": "ETH.carbon" + "is_svm": false, + "symbol": "BAD", + "name": "BAD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "decimals": 6, + "recommended_symbol": "BAD" }, { - "denom": "ibc/9D0C1C1E48CF2926DF93233CCE93FA692BC008D21B4F9AC8357B7C3B885D1C1C", + "denom": "ibc/67444CF45C68D90AE33FA7DB2244365AC014EE295D2393B0C43AB1905208A2F7", "chain_id": "kaiyo-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-54", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "SOL", - "name": "SOL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/sol.png", - "decimals": 8, - "coingecko_id": "solana", - "recommended_symbol": "SOL" - } - ] - }, - "kava_2222-10": { - "assets": [ + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "decimals": 6, + "recommended_symbol": "USDT.wh" + }, { - "denom": "ukava", - "chain_id": "kava_2222-10", - "origin_denom": "ukava", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/68C6671BC8A27E137FD2E254F1C09A6147567D30B3490BB261F861EEC8843080", + "chain_id": "kaiyo-1", + "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "KAVA", - "name": "KAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "is_svm": false, + "symbol": "APOLLO", + "name": "APOLLO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", "decimals": 6, - "description": "The native staking and governance token of Kava", - "coingecko_id": "kava", - "recommended_symbol": "KAVA" + "recommended_symbol": "APOLLO" }, { - "denom": "usdx", - "chain_id": "kava_2222-10", - "origin_denom": "usdx", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/6A4CEDCEA40B587A4BCF7FDFB1D5A13D13F8A807A22A4E759EA702640CE086B0", + "chain_id": "kaiyo-1", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "USDX", - "name": "USDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", - "decimals": 6, - "description": "The native stablecoin of Kava", - "coingecko_id": "usdx", - "recommended_symbol": "USDX" + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" }, { - "denom": "ibc/7828FD453E26CA18E7516F4F15C9698A36E92EA058B6A113B1F75CE828BF5398", - "chain_id": "kava_2222-10", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-140", + "denom": "ibc/6F8A3946F249E725EEF75926140F49884484BE86E29661DE9681218F212C4B1A", + "chain_id": "kaiyo-1", + "origin_denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "ampINJ", + "name": "ampINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "recommended_symbol": "ampINJ" }, { - "denom": "busd", - "chain_id": "kava_2222-10", - "origin_denom": "busd", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", + "chain_id": "kaiyo-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/busd.png", - "decimals": 8, - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD" + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "description": "The native token of Secret Network", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/9C273C3A2306B8C15EC86E93BC25194CFCCA1B1AE9AEFEF18618AD60F9ECD843", - "chain_id": "kava_2222-10", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-144", + "denom": "ibc/A8558A4C2F51A63B43509424886D9232375DD0105A7C448BFCC2A6791753DE2C", + "chain_id": "kaiyo-1", + "origin_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "is_svm": false, + "symbol": "sDAI", + "name": "sDAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "recommended_symbol": "sDAI.grv" }, { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "chain_id": "kava_2222-10", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "denom": "ibc/B572E6F30E7C33D78A50D8B4E973A9C118C30F848DF31A95FAA5E4C7450A8BD0", + "chain_id": "kaiyo-1", + "origin_denom": "wsteth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH.axl" }, { - "denom": "ibc/799FDD409719A1122586A629AE8FCA17380351A51C1F47A80A1B8E7F2A491098", - "chain_id": "kava_2222-10", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-5", + "denom": "ibc/B5FDAFDE1235BBF5F03ACCB4C592A08607BCA0A317F38D4223869AB2C3961960", + "chain_id": "kaiyo-1", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-102", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "description": "Akash Staking Coin", - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/BD3719A35775175ABEBD026D38B446564C3471048078BBB5E5D4D48B9B4F27E2", - "chain_id": "kava_2222-10", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-129", + "denom": "ibc/B618D0F4CBB4AF5E21B4FF163CCBFBC278C037D1DA3E1D848EDF32716A216BE4", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "GLTO", + "name": "GLTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "recommended_symbol": "GLTO" }, { - "denom": "ibc/0C246CAF04ACE73AB6D118F8909D54DA9ADA755F7DC44A0B4E69156745335BB8", - "chain_id": "kava_2222-10", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-116", + "denom": "ibc/0B41F8EB39912A15611BC834EB98962B59EE03C4CA8F781E709BB875BC18DC4B", + "chain_id": "kaiyo-1", + "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "NEOK", + "name": "NEOK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "decimals": 18, + "recommended_symbol": "NEOK" + }, + { + "denom": "ibc/C8D63703F5805CE6A2B20555139CF6ED9CDFA870389648EB08D688B94B0AE2C1", + "chain_id": "kaiyo-1", + "origin_denom": "wglmr-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WGLMR", + "name": "WGLMR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "decimals": 18, + "coingecko_id": "wrapped-moonbeam", + "recommended_symbol": "WGLMR.axl" + }, + { + "denom": "ibc/C905C540D8BEE0589D9442156F58D8BAA97CB549F44CFF68CB51AD0AEDD0B4EC", + "chain_id": "kaiyo-1", + "origin_denom": "stujuno", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "ibc/8584343261772F008DFF09BB8D7F40E69C00734979F95C9C2AA483871873F648", - "chain_id": "kava_2222-10", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-116", + "denom": "ibc/CB95F3D1449858A77DAC28D660404698BC9F70561907820705FE9E4AE9DC4E9B", + "chain_id": "kaiyo-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "is_svm": false, + "symbol": "solana.USDC.wh", + "name": "solana.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "recommended_symbol": "LOCAL" + "recommended_symbol": "solana.USDC.wh" }, { - "denom": "ibc/C734E26A03597AE89D814E0CE46AFBBAC2A0EA4D060B7BF3CC62719D7DD0A3F3", - "chain_id": "kava_2222-10", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-116", + "denom": "ibc/CC4EF9E26EC1C0BDEA058F5F08778C38E140353AF6E360B079EE3124018A1CC9", + "chain_id": "kaiyo-1", + "origin_denom": "uregen", + "origin_chain_id": "regen-1", + "trace": "transfer/channel-68", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "REGEN", + "name": "REGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "coingecko_id": "regen", + "recommended_symbol": "REGEN" }, { - "denom": "debt", - "chain_id": "kava_2222-10", - "origin_denom": "debt", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/D20559F0071F4BFDFF519D0C12B77AFE2A4481D44214BD92808B0C36B1E223C9", + "chain_id": "kaiyo-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "DEBT", - "name": "DEBT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/debt.png", + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "description": "System Total Debt", - "recommended_symbol": "DEBT" + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" }, { - "denom": "erc20/axelar/usdc", - "chain_id": "kava_2222-10", - "origin_denom": "erc20/axelar/usdc", - "origin_chain_id": "kava_2222-10", + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/uyfuzn", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "yFUZN", + "name": "yFUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuziony.svg", "decimals": 6, - "description": "Axelar Wrapped USDC", - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC" + "description": "The yield token of Fuzion", + "recommended_symbol": "yFUZN" }, { - "denom": "ibc/553F40D865364C80C1B78B6C3080EFC5B8306BE29234DFECF143514FE8DBEC10", - "chain_id": "kava_2222-10", - "origin_denom": "uaura", - "origin_chain_id": "xstaxy-1", - "trace": "transfer/channel-124", + "denom": "ibc/CEA34137DEBFFFB534CAAD7CEB5A96A9F8847CBD8CAE9030DB987437DC324362", + "chain_id": "kaiyo-1", + "origin_denom": "hard", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-95", "is_cw20": false, "is_evm": false, - "symbol": "AURA", - "name": "AURA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "is_svm": false, + "symbol": "HARD", + "name": "HARD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", "decimals": 6, - "coingecko_id": "aura-network", - "recommended_symbol": "AURA" + "coingecko_id": "kava-lend", + "recommended_symbol": "HARD" }, { - "denom": "bnb", - "chain_id": "kava_2222-10", - "origin_denom": "bnb", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/DBF6ABDB5F3D4267C039967515594453F4A31007FD838A566F563A01D2C2FB80", + "chain_id": "kaiyo-1", + "origin_denom": "umars", + "origin_chain_id": "mars-1", + "trace": "transfer/channel-55", "is_cw20": false, "is_evm": false, - "symbol": "BNB", - "name": "BNB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/bnb.png", - "decimals": 8, - "coingecko_id": "binancecoin", - "recommended_symbol": "BNB" + "is_svm": false, + "symbol": "MARS", + "name": "MARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "decimals": 6, + "description": "Mars Staking Coin", + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "recommended_symbol": "MARS" }, { - "denom": "btcb", - "chain_id": "kava_2222-10", - "origin_denom": "btcb", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/DEB81A21B8112F2D29BF9A516AC853276F7AAD22B0DF3EE95E9E26FBA8F7B15B", + "chain_id": "kaiyo-1", + "origin_denom": "eth.1.2.942d87", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "BTCB", - "name": "BTCB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/btcb.png", - "decimals": 8, - "coingecko_id": "bitcoin-bep2", - "recommended_symbol": "BTCB" + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", + "decimals": 18, + "recommended_symbol": "ETH.carbon" }, { - "denom": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", - "chain_id": "kava_2222-10", - "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "injective-1", + "denom": "ibc/DF2EE65970C03A37C3CA55884601329BEDB32B155B52F9B6B1D5D4CBB8AD9BA4", + "chain_id": "kaiyo-1", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.peggy" + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "erc20/multichain/usdc", - "chain_id": "kava_2222-10", - "origin_denom": "erc20/multichain/usdc", - "origin_chain_id": "kava_2222-10", + "denom": "factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira12tpc335t72qtrjh64ccdydzsr9qtswkqn72cyvfj4d5hmtgynphsv4xjtu/ulp", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "bUSDC", - "name": "bUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/busdc.png", + "is_svm": false, + "symbol": "LP SHD-MNTA", + "name": "LP SHD-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "USDC Earned in Kava", - "coingecko_id": "usd-coin", - "recommended_symbol": "bUSDC" + "description": "LP Bow: SHD-MNTA", + "recommended_symbol": "LP SHD-MNTA" }, { - "denom": "ibc/134CED3DD0201C9A01D9B67DD7FC6BF6DEF8A7F709C22B0ABCEC263002B13207", - "chain_id": "kava_2222-10", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-134", + "denom": "factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1y24jwsv84lnuv5j78qeqz5ujjpd058qsft7wfc0nk9jvycugm32sqnq53d/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "LP wBNB.axl-MNTA", + "name": "LP wBNB.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "description": "LP Bow: wBNB.axl-MNTA", + "recommended_symbol": "LP wBNB.axl-MNTA" }, { - "denom": "erc20/multichain/wbtc", - "chain_id": "kava_2222-10", - "origin_denom": "erc20/multichain/wbtc", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/3CE8A3DE4AE5AE2B4B8C03B2B227CC284732EDC849E506615FF2AA3D8EB1BAFC", + "chain_id": "kaiyo-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "MultiWBTC", - "name": "MultiWBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", "decimals": 8, - "description": "Multichain Wrapped BTC", - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "MultiWBTC" + "recommended_symbol": "DAI.wh" }, { - "denom": "hbtc", - "chain_id": "kava_2222-10", - "origin_denom": "hbtc", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/43BF3152103ED706E207005E7C433AB3440572C1D444FFE49321A0EF6A8EFC82", + "chain_id": "kaiyo-1", + "origin_denom": "shib-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "HBTC", - "name": "HBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/hbtc.png", - "decimals": 8, - "description": "HBTC on Kava Chain", - "coingecko_id": "huobi-btc", - "recommended_symbol": "HBTC" + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "decimals": 18, + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" }, { - "denom": "ibc/03DE75D6DF3A268607E86E2193DA78D2AD6D4A630BA15117793AC7D7FBDA72F3", - "chain_id": "kava_2222-10", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-116", + "denom": "ibc/0C86C1202E29CBB6356E86E0A641ECC068DC98DBDF32150CE05A5E8D4EDC8A6F", + "chain_id": "kaiyo-1", + "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "is_svm": false, + "symbol": "bWHALE", + "name": "bWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", "decimals": 6, - "recommended_symbol": "WINK" + "coingecko_id": "backbone-labs-staked-whale", + "recommended_symbol": "bWHALE" }, { - "denom": "ibc/4945DC9FE0C22619C5519EB4DA22CA0E3ED9DA4AF9516B6C8C29E662213F7049", - "chain_id": "kava_2222-10", - "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-116", + "denom": "ibc/4925CCFAD4FFBC63D7C52BB9AE2DE8CF7D0809124FBA1F44F4F2B7B4267D5E5A", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "ampMNTA", - "name": "ampMNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "is_svm": false, + "symbol": "CUB", + "name": "CUB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", "decimals": 6, - "recommended_symbol": "ampMNTA" + "recommended_symbol": "CUB" }, { - "denom": "erc20/axelar/wbtc", - "chain_id": "kava_2222-10", - "origin_denom": "erc20/axelar/wbtc", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/FFA3D0E9C3CDE729559FB71A09E9E6CFA5A85AFABAC9F3CB5DD3942BFF935F9C", + "chain_id": "kaiyo-1", + "origin_denom": "swth", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "axlWBTC", - "name": "axlWBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", + "is_svm": false, + "symbol": "SWTH", + "name": "SWTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", "decimals": 8, - "description": "Axelar Wrapped WBTC", - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC" + "coingecko_id": "switcheo", + "recommended_symbol": "SWTH" }, { - "denom": "erc20/multichain/dai", - "chain_id": "kava_2222-10", - "origin_denom": "erc20/multichain/dai", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/799725F4D580DCBBC4F1ACFB8C3C5791A480A88D5D310BB77FB61BCD9BECF504", + "chain_id": "kaiyo-1", + "origin_denom": "factory/inj18nm3q7r2rckklp7h8hgfzu2dlc20sftvd2893w/nUSD", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, - "symbol": "bDAI", - "name": "bDAI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/bdai.png", + "is_svm": false, + "symbol": "nUSD", + "name": "nUSD", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/nUSD.png", "decimals": 18, - "description": "DAI Earned in Kava", - "coingecko_id": "dai", - "recommended_symbol": "bDAI" - }, - { - "denom": "erc20/multichain/usdt", - "chain_id": "kava_2222-10", - "origin_denom": "erc20/multichain/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "bUSDT", - "name": "bUSDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/busdt.png", - "decimals": 6, - "description": "USDT Earned in Kava", - "coingecko_id": "tether", - "recommended_symbol": "bUSDT" + "recommended_symbol": "nUSD" }, { - "denom": "ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD", - "chain_id": "kava_2222-10", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/C01154C2547F4CB10A985EA78E7CD4BA891C1504360703A37E1D7043F06B5E1F", + "chain_id": "kaiyo-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "recommended_symbol": "sqOSMO" + "description": "Axelar Staking Coin", + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/2CA1ED8E0335BADDAE8CC30149583A78A8517FBED0AF3910E04525CCEBB173B1", - "chain_id": "kava_2222-10", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-116", + "denom": "ibc/F9F41DB8DA49EA6AB9EB4B2C9E0ECDC2502ABDA2FE728B85994BF31240CBC163", + "chain_id": "kaiyo-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "avalanche.USDC.wh", + "name": "avalanche.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "recommended_symbol": "avalanche.USDC.wh" }, { - "denom": "ibc/31E579FA24701B39270DF7E9B8640DEF9CC10CB94CE1A8845CD04C2628A7C3A2", - "chain_id": "kava_2222-10", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-117", + "denom": "ibc/FC59D6840A41252352263CEA2B832BB86D68D03CBA194263CB9F3C15946796FB", + "chain_id": "kaiyo-1", + "origin_denom": "link-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.axl" }, { - "denom": "ibc/0188B2B71988545E491C5AE008562D8C7CE9B43AE2DE4B1C482AFCFB0B44FD30", - "chain_id": "kava_2222-10", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-119", + "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", + "chain_id": "kaiyo-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "description": "USD Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "chain_id": "kava_2222-10", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/39C46E9F45E72BA4B2DD0EF7DD7BA01B7461DEC9CDFCB7376765D824255FD30D", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra10se906awphtccf4vd83m0ulpmpt9v4msuakmpy0pwvmtxmup3kdq25rayn", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" + "is_svm": false, + "symbol": "xxx", + "name": "xxx", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/xxx3.png", + "decimals": 10, + "recommended_symbol": "xxx" }, { - "denom": "swp", - "chain_id": "kava_2222-10", - "origin_denom": "swp", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/22F3DC562FEA2148D9D7B15E31FA1F00F211C241C0D367435D9AB61506FE5857", + "chain_id": "kaiyo-1", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-101", "is_cw20": false, "is_evm": false, - "symbol": "SWP", - "name": "SWP", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", - "decimals": 6, - "description": "Governance token of Kava Swap Protocol", - "coingecko_id": "kava-swap", - "recommended_symbol": "SWP" + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { - "denom": "erc20/tether/usdt", - "chain_id": "kava_2222-10", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/8B2745EE933D5CD1DB592701FD4A1F0E534BD9A6B2F369DB86FAE0342A2857A6", + "chain_id": "kaiyo-1", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" }, { - "denom": "hard", - "chain_id": "kava_2222-10", - "origin_denom": "hard", - "origin_chain_id": "kava_2222-10", - "trace": "", + "denom": "ibc/A7A5C44AA67317F1B3FFB27BAFC89C9CC04F61306F6F834F89A74B8F82D252A1", + "chain_id": "kaiyo-1", + "origin_denom": "usomm", + "origin_chain_id": "sommelier-3", + "trace": "transfer/channel-69", "is_cw20": false, "is_evm": false, - "symbol": "HARD", - "name": "HARD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "is_svm": false, + "symbol": "SOMM", + "name": "SOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", "decimals": 6, - "description": "Governance token of Kava Lend Protocol", - "coingecko_id": "kava-lend", - "recommended_symbol": "HARD" + "coingecko_id": "sommelier", + "recommended_symbol": "SOMM" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "chain_id": "kava_2222-10", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/A805A35333912DC7910E8BC433AA37B819B6CD9BC6C95BD3D05CF3B98A8C0F79", + "chain_id": "kaiyo-1", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-158", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/A3D9BA615C3BC5C8892E86B1D8B792DD139A68ADE97AA7A9C7F26AD25D9E5FD7", - "chain_id": "kava_2222-10", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-132", + "denom": "ibc/BEEBCB44C03068B40BD4709196D5205ED2F78878611D41BC56DD223410AEF4AF", + "chain_id": "kaiyo-1", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "SEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "recommended_symbol": "WOSMO" }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "chain_id": "kava_2222-10", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0", + "denom": "ibc/ED2B26865124554B3DFCA21B72A86B2864669295696C8684171CD54E1C7C67A4", + "chain_id": "kaiyo-1", + "origin_denom": "usc", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "is_svm": false, + "symbol": "USC", + "name": "USC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", + "decimals": 8, + "coingecko_id": "carbon-usd", + "recommended_symbol": "USC" }, { - "denom": "ibc/2A38426E8BB4B66F0F910C3CCF09CD95A8381453F869E96A966FF13055C9D886", - "chain_id": "kava_2222-10", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-133", + "denom": "ibc/F2331645B9683116188EF36FC04A809C28BD36B54555E8705A37146D0182F045", + "chain_id": "kaiyo-1", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "axlUSDT", + "name": "axlUSDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "coingecko_id": "tether", + "recommended_symbol": "USDT.axl" }, { - "denom": "xrpb", - "chain_id": "kava_2222-10", - "origin_denom": "xrpb", - "origin_chain_id": "kava_2222-10", + "denom": "factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1622xuv8unv22xzazljvqh8uukcdz3yzmrp6axgerh7vxg4kum5tqcwcqmv/ulp", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "XRPB", - "name": "XRPB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/xrpb.png", - "decimals": 8, - "coingecko_id": "ripple", - "recommended_symbol": "XRPB" - } - ] - }, - "kyve-1": { - "assets": [ + "is_svm": false, + "symbol": "LP FUZN-MNTA", + "name": "LP FUZN-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "decimals": 6, + "description": "LP Bow: FUZN-MNTA", + "recommended_symbol": "LP FUZN-MNTA" + }, { - "denom": "ukyve", - "chain_id": "kyve-1", - "origin_denom": "ukyve", - "origin_chain_id": "kyve-1", + "denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KYVE", - "name": "KYVE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "decimals": 6, - "description": "The native utility token of the KYVE network.", - "coingecko_id": "kyve-network", - "recommended_symbol": "KYVE" + "description": "MantaDAO Governance Token", + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" }, { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "chain_id": "kyve-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "denom": "ibc/E5CA126979E2FFB4C70C072F8094D07ECF27773B37623AD2BF7582AD0726F0F3", + "chain_id": "kaiyo-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "decimals": 8, + "description": "Wrapped SOL (Wormhole), SOL, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "recommended_symbol": "SOL.wh" }, { - "denom": "ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98", - "chain_id": "kyve-1", - "origin_denom": "uaxl", + "denom": "ibc/E67ADA2204A941CD4743E70771BA08E24885E1ADD6FD140CE1F9E0FEBB68C6B2", + "chain_id": "kaiyo-1", + "origin_denom": "wftm-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" - } - ] - }, - "lum-network-1": { - "assets": [ + "is_svm": false, + "symbol": "WFTM", + "name": "WFTM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "decimals": 18, + "coingecko_id": "wrapped-fantom", + "recommended_symbol": "WFTM.axl" + }, { - "denom": "ibc/A8C2D23A1E6F95DA4E48BA349667E322BD7A6C996D8A4AAE8BA72E190F3D1477", - "chain_id": "lum-network-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-12", + "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "chain_id": "kaiyo-1", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "description": "The native EVM, governance and staking token of the Evmos Hub", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "ulum", - "chain_id": "lum-network-1", - "origin_denom": "ulum", - "origin_chain_id": "lum-network-1", + "denom": "factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1ul00h0a2kgcg9x2yfa86wj9qguhyv7jmpjpw6ztt24j9mn9xjw3slawyc8/ulp", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LUM", - "name": "LUM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", + "is_svm": false, + "symbol": "LP qcMNTA-MNTA", + "name": "LP qcMNTA-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "Native token of the Lum Network", - "coingecko_id": "lum-network", - "recommended_symbol": "LUM" + "description": "LP Bow: qcMNTA-MNTA", + "recommended_symbol": "LP qcMNTA-MNTA" }, { - "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", - "chain_id": "lum-network-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", - "is_cw20": false, - "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "denom": "ibc/0ABEC6EE026C0BEE3712CE58BC0A5D7A7B8B8130535094E459152CB562C1EC85", + "chain_id": "kaiyo-1", + "origin_denom": "reth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "rETH", + "name": "rETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", + "decimals": 18, + "coingecko_id": "rocket-pool-eth", + "recommended_symbol": "rETH.axl" }, { - "denom": "ibc/51A818D8BBC385C152415882286C62169C05498B8EBCFB38310B1367583860FF", - "chain_id": "lum-network-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-32", + "denom": "ibc/DBE837E151E982B03AD5C311C7EF617FE69A435CE36DA3E93CC7BA5F5BC428B0", + "chain_id": "kaiyo-1", + "origin_denom": "udoki", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-157", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "is_svm": false, + "symbol": "DOKI", + "name": "DOKI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", "decimals": 6, - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "coingecko_id": "doki", + "recommended_symbol": "DOKI" }, { - "denom": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", - "chain_id": "lum-network-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-3", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "chain_id": "kaiyo-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" - } - ] - }, - "mahalo-1": { - "assets": [ + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, { - "denom": "move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d", - "chain_id": "mahalo-1", - "origin_denom": "move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d", - "origin_chain_id": "mahalo-1", - "trace": "", + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "chain_id": "kaiyo-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "USDC-INIT LP", - "name": "USDC-INIT LP", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC-INIT.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "description": "The LP token of USDC-INIT", - "recommended_symbol": "USDC-INIT LP" + "description": "Circle's stablecoin on Axelar", + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ueth", - "chain_id": "mahalo-1", - "origin_denom": "ueth", - "origin_chain_id": "mahalo-1", + "denom": "factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira10qyzrqaza0f593cmnl4sc3p3nhqqakn9j56d899u723pznxpn8us6cypuw/ulp", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", + "is_svm": false, + "symbol": "LP DOT.axl-MNTA", + "name": "LP DOT.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "The fake ETH", - "recommended_symbol": "ETH" + "description": "LP Bow: DOT.axl-MNTA", + "recommended_symbol": "LP DOT.axl-MNTA" }, { - "denom": "uinit", - "chain_id": "mahalo-1", - "origin_denom": "uinit", - "origin_chain_id": "mahalo-1", - "trace": "", + "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "chain_id": "kaiyo-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "INIT", - "name": "INIT", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/INIT.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "description": "The native token of Initia", - "recommended_symbol": "INIT" + "description": "The native token of Stargaze", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "uusdc", - "chain_id": "mahalo-1", - "origin_denom": "uusdc", - "origin_chain_id": "mahalo-1", - "trace": "", + "denom": "ibc/53796B3762678CD80784A7DD426EB45B89C024BE3D45224CC83FDE3DED7DA0A1", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "is_svm": false, + "symbol": "FURY.legacy", + "name": "FURY.legacy", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png", "decimals": 6, - "description": "The fake USDC", - "recommended_symbol": "USDC" + "coingecko_id": "fanfury", + "recommended_symbol": "FURY.legacy" }, { - "denom": "ibc/7EDFA7F33D1EEBB3827AFF163625D2EB275838F00664C1042AA7D456B652D622", - "chain_id": "mahalo-1", - "origin_denom": "l2/2588fd87a8e081f6a557f43ff14f05dddf5e34cb27afcefd6eaf81f1daea30d0", - "origin_chain_id": "miniwasm-1", - "trace": "transfer/channel-1", + "denom": "ibc/8318B7E036E50C0CF799848F23ED84778AAA8749D9C0BCD4FF3F4AF73C53387F", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:juno1qsrercqegvs4ye0yqg93knv73ye5dc3prqwd6jcdcuj8ggp6w0us66deup", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "INIT", - "name": "INIT", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/images/INIT.png", + "is_svm": false, + "symbol": "LOOP", + "name": "LOOP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/loop.png", "decimals": 6, - "recommended_symbol": "INIT" + "coingecko_id": "loop", + "recommended_symbol": "LOOP" }, { - "denom": "ibc/82EB1C694C571F954E68BFD68CFCFCD6123B0EBB69AAA8BAB7A082939B45E802", - "chain_id": "mahalo-1", - "origin_denom": "l2/771d639f30fbe45e3fbca954ffbe2fcc26f915f5513c67a4a2d0bc1d635bdefd", - "origin_chain_id": "minimove-1", - "trace": "transfer/channel-0", + "denom": "ibc/8374139B2BFECF639A2C0A84E53B7492329C95123B21F84324E8825B50EF0E8F", + "chain_id": "kaiyo-1", + "origin_denom": "cgt/1", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "INIT", - "name": "INIT", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/images/INIT.png", - "decimals": 6, - "recommended_symbol": "INIT" + "is_svm": false, + "symbol": "USD", + "name": "USD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "decimals": 18, + "recommended_symbol": "USD" }, { - "denom": "move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200", - "chain_id": "mahalo-1", - "origin_denom": "move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200", - "origin_chain_id": "mahalo-1", - "trace": "", + "denom": "ibc/8AB88C0D359840C50442995B8053323F94BAC6AF040E12F7F2517EDD5475A909", + "chain_id": "kaiyo-1", + "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "ETH-INIT LP", - "name": "ETH-INIT LP", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH-INIT.png", + "is_svm": false, + "symbol": "SAIL", + "name": "SAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", "decimals": 6, - "description": "The LP token of ETH-INIT", - "recommended_symbol": "ETH-INIT LP" - } - ] - }, - "mantle-1": { - "assets": [ + "recommended_symbol": "SAIL" + }, { - "denom": "ibc/5AF2F6C9D801EE6FAB04A4F97D77A27683AF63D540E9ECF0C628B95D4EDFCEEE", - "chain_id": "mantle-1", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-17", + "denom": "factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1ya42knfcsvy6eztegsn3hz7zpjvhzn05ge85xa2dy2zrjeul9hnspp3c06/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "xMNTA", + "name": "xMNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xmnta.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "description": "Ghost Vault MNTA", + "recommended_symbol": "xMNTA" }, { - "denom": "ibc/EACD4A15F32900B396DDA7B9E3ED513DBC575FC6F06D37DC439103EF9CCFD3F0", - "chain_id": "mantle-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-17", + "denom": "ibc/0306D6B66EAA2EDBB7EAD23C0EC9DDFC69BB43E80B398035E90FBCFEF3FD1A87", + "chain_id": "kaiyo-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "chain_id": "mantle-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "denom": "ibc/4618940637F818D07EEF445AF18CF1396EDB74590AD95D0921BA89427D00E634", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra1rc6ssp5rym7a0hg29xpj4cc9e67tl56kg5jyzgl9qrhfxxc2ugvsnrkala", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "SEAS", + "name": "SEAS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/SEAS.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "recommended_symbol": "SEAS" }, { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", - "chain_id": "mantle-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "denom": "ibc/212E3EA99376AE1E668F6CF16A2C533843845C4DC00FAA9BA353A8EEA8E9D443", + "chain_id": "kaiyo-1", + "origin_denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "JIMMY", + "name": "JIMMY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "recommended_symbol": "JIMMY" }, { - "denom": "ibc/261AA78A732B29C6052EF0C33D2991D1C65BBE173C9B9E6E3688E32D9947A98E", - "chain_id": "mantle-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-17", + "denom": "factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira18lhugzap20ndlqr5j2p86yk4pxpe9jjuac05z0ypxuwn3mm5vjhsjh4etr/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "LP NTRN-MNTA", + "name": "LP NTRN-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "description": "LP Bow: NTRN-MNTA", + "recommended_symbol": "LP NTRN-MNTA" }, { - "denom": "ibc/DF63978F803A2E27CA5CC9B7631654CCF0BBC788B3B7F0A10200508E37C70992", - "chain_id": "mantle-1", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-8", + "denom": "factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira18mveas6xseaqu3fmukwv2ac6mp4hszk08lvyamedytjs0kxm42yqs9v89x/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "LP wFTM.axl-MNTA", + "name": "LP wFTM.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.grv" + "description": "LP Bow: wFTM.axl-MNTA", + "recommended_symbol": "LP wFTM.axl-MNTA" }, { - "denom": "umntl", - "chain_id": "mantle-1", - "origin_denom": "umntl", - "origin_chain_id": "mantle-1", + "denom": "factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira18sek950cg92gd0kvpj67dfg6p7kee6hzw92etcf2jgufr3mttvaslt5sal/ulp", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MNTL", - "name": "MNTL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", + "is_svm": false, + "symbol": "LP stOSMO-OSMO", + "name": "LP stOSMO-OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "The native token of Asset Mantle", - "coingecko_id": "assetmantle", - "recommended_symbol": "MNTL" - } - ] - }, - "mars-1": { - "assets": [ + "description": "LP Bow: stOSMO-OSMO", + "recommended_symbol": "LP stOSMO-OSMO" + }, { - "denom": "ibc/923A25D77C573CC5B74BF8ECE7EDB1D27EE9B77F84892BBBF8CA51BD6FFFA397", - "chain_id": "mars-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-5", + "denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "ampKUJI", + "name": "ampKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", "decimals": 6, - "description": "Crescent Staking Coin", - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "description": "ampKUJI", + "recommended_symbol": "ampKUJI" }, { - "denom": "ibc/D70B0FBF97AEB04491E9ABF4467A7F66CD6250F4382CE5192D856114B83738D2", - "chain_id": "mars-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "rFUZN", + "name": "rFUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", "decimals": 6, - "description": "Terra Staking Coin", - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "description": "The receipt token of Fuzion", + "recommended_symbol": "rFUZN" }, { - "denom": "ibc/E1B86EFC3474070FD47C02F17C84BD573AA8E17C5A8824F293D5B99D6E5F9C09", - "chain_id": "mars-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-37", + "denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1slueerjz7mx9jp45u3y0rjwtvhcf8a68wf2mjt/ublend", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "BLEND", + "name": "BLEND", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/blend.svg", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "description": "Blend Token", + "recommended_symbol": "BLEND" }, { - "denom": "umars", - "chain_id": "mars-1", - "origin_denom": "umars", - "origin_chain_id": "mars-1", - "trace": "", + "denom": "ibc/034FBAB83B9B8AB35217DD59452C92EBC845ECD2E44AB17D260D9A2E7200AC79", + "chain_id": "kaiyo-1", + "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, - "symbol": "MARS", - "name": "MARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "is_svm": false, + "symbol": "ampWHALE", + "name": "ampWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", "decimals": 6, - "description": "Mars protocol token", - "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", - "recommended_symbol": "MARS" + "recommended_symbol": "ampWHALE" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "chain_id": "mars-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/2661BA7AD557526A9BE35C7576EEF8E82B14A01ECCE36AD139979FD683D37C9D", + "chain_id": "kaiyo-1", + "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-58", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "RAC", + "name": "RAC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "recommended_symbol": "RAC" }, { - "denom": "ibc/90F27756D300141BDF07B83E65401BDC58C05269B9BAE3ECB0B20FAB166BCF8F", - "chain_id": "mars-1", - "origin_denom": "ukuji", + "denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-0", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", "decimals": 6, - "description": "Kujira Staking Coin", - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "description": "The content house of Kujira", + "recommended_symbol": "WINK" }, { - "denom": "ibc/C0DB3E0C7F3CD32FA24FC031FD8B6833627A1C690B741BA85D7A4752D974A77F", - "chain_id": "mars-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1qzu3up50auxhqyzfq56znuj8n38q2ra7daaf9ef7vg8gu66jh4fqd2wd2y/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "qcMNTA", + "name": "qcMNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcmnta.svg", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "description": "Quark's auto-compounding MNTA derivative", + "recommended_symbol": "qcMNTA" }, { - "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", - "chain_id": "mars-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-3", + "denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "FUZN", + "name": "FUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "description": "The staking and governance token of Fuzion", + "recommended_symbol": "FUZN" }, { - "denom": "ibc/9F977CFD6084FD4B83DF6BD27CECC0F805D0F6D95ED099650F330D94510F7F19", - "chain_id": "mars-1", - "origin_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1smfdnww47xav4nn849xphku3gk3xp7a24fk533dce8masnsz4v8quklajx/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CDT", - "name": "CDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", + "is_svm": false, + "symbol": "LP wMATIC.axl-MNTA", + "name": "LP wMATIC.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "collateralized-debt-token", - "recommended_symbol": "CDT" - } - ] - }, - "migaloo-1": { - "assets": [ + "description": "LP Bow: wMATIC.axl-MNTA", + "recommended_symbol": "LP wMATIC.axl-MNTA" + }, { - "denom": "ibc/0102CC6E28D29F57444C645C86AE2F4E8789C3A85445A3B185E51F0A23862E87", - "chain_id": "migaloo-1", - "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-8", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampMNTA", - "name": "ampMNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "is_svm": false, + "symbol": "LOCAL", + "name": "LOCAL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", "decimals": 6, - "recommended_symbol": "ampMNTA" + "description": "Local Money", + "recommended_symbol": "LOCAL" }, { - "denom": "ibc/29278C138D7BDA1A32C544A6CAEBA89FD02BA0DD56937C331924985BCF1524CA", - "chain_id": "migaloo-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-12", + "denom": "ibc/06AB154D88A95D7165682A56B69561CA5078EA2D6C9620EC4F34DB6C48346A59", + "chain_id": "kaiyo-1", + "origin_denom": "mGeo", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-157", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "GEO", + "name": "GEO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "recommended_symbol": "GEO" }, { - "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", - "chain_id": "migaloo-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-1", + "denom": "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", + "chain_id": "kaiyo-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "description": "Wrapped Bitcoin on Axelar", + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "uwhale", - "chain_id": "migaloo-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "", + "denom": "ibc/A8967E668E2BC3D603366FA33B3ADC8EFFD6E72CC9DB3827EAAD90245ADBAA45", + "chain_id": "kaiyo-1", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "description": "The native token of Migaloo Chain", - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv" }, { - "denom": "ibc/3808384ECC813CAF207992BE997BD18E18560E473D5368F1B4B77C3822262C4D", - "chain_id": "migaloo-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-53", + "denom": "ibc/AF371F507606449381F82454241BF562E742312BE5744B08AF66D8840C12A5C6", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "BMOS", + "name": "BMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "recommended_symbol": "BMOS" }, { - "denom": "ibc/3EEF3E486C8CE8ECA37512967D7FAAD54728367336874AD03931AD12E4D9C53B", - "chain_id": "migaloo-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-12", + "denom": "factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1h75predtjdm2e7u8cuvqs3usc6xs2mxlkcr20zsshvw3qap25frsr4z949/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "LP MNTA-KUJI", + "name": "LP MNTA-KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "description": "LP Bow: MNTA-KUJI", + "recommended_symbol": "LP MNTA-KUJI" }, { - "denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", - "chain_id": "migaloo-1", - "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", - "origin_chain_id": "migaloo-1", + "denom": "factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1t4mr2xt4ky4mfwcy752chzlquam3hzs44mt8vwyec8mvypmzxu5s90vamt/ulp", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SHARK", - "name": "SHARK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", + "is_svm": false, + "symbol": "LP UNI.axl-MNTA", + "name": "LP UNI.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "SHARK is the apex price prediction market within Cosmos.", - "recommended_symbol": "SHARK" + "description": "LP Bow: UNI.axl-MNTA", + "recommended_symbol": "LP UNI.axl-MNTA" }, { - "denom": "ibc/106B438A78C581C5291E114B21588C41F98532E04D5369CFEE5825D95D465278", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "denom": "factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1znx048dcc6arqfw6kpckl0k4ts2h7cdx20nk22wz2cxh5vle3wxqknk238/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SAYVE", - "name": "SAYVE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", + "is_svm": false, + "symbol": "LP INJ-MNTA", + "name": "LP INJ-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "recommended_symbol": "SAYVE" + "description": "LP Bow: INJ-MNTA", + "recommended_symbol": "LP INJ-MNTA" }, { - "denom": "ibc/1C2D8505A29823310B4484E4C63CFDCB08C0D3B57537A615A45F4E5D42CDC789", - "chain_id": "migaloo-1", + "denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "chain_id": "kaiyo-1", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "decimals": 18, + "description": "Wrapped Ether on Axelar", + "coingecko_id": "weth", + "recommended_symbol": "WETH.axl" + }, + { + "denom": "ibc/5A3DCF59BC9EC5C0BB7AA0CA0279FC2BB126640CB8B8F704F7BC2DC42495041B", + "chain_id": "kaiyo-1", "origin_denom": "inj", "origin_chain_id": "injective-1", - "trace": "transfer/channel-3", + "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "INJ", "name": "INJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", @@ -20510,1146 +22637,3747 @@ "recommended_symbol": "INJ" }, { - "denom": "ibc/B49EA1FB55578901C523E157DE1F279BE86BFBC5D2B6DEA3069354A8294E6253", - "chain_id": "migaloo-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-57", + "denom": "ibc/5D98FB84A053607675006ED29A165F67B51FDFCEDDBEE1CFCB0F36BE5A78E44C", + "chain_id": "kaiyo-1", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "USDCso", - "name": "USDCso", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "sqOSMO", + "name": "sqOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDCso" + "recommended_symbol": "sqOSMO" }, { - "denom": "ibc/C158F1510B7C5FA14F728752F1518219959BF6A7025DAC66E12FCE10A27EA8BE", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "denom": "ibc/688C55F14585C398B453E88F0880EF99E93D6DCF7E2FE547E01C3A38B2CD9724", + "chain_id": "kaiyo-1", + "origin_denom": "stadydx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "BMOS", - "name": "BMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", - "decimals": 6, - "recommended_symbol": "BMOS" + "is_svm": false, + "symbol": "stDYDX", + "name": "stDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "decimals": 18, + "coingecko_id": "stride-staked-dydx", + "recommended_symbol": "stDYDX" }, { - "denom": "ibc/CF614653FB1F20B4C8E5807B0BA61FDB3299CFF9BFD7EE1E49AE85EDD2962166", - "chain_id": "migaloo-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-8", + "denom": "ibc/6D84A72C48A3EA8A690083487F1586628F443FAE5F92175E4684B0744490A356", + "chain_id": "kaiyo-1", + "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "STRDST", + "name": "STRDST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "recommended_symbol": "STRDST" }, { - "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", - "chain_id": "migaloo-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "denom": "ibc/7023F9629A70F8112764D959D04F52EA3115A0AED3CEE59694799FD8C91A97FA", + "chain_id": "kaiyo-1", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "chain_id": "migaloo-1", - "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "origin_chain_id": "migaloo-1", - "trace": "", + "denom": "ibc/7D9D28CABB49A4BB1A50C3B7E4544BFDBC5DDFAEB84A7787755A34CE7196CE15", + "chain_id": "kaiyo-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "bWHALE", - "name": "bWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", - "decimals": 6, - "description": "boneWHALE", - "recommended_symbol": "bWHALE" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "decimals": 8, + "recommended_symbol": "WETH.wh" }, { - "denom": "ibc/84B8C4F1FE15019DBD937B5670905B6280BB7C0D031E9F4D9F50E33386D3CAE6", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "denom": "ibc/8A1E8428A7196BE19FA7C749B0229019DB60B0776B81896803587BE00197322E", + "chain_id": "kaiyo-1", + "origin_denom": "stuluna", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "CUB", - "name": "CUB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "is_svm": false, + "symbol": "stLUNA", + "name": "stLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", "decimals": 6, - "recommended_symbol": "CUB" + "coingecko_id": "stride-staked-luna", + "recommended_symbol": "stLUNA" }, { - "denom": "ibc/B1F66414EA8D434F52150F7EC1E79BC917BE78B60E7D5FB089607936FAE67139", - "chain_id": "migaloo-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-53", + "denom": "ibc/8ACBD59272835F06D7083A1D0AB866D9B09BF76754A1C7DC6AEBE0DB3D84EA3B", + "chain_id": "kaiyo-1", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-95", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737", - "chain_id": "migaloo-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-48", + "denom": "ibc/91DAE8E9D19A6A770D2A787E54E1D388F8E603D89093FC4939CE36125CB8284D", + "chain_id": "kaiyo-1", + "origin_denom": "utori", + "origin_chain_id": "teritori-1", + "trace": "transfer/channel-89", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "TORI", + "name": "TORI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "coingecko_id": "teritori", + "recommended_symbol": "TORI" }, { - "denom": "ibc/8935E9B60645CD61DC925E7C71956DC909D4548262103D1AB75E2A5306AC84C1", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "denom": "ibc/9402F8323E9C77BB72544AF85EE181E55912BA26EBFFFA381D3DA19911C33FD8", + "chain_id": "kaiyo-1", + "origin_denom": "bnb", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-95", "is_cw20": false, "is_evm": false, - "symbol": "ASTRO", - "name": "ASTRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png", - "decimals": 6, - "coingecko_id": "astroport-fi", - "recommended_symbol": "ASTRO" + "is_svm": false, + "symbol": "BNB", + "name": "BNB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/bnb.png", + "decimals": 8, + "coingecko_id": "binancecoin", + "recommended_symbol": "BNB" }, { - "denom": "ibc/96658DE44BF70C47C26582AFB16454253ADA7CA03AA5FC2F196296A468E6625B", - "chain_id": "migaloo-1", - "origin_denom": "usdx", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-48", + "denom": "ibc/950993C6DA64F5A60A48D65A18CAB2D8190DE2DC1B861E70E8B03C61F7D5FBDC", + "chain_id": "kaiyo-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-99", "is_cw20": false, "is_evm": false, - "symbol": "USDX", - "name": "USDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", - "decimals": 6, - "coingecko_id": "usdx", - "recommended_symbol": "USDX" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/AEE2F7EF838464848886097FA71AAB4A3A085F16D7585A0ED8B972383710B69F", - "chain_id": "migaloo-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-10", + "denom": "ibc/966410B7B51150145FE3905A5AB6106F38345007AA276744C916768413B7E52D", + "chain_id": "kaiyo-1", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", - "decimals": 6, - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "is_svm": false, + "symbol": "tBTC", + "name": "tBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg", + "decimals": 8, + "recommended_symbol": "tBTC.wh" }, { - "denom": "ibc/B65E189D3168DB40C88C6A6C92CA3D3BB0A8B6310325D4C43AB5702F06ECD60B", - "chain_id": "migaloo-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-53", + "denom": "ibc/AF4CF77A64B784DE1C40471BBB366722DBE7FFEB8C42C71D2B7FB447BA193549", + "chain_id": "kaiyo-1", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WBTC", "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" }, { - "denom": "ibc/BC5C0BAFD19A5E4133FDA0F3E04AE1FBEE75A4A226554B2CBB021089FF2E1F8A", - "chain_id": "migaloo-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-60", + "denom": "ibc/B33CEB612F076CAF7898B7AA6C194197534A18FB81558E787CDDCEBC6868B522", + "chain_id": "kaiyo-1", + "origin_denom": "usdc.1.2.343151", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "recommended_symbol": "USDC.carbon" }, { - "denom": "ibc/BEFB9AB13AB43157A0AF6214AD4B1F565AC0CA0C1760B8337BE7B9E2996F7752", - "chain_id": "migaloo-1", - "origin_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "denom": "ibc/B37E4D9FB5B30F3E1E20A4B2DE2A005E584C5C822C44527546556AE2470B4539", + "chain_id": "kaiyo-1", + "origin_denom": "dot-planck", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "ampOSMO", - "name": "ampOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", - "decimals": 6, - "recommended_symbol": "ampOSMO" + "is_svm": false, + "symbol": "DOT", + "name": "DOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" }, { - "denom": "ibc/C7B96F971C31A81811BAF6000F8B8F60C34009619B37C8AC2C40920FB92A192C", - "chain_id": "migaloo-1", - "origin_denom": "shib-wei", + "denom": "ibc/B4B3B08FE5FEA65CB25E467C9D95D180A6CDB0EBE730E7BB20CA1BF6C9A80D9B", + "chain_id": "kaiyo-1", + "origin_denom": "yieldeth-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-53", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "is_svm": false, + "symbol": "YieldETH", + "name": "YieldETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" - }, - { - "denom": "ibc/E224A26BBDD3FBBB461CBFC40EDC74BAA9606C667371F428F147A8D6C98C28D6", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", - "is_cw20": false, - "is_evm": false, - "symbol": "BLUE", - "name": "BLUE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", - "decimals": 6, - "recommended_symbol": "BLUE" + "recommended_symbol": "YieldETH.axl" }, { - "denom": "ibc/EF4222BF77971A75F4E655E2AD2AFDDC520CE428EF938A1C91157E9DFBFF32A3", - "chain_id": "migaloo-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-8", + "denom": "ibc/B4DCACF7753C05040AF0A7BF2B583402C4B8C9B0A86FCECE32EF63CB7F0A46B3", + "chain_id": "kaiyo-1", + "origin_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "is_svm": false, + "symbol": "PAXG", + "name": "PAXG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", + "decimals": 18, + "coingecko_id": "pax-gold", + "recommended_symbol": "PAXG.grv" }, { - "denom": "ibc/6E5BF71FE1BEBBD648C8A7CB7A790AEF0081120B2E5746E6563FC95764716D61", - "chain_id": "migaloo-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "denom": "ibc/BA5445831952CB0FC61076A4FB14A64C8E022061DA4B591E6BF0ED37C5C909EA", + "chain_id": "kaiyo-1", + "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC" + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH" }, { - "denom": "ibc/7214707FABBA013C581D0B23FD8A3E0252276DB81E32CA00310D652249D31BC9", - "chain_id": "migaloo-1", - "origin_denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", + "denom": "ibc/BFDEE4E7F0E8371F195C2A6CFB70E54C18361E475FC26BE3A38B36E55FCEFDD6", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-0", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "ampROAR", - "name": "ampROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png", + "is_svm": false, + "symbol": "SAYVE", + "name": "SAYVE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", "decimals": 6, - "recommended_symbol": "ampROAR" + "recommended_symbol": "SAYVE" }, { - "denom": "ibc/4E0E525D0BD212C0B7C2D1576A4A085E42F3695E2A60948252BBB7AFC354A249", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra1x62mjnme4y0rdnag3r8rfgjuutsqlkkyuh4ndgex0wl3wue25uksau39q8", + "denom": "ibc/DA59C009A0B3B95E0549E6BF7B075C8239285989FF457A8EDDBB56F10B2A6986", + "chain_id": "kaiyo-1", + "origin_denom": "uluna", "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "xASTRO", - "name": "xASTRO", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/xAstro.svg", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "recommended_symbol": "xASTRO" + "description": "The native staking token of Terra.", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/5D58AC622C3025E68C3C8F0793BA66A1CD356B60A303E9B900E690C497238109", - "chain_id": "migaloo-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-22", + "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "chain_id": "kaiyo-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "description": "The native token of JUNO Chain", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "denom": "ibc/F2A6A3D4C02E003CC3EDB84CFD1C6F8F0E21EE6815575C5FE82FAC7D96106239", + "chain_id": "kaiyo-1", + "origin_denom": "aplanq", + "origin_chain_id": "planq_7070-2", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, - "symbol": "bLUNA", - "name": "bLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/boneluna.png", - "decimals": 6, - "description": "boneLUNA are autocompounding LUNA tokens", - "recommended_symbol": "bLUNA" + "is_svm": false, + "symbol": "PLQ", + "name": "PLQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", + "decimals": 18, + "coingecko_id": "planq", + "recommended_symbol": "PLQ" }, { - "denom": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", - "chain_id": "migaloo-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-0", + "denom": "ibc/24DD547340629EACCFEFDE8461A0A40769239CBC9E2ADB2ED0C51C324EEB93A7", + "chain_id": "kaiyo-1", + "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "is_svm": false, + "symbol": "PSTAKE", + "name": "PSTAKE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "decimals": 18, + "coingecko_id": "pstake-finance", + "recommended_symbol": "PSTAKE.grv" }, { - "denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", - "chain_id": "migaloo-1", - "origin_denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", - "origin_chain_id": "migaloo-1", - "trace": "", + "denom": "ibc/3458D4A2653918EAE5926A6F7CB6DCE91C13DAECDB05AA40F050F8867A6649FE", + "chain_id": "kaiyo-1", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "OPHIR", - "name": "OPHIR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "description": "OPHIR is a Cosmos Treasury DAO established on Migaloo.", - "recommended_symbol": "OPHIR" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" }, { - "denom": "ibc/7B1F816B491BB08812213F157AA1B5B06994D8139DA1F0D3DEF76993778A4EBE", - "chain_id": "migaloo-1", - "origin_denom": "ucmst", + "denom": "ibc/35C18EBF8C2691FA9AAAAD0E8B9ECA8C3C903D681429C6017E3F6CE49B786E81", + "chain_id": "kaiyo-1", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-50", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" + }, + { + "denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "chain_id": "kaiyo-1", + "origin_denom": "ucmdx", "origin_chain_id": "comdex-1", - "trace": "transfer/channel-12", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "description": "Native Token of Comdex Protocol", + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "ibc/7C51ED0EF526EC9EA8EFF22258F3ED11B92318845E5E167029AA70D5F0FD990C", - "chain_id": "migaloo-1", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-8", + "denom": "ibc/3766EE7E4A42BA83C4AB0DD26B144B26B7758BDAB4017E0924C95FBFC69A2589", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "BLUE", + "name": "BLUE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "recommended_symbol": "BLUE" }, { - "denom": "ibc/022A6D9857D63A9D9C772B0DDD68A6CC0434211C8D6019B9617532C5FE8BEB85", - "chain_id": "migaloo-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "denom": "ibc/423DE4133F8676069BC9550FF251F1F870F6885621C8E363A9F70257BF3AA638", + "chain_id": "kaiyo-1", + "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "AUTISM", + "name": "AUTISM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "coingecko_id": "autism", + "recommended_symbol": "AUTISM" }, { - "denom": "ibc/C6E9743113F3CEEDBA77DD2716647E704CAD494EF7D92F47520C42525A23FD8E", - "chain_id": "migaloo-1", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-57", + "denom": "factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira13g2eelkf9q4md4xx52ylqvlgpccn50f2vyu05eazufd2g4jatmhq2425pq/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "SEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "is_svm": false, + "symbol": "LP DYDX-MNTA", + "name": "LP DYDX-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "description": "LP Bow: DYDX-MNTA", + "recommended_symbol": "LP DYDX-MNTA" }, { - "denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "chain_id": "migaloo-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "origin_chain_id": "migaloo-1", + "denom": "factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1vj36ntsqd3msc69lxldcv9dd50jngknmael9e07rz4fpn5kyq0jsglvz2m/ulp", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ampWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "is_svm": false, + "symbol": "LP ampMNTA-MNTA", + "name": "LP ampMNTA-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "ampWHALE", - "recommended_symbol": "ampWHALE" + "description": "LP Bow: ampMNTA-MNTA", + "recommended_symbol": "LP ampMNTA-MNTA" }, { - "denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", - "chain_id": "migaloo-1", - "origin_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", - "origin_chain_id": "migaloo-1", + "denom": "factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1vj39mdwekxznxxa97fv5gt957cghfdqhwju8fdv5ysu0x6vsyhps4zmqjl/ulp", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ASH", - "name": "ASH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", + "is_svm": false, + "symbol": "LP wBTC.axl-MNTA", + "name": "LP wBTC.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "description": "ASH", - "recommended_symbol": "ASH" + "description": "LP Bow: wBTC.axl-MNTA", + "recommended_symbol": "LP wBTC.axl-MNTA" }, { - "denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", - "chain_id": "migaloo-1", - "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", - "origin_chain_id": "migaloo-1", - "trace": "", + "denom": "ibc/F97BDCE220CCB52139C73066E36C45EC7EDCEEF1DAFF891A34F4FBA195A2E6E8", + "chain_id": "kaiyo-1", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "GUPPY", - "name": "GUPPY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "description": "GUPPY", - "recommended_symbol": "GUPPY" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "ibc/4154B28D69A2B15C5DE06E861F5BACCB78C4B2180CEBECDAC74968FB402FB4BC", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "denom": "ibc/464CE409C9710351EDEB880FF9323B7CE2E38DE791CA59E34FB3E9830E94C644", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "ROAR", - "name": "ROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "is_svm": false, + "symbol": "GEM", + "name": "GEM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png", "decimals": 6, - "coingecko_id": "lion-dao", - "recommended_symbol": "ROAR" + "recommended_symbol": "GEM" }, { - "denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", - "chain_id": "migaloo-1", - "origin_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", - "origin_chain_id": "migaloo-1", - "trace": "", + "denom": "ibc/B3B78878425258831BDB0CB95CF8871E75E3CC80B15361A17108C2538816BC2F", + "chain_id": "kaiyo-1", + "origin_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, - "symbol": "FABLE", - "name": "FABLE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg", + "is_svm": false, + "symbol": "NINJA", + "name": "NINJA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", "decimals": 6, - "description": "FABLE", - "recommended_symbol": "FABLE" + "coingecko_id": "dog-wif-nuchucks", + "recommended_symbol": "NINJA" }, { - "denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", - "chain_id": "migaloo-1", - "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", - "origin_chain_id": "migaloo-1", - "trace": "", + "denom": "ibc/5AC4326C7FC7A84864FA5631928811F58C92475C429FEF4F1FCB3328D68039D1", + "chain_id": "kaiyo-1", + "origin_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "RAC", - "name": "RAC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", + "is_svm": false, + "symbol": "ASTROPEPE", + "name": "ASTROPEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", "decimals": 6, - "description": "RAC", - "recommended_symbol": "RAC" + "recommended_symbol": "ASTROPEPE" }, { - "denom": "ibc/0E326E0BEDE1238C88EF5B26C42473B5CCE824C6733000A41A46D292D4A2B50B", - "chain_id": "migaloo-1", - "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SAIL", - "name": "SAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "recommended_symbol": "SAIL" + "description": "The Revenue & Governance token of Unstake.fi", + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { - "denom": "ibc/E49A6D116739E0920F8F2D68A8F0A8E07DC272FA1421F70CAD738463AA296724", - "chain_id": "migaloo-1", + "denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "chain_id": "kaiyo-1", "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-8", + "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PLNK", "name": "PLNK", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", "decimals": 6, + "description": "Food for whales", "recommended_symbol": "PLNK" }, { - "denom": "ibc/E54A0C1E4A2A79FD4F92765F68E38939867C3DA36E2EA6BBB2CE81C43F4C8ADC", - "chain_id": "migaloo-1", - "origin_denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-0", + "denom": "ibc/20014F963CC9E6488B299622F87B60C6DE71632864859EC08B4753478DAB2BB8", + "chain_id": "kaiyo-1", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-95", "is_cw20": false, "is_evm": false, - "symbol": "boneWHALEt", - "name": "boneWHALEt", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "recommended_symbol": "boneWHALEt" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/EA459CE57199098BA5FFDBD3194F498AA78439328A92C7D136F06A5220903DA6", - "chain_id": "migaloo-1", - "origin_denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-0", + "denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALEt", - "name": "ampWHALEt", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg", + "is_svm": false, + "symbol": "qcFUZN", + "name": "qcFUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", "decimals": 6, - "recommended_symbol": "ampWHALEt" + "description": "Quark's auto-compounding FUZN derivative", + "recommended_symbol": "qcFUZN" }, { - "denom": "ibc/50D7251763B4D5E9DD7A8A6C6B012353E998CDE95C546C1F96D68F7CCB060918", - "chain_id": "migaloo-1", - "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "denom": "factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1u8dluwa4a83q7anz0cgpmma605r07a06f0789ajcl8l0xjrplqss005cgn/ulp", "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-8", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampKUJI", - "name": "ampKUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "is_svm": false, + "symbol": "LP yieldETH.axl-MNTA", + "name": "LP yieldETH.axl-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "recommended_symbol": "ampKUJI" + "description": "LP Bow: yieldETH.axl-MNTA", + "recommended_symbol": "LP yieldETH.axl-MNTA" }, { - "denom": "ibc/4D881B544ECE557A62A239EE827F8BFA3B76A1977F2FD5F4BDF68CBC28FDE760", - "chain_id": "migaloo-1", - "origin_denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-2", + "denom": "ibc/3914BDEF46F429A26917E4D8D434620EC4817DC6B6E68FB327E190902F1E9242", + "chain_id": "kaiyo-1", + "origin_denom": "dai-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "GEM", - "name": "GEM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png", - "decimals": 6, - "recommended_symbol": "GEM" + "is_svm": false, + "symbol": "axlDAI", + "name": "axlDAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/F59604886233035949068D82EC23E60140D6573EC4CE7F9E0C6440BA5522255E", - "chain_id": "migaloo-1", - "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-3", + "denom": "factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1h9f3k54j060pzlnea8ep8qfymsmwl5yhwc5hqept5p2esqzve7tq2ghnm4/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "LP ATOM-MNTA", + "name": "LP ATOM-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.peggy" - } - ] - }, - "minimove-1": { - "assets": [ + "description": "LP Bow: ATOM-MNTA", + "recommended_symbol": "LP ATOM-MNTA" + }, { - "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", - "chain_id": "minimove-1", - "origin_denom": "uusdc", - "origin_chain_id": "mahalo-1", - "trace": "transfer/channel-0", + "denom": "ibc/47212EE247EF64B87B0A7F61901CCF1EC05AC25DA0BA1989EA4A28955CD4FE8E", + "chain_id": "kaiyo-1", + "origin_denom": "bnb.1.6.773edb", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", - "decimals": 6, - "description": "The fake USDC", - "recommended_symbol": "USDC" + "is_svm": false, + "symbol": "BNB", + "name": "BNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", + "decimals": 18, + "recommended_symbol": "BNB.carbon" }, { - "denom": "l2/771d639f30fbe45e3fbca954ffbe2fcc26f915f5513c67a4a2d0bc1d635bdefd", - "chain_id": "minimove-1", - "origin_denom": "l2/771d639f30fbe45e3fbca954ffbe2fcc26f915f5513c67a4a2d0bc1d635bdefd", - "origin_chain_id": "minimove-1", - "trace": "", + "denom": "ibc/9D0C1C1E48CF2926DF93233CCE93FA692BC008D21B4F9AC8357B7C3B885D1C1C", + "chain_id": "kaiyo-1", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, - "symbol": "INIT", - "name": "INIT", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/images/INIT.png", + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/sol.png", + "decimals": 8, + "coingecko_id": "solana", + "recommended_symbol": "SOL" + }, + { + "denom": "ibc/C7610F4CC26949D958355832981F78C1362AF627F39E0EB5DC7C3198B6755C4D", + "chain_id": "kaiyo-1", + "origin_denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-7", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SNEAKY", + "name": "SNEAKY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png", "decimals": 6, - "description": "The native token of Initia", - "recommended_symbol": "INIT" + "recommended_symbol": "SNEAKY" }, { - "denom": "ibc/0E98D4D1D907597448FD3A7C33DDAE10A90FA86FC8A9F5A0B175393783F249CD", - "chain_id": "minimove-1", - "origin_denom": "ueth", - "origin_chain_id": "mahalo-1", - "trace": "transfer/channel-0", + "denom": "ibc/6EFB95337CFA11E7C27BA79FE1ACBD0AE153114FEFE575FEE9EF2989FC40507A", + "chain_id": "kaiyo-1", + "origin_denom": "eth.1.19.c3b805", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ETH", "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", - "decimals": 6, - "recommended_symbol": "ETH" - } - ] - }, - "miniwasm-1": { - "assets": [ + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", + "decimals": 18, + "recommended_symbol": "ETH.carbon" + }, { - "denom": "l2/2588fd87a8e081f6a557f43ff14f05dddf5e34cb27afcefd6eaf81f1daea30d0", - "chain_id": "miniwasm-1", - "origin_denom": "l2/2588fd87a8e081f6a557f43ff14f05dddf5e34cb27afcefd6eaf81f1daea30d0", - "origin_chain_id": "miniwasm-1", - "trace": "", + "denom": "ibc/F33B313325B1C99B646B1B786F1EA621E3794D787B90C204C30FE1D4D45970AE", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "INIT", - "name": "INIT", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/images/INIT.png", + "is_svm": false, + "symbol": "ampLUNA", + "name": "ampLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg", "decimals": 6, - "description": "The native token of Initia", - "recommended_symbol": "INIT" + "coingecko_id": "eris-amplified-luna", + "recommended_symbol": "ampLUNA" }, { - "denom": "ibc/0E98D4D1D907597448FD3A7C33DDAE10A90FA86FC8A9F5A0B175393783F249CD", - "chain_id": "miniwasm-1", - "origin_denom": "ueth", - "origin_chain_id": "mahalo-1", - "trace": "transfer/channel-0", + "denom": "ibc/665F3EBB89B38FB4A1D3B0C7FB6523F92DCDAACB38FF43C6607CA6E009B81603", + "chain_id": "kaiyo-1", + "origin_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", + "is_svm": false, + "symbol": "bLUNA", + "name": "bLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png", "decimals": 6, - "recommended_symbol": "ETH" + "coingecko_id": "backbone-labs-staked-luna", + "recommended_symbol": "bLUNA" }, { - "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", - "chain_id": "miniwasm-1", - "origin_denom": "uusdc", - "origin_chain_id": "mahalo-1", - "trace": "transfer/channel-0", + "denom": "ibc/15D88A4E859585FB10718607066653BDE2491AB7CFD6E9A578A799F6BC9B82CC", + "chain_id": "kaiyo-1", + "origin_denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "is_svm": false, + "symbol": "CORGI", + "name": "CORGI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", "decimals": 6, - "description": "The fake USDC", - "recommended_symbol": "USDC" - } - ] - }, - "mocha-4": { - "assets": [ + "recommended_symbol": "CORGI" + }, { - "denom": "utia", - "chain_id": "mocha-4", - "origin_denom": "utia", - "origin_chain_id": "mocha-4", + "denom": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "origin_chain_id": "kaiyo-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", + "is_svm": false, + "symbol": "bKUJI", + "name": "bKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png", "decimals": 6, - "recommended_symbol": "TIA" - } - ] - }, - "neutron-1": { - "assets": [ + "description": "BackBone Labs Liquid Staked KUJI", + "recommended_symbol": "bKUJI" + }, { - "denom": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "chain_id": "neutron-1", - "origin_denom": "weth-wei", + "denom": "ibc/0A88A08F3E9573DB9D8CB74AA3746F6D23C41C3EE7B6CC5AA4695A1DD74FF86B", + "chain_id": "kaiyo-1", + "origin_denom": "uni-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "axlWETH", - "name": "axlWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "is_svm": false, + "symbol": "UNI", + "name": "UNI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" + "coingecko_id": "uniswap", + "recommended_symbol": "UNI.axl" }, { - "denom": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", - "chain_id": "neutron-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-51", + "denom": "factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp", + "chain_id": "kaiyo-1", + "origin_denom": "factory/kujira1gz2kvfw7hpds9fvygwkj64znl3a9pw697g77cspcq5y4vj3ru45s7qc0rd/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "Chihuahua", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "is_svm": false, + "symbol": "LP wTAO.grv-MNTA", + "name": "LP wTAO.grv-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", "decimals": 6, - "coingecko_id": "chihuahua-chain", - "recommended_symbol": "HUAHUA" + "description": "LP Bow: wTAO.grv-MNTA", + "recommended_symbol": "LP wTAO.grv-MNTA" }, { - "denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", - "chain_id": "neutron-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "denom": "ibc/239BFF83852F67DF5243DB89F339FF7FDBF858437F961CAB6DA5B5ADEFB2BC07", + "chain_id": "kaiyo-1", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-32", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "coingecko_id": "stride", + "recommended_symbol": "STRD" + } + ] + }, + "kava_2222-10": { + "assets": [ + { + "denom": "busd", + "chain_id": "kava_2222-10", + "origin_denom": "busd", + "origin_chain_id": "kava_2222-10", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/busd.png", "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD" }, { - "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", - "chain_id": "neutron-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-10", + "denom": "erc20/multichain/dai", + "chain_id": "kava_2222-10", + "origin_denom": "erc20/multichain/dai", + "origin_chain_id": "kava_2222-10", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "is_svm": false, + "symbol": "bDAI", + "name": "bDAI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/bdai.png", + "decimals": 18, + "description": "DAI Earned in Kava", + "coingecko_id": "dai", + "recommended_symbol": "bDAI" }, { - "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", - "chain_id": "neutron-1", - "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-5", + "denom": "erc20/multichain/usdt", + "chain_id": "kava_2222-10", + "origin_denom": "erc20/multichain/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ASTRO", - "name": "ASTRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png", + "is_svm": false, + "symbol": "bUSDT", + "name": "bUSDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/busdt.png", "decimals": 6, - "description": "ASTRO on Neutron", - "coingecko_id": "astroport-fi", - "recommended_symbol": "ASTRO" + "description": "USDT Earned in Kava", + "coingecko_id": "tether", + "recommended_symbol": "bUSDT" }, { - "denom": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", - "chain_id": "neutron-1", - "origin_denom": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", - "origin_chain_id": "neutron-1", + "denom": "erc20/tether/usdt", + "chain_id": "kava_2222-10", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CARTEL", - "name": "CARTEL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "description": "Reflections of cartel activity on Cosmos.", - "recommended_symbol": "CARTEL" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", - "chain_id": "neutron-1", - "origin_denom": "ukuji", + "denom": "ibc/0C246CAF04ACE73AB6D118F8909D54DA9ADA755F7DC44A0B4E69156745335BB8", + "chain_id": "kava_2222-10", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-3", + "trace": "transfer/channel-116", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { - "denom": "ibc/427E7C81609A8D9104B19A842A0EF960E606992B6206A07605088BEDB27D8DA6", - "chain_id": "neutron-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-3", + "denom": "ibc/504AB5ACDC94480E27C4ECCCFB9E0468A0AF5C0AF6E7CF9BB504DE54C3D8E7DB", + "chain_id": "kava_2222-10", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-137", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" }, { - "denom": "ibc/5CB2E12B07D0B6D8EC24A68BA6B6E6E8D5BF85B7D22091D3A480DCDD61C6AC84", - "chain_id": "neutron-1", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", + "chain_id": "kava_2222-10", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { - "denom": "ibc/626DBDAD47E2867EE930907A2C97B9F61043523C40FB9C4FEEC980933D1F6790", - "chain_id": "neutron-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "denom": "ibc/A3D9BA615C3BC5C8892E86B1D8B792DD139A68ADE97AA7A9C7F26AD25D9E5FD7", + "chain_id": "kava_2222-10", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-132", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" + "is_svm": false, + "symbol": "SEI", + "name": "SEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "decimals": 6, + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" }, { - "denom": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", - "chain_id": "neutron-1", - "origin_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-51", + "denom": "ibc/A40A4C0280DF70A6E5117722F3204520793FC536C722861470AF5792CE7613AC", + "chain_id": "kava_2222-10", + "origin_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-142", "is_cw20": false, "is_evm": false, - "symbol": "BADDOG", - "name": "Chihuahuawifhat", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", + "is_svm": false, + "symbol": "XRP", + "name": "XRP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", "decimals": 6, - "recommended_symbol": "BADDOG" + "coingecko_id": "pulsara", + "recommended_symbol": "XRP" }, { - "denom": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", - "chain_id": "neutron-1", - "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-60", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "chain_id": "kava_2222-10", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "AUTISM", - "name": "AUTISM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "coingecko_id": "autism", - "recommended_symbol": "AUTISM" + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "ibc/D03F341CAA5D24B43ABE27C11A214EA3589DDEA125A2E6A76C7C37F2F3C59692", - "chain_id": "neutron-1", - "origin_denom": "unois", - "origin_chain_id": "nois-1", - "trace": "transfer/channel-722", + "denom": "erc20/multichain/usdc", + "chain_id": "kava_2222-10", + "origin_denom": "erc20/multichain/usdc", + "origin_chain_id": "kava_2222-10", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "NOIS", - "name": "NOIS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "is_svm": false, + "symbol": "bUSDC", + "name": "bUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/busdc.png", "decimals": 6, - "recommended_symbol": "NOIS" + "description": "USDC Earned in Kava", + "coingecko_id": "usd-coin", + "recommended_symbol": "bUSDC" }, { - "denom": "ibc/E74CD453F834EE007B02F1298EFFF4DCD9C97FB58DF7F6080FF935145B73C6A6", - "chain_id": "neutron-1", - "origin_denom": "dot-planck", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "denom": "ibc/4945DC9FE0C22619C5519EB4DA22CA0E3ED9DA4AF9516B6C8C29E662213F7049", + "chain_id": "kava_2222-10", + "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-116", "is_cw20": false, "is_evm": false, - "symbol": "DOT", - "name": "DOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "is_svm": false, + "symbol": "ampMNTA", + "name": "ampMNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "decimals": 6, + "recommended_symbol": "ampMNTA" }, { - "denom": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", - "chain_id": "neutron-1", - "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "denom": "ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD", + "chain_id": "kava_2222-10", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-10", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "BADKID", - "name": "BADKID", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "is_svm": false, + "symbol": "sqOSMO", + "name": "sqOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", "decimals": 6, - "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", - "recommended_symbol": "BADKID" + "recommended_symbol": "sqOSMO" }, { - "denom": "ibc/A96863E0BDFA3F2D96625FD5A649AF53F62F97521EF78FBBFE5B4199C3E23ABD", - "chain_id": "neutron-1", - "origin_denom": "wftm-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "denom": "ibc/134CED3DD0201C9A01D9B67DD7FC6BF6DEF8A7F709C22B0ABCEC263002B13207", + "chain_id": "kava_2222-10", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-134", "is_cw20": false, "is_evm": false, - "symbol": "WFTM", - "name": "WFTM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", - "decimals": 18, - "coingecko_id": "wrapped-fantom", - "recommended_symbol": "WFTM.axl" + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "decimals": 6, + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", - "chain_id": "neutron-1", - "origin_denom": "stk/uatom", - "origin_chain_id": "core-1", - "trace": "transfer/channel-49", + "denom": "erc20/axelar/usdc", + "chain_id": "kava_2222-10", + "origin_denom": "erc20/axelar/usdc", + "origin_chain_id": "kava_2222-10", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "description": "PSTAKE Liquid-Staked ATOM", - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" + "description": "Axelar Wrapped USDC", + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC" }, { - "denom": "ibc/2FCBC9ECB42BBBD3A9F25E780ED03C93E62D0E414A6687A4D4A2E1EBAED48BFA", - "chain_id": "neutron-1", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-3", + "denom": "ibc/BD3719A35775175ABEBD026D38B446564C3471048078BBB5E5D4D48B9B4F27E2", + "chain_id": "kava_2222-10", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-129", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "recommended_symbol": "LOCAL" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", - "chain_id": "neutron-1", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "denom": "ibc/C734E26A03597AE89D814E0CE46AFBBAC2A0EA4D060B7BF3CC62719D7DD0A3F3", + "chain_id": "kava_2222-10", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-3", + "trace": "transfer/channel-116", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", - "chain_id": "neutron-1", - "origin_denom": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", - "origin_chain_id": "neutron-1", + "denom": "debt", + "chain_id": "kava_2222-10", + "origin_denom": "debt", + "origin_chain_id": "kava_2222-10", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "(stTIA/TIA)VT", - "name": "Apollo DAO", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/(sttia-tia)vt.svg", - "decimals": 12, - "recommended_symbol": "(stTIA/TIA)VT" + "is_svm": false, + "symbol": "DEBT", + "name": "DEBT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/debt.png", + "decimals": 6, + "description": "System Total Debt", + "recommended_symbol": "DEBT" }, { - "denom": "ibc/A139C0E0B5E87CBA8EAEEB12B9BEE13AC7C814CFBBFA87BBCADD67E31003466C", - "chain_id": "neutron-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-18", + "denom": "erc20/multichain/wbtc", + "chain_id": "kava_2222-10", + "origin_denom": "erc20/multichain/wbtc", + "origin_chain_id": "kava_2222-10", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "is_svm": false, + "symbol": "MultiWBTC", + "name": "MultiWBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/multiwbtc.png", + "decimals": 8, + "description": "Multichain Wrapped BTC", + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "MultiWBTC" }, { - "denom": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", - "chain_id": "neutron-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-30", + "denom": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", + "chain_id": "kava_2222-10", + "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "Noble", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "coingecko_id": "tether", + "recommended_symbol": "USDT.peggy" }, { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_id": "neutron-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", + "denom": "swp", + "chain_id": "kava_2222-10", + "origin_denom": "swp", + "origin_chain_id": "kava_2222-10", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "SWP", + "name": "SWP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "description": "Governance token of Kava Swap Protocol", + "coingecko_id": "kava-swap", + "recommended_symbol": "SWP" }, { - "denom": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", - "chain_id": "neutron-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "denom": "ibc/3F3FBD0AAC2E301BF8461A44D4533C4C1EA8883136A9699C2E951FC643B485F9", + "chain_id": "kava_2222-10", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-142", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", "decimals": 6, - "description": "Axelar Staking Coin", - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "ibc/322C86EB54A505E28AFE380CED1721FA61E9580A7548A16B9DCF6E7C8CEE43D5", - "chain_id": "neutron-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-25", + "denom": "ukava", + "chain_id": "kava_2222-10", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "description": "The native staking and governance token of Kava", + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/14767887A69DBEFF3B99AA3E5B176C7989B1DAD2395A1E843F48EE981AC4F83F", - "chain_id": "neutron-1", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", - "is_cw20": false, - "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "denom": "usdx", + "chain_id": "kava_2222-10", + "origin_denom": "usdx", + "origin_chain_id": "kava_2222-10", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDX", + "name": "USDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", + "decimals": 6, + "description": "The native stablecoin of Kava", + "coingecko_id": "usdx", + "recommended_symbol": "USDX" + }, + { + "denom": "xrpb", + "chain_id": "kava_2222-10", + "origin_denom": "xrpb", + "origin_chain_id": "kava_2222-10", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "XRPB", + "name": "XRPB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/xrpb.png", + "decimals": 8, + "coingecko_id": "ripple", + "recommended_symbol": "XRPB" + }, + { + "denom": "ibc/7828FD453E26CA18E7516F4F15C9698A36E92EA058B6A113B1F75CE828BF5398", + "chain_id": "kava_2222-10", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-140", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "decimals": 6, + "coingecko_id": "celestia", + "recommended_symbol": "TIA" + }, + { + "denom": "ibc/9C273C3A2306B8C15EC86E93BC25194CFCCA1B1AE9AEFEF18618AD60F9ECD843", + "chain_id": "kava_2222-10", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-144", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "decimals": 18, + "coingecko_id": "dymension", + "recommended_symbol": "DYM" + }, + { + "denom": "bnb", + "chain_id": "kava_2222-10", + "origin_denom": "bnb", + "origin_chain_id": "kava_2222-10", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BNB", + "name": "BNB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/bnb.png", + "decimals": 8, + "coingecko_id": "binancecoin", + "recommended_symbol": "BNB" + }, + { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "chain_id": "kava_2222-10", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, + { + "denom": "btcb", + "chain_id": "kava_2222-10", + "origin_denom": "btcb", + "origin_chain_id": "kava_2222-10", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BTCB", + "name": "BTCB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/btcb.png", + "decimals": 8, + "coingecko_id": "bitcoin-bep2", + "recommended_symbol": "BTCB" + }, + { + "denom": "erc20/axelar/wbtc", + "chain_id": "kava_2222-10", + "origin_denom": "erc20/axelar/wbtc", + "origin_chain_id": "kava_2222-10", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlWBTC", + "name": "axlWBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", + "decimals": 8, + "description": "Axelar Wrapped WBTC", + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC" + }, + { + "denom": "hbtc", + "chain_id": "kava_2222-10", + "origin_denom": "hbtc", + "origin_chain_id": "kava_2222-10", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HBTC", + "name": "HBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/kava/asset/hbtc.png", + "decimals": 8, + "description": "HBTC on Kava Chain", + "coingecko_id": "huobi-btc", + "recommended_symbol": "HBTC" + }, + { + "denom": "ibc/2CA1ED8E0335BADDAE8CC30149583A78A8517FBED0AF3910E04525CCEBB173B1", + "chain_id": "kava_2222-10", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-116", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "decimals": 6, + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" + }, + { + "denom": "ibc/31E579FA24701B39270DF7E9B8640DEF9CC10CB94CE1A8845CD04C2628A7C3A2", + "chain_id": "kava_2222-10", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-117", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" + }, + { + "denom": "ibc/553F40D865364C80C1B78B6C3080EFC5B8306BE29234DFECF143514FE8DBEC10", + "chain_id": "kava_2222-10", + "origin_denom": "uaura", + "origin_chain_id": "xstaxy-1", + "trace": "transfer/channel-124", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AURA", + "name": "AURA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "decimals": 6, + "coingecko_id": "aura-network", + "recommended_symbol": "AURA" + }, + { + "denom": "ibc/799FDD409719A1122586A629AE8FCA17380351A51C1F47A80A1B8E7F2A491098", + "chain_id": "kava_2222-10", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "decimals": 6, + "description": "Akash Staking Coin", + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" + }, + { + "denom": "ibc/8584343261772F008DFF09BB8D7F40E69C00734979F95C9C2AA483871873F648", + "chain_id": "kava_2222-10", + "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-116", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LOCAL", + "name": "LOCAL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "decimals": 6, + "recommended_symbol": "LOCAL" + }, + { + "denom": "ibc/2A38426E8BB4B66F0F910C3CCF09CD95A8381453F869E96A966FF13055C9D886", + "chain_id": "kava_2222-10", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-133", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "decimals": 6, + "coingecko_id": "agoric", + "recommended_symbol": "BLD" + }, + { + "denom": "hard", + "chain_id": "kava_2222-10", + "origin_denom": "hard", + "origin_chain_id": "kava_2222-10", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HARD", + "name": "HARD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "decimals": 6, + "description": "Governance token of Kava Lend Protocol", + "coingecko_id": "kava-lend", + "recommended_symbol": "HARD" + }, + { + "denom": "ibc/0188B2B71988545E491C5AE008562D8C7CE9B43AE2DE4B1C482AFCFB0B44FD30", + "chain_id": "kava_2222-10", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-119", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "decimals": 6, + "coingecko_id": "umee", + "recommended_symbol": "UMEE" + }, + { + "denom": "ibc/03DE75D6DF3A268607E86E2193DA78D2AD6D4A630BA15117793AC7D7FBDA72F3", + "chain_id": "kava_2222-10", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-116", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "decimals": 6, + "recommended_symbol": "WINK" + }, + { + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "chain_id": "kava_2222-10", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + } + ] + }, + "kyve-1": { + "assets": [ + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "chain_id": "kyve-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ukyve", + "chain_id": "kyve-1", + "origin_denom": "ukyve", + "origin_chain_id": "kyve-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "KYVE", + "name": "KYVE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", + "decimals": 6, + "description": "The native utility token of the KYVE network.", + "coingecko_id": "kyve-network", + "recommended_symbol": "KYVE" + }, + { + "denom": "ibc/0E1517E2771CA7C03F2ED3F9BAECCAEADF0BFD79B89679E834933BC0F179AD98", + "chain_id": "kyve-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + } + ] + }, + "lum-network-1": { + "assets": [ + { + "denom": "ibc/51A818D8BBC385C152415882286C62169C05498B8EBCFB38310B1367583860FF", + "chain_id": "lum-network-1", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-32", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "decimals": 6, + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" + }, + { + "denom": "ibc/A8C2D23A1E6F95DA4E48BA349667E322BD7A6C996D8A4AAE8BA72E190F3D1477", + "chain_id": "lum-network-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-12", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, + { + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "chain_id": "lum-network-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/6CDA7F7E4DDB86FD275A986E78F13DF2FC500E3FEC2149E2215061FA51BB8C5D", + "chain_id": "lum-network-1", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" + }, + { + "denom": "ulum", + "chain_id": "lum-network-1", + "origin_denom": "ulum", + "origin_chain_id": "lum-network-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LUM", + "name": "LUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", + "decimals": 6, + "description": "Native token of the Lum Network", + "coingecko_id": "lum-network", + "recommended_symbol": "LUM" + } + ] + }, + "mahalo-1": { + "assets": [ + { + "denom": "uusdc", + "chain_id": "mahalo-1", + "origin_denom": "uusdc", + "origin_chain_id": "mahalo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "decimals": 6, + "description": "The fake USDC", + "recommended_symbol": "USDC" + }, + { + "denom": "move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200", + "chain_id": "mahalo-1", + "origin_denom": "move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200", + "origin_chain_id": "mahalo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH-INIT LP", + "name": "ETH-INIT LP", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH-INIT.png", + "decimals": 6, + "description": "The LP token of ETH-INIT", + "recommended_symbol": "ETH-INIT LP" + }, + { + "denom": "ueth", + "chain_id": "mahalo-1", + "origin_denom": "ueth", + "origin_chain_id": "mahalo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", + "decimals": 6, + "description": "The fake ETH", + "recommended_symbol": "ETH" + }, + { + "denom": "uinit", + "chain_id": "mahalo-1", + "origin_denom": "uinit", + "origin_chain_id": "mahalo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INIT", + "name": "INIT", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/INIT.png", + "decimals": 6, + "description": "The native token of Initia", + "recommended_symbol": "INIT" + }, + { + "denom": "move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d", + "chain_id": "mahalo-1", + "origin_denom": "move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d", + "origin_chain_id": "mahalo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC-INIT LP", + "name": "USDC-INIT LP", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC-INIT.png", + "decimals": 6, + "description": "The LP token of USDC-INIT", + "recommended_symbol": "USDC-INIT LP" + } + ] + }, + "mahalo-2": { + "assets": [ + { + "denom": "uusdc", + "chain_id": "mahalo-2", + "origin_denom": "uusdc", + "origin_chain_id": "mahalo-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "decimals": 6, + "description": "The fake USDC", + "recommended_symbol": "USDC" + }, + { + "denom": "move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200", + "chain_id": "mahalo-2", + "origin_denom": "move/a2b0d3c8e53e379ede31f3a361ff02716d50ec53c6b65b8c48a81d5b06548200", + "origin_chain_id": "mahalo-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH-INIT LP", + "name": "ETH-INIT LP", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH-INIT.png", + "decimals": 6, + "description": "The LP token of ETH-INIT", + "recommended_symbol": "ETH-INIT LP" + }, + { + "denom": "ueth", + "chain_id": "mahalo-2", + "origin_denom": "ueth", + "origin_chain_id": "mahalo-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", + "decimals": 6, + "description": "The fake ETH", + "recommended_symbol": "ETH" + }, + { + "denom": "uinit", + "chain_id": "mahalo-2", + "origin_denom": "uinit", + "origin_chain_id": "mahalo-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INIT", + "name": "INIT", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/INIT.png", + "decimals": 6, + "description": "The native token of Initia", + "recommended_symbol": "INIT" + }, + { + "denom": "move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d", + "chain_id": "mahalo-2", + "origin_denom": "move/dbf06c48af3984ec6d9ae8a9aa7dbb0bb1e784aa9b8c4a5681af660cf8558d7d", + "origin_chain_id": "mahalo-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC-INIT LP", + "name": "USDC-INIT LP", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC-INIT.png", + "decimals": 6, + "description": "The LP token of USDC-INIT", + "recommended_symbol": "USDC-INIT LP" + }, + { + "denom": "ibc/CE2C64BB7F0067A8585269B28A9B3217D12BB2E20BCFB11E17C7281C52006AF5", + "chain_id": "mahalo-2", + "origin_denom": "l2/771d639f30fbe45e3fbca954ffbe2fcc26f915f5513c67a4a2d0bc1d635bdefd", + "origin_chain_id": "miniwasm-2", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INIT", + "name": "INIT", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/images/INIT.png", + "decimals": 6, + "recommended_symbol": "INIT" + }, + { + "denom": "ibc/E1520E1FA3FC8EF79029837269D0E3D031AF7B81357CF19AC86520B3906BA7E1", + "chain_id": "mahalo-2", + "origin_denom": "l2/2588fd87a8e081f6a557f43ff14f05dddf5e34cb27afcefd6eaf81f1daea30d0", + "origin_chain_id": "minimove-2", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INIT", + "name": "INIT", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/images/INIT.png", + "decimals": 6, + "recommended_symbol": "INIT" + } + ] + }, + "mantle-1": { + "assets": [ + { + "denom": "ibc/5AF2F6C9D801EE6FAB04A4F97D77A27683AF63D540E9ECF0C628B95D4EDFCEEE", + "chain_id": "mantle-1", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-17", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "decimals": 6, + "coingecko_id": "composite", + "recommended_symbol": "CMST" + }, + { + "denom": "ibc/DF63978F803A2E27CA5CC9B7631654CCF0BBC788B3B7F0A10200508E37C70992", + "chain_id": "mantle-1", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "decimals": 6, + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv" + }, + { + "denom": "ibc/EACD4A15F32900B396DDA7B9E3ED513DBC575FC6F06D37DC439103EF9CCFD3F0", + "chain_id": "mantle-1", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-17", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "decimals": 6, + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" + }, + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "chain_id": "mantle-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "chain_id": "mantle-1", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "decimals": 6, + "coingecko_id": "ion", + "recommended_symbol": "ION" + }, + { + "denom": "umntl", + "chain_id": "mantle-1", + "origin_denom": "umntl", + "origin_chain_id": "mantle-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MNTL", + "name": "MNTL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", + "decimals": 6, + "description": "The native token of Asset Mantle", + "coingecko_id": "assetmantle", + "recommended_symbol": "MNTL" + }, + { + "denom": "ibc/261AA78A732B29C6052EF0C33D2991D1C65BBE173C9B9E6E3688E32D9947A98E", + "chain_id": "mantle-1", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-17", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "decimals": 6, + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" + } + ] + }, + "mars-1": { + "assets": [ + { + "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", + "chain_id": "mars-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, + { + "denom": "ibc/E1B86EFC3474070FD47C02F17C84BD573AA8E17C5A8824F293D5B99D6E5F9C09", + "chain_id": "mars-1", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-37", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "decimals": 6, + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" + }, + { + "denom": "umars", + "chain_id": "mars-1", + "origin_denom": "umars", + "origin_chain_id": "mars-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MARS", + "name": "MARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "decimals": 6, + "description": "Mars protocol token", + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "recommended_symbol": "MARS" + }, + { + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "chain_id": "mars-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/D70B0FBF97AEB04491E9ABF4467A7F66CD6250F4382CE5192D856114B83738D2", + "chain_id": "mars-1", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "decimals": 6, + "description": "Terra Staking Coin", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" + }, + { + "denom": "ibc/9F977CFD6084FD4B83DF6BD27CECC0F805D0F6D95ED099650F330D94510F7F19", + "chain_id": "mars-1", + "origin_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CDT", + "name": "CDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", + "decimals": 6, + "coingecko_id": "collateralized-debt-token", + "recommended_symbol": "CDT" + }, + { + "denom": "ibc/C0DB3E0C7F3CD32FA24FC031FD8B6833627A1C690B741BA85D7A4752D974A77F", + "chain_id": "mars-1", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "decimals": 6, + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" + }, + { + "denom": "ibc/90F27756D300141BDF07B83E65401BDC58C05269B9BAE3ECB0B20FAB166BCF8F", + "chain_id": "mars-1", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "decimals": 6, + "description": "Kujira Staking Coin", + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" + }, + { + "denom": "ibc/923A25D77C573CC5B74BF8ECE7EDB1D27EE9B77F84892BBBF8CA51BD6FFFA397", + "chain_id": "mars-1", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "decimals": 6, + "description": "Crescent Staking Coin", + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" + } + ] + }, + "migaloo-1": { + "assets": [ + { + "denom": "ibc/E54A0C1E4A2A79FD4F92765F68E38939867C3DA36E2EA6BBB2CE81C43F4C8ADC", + "chain_id": "migaloo-1", + "origin_denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "boneWHALEt", + "name": "boneWHALEt", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg", + "decimals": 6, + "recommended_symbol": "boneWHALEt" + }, + { + "denom": "ibc/EA459CE57199098BA5FFDBD3194F498AA78439328A92C7D136F06A5220903DA6", + "chain_id": "migaloo-1", + "origin_denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ampWHALEt", + "name": "ampWHALEt", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg", + "decimals": 6, + "recommended_symbol": "ampWHALEt" + }, + { + "denom": "ibc/EF4222BF77971A75F4E655E2AD2AFDDC520CE428EF938A1C91157E9DFBFF32A3", + "chain_id": "migaloo-1", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "decimals": 6, + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" + }, + { + "denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "bWHALE", + "name": "bWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", + "decimals": 6, + "description": "BackBone Labs Liquid Staked WHALE", + "coingecko_id": "backbone-labs-staked-whale", + "recommended_symbol": "bWHALE" + }, + { + "denom": "factory/migaloo1p3aj9f09d7c4jxhgue0hpdpw370j6gzc59nxxx6l8d0gc9f9rfwsdwetus/lsdSHARK", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1p3aj9f09d7c4jxhgue0hpdpw370j6gzc59nxxx6l8d0gc9f9rfwsdwetus/lsdSHARK", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "lsdSHARK", + "name": "lsdSHARK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/lsdshark.png", + "decimals": 6, + "description": "lsdSHARK is the liquid staking derivative of SHARK.", + "recommended_symbol": "lsdSHARK" + }, + { + "denom": "ibc/7F977DD9265DD84BBFF026C93AC87B3CEABDA4064E5A0B1059CB14B056D629D5", + "chain_id": "migaloo-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, + { + "denom": "ibc/84B8C4F1FE15019DBD937B5670905B6280BB7C0D031E9F4D9F50E33386D3CAE6", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CUB", + "name": "CUB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "decimals": 6, + "recommended_symbol": "CUB" + }, + { + "denom": "ibc/86A25A8A327164AE7C68A29B6ED745C7EEDC36E260A6666F33A6407BECEC4737", + "chain_id": "migaloo-1", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-48", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "decimals": 6, + "coingecko_id": "tether", + "recommended_symbol": "USDT" + }, + { + "denom": "ibc/8935E9B60645CD61DC925E7C71956DC909D4548262103D1AB75E2A5306AC84C1", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ASTRO.cw20", + "name": "ASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", + "decimals": 6, + "recommended_symbol": "ASTRO.cw20" + }, + { + "denom": "ibc/B65E189D3168DB40C88C6A6C92CA3D3BB0A8B6310325D4C43AB5702F06ECD60B", + "chain_id": "migaloo-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-53", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" + }, + { + "denom": "ibc/C158F1510B7C5FA14F728752F1518219959BF6A7025DAC66E12FCE10A27EA8BE", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BMOS", + "name": "BMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", + "decimals": 6, + "recommended_symbol": "BMOS" + }, + { + "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", + "chain_id": "migaloo-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/E49A6D116739E0920F8F2D68A8F0A8E07DC272FA1421F70CAD738463AA296724", + "chain_id": "migaloo-1", + "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PLNK", + "name": "PLNK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "decimals": 6, + "recommended_symbol": "PLNK" + }, + { + "denom": "ibc/96658DE44BF70C47C26582AFB16454253ADA7CA03AA5FC2F196296A468E6625B", + "chain_id": "migaloo-1", + "origin_denom": "usdx", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-48", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDX", + "name": "USDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", + "decimals": 6, + "coingecko_id": "usdx", + "recommended_symbol": "USDX" + }, + { + "denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GUPPY", + "name": "GUPPY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "decimals": 6, + "description": "GUPPY", + "recommended_symbol": "GUPPY" + }, + { + "denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ASH", + "name": "ASH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", + "decimals": 6, + "description": "ASH", + "recommended_symbol": "ASH" + }, + { + "denom": "ibc/CF614653FB1F20B4C8E5807B0BA61FDB3299CFF9BFD7EE1E49AE85EDD2962166", + "chain_id": "migaloo-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" + }, + { + "denom": "ibc/EC48B819FC1D955ED1708A8E8E230B37217CC6D953448D3B4BCCF5B29BD1FCF9", + "chain_id": "migaloo-1", + "origin_denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "bOSMO", + "name": "bOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png", + "decimals": 6, + "recommended_symbol": "bOSMO" + }, + { + "denom": "ibc/05238E98A143496C8AF2B6067BABC84503909ECE9E45FBCBAC2CBA5C889FD82A", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ampLUNA", + "name": "ampLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg", + "decimals": 6, + "coingecko_id": "eris-amplified-luna", + "recommended_symbol": "ampLUNA" + }, + { + "denom": "ibc/7214707FABBA013C581D0B23FD8A3E0252276DB81E32CA00310D652249D31BC9", + "chain_id": "migaloo-1", + "origin_denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ampROAR", + "name": "ampROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png", + "decimals": 6, + "recommended_symbol": "ampROAR" + }, + { + "denom": "ibc/B1F66414EA8D434F52150F7EC1E79BC917BE78B60E7D5FB089607936FAE67139", + "chain_id": "migaloo-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-53", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + }, + { + "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", + "chain_id": "migaloo-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, + { + "denom": "ibc/C7B96F971C31A81811BAF6000F8B8F60C34009619B37C8AC2C40920FB92A192C", + "chain_id": "migaloo-1", + "origin_denom": "shib-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-53", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "decimals": 18, + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" + }, + { + "denom": "ibc/E224A26BBDD3FBBB461CBFC40EDC74BAA9606C667371F428F147A8D6C98C28D6", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BLUE", + "name": "BLUE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", + "decimals": 6, + "recommended_symbol": "BLUE" + }, + { + "denom": "factory/migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg/gash", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1r9x8fz4alekzr78k42rpmr9unpa7egsldpqeynmwl2nfvzexue9sn8l5rg/gash", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GASH", + "name": "GASH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/gash.png", + "decimals": 6, + "description": "GASH", + "recommended_symbol": "GASH" + }, + { + "denom": "ibc/0102CC6E28D29F57444C645C86AE2F4E8789C3A85445A3B185E51F0A23862E87", + "chain_id": "migaloo-1", + "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ampMNTA", + "name": "ampMNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "decimals": 6, + "recommended_symbol": "ampMNTA" + }, + { + "denom": "ibc/022A6D9857D63A9D9C772B0DDD68A6CC0434211C8D6019B9617532C5FE8BEB85", + "chain_id": "migaloo-1", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "decimals": 6, + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" + }, + { + "denom": "ibc/03F7CBDEEE7168D7C573DF6EB2C72E9C9360A0012D2FA9040BA5CBE728A9048B", + "chain_id": "migaloo-1", + "origin_denom": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "bKUJI", + "name": "bKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png", + "decimals": 6, + "recommended_symbol": "bKUJI" + }, + { + "denom": "ibc/106B438A78C581C5291E114B21588C41F98532E04D5369CFEE5825D95D465278", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SAYVE", + "name": "SAYVE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", + "decimals": 6, + "recommended_symbol": "SAYVE" + }, + { + "denom": "ibc/1C2D8505A29823310B4484E4C63CFDCB08C0D3B57537A615A45F4E5D42CDC789", + "chain_id": "migaloo-1", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" + }, + { + "denom": "ibc/294784AEC606DBCDC595033731D96044C8DE473FA102A61CF490DCBC3C0B9F04", + "chain_id": "migaloo-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-69", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "decimals": 6, + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" + }, + { + "denom": "ibc/0E326E0BEDE1238C88EF5B26C42473B5CCE824C6733000A41A46D292D4A2B50B", + "chain_id": "migaloo-1", + "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SAIL", + "name": "SAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "decimals": 6, + "recommended_symbol": "SAIL" + }, + { + "denom": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", + "chain_id": "migaloo-1", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "decimals": 6, + "description": "The native staking token of Terra.", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" + }, + { + "denom": "ibc/4E0E525D0BD212C0B7C2D1576A4A085E42F3695E2A60948252BBB7AFC354A249", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1x62mjnme4y0rdnag3r8rfgjuutsqlkkyuh4ndgex0wl3wue25uksau39q8", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "xASTRO.cw20", + "name": "xASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/xastro-cw20.svg", + "decimals": 6, + "recommended_symbol": "xASTRO.cw20" + }, + { + "denom": "ibc/40C29143BF4153B365089E40E437B7AA819672646C45BB0A5F1E10915A0B6708", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra17aj4ty4sz4yhgm08na8drc0v03v2jwr3waxcqrwhajj729zhl7zqnpc0ml", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "bLUNA", + "name": "bLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bLUNA.png", + "decimals": 6, + "description": "boneLUNA are autocompounding LUNA tokens", + "coingecko_id": "backbone-labs-staked-luna", + "recommended_symbol": "bLUNA" + }, + { + "denom": "ibc/4154B28D69A2B15C5DE06E861F5BACCB78C4B2180CEBECDAC74968FB402FB4BC", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ROAR", + "name": "ROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "decimals": 6, + "coingecko_id": "lion-dao", + "recommended_symbol": "ROAR" + }, + { + "denom": "ibc/50D7251763B4D5E9DD7A8A6C6B012353E998CDE95C546C1F96D68F7CCB060918", + "chain_id": "migaloo-1", + "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ampKUJI", + "name": "ampKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "decimals": 6, + "recommended_symbol": "ampKUJI" + }, + { + "denom": "ibc/AEE2F7EF838464848886097FA71AAB4A3A085F16D7585A0ED8B972383710B69F", + "chain_id": "migaloo-1", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-10", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "decimals": 6, + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" + }, + { + "denom": "ibc/B507F49B23C362BB40410FB8468E7D6456A158808C17D48FACC171AE0FD6B7A8", + "chain_id": "migaloo-1", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-53", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" + }, + { + "denom": "ibc/BC5C0BAFD19A5E4133FDA0F3E04AE1FBEE75A4A226554B2CBB021089FF2E1F8A", + "chain_id": "migaloo-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-60", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" + }, + { + "denom": "ibc/BEFB9AB13AB43157A0AF6214AD4B1F565AC0CA0C1760B8337BE7B9E2996F7752", + "chain_id": "migaloo-1", + "origin_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ampOSMO", + "name": "ampOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", + "decimals": 6, + "recommended_symbol": "ampOSMO" + }, + { + "denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ampWHALE", + "name": "ampWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "decimals": 6, + "description": "ampWHALE", + "recommended_symbol": "ampWHALE" + }, + { + "denom": "ibc/4D881B544ECE557A62A239EE827F8BFA3B76A1977F2FD5F4BDF68CBC28FDE760", + "chain_id": "migaloo-1", + "origin_denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GEM", + "name": "GEM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png", + "decimals": 6, + "recommended_symbol": "GEM" + }, + { + "denom": "ibc/F59604886233035949068D82EC23E60140D6573EC4CE7F9E0C6440BA5522255E", + "chain_id": "migaloo-1", + "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "decimals": 6, + "coingecko_id": "tether", + "recommended_symbol": "USDT.peggy" + }, + { + "denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SHARK", + "name": "SHARK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", + "decimals": 6, + "description": "SHARK is the apex price prediction market within Cosmos.", + "recommended_symbol": "SHARK" + }, + { + "denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "RAC", + "name": "RAC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", + "decimals": 6, + "description": "RAC", + "recommended_symbol": "RAC" + }, + { + "denom": "ibc/3808384ECC813CAF207992BE997BD18E18560E473D5368F1B4B77C3822262C4D", + "chain_id": "migaloo-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-53", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/7C51ED0EF526EC9EA8EFF22258F3ED11B92318845E5E167029AA70D5F0FD990C", + "chain_id": "migaloo-1", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "decimals": 6, + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" + }, + { + "denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OPHIR", + "name": "OPHIR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ophir.png", + "decimals": 6, + "description": "OPHIR is a Cosmos Treasury DAO established on Migaloo.", + "recommended_symbol": "OPHIR" + }, + { + "denom": "ibc/6A171A9A6DBBF5DDB976CD215EAA667641FA8EE35EDC95ACDBF68C810B62F0F5", + "chain_id": "migaloo-1", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-103", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SHD", + "name": "SHD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" + }, + { + "denom": "ibc/6E5BF71FE1BEBBD648C8A7CB7A790AEF0081120B2E5746E6563FC95764716D61", + "chain_id": "migaloo-1", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" + }, + { + "denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "chain_id": "migaloo-1", + "origin_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "FABLE", + "name": "FABLE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg", + "decimals": 6, + "description": "FABLE", + "recommended_symbol": "FABLE" + }, + { + "denom": "uwhale", + "chain_id": "migaloo-1", + "origin_denom": "uwhale", + "origin_chain_id": "migaloo-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WHALE", + "name": "WHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "decimals": 6, + "description": "The native token of Migaloo Chain", + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" + } + ] + }, + "minimove-1": { + "assets": [ + { + "denom": "ibc/0E98D4D1D907597448FD3A7C33DDAE10A90FA86FC8A9F5A0B175393783F249CD", + "chain_id": "minimove-1", + "origin_denom": "ueth", + "origin_chain_id": "mahalo-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", + "decimals": 6, + "recommended_symbol": "ETH" + }, + { + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "chain_id": "minimove-1", + "origin_denom": "uusdc", + "origin_chain_id": "mahalo-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "decimals": 6, + "description": "The fake USDC", + "recommended_symbol": "USDC" + } + ] + }, + "minimove-2": { + "assets": [ + { + "denom": "l2/2588fd87a8e081f6a557f43ff14f05dddf5e34cb27afcefd6eaf81f1daea30d0", + "chain_id": "minimove-2", + "origin_denom": "l2/2588fd87a8e081f6a557f43ff14f05dddf5e34cb27afcefd6eaf81f1daea30d0", + "origin_chain_id": "minimove-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INIT", + "name": "INIT", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/images/INIT.png", + "decimals": 6, + "description": "The native token of Initia", + "recommended_symbol": "INIT" + }, + { + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "chain_id": "minimove-2", + "origin_denom": "uusdc", + "origin_chain_id": "mahalo-2", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "decimals": 6, + "description": "The fake USDC", + "recommended_symbol": "USDC" + }, + { + "denom": "ibc/0E98D4D1D907597448FD3A7C33DDAE10A90FA86FC8A9F5A0B175393783F249CD", + "chain_id": "minimove-2", + "origin_denom": "ueth", + "origin_chain_id": "mahalo-2", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", + "decimals": 6, + "recommended_symbol": "ETH" + } + ] + }, + "miniwasm-1": { + "assets": [ + { + "denom": "ibc/0E98D4D1D907597448FD3A7C33DDAE10A90FA86FC8A9F5A0B175393783F249CD", + "chain_id": "miniwasm-1", + "origin_denom": "ueth", + "origin_chain_id": "mahalo-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", + "decimals": 6, + "recommended_symbol": "ETH" + }, + { + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "chain_id": "miniwasm-1", + "origin_denom": "uusdc", + "origin_chain_id": "mahalo-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "decimals": 6, + "description": "The fake USDC", + "recommended_symbol": "USDC" + } + ] + }, + "miniwasm-2": { + "assets": [ + { + "denom": "ibc/37A3FB4FED4CA04ED6D9E5DA36C6D27248645F0E22F585576A1488B8A89C5A50", + "chain_id": "miniwasm-2", + "origin_denom": "uinit", + "origin_chain_id": "mahalo-2", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INIT", + "name": "INIT", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/INIT.png", + "decimals": 6, + "recommended_symbol": "INIT" + }, + { + "denom": "l2/771d639f30fbe45e3fbca954ffbe2fcc26f915f5513c67a4a2d0bc1d635bdefd", + "chain_id": "miniwasm-2", + "origin_denom": "l2/771d639f30fbe45e3fbca954ffbe2fcc26f915f5513c67a4a2d0bc1d635bdefd", + "origin_chain_id": "miniwasm-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INIT", + "name": "INIT", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/minimove/images/INIT.png", + "decimals": 6, + "description": "The native token of Initia", + "recommended_symbol": "INIT" + }, + { + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "chain_id": "miniwasm-2", + "origin_denom": "uusdc", + "origin_chain_id": "mahalo-2", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/USDC.png", + "decimals": 6, + "description": "The fake USDC", + "recommended_symbol": "USDC" + }, + { + "denom": "ibc/0E98D4D1D907597448FD3A7C33DDAE10A90FA86FC8A9F5A0B175393783F249CD", + "chain_id": "miniwasm-2", + "origin_denom": "ueth", + "origin_chain_id": "mahalo-2", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/initia-labs/initia-registry/main/devnets/mahalo/images/ETH.png", + "decimals": 6, + "recommended_symbol": "ETH" + } + ] + }, + "mocha-4": { + "assets": [ + { + "denom": "utia", + "chain_id": "mocha-4", + "origin_denom": "utia", + "origin_chain_id": "mocha-4", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", + "decimals": 6, + "recommended_symbol": "TIA" + } + ] + }, + "neutron-1": { + "assets": [ + { + "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", + "chain_id": "neutron-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-10", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "chain_id": "neutron-1", + "origin_denom": "wsteth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "wstETH.axl", + "name": "Lido", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "bridged-wrapped-steth-axelar", + "recommended_symbol": "wstETH.axl" + }, + { + "denom": "ibc/4EAAAE537853E9C0DDF458F0710C37BB3DE7C6A675AB75DB5731ACE93D6CC57B", + "chain_id": "neutron-1", + "origin_denom": "stusaga", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stSAGA", + "name": "Stride Staked SAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", + "decimals": 6, + "coingecko_id": "stride-staked-saga", + "recommended_symbol": "stSAGA" + }, + { + "denom": "ibc/4EC3C12EE323A6D4E44823233096FCBA1814E6AABFFF4126C8053F3B46DB5E59", + "chain_id": "neutron-1", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "decimals": 6, + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" + }, + { + "denom": "ibc/5103F3B79845E445F46120B476A8336D76DE39A16E77132B2BB19BEA3857AF9B", + "chain_id": "neutron-1", + "origin_denom": "wglmr-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WGLMR", + "name": "WGLMR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", + "decimals": 18, + "coingecko_id": "wrapped-moonbeam", + "recommended_symbol": "WGLMR.axl" + }, + { + "denom": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", + "chain_id": "neutron-1", + "origin_denom": "unls", + "origin_chain_id": "pirin-1", + "trace": "transfer/channel-44", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NLS", + "name": "NLS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "decimals": 6, + "description": "The native token of Nolus chain", + "coingecko_id": "nolus", + "recommended_symbol": "NLS" + }, + { + "denom": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", + "chain_id": "neutron-1", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlWETH", + "name": "axlWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "decimals": 18, + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" + }, + { + "denom": "ibc/A96863E0BDFA3F2D96625FD5A649AF53F62F97521EF78FBBFE5B4199C3E23ABD", + "chain_id": "neutron-1", + "origin_denom": "wftm-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WFTM", + "name": "WFTM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "decimals": 18, + "coingecko_id": "wrapped-fantom", + "recommended_symbol": "WFTM.axl" + }, + { + "denom": "ibc/B4C0F9BCB087D78ED8660D2824C4B81682840D0B69E83C62A78CA5874DD742A8", + "chain_id": "neutron-1", + "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-60", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AUTISM", + "name": "AUTISM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "decimals": 6, + "coingecko_id": "autism", + "recommended_symbol": "AUTISM" + }, + { + "denom": "ibc/B6643B477C69060B125279D9FF69EC20189E4D15DC24CF0457E0BAA9DD1A26AE", + "chain_id": "neutron-1", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-1950", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SHD", + "name": "Shade Protocol", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" + }, + { + "denom": "factory/neutron1gjzvc9jjwkp5zrkn0q6h8y33wlqq3ef80rd8ap/uhangman", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1gjzvc9jjwkp5zrkn0q6h8y33wlqq3ef80rd8ap/uhangman", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HGM", + "name": "www.hangman.lol", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/hangman.svg", + "decimals": 6, + "recommended_symbol": "HGM" + }, + { + "denom": "factory/neutron1hn07a70wr6ladw7jdq5afesxm0eme958hht2rl/TEWT", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1hn07a70wr6ladw7jdq5afesxm0eme958hht2rl/TEWT", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TEWT", + "name": "Tewt", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/tewt.png", + "decimals": 6, + "recommended_symbol": "TEWT" + }, + { + "denom": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/DANZA", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1k3zuqrwkad0kpeh6p9fl7a2nnnevkv95t3cpdz/DANZA", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DANZA", + "name": "Whos the Boss?", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/DANZA.png", + "decimals": 6, + "recommended_symbol": "DANZA" + }, + { + "denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CORGI", + "name": "CORGI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", + "decimals": 6, + "description": "Baby Corgi is the real doggo of Neutron!", + "recommended_symbol": "CORGI" + }, + { + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "chain_id": "neutron-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "description": "Circle's stablecoin on Axelar", + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/74B554DD3FF10F5D60E30175ADFB47E59F77F7C57024A8104A4F78CDC2EAD125", + "chain_id": "neutron-1", + "origin_denom": "usaga", + "origin_chain_id": "ssc-1", + "trace": "transfer/channel-2060", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SAGA", + "name": "Saga", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", + "decimals": 6, + "coingecko_id": "saga-2", + "recommended_symbol": "SAGA" + }, + { + "denom": "factory/neutron1x6dz920jhwuw9e4vf0rwwdrlkc2ztyss0eyl2n/newtkiller", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1x6dz920jhwuw9e4vf0rwwdrlkc2ztyss0eyl2n/newtkiller", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NEWTK", + "name": "Newt Killer | Max Supply 21.000", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/newtk.svg", + "decimals": 6, + "recommended_symbol": "NEWTK" + }, + { + "denom": "ibc/427E7C81609A8D9104B19A842A0EF960E606992B6206A07605088BEDB27D8DA6", + "chain_id": "neutron-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" + }, + { + "denom": "ibc/B559A80D62249C8AA07A380E2A2BEA6E5CA9A6F079C912C3A9E9B494105E4F81", + "chain_id": "neutron-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-30", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" + }, + { + "denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ASTRO", + "name": "ASTRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", + "decimals": 6, + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO" + }, + { + "denom": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GODDARD", + "name": "GODDARD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg", + "decimals": 6, + "description": "THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON", + "recommended_symbol": "GODDARD" + }, + { + "denom": "ibc/7B6FFC996FC2984AA98DBA4CEBFBF790E55F4D7E65360DD614F2BE2D08F4D324", + "chain_id": "neutron-1", + "origin_denom": "wavax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "denom": "ibc/8D0C1AC5A72FB7EC187632D01BACBB68EF743CA1AF16A15C00ACBB9CF49A0070", "chain_id": "neutron-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "origin_denom": "stadym", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDT", - "name": "axlUSDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "stDYM", + "name": "stDYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png", + "decimals": 18, + "description": "Stride Staked DYM", + "coingecko_id": "stride-staked-dym", + "recommended_symbol": "stDYM" + }, + { + "denom": "ibc/B3881052DCC62E68955C71A49C5306717CFDE5B6526D39C89D1278DAE3284432", + "chain_id": "neutron-1", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-49", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/59034348F9F2DBA4EAE6621D9DDA9ADF190F60BDDDD2DC99E226F800886F70B5", + "denom": "untrn", "chain_id": "neutron-1", - "origin_denom": "frax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FRAX", - "name": "FRAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", - "decimals": 18, - "coingecko_id": "frax", - "recommended_symbol": "FRAX.axl" + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "decimals": 6, + "description": "The native token of Neutron chain.", + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" + }, + { + "denom": "factory/neutron169mg9zwc6dn2qzncnz4r3d6v52wuue08wxksvc/SEPPUKU", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron169mg9zwc6dn2qzncnz4r3d6v52wuue08wxksvc/SEPPUKU", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SEPPUKU", + "name": "Seppuku", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEPPUKU.png", + "decimals": 6, + "recommended_symbol": "SEPPUKU" + }, + { + "denom": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/WOOF", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1pwjn3tsumm3j7v7clzqhjsaukv4tdjlclhdytawhet68fwlz84fqcrdyf5/WOOF", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WOOF", + "name": "woof", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/woof.png", + "decimals": 6, + "recommended_symbol": "WOOF" + }, + { + "denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GODRD", + "name": "GODRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png", + "decimals": 6, + "description": "A Mechanical Canine", + "recommended_symbol": "GODRD" + }, + { + "denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NTRL", + "name": "NTRL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg", + "decimals": 6, + "description": "NEWTROLL", + "recommended_symbol": "NTRL" + }, + { + "denom": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1w0pz4mjw7n96kkragj8etgfgakg5vw9lzg77wq/cartel", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CARTEL", + "name": "CARTEL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/cartel.png", + "decimals": 6, + "description": "Reflections of cartel activity on Cosmos.", + "recommended_symbol": "CARTEL" + }, + { + "denom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1zlf3hutsa4qnmue53lz2tfxrutp8y2e3rj4nkghg3rupgl4mqy8s5jgxsn/xASTRO", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "xASTRO", + "name": "xASTRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/xAstro.svg", + "decimals": 6, + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "recommended_symbol": "xASTRO" + }, + { + "denom": "ibc/784AAB8E04449646EF2AE3DE2DC71459A71E286E2941541DE6CAAB85872DC9A9", + "chain_id": "neutron-1", + "origin_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-51", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BADDOG", + "name": "Chihuahuawifhat", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", + "decimals": 6, + "recommended_symbol": "BADDOG" + }, + { + "denom": "ibc/CCD676A501897583884E68318499E079C47CD336B48E168BB6DAD84831B10E36", + "chain_id": "neutron-1", + "origin_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-60", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HAVA", + "name": "HAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", + "decimals": 6, + "coingecko_id": "hava-coin", + "recommended_symbol": "HAVA" + }, + { + "denom": "ibc/D03F341CAA5D24B43ABE27C11A214EA3589DDEA125A2E6A76C7C37F2F3C59692", + "chain_id": "neutron-1", + "origin_denom": "unois", + "origin_chain_id": "nois-1", + "trace": "transfer/channel-722", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NOIS", + "name": "NOIS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "decimals": 6, + "recommended_symbol": "NOIS" + }, + { + "denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CIRCUS", + "name": "CIRCUS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", + "decimals": 6, + "description": "clownmaxxed store of value", + "recommended_symbol": "CIRCUS" + }, + { + "denom": "factory/neutron1guar6dc2scpxtmmq8reh0q5cv2l37vs0uyfdru/dinosaur", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1guar6dc2scpxtmmq8reh0q5cv2l37vs0uyfdru/dinosaur", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DSR", + "name": "DSR", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/dsrlol.png", + "decimals": 6, + "description": "DINOSAUR", + "recommended_symbol": "DSR" }, { "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", @@ -21659,6 +26387,7 @@ "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stOSMO", "name": "stOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", @@ -21666,21 +26395,6 @@ "coingecko_id": "stride-staked-osmo", "recommended_symbol": "stOSMO" }, - { - "denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "chain_id": "neutron-1", - "origin_denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "origin_chain_id": "neutron-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "JIMMY", - "name": "JIMMY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", - "decimals": 6, - "description": "Jimmy Neutron Finance", - "recommended_symbol": "JIMMY" - }, { "denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", "chain_id": "neutron-1", @@ -21689,42 +26403,30 @@ "trace": "transfer/channel-35", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "TIA", "name": "TIA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, + "description": "The native token of the Celestia blockchain.", "coingecko_id": "celestia", "recommended_symbol": "TIA" }, { - "denom": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", - "chain_id": "neutron-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-10", - "is_cw20": false, - "is_evm": false, - "symbol": "WBTC (Osmosis)", - "name": "Wrapped Bitcoin", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC (Osmosis)" - }, - { - "denom": "ibc/CB59A3CF572D31B5B531C305A0386A262FEFF2ADCC44551654E1344C3C236507", + "denom": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", "chain_id": "neutron-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + "recommended_symbol": "WOSMO" }, { "denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", @@ -21734,6 +26436,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ECLIP", "name": "ECLIP", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", @@ -21742,33 +26445,352 @@ "recommended_symbol": "ECLIP" }, { - "denom": "factory/neutron18ps4ypzkq0dwzp84jctnd8ljrdcjgr6v27gymt/Quirky", + "denom": "ibc/9F8417FBA11E5E01F7F85DDD48C400EB746E95084C11706041663845B4A700A8", + "chain_id": "neutron-1", + "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-10", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BADKID", + "name": "BADKID", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "decimals": 6, + "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + "recommended_symbol": "BADKID" + }, + { + "denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "APOLLO", + "name": "APOLLO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + "decimals": 6, + "description": "The deflationary utility token of the Apollo DAO project", + "recommended_symbol": "APOLLO" + }, + { + "denom": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1ees4460xhj7z6g49fn8z39mg533qw7nh7wtcsj/sloth", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SLOTH", + "name": "SLOTH", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/sloth.png", + "decimals": 6, + "recommended_symbol": "SLOTH" + }, + { + "denom": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GAY", + "name": "Gay Coin", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/GAY.png", + "decimals": 6, + "recommended_symbol": "GAY" + }, + { + "denom": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "YAWP", + "name": "YAWP", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/YAWP.svg", + "decimals": 6, + "recommended_symbol": "YAWP" + }, + { + "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "description": "wstETH on Neutron", + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH" + }, + { + "denom": "ibc/A139C0E0B5E87CBA8EAEEB12B9BEE13AC7C814CFBBFA87BBCADD67E31003466C", + "chain_id": "neutron-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-18", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "decimals": 6, + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" + }, + { + "denom": "factory/neutron1hf07vxv7f53xjwxq8ec2nuet9k0cq7qepxm7c6/mip229", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1hf07vxv7f53xjwxq8ec2nuet9k0cq7qepxm7c6/mip229", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MIP229", + "name": "MIP229", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/mip229.png", + "decimals": 6, + "recommended_symbol": "MIP229" + }, + { + "denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "RETRO", + "name": "RETRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg", + "decimals": 6, + "description": "Retro Game", + "recommended_symbol": "RETRO" + }, + { + "denom": "ibc/00230C58F1540708067850B3362C8A67A273FC52F0C7305B802D7255495C86FD", + "chain_id": "neutron-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-41", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, + { + "denom": "ibc/0757D43FE751DDC1CA63289C42FA986979FCBA4A3647485EAE58262948584673", + "chain_id": "neutron-1", + "origin_denom": "factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-60", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HDRO", + "name": "HDRO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/hdro.png", + "decimals": 6, + "recommended_symbol": "HDRO" + }, + { + "denom": "ibc/15EA36C3AB87E3E5E41A61717B7A20F03CC2363840C1A837A487B8BFE176328E", + "chain_id": "neutron-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-1551", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, + { + "denom": "ibc/1CF1239A3068964DAF55F7300D7BE016E4E184F58EEB59096B138F6D72628BAA", + "chain_id": "neutron-1", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-17", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" + }, + { + "denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "chain_id": "neutron-1", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-48", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "description": "The native staking token of dYdX Protocol.", + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" + }, + { + "denom": "ibc/2FCBC9ECB42BBBD3A9F25E780ED03C93E62D0E414A6687A4D4A2E1EBAED48BFA", + "chain_id": "neutron-1", + "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LOCAL", + "name": "LOCAL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "decimals": 6, + "recommended_symbol": "LOCAL" + }, + { + "denom": "ibc/5CB2E12B07D0B6D8EC24A68BA6B6E6E8D5BF85B7D22091D3A480DCDD61C6AC84", + "chain_id": "neutron-1", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" + }, + { + "denom": "ibc/3649CE0C8A2C79048D8C6F31FF18FA69C9BC7EB193512E0BD03B733011290445", + "chain_id": "neutron-1", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-49", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "decimals": 6, + "description": "PSTAKE Liquid-Staked ATOM", + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" + }, + { + "denom": "ibc/626DBDAD47E2867EE930907A2C97B9F61043523C40FB9C4FEEC980933D1F6790", + "chain_id": "neutron-1", + "origin_denom": "dai-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.axl" + }, + { + "denom": "ibc/59034348F9F2DBA4EAE6621D9DDA9ADF190F60BDDDD2DC99E226F800886F70B5", + "chain_id": "neutron-1", + "origin_denom": "frax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "FRAX", + "name": "FRAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", + "decimals": 18, + "coingecko_id": "frax", + "recommended_symbol": "FRAX.axl" + }, + { + "denom": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/scrap", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/scrap", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRAP", + "name": "SCRAP", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SCRAP.png", + "decimals": 6, + "recommended_symbol": "SCRAP" + }, + { + "denom": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", "chain_id": "neutron-1", - "origin_denom": "factory/neutron18ps4ypzkq0dwzp84jctnd8ljrdcjgr6v27gymt/Quirky", + "origin_denom": "factory/neutron1qzf6t478xuutq0ahkm07pl2y2tctreccrlafkrl38k4cafk3rgdq3lfky5/VaultToken/pcl/capped/stTIA/TIA", "origin_chain_id": "neutron-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "QRKY", - "name": "Quirky", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/QUIRKY.svg", - "decimals": 6, - "recommended_symbol": "QRKY" + "is_svm": false, + "symbol": "(stTIA/TIA)VT", + "name": "Apollo DAO", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/(sttia-tia)vt.svg", + "decimals": 12, + "recommended_symbol": "(stTIA/TIA)VT" }, { - "denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", + "denom": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", "chain_id": "neutron-1", - "origin_denom": "factory/neutron1ume2n42r5j0660gegrr28fzdze7aqf7r5cd9y6/newtroll", - "origin_chain_id": "neutron-1", - "trace": "", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "NTRL", - "name": "NTRL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newtroll.svg", + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", "decimals": 6, - "description": "NEWTROLL", - "recommended_symbol": "NTRL" + "description": "Stride Staked TIA", + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" }, { "denom": "ibc/69BEAFC2FDF0C6F0124520B0A06E432AD8490732DFC309337FA6C307124FDABC", @@ -21778,6 +26800,7 @@ "trace": "transfer/channel-60", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "INJ", "name": "INJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", @@ -21786,67 +26809,36 @@ "recommended_symbol": "INJ" }, { - "denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "denom": "ibc/78F7404035221CD1010518C7BC3DD99B90E59C2BA37ABFC3CE56B0CFB7E8901B", "chain_id": "neutron-1", - "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", - "origin_chain_id": "neutron-1", - "trace": "", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "NEWT", - "name": "NEWT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", - "decimals": 6, - "description": "The cutest NEWT token on Neutron chain.", - "coingecko_id": "newt", - "recommended_symbol": "NEWT" + "is_svm": false, + "symbol": "WBTC (Osmosis)", + "name": "Wrapped Bitcoin", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC (Osmosis)" }, { - "denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", "chain_id": "neutron-1", - "origin_denom": "factory/neutron1t24nc7whl77relnu3taxyg3p66pjyuk82png2y/uretro", + "origin_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", "origin_chain_id": "neutron-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RETRO", - "name": "RETRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/retro.svg", - "decimals": 6, - "description": "Retro Game", - "recommended_symbol": "RETRO" - }, - { - "denom": "ibc/6C9E6701AC217C0FC7D74B0F7A6265B9B4E3C3CDA6E80AADE5F950A8F52F9972", - "chain_id": "neutron-1", - "origin_denom": "unls", - "origin_chain_id": "pirin-1", - "trace": "transfer/channel-44", - "is_cw20": false, - "is_evm": false, - "symbol": "NLS", - "name": "NLS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", - "decimals": 6, - "description": "The native token of Nolus chain", - "coingecko_id": "nolus", - "recommended_symbol": "NLS" - }, - { - "denom": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", - "chain_id": "neutron-1", - "origin_denom": "umars", - "origin_chain_id": "mars-1", - "trace": "transfer/channel-16", - "is_cw20": false, - "is_evm": false, - "symbol": "MARS", - "name": "MARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "is_svm": false, + "symbol": "ASTROPEPE", + "name": "ASTROPEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", "decimals": 6, - "description": "Mars Staking Coin", - "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", - "recommended_symbol": "MARS" + "description": "Astropepe meme coin", + "recommended_symbol": "ASTROPEPE" }, { "denom": "ibc/BAA1D21893B1D36865C6CA44D18F4ACF08BAD70CB6863C4722E0A61703808F77", @@ -21856,269 +26848,272 @@ "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stDYDX", - "name": "Stride Staked DYDX", + "name": "stDYDX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", "decimals": 18, + "description": "Stride Staked DYDX", "coingecko_id": "stride-staked-dydx", "recommended_symbol": "stDYDX" }, { - "denom": "untrn", + "denom": "ibc/BEF5C9D724E1EBB04FEE237CB5F602B22B0FFE8065F540FD8BC6F9E1A4B8573D", "chain_id": "neutron-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "HUAHUA", + "name": "Chihuahua", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", "decimals": 6, - "description": "The native token of Neutron chain.", - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "coingecko_id": "chihuahua-chain", + "recommended_symbol": "HUAHUA" }, { - "denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "chain_id": "neutron-1", - "origin_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "origin_chain_id": "neutron-1", - "trace": "", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "ASTROPEPE", - "name": "ASTROPEPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "description": "Astropepe meme coin", - "recommended_symbol": "ASTROPEPE" + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/6569E05DEE32B339D9286A52BE33DFCEFC97267F23EF9CFDE0C055140967A9A5", + "denom": "ibc/E74CD453F834EE007B02F1298EFFF4DCD9C97FB58DF7F6080FF935145B73C6A6", "chain_id": "neutron-1", - "origin_denom": "stutia", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-8", + "origin_denom": "dot-planck", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "Stride Staked TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", - "decimals": 6, - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" + "is_svm": false, + "symbol": "DOT", + "name": "DOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" }, { - "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "denom": "ibc/5751B8BCDA688FD0A8EC0B292EEF1CDEAB4B766B63EC632778B196D317C40C3A", "chain_id": "neutron-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-8", + "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "ASTRO.cw20", + "name": "ASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", "decimals": 6, - "description": "Stride Staked Atom", - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "description": "ASTRO.cw20 on Neutron", + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO.cw20" }, { - "denom": "ibc/DE7D10F55AA7440878BD37E501E6B12B1B1D46AAF6FB294E398E0537C613C0D8", + "denom": "factory/neutron18ps4ypzkq0dwzp84jctnd8ljrdcjgr6v27gymt/Quirky", "chain_id": "neutron-1", - "origin_denom": "avalanche-uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "origin_denom": "factory/neutron18ps4ypzkq0dwzp84jctnd8ljrdcjgr6v27gymt/Quirky", + "origin_chain_id": "neutron-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "QRKY", + "name": "Quirky", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/QUIRKY.svg", "decimals": 6, - "recommended_symbol": "USDC.axl.avalanche" + "recommended_symbol": "QRKY" }, { - "denom": "ibc/7B6FFC996FC2984AA98DBA4CEBFBF790E55F4D7E65360DD614F2BE2D08F4D324", + "denom": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", "chain_id": "neutron-1", - "origin_denom": "wavax-wei", + "origin_denom": "uusdt", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" - }, - { - "denom": "ibc/B3881052DCC62E68955C71A49C5306717CFDE5B6526D39C89D1278DAE3284432", - "chain_id": "neutron-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-49", - "is_cw20": false, - "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "axlUSDT", + "name": "axlUSDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", "chain_id": "neutron-1", - "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "origin_denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", "origin_chain_id": "neutron-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "APOLLO", - "name": "APOLLO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + "is_svm": false, + "symbol": "ATOM1KLFG", + "name": "ATOM1KLFG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", "decimals": 6, - "description": "The deflationary utility token of the Apollo DAO project", - "recommended_symbol": "APOLLO" + "description": "$ATOM to $1,000 LFG!!", + "recommended_symbol": "ATOM1KLFG" }, { - "denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", "chain_id": "neutron-1", - "origin_denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", "origin_chain_id": "neutron-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CORGI", - "name": "CORGI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", + "is_svm": false, + "symbol": "BAD", + "name": "BAD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", "decimals": 6, - "description": "Baby Corgi is the real doggo of Neutron!", - "recommended_symbol": "CORGI" + "description": "Baddest coin on Cosmos", + "recommended_symbol": "BAD" }, { - "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", "chain_id": "neutron-1", - "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "origin_chain_id": "neutron-1", - "trace": "", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "description": "wstETH on Neutron", - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", "chain_id": "neutron-1", - "origin_denom": "factory/neutron1yqj9vcc0y73xfxjzegaj4v8q0zefevnlpuh4rj/GODDARD", + "origin_denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", "origin_chain_id": "neutron-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GODDARD", - "name": "GODDARD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddard.svg", + "is_svm": false, + "symbol": "JIMMY", + "name": "JIMMY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", "decimals": 6, - "description": "THE FIRST NATIVE GODDARD MEMECOIN ON NEUTRON", - "recommended_symbol": "GODDARD" + "description": "Jimmy Neutron Finance", + "recommended_symbol": "JIMMY" }, { - "denom": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", + "denom": "ibc/CB59A3CF572D31B5B531C305A0386A262FEFF2ADCC44551654E1344C3C236507", "chain_id": "neutron-1", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-675", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "DYM", - "name": "Dymension", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", - "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "decimals": 6, + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/5103F3B79845E445F46120B476A8336D76DE39A16E77132B2BB19BEA3857AF9B", + "denom": "ibc/DE7D10F55AA7440878BD37E501E6B12B1B1D46AAF6FB294E398E0537C613C0D8", "chain_id": "neutron-1", - "origin_denom": "wglmr-wei", + "origin_denom": "avalanche-uusdc", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "WGLMR", - "name": "WGLMR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", - "decimals": 18, - "coingecko_id": "wrapped-moonbeam", - "recommended_symbol": "WGLMR.axl" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "recommended_symbol": "USDC.axl.avalanche" }, { - "denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", "chain_id": "neutron-1", - "origin_denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "origin_chain_id": "neutron-1", - "trace": "", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "CIRCUS", - "name": "CIRCUS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "description": "clownmaxxed store of value", - "recommended_symbol": "CIRCUS" + "description": "Stride Staked Atom", + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", + "denom": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", "chain_id": "neutron-1", - "origin_denom": "factory/neutron1lg8nydf8nagrrp2f72y5mk9newv2gs6a3mm3cn/GAY", - "origin_chain_id": "neutron-1", - "trace": "", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "GAY", - "name": "Gay Coin", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/GAY.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "recommended_symbol": "GAY" + "description": "Axelar Staking Coin", + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/1CF1239A3068964DAF55F7300D7BE016E4E184F58EEB59096B138F6D72628BAA", + "denom": "ibc/322C86EB54A505E28AFE380CED1721FA61E9580A7548A16B9DCF6E7C8CEE43D5", "chain_id": "neutron-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-17", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-25", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "decimals": 6, + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "denom": "ibc/1053E271314D36FECBC915B51474F8B3962597CE88FF3E4A74795B0E3F367A8B", "chain_id": "neutron-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-48", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "decimals": 18, - "description": "The native staking token of dYdX Protocol.", - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "is_svm": false, + "symbol": "KUJI", + "name": "Kujira", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "decimals": 6, + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", @@ -22128,270 +27123,356 @@ "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STRD", - "name": "Stride", + "name": "STRD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, + "description": "Stride Staking Coin", "coingecko_id": "stride", "recommended_symbol": "STRD" }, { - "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "denom": "ibc/4A6A46D4263F2ED3DCE9CF866FE15E6903FB5E12D87EB8BDC1B6B1A1E2D397B4", "chain_id": "neutron-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-675", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "description": "Circle's stablecoin on Axelar", - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "decimals": 18, + "description": "Dymension Staking Coin", + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", "chain_id": "neutron-1", - "origin_denom": "factory/neutron1t5qrjtyryh8gzt800qr5vylhh2f8cmx4wmz9mc/ugoddard", + "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", "origin_chain_id": "neutron-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GODRD", - "name": "GODRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/goddardntrn.png", + "is_svm": false, + "symbol": "NEWT", + "name": "NEWT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", "decimals": 6, - "description": "A Mechanical Canine", - "recommended_symbol": "GODRD" + "description": "The cutest NEWT token on Neutron chain.", + "coingecko_id": "newt", + "recommended_symbol": "NEWT" }, { - "denom": "ibc/00230C58F1540708067850B3362C8A67A273FC52F0C7305B802D7255495C86FD", + "denom": "ibc/14767887A69DBEFF3B99AA3E5B176C7989B1DAD2395A1E843F48EE981AC4F83F", "chain_id": "neutron-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-41", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { - "denom": "ibc/4D04085167777659C11784A356D6B0D13D5C7F0CE77F7DB1152FE03A2DE2CBF2", + "denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", "chain_id": "neutron-1", - "origin_denom": "wsteth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "origin_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", + "origin_chain_id": "neutron-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "wstETH.axl", - "name": "Lido", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "coingecko_id": "bridged-wrapped-steth-axelar", - "recommended_symbol": "wstETH.axl" + "is_svm": false, + "symbol": "MOO", + "name": "MOO", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/MOO.png", + "decimals": 6, + "recommended_symbol": "MOO" }, { - "denom": "ibc/4EC3C12EE323A6D4E44823233096FCBA1814E6AABFFF4126C8053F3B46DB5E59", + "denom": "ibc/83794D4DD229BCBA72347244EE5FC4594880FF236F9A0A98680D10954DE9641C", "chain_id": "neutron-1", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "MNTA", + "name": "Manta DAO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "decimals": 6, + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" + }, + { + "denom": "ibc/9598CDEB7C6DB7FC21E746C8E0250B30CD5154F39CA111A9D4948A4362F638BD", + "chain_id": "neutron-1", + "origin_denom": "umars", + "origin_chain_id": "mars-1", + "trace": "transfer/channel-16", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MARS", + "name": "MARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "decimals": 6, + "description": "Mars Staking Coin", + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "recommended_symbol": "MARS" + }, + { + "denom": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "chain_id": "neutron-1", + "origin_denom": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "origin_chain_id": "neutron-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PROP16", + "name": "TakumiProp16JunoWhaleInu", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/prop16.png", + "decimals": 6, + "recommended_symbol": "PROP16" + } + ] + }, + "noble-1": { + "assets": [ + { + "denom": "ibc/1B28CD5F3CDC17E585A7F2F05931FA694B3EFF0233D98CEF3505A35410D53CED", + "chain_id": "noble-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-17", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, + { + "denom": "ibc/1810DC539AB32D3C33A66E19D8880072449D6699C9E1B58E8F88CBBDEBB31B96", + "chain_id": "noble-1", + "origin_denom": "utori", + "origin_chain_id": "teritori-1", + "trace": "transfer/channel-54", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TORI", + "name": "TORI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "coingecko_id": "teritori", + "recommended_symbol": "TORI" }, { - "denom": "ibc/7DA39F5140741177846FCF3CFAB14450EE7F57B7794E5A94BEF73825D3741958", - "chain_id": "neutron-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-10", + "denom": "ibc/A77035AF12BBB11C0340BE804798C4B49F5332EA8C7523F471850C202C0742C5", + "chain_id": "noble-1", + "origin_denom": "unibi", + "origin_chain_id": "cataclysm-1", + "trace": "transfer/channel-67", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "NIBI", + "name": "NIBI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", "decimals": 6, - "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", - "recommended_symbol": "WOSMO" + "coingecko_id": "nibiru", + "recommended_symbol": "NIBI" }, { - "denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "chain_id": "neutron-1", - "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "origin_chain_id": "neutron-1", + "denom": "uusdc", + "chain_id": "noble-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BAD", - "name": "BAD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "description": "Baddest coin on Cosmos", - "recommended_symbol": "BAD" + "description": "USD Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "factory/neutron1gjzvc9jjwkp5zrkn0q6h8y33wlqq3ef80rd8ap/uhangman", - "chain_id": "neutron-1", - "origin_denom": "factory/neutron1gjzvc9jjwkp5zrkn0q6h8y33wlqq3ef80rd8ap/uhangman", - "origin_chain_id": "neutron-1", - "trace": "", + "denom": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", + "chain_id": "noble-1", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "HGM", - "name": "www.hangman.lol", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/hangman.svg", - "decimals": 6, - "recommended_symbol": "HGM" + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "factory/neutron1guar6dc2scpxtmmq8reh0q5cv2l37vs0uyfdru/dinosaur", - "chain_id": "neutron-1", - "origin_denom": "factory/neutron1guar6dc2scpxtmmq8reh0q5cv2l37vs0uyfdru/dinosaur", - "origin_chain_id": "neutron-1", - "trace": "", + "denom": "ibc/BE8B9A10C7F6E014F617E4C883D24A8E34A4399C2E18D583DD9506CEADF0D7E5", + "chain_id": "noble-1", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-30", "is_cw20": false, "is_evm": false, - "symbol": "DSR", - "name": "DSR", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/dsrlol.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "description": "DINOSAUR", - "recommended_symbol": "DSR" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "factory/neutron1x6dz920jhwuw9e4vf0rwwdrlkc2ztyss0eyl2n/newtkiller", - "chain_id": "neutron-1", - "origin_denom": "factory/neutron1x6dz920jhwuw9e4vf0rwwdrlkc2ztyss0eyl2n/newtkiller", - "origin_chain_id": "neutron-1", - "trace": "", + "denom": "ibc/C13664951326AE95004297843B30BA98FAB102B8F6904A68C03576D1812D1D72", + "chain_id": "noble-1", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-31", "is_cw20": false, "is_evm": false, - "symbol": "NEWTK", - "name": "Newt Killer | Max Supply 21.000", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/newtk.svg", - "decimals": 6, - "recommended_symbol": "NEWTK" - } - ] - }, - "noble-1": { - "assets": [ + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" + }, { - "denom": "ibc/43C92566AEA8C100CF924DB324BD8F699B6374CA5B93BF6BCFEC4777B62D50D1", + "denom": "ibc/079EF4321138241B91C926627ACFFE98B538F93463F3845486191A98A61198FA", "chain_id": "noble-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-18", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", - "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "decimals": 18, + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "ibc/569935CB14C1BBA4CF79CBC145E29C8C821A2240411C2F215DE8319E847D8CFB", + "denom": "ibc/7AD8FD805B32DBE678C21A712E322A56E974DE8CDC9242579F4074AF7C6F51DE", "chain_id": "noble-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-2", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ustake", + "denom": "ibc/7D3CE47E4167395611087DE025916E5F62F11CCFAA671A7457659FC21DB5252B", "chain_id": "noble-1", - "origin_denom": "ustake", - "origin_chain_id": "noble-1", - "trace": "", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "STAKE", - "name": "STAKE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "description": "The permissioned staking asset for Noble Chain", - "recommended_symbol": "STAKE" + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { - "denom": "ibc/DBC1802D65B51FCD3C82A84415F54254CC8233A13644421F85128DC500248ECD", + "denom": "ibc/A45E9FB4C738663CC00FFF0F645D42D99E6FFF8A5245FCC9BF7CAD006CBC3BD8", "chain_id": "noble-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-33", + "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "is_svm": false, + "symbol": "ECLIP", + "name": "ECLIP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", + "decimals": 6, + "coingecko_id": "eclipse-fi", + "recommended_symbol": "ECLIP" }, { - "denom": "ibc/E0B5D7EFB3548A248615A599DCF8A2EC59AAA096B3C8476E5B61D0A64EE4DB50", + "denom": "ibc/43C92566AEA8C100CF924DB324BD8F699B6374CA5B93BF6BCFEC4777B62D50D1", "chain_id": "noble-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-12", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "decimals": 6, + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "ufrienzies", + "denom": "ibc/61911671206AA9798E403274D78F3ED3CAD9CD66AD12255BF89824F640E9D24A", "chain_id": "noble-1", - "origin_denom": "ufrienzies", - "origin_chain_id": "noble-1", - "trace": "", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, - "symbol": "FRNZ", - "name": "FRNZ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "is_svm": false, + "symbol": "SEI", + "name": "SEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", "decimals": 6, - "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", - "recommended_symbol": "FRNZ" + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" }, { - "denom": "ibc/73E97EB411B29C6F989C35D277D1A7FC65083572F102AC6BD101884EE9FB2C9F", + "denom": "ibc/8921861E2422AFE6F21B3D57173BEC563237BC9310FDC705FF9777D5F987D9B9", "chain_id": "noble-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-7", + "origin_denom": "usara-core1r9gc0rnxnzpq33u82f44aufgdwvyxv4wyepyck98m9v2pxua6naqr8h03z", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "is_svm": false, + "symbol": "SARA", + "name": "SARA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/coreum/asset/sara.png", + "decimals": 6, + "coingecko_id": "pulsara", + "recommended_symbol": "SARA" }, { "denom": "ibc/A7304EE764FD4AAE4D81A75F0F396D3C2038F4BB8DA655ED2F8735F2F9F36295", @@ -22401,6 +27482,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CRE", "name": "CRE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", @@ -22409,35 +27491,52 @@ "recommended_symbol": "CRE" }, { - "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", "chain_id": "noble-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-4", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "ibc/7AD8FD805B32DBE678C21A712E322A56E974DE8CDC9242579F4074AF7C6F51DE", + "denom": "ibc/DBC1802D65B51FCD3C82A84415F54254CC8233A13644421F85128DC500248ECD", "chain_id": "noble-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-51", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" + }, + { + "denom": "ibc/825CBB2F938AC6E79D69EED47E82FA85C190BA4A2888E3979F2245ECE4C1ECB2", + "chain_id": "noble-1", + "origin_denom": "uwhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-14", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WHALE", + "name": "WHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" }, { "denom": "ibc/50983CCFE643365D0F9ECE8B0536BB011BA3ACD35F8CAA76E47BE24D9DCB075C", @@ -22447,6 +27546,7 @@ "trace": "transfer/channel-22", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "XPRT", "name": "XPRT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", @@ -22455,49 +27555,53 @@ "recommended_symbol": "XPRT" }, { - "denom": "ibc/D78D2139CE19A59D2EB05B38B6E5BC9BAC6B31058291B3613F84529140A451CC", + "denom": "ibc/B15AE192BAC50A45FA4B169A5FE161B997125F70996409F8144E3BEE01873183", "chain_id": "noble-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-2", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "USDCso", + "name": "USDCso", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDCso" }, { - "denom": "ibc/61911671206AA9798E403274D78F3ED3CAD9CD66AD12255BF89824F640E9D24A", + "denom": "ibc/E0B5D7EFB3548A248615A599DCF8A2EC59AAA096B3C8476E5B61D0A64EE4DB50", "chain_id": "noble-1", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-39", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-12", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "SEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", - "decimals": 6, - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/D7CBF85B893451FA339A4171FEEC19A328FE7AFA86D37D6CD66EAAC02AF6EB5F", + "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", "chain_id": "noble-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-11", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { "denom": "ibc/876A0B71B28FCCCEC24A2B832AFC87759B5C1FB37DEC33AD236E4E198990EA0C", @@ -22507,6 +27611,7 @@ "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDCpo", "name": "USDCpo", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", @@ -22514,6 +27619,22 @@ "coingecko_id": "usd-coin-pos-wormhole", "recommended_symbol": "USDCpo" }, + { + "denom": "ustake", + "chain_id": "noble-1", + "origin_denom": "ustake", + "origin_chain_id": "noble-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STAKE", + "name": "STAKE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", + "decimals": 6, + "description": "The permissioned staking asset for Noble Chain", + "recommended_symbol": "STAKE" + }, { "denom": "ibc/3C01172339ABAE4EAF1EB56FE9A69B7C818601FF9252E7DD633C14B165113C6B", "chain_id": "noble-1", @@ -22522,6 +27643,7 @@ "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "BLD", "name": "BLD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", @@ -22530,169 +27652,147 @@ "recommended_symbol": "BLD" }, { - "denom": "ibc/A45E9FB4C738663CC00FFF0F645D42D99E6FFF8A5245FCC9BF7CAD006CBC3BD8", + "denom": "ibc/524AAE768CEDA2D0D46402AE6558922514546D46C319466AE10DE4870C8A94E9", "chain_id": "noble-1", - "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-18", + "origin_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, - "symbol": "ECLIP", - "name": "ECLIP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", + "is_svm": false, + "symbol": "XRP", + "name": "XRP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", "decimals": 6, - "coingecko_id": "eclipse-fi", - "recommended_symbol": "ECLIP" - }, - { - "denom": "ibc/079EF4321138241B91C926627ACFFE98B538F93463F3845486191A98A61198FA", - "chain_id": "noble-1", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-62", - "is_cw20": false, - "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", - "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "coingecko_id": "pulsara", + "recommended_symbol": "XRP" }, { - "denom": "ibc/7D3CE47E4167395611087DE025916E5F62F11CCFAA671A7457659FC21DB5252B", + "denom": "ibc/569935CB14C1BBA4CF79CBC145E29C8C821A2240411C2F215DE8319E847D8CFB", "chain_id": "noble-1", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "ibc/BE8B9A10C7F6E014F617E4C883D24A8E34A4399C2E18D583DD9506CEADF0D7E5", + "denom": "ibc/D6B62668D2E75303A7DFA55173ED73704284A8368E54F6C184324CBCB89EFBDD", "chain_id": "noble-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-30", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "recommended_symbol": "WINK" }, { - "denom": "uusdc", + "denom": "ibc/D78D2139CE19A59D2EB05B38B6E5BC9BAC6B31058291B3613F84529140A451CC", "chain_id": "noble-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "description": "USD Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/D7CBF85B893451FA339A4171FEEC19A328FE7AFA86D37D6CD66EAAC02AF6EB5F", "chain_id": "noble-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/1810DC539AB32D3C33A66E19D8880072449D6699C9E1B58E8F88CBBDEBB31B96", + "denom": "ufrienzies", "chain_id": "noble-1", - "origin_denom": "utori", - "origin_chain_id": "teritori-1", - "trace": "transfer/channel-54", + "origin_denom": "ufrienzies", + "origin_chain_id": "noble-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TORI", - "name": "TORI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "is_svm": false, + "symbol": "FRNZ", + "name": "FRNZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", "decimals": 6, - "coingecko_id": "teritori", - "recommended_symbol": "TORI" - }, - { - "denom": "ibc/C13664951326AE95004297843B30BA98FAB102B8F6904A68C03576D1812D1D72", - "chain_id": "noble-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-31", - "is_cw20": false, - "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", + "recommended_symbol": "FRNZ" }, { - "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", + "denom": "ibc/1B229CD41D9F3787A48B822DE2E963E8F7BEADEF28AE45941940E2406A6D596F", "chain_id": "noble-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-3", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "ibc/D6B62668D2E75303A7DFA55173ED73704284A8368E54F6C184324CBCB89EFBDD", + "denom": "ibc/AED9D9DBE04F77AF0EECE104855CB013C8319C764C7B78237D9F0C3A1BA7524C", "chain_id": "noble-1", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-2", + "origin_denom": "ustars", + "origin_chain_id": "elgafar-1", + "trace": "transfer/channel-68", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "recommended_symbol": "WINK" + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/825CBB2F938AC6E79D69EED47E82FA85C190BA4A2888E3979F2245ECE4C1ECB2", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "chain_id": "noble-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-14", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" } ] }, @@ -22706,6 +27806,7 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "JUNO", "name": "JUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", @@ -22714,19 +27815,20 @@ "recommended_symbol": "JUNO" }, { - "denom": "ibc/3539162F745291D575A764FCBD6AB53636D8CAEAEAD7783147728BEDA9C450FD", + "denom": "ibc/1408F847FE7B46A8E9AFF0D5377E3693256865718464CAB0B833B0688B5BD387", "chain_id": "nois-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-47", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { "denom": "unois", @@ -22736,6 +27838,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NOIS", "name": "NOIS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", @@ -22744,19 +27847,20 @@ "recommended_symbol": "NOIS" }, { - "denom": "ibc/1408F847FE7B46A8E9AFF0D5377E3693256865718464CAB0B833B0688B5BD387", + "denom": "ibc/3539162F745291D575A764FCBD6AB53636D8CAEAEAD7783147728BEDA9C450FD", "chain_id": "nois-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-37", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { "denom": "ibc/3A8BF65AFC8F1AC2998A80C5D78C355D058C8C755882E85A9BEC75D4E9F09739", @@ -22766,6 +27870,7 @@ "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARCH", "name": "ARCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -22781,6 +27886,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STARS", "name": "STARS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", @@ -22796,6 +27902,7 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DGL", "name": "DGL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", @@ -22810,6 +27917,7 @@ "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "INJ", "name": "INJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", @@ -22822,19 +27930,54 @@ "nyx": { "assets": [ { - "denom": "ibc/C1F31ABD9112C10AEAE61B00EC8C70433B23435AC3BB64ECB4F0073C8079C2A4", + "denom": "unym", "chain_id": "nyx", - "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "origin_denom": "unym", + "origin_chain_id": "nyx", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NYM", + "name": "NYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", + "decimals": 6, + "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + "coingecko_id": "nym", + "recommended_symbol": "NYM" + }, + { + "denom": "ibc/DC186CA7A8C009B43774EBDC825C935CABA9743504CE6037507E6E5CCE12858A", + "chain_id": "nyx", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", "origin_chain_id": "gravity-bridge-3", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "PSTAKE", - "name": "PSTAKE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", "decimals": 18, - "coingecko_id": "pstake-finance", - "recommended_symbol": "PSTAKE.grv" + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" + }, + { + "denom": "ibc/FC9D92EC12BC974E8B6179D411351524CD5C2EBC3CE29D5BA856414FEFA47093", + "chain_id": "nyx", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GRAVITON", + "name": "GRAVITON", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "decimals": 6, + "description": "Gravity-bridge Staking Coin", + "coingecko_id": "graviton", + "recommended_symbol": "GRAVITON" }, { "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", @@ -22844,6 +27987,7 @@ "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -22852,35 +27996,20 @@ "recommended_symbol": "OSMO" }, { - "denom": "ibc/DC186CA7A8C009B43774EBDC825C935CABA9743504CE6037507E6E5CCE12858A", + "denom": "ibc/C1F31ABD9112C10AEAE61B00EC8C70433B23435AC3BB64ECB4F0073C8079C2A4", "chain_id": "nyx", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", "origin_chain_id": "gravity-bridge-3", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "PSTAKE", + "name": "PSTAKE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" - }, - { - "denom": "unym", - "chain_id": "nyx", - "origin_denom": "unym", - "origin_chain_id": "nyx", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "NYM", - "name": "NYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", - "decimals": 6, - "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", - "coingecko_id": "nym", - "recommended_symbol": "NYM" + "coingecko_id": "pstake-finance", + "recommended_symbol": "PSTAKE.grv" }, { "denom": "unyx", @@ -22890,6 +28019,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NYX", "name": "NYX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", @@ -22905,47 +28035,50 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, "coingecko_id": "usd-coin", "recommended_symbol": "USDC.grv" - }, - { - "denom": "ibc/FC9D92EC12BC974E8B6179D411351524CD5C2EBC3CE29D5BA856414FEFA47093", - "chain_id": "nyx", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-0", - "is_cw20": false, - "is_evm": false, - "symbol": "GRAVITON", - "name": "GRAVITON", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", - "decimals": 6, - "description": "Gravity-bridge Staking Coin", - "coingecko_id": "graviton", - "recommended_symbol": "GRAVITON" } ] }, "odin-mainnet-freya": { "assets": [ { - "denom": "mGeo", + "denom": "udoki", "chain_id": "odin-mainnet-freya", - "origin_denom": "mGeo", + "origin_denom": "udoki", "origin_chain_id": "odin-mainnet-freya", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GEO", - "name": "GEO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", + "is_svm": false, + "symbol": "DOKI", + "name": "DOKI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", "decimals": 6, - "description": "GEO token for ODIN Protocol", - "recommended_symbol": "GEO" + "description": "DOKI the last Dragon", + "coingecko_id": "doki", + "recommended_symbol": "DOKI" + }, + { + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "chain_id": "odin-mainnet-freya", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { "denom": "mO9W", @@ -22955,6 +28088,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "O9W", "name": "O9W", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", @@ -22962,6 +28096,22 @@ "description": "O9W token for ODIN Protocol", "recommended_symbol": "O9W" }, + { + "denom": "mGeo", + "chain_id": "odin-mainnet-freya", + "origin_denom": "mGeo", + "origin_chain_id": "odin-mainnet-freya", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GEO", + "name": "GEO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", + "decimals": 6, + "description": "GEO token for ODIN Protocol", + "recommended_symbol": "GEO" + }, { "denom": "ibc/C4BE30A03C8FA2274C3C80C751F0517B538BB419546370C6DB19D32417CA3E3D", "chain_id": "odin-mainnet-freya", @@ -22970,6 +28120,7 @@ "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KUJI", "name": "KUJI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", @@ -22978,680 +28129,1165 @@ "recommended_symbol": "KUJI" }, { - "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "denom": "loki", "chain_id": "odin-mainnet-freya", - "origin_denom": "uosmo", + "origin_denom": "loki", + "origin_chain_id": "odin-mainnet-freya", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ODIN", + "name": "ODIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "decimals": 6, + "description": "ODIN is the Staking and governance token for ODIN Protocol", + "coingecko_id": "odin-protocol", + "recommended_symbol": "ODIN" + }, + { + "denom": "umyrk", + "chain_id": "odin-mainnet-freya", + "origin_denom": "umyrk", + "origin_chain_id": "odin-mainnet-freya", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MYRK", + "name": "MYRK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + "decimals": 6, + "description": "Myrkur the leader of OLD Order", + "recommended_symbol": "MYRK" + } + ] + }, + "omniflixhub-1": { + "assets": [ + { + "denom": "ibc/F951C98B3D08879376970DD39F74907896391810FD40AF9B2357A02E9E82BBA5", + "chain_id": "omniflixhub-1", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-20", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, + { + "denom": "uflix", + "chain_id": "omniflixhub-1", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "decimals": 6, + "description": "The native staking token of OmniFlix Hub.", + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" + }, + { + "denom": "ibc/6901B45BC2C5418ED8B3C3C9F9A641A3DAF2D234230AFA9DF32D8F9F9434721C", + "chain_id": "omniflixhub-1", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-25", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "decimals": 6, + "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" + }, + { + "denom": "ibc/CC12CFFD769D5E0059D98E760DD34FAB477261785B99240C97F6AABC4F566CB5", + "chain_id": "omniflixhub-1", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "decimals": 6, + "description": "Chihuahua Staking Coin", + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" + }, + { + "denom": "ibc/F47D6F6C38DC1B5B72FFB71CC4D8A12FC4C57A5A79BAFA65286723D56B85197D", + "chain_id": "omniflixhub-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-38", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" + }, + { + "denom": "ibc/A8C2D23A1E6F95DA4E48BA349667E322BD7A6C996D8A4AAE8BA72E190F3D1477", + "chain_id": "omniflixhub-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-12", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, + { + "denom": "ibc/980DF9E634DA22ECD375EFADB0AA7F0DACEC862EFC96AF944089883464B474A8", + "chain_id": "omniflixhub-1", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-26", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "decimals": 6, + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" + }, + { + "denom": "ibc/AC4C84DD7D3732CFA95A420247FAD5179BE4F42E5635E2BF0A62C67E2E2FA4A9", + "chain_id": "omniflixhub-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-27", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "description": "Circle's stablecoin on Axelar", + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/18B0967BE3E73DCCE3F10EDE6DEFC472AAA3339DBE536E77C0B8E7BCE2628966", + "chain_id": "omniflixhub-1", + "origin_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LAB", + "name": "LAB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", + "decimals": 6, + "recommended_symbol": "LAB" + }, + { + "denom": "ibc/7C9F6EF6BD88810F55CD0F607D582A84D23CFEFD3FD4175E9A81D3411CDC1C72", + "chain_id": "omniflixhub-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-32", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, + { + "denom": "ibc/215EB6E6520843612FD25B20C40A15E7BF37C27EE5C3503EE00C374BD63FFF0A", + "chain_id": "omniflixhub-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "decimals": 6, + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" + }, + { + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "chain_id": "omniflixhub-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "The native token of Osmosis", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/3DA797999DE49B6FDEF54E6074C608AF56C39C8FAEE620195DC1010261CC0C25", + "chain_id": "omniflixhub-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-27", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + }, + { + "denom": "ibc/43D3010F4CA111744AC8B68E460BC95E565C32928A267FA2B30609C04C10B274", + "chain_id": "omniflixhub-1", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-30", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "decimals": 6, + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" + }, + { + "denom": "ibc/57D5984743708A678E71C21D03EC777E3A343C51E1BDE0203C37FFD6D9C4BA7F", + "chain_id": "omniflixhub-1", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-30", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "decimals": 6, + "coingecko_id": "agoric", + "recommended_symbol": "BLD" + }, + { + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "chain_id": "omniflixhub-1", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" + } + ] + }, + "osmo-test-5": { + "assets": [ + { + "denom": "ibc/7B5335E2A8FEDFBC7C8A0719D14F09D4F08F52FE4C3D22A48D11A7D37B26EBA7", + "chain_id": "osmo-test-5", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "transfer/channel-4118", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "recommended_symbol": "WBNB" + }, + { + "denom": "ibc/7D4154153936FD83E044899228DD5D166DF07FFCEFD898670B14725D0552130C", + "chain_id": "osmo-test-5", + "origin_denom": "wavax-wei", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "transfer/channel-4118", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", + "decimals": 18, + "recommended_symbol": "WAVAX" + }, + { + "denom": "ibc/63E4F2A1E47674D22868941AA3B2A3969B3D441D8ABA5377AEF989F80EE57CAA", + "chain_id": "osmo-test-5", + "origin_denom": "ustars", + "origin_chain_id": "elgafar-1", + "trace": "transfer/channel-6616", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "decimals": 6, + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" + }, + { + "denom": "uosmo", + "chain_id": "osmo-test-5", + "origin_denom": "uosmo", + "origin_chain_id": "osmo-test-5", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, + "description": "The native token of Osmosis", "coingecko_id": "osmosis", "recommended_symbol": "OSMO" }, { - "denom": "loki", - "chain_id": "odin-mainnet-freya", - "origin_denom": "loki", - "origin_chain_id": "odin-mainnet-freya", - "trace": "", + "denom": "ibc/44E584C7B0EBEE2D268ABE24AE408825A60E55AC08C5E97D94497741B26C9654", + "chain_id": "osmo-test-5", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "transfer/channel-4118", "is_cw20": false, "is_evm": false, - "symbol": "ODIN", - "name": "ODIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "description": "Staking and governance token for ODIN Protocol", - "coingecko_id": "odin-protocol", - "recommended_symbol": "ODIN" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "udoki", - "chain_id": "odin-mainnet-freya", - "origin_denom": "udoki", - "origin_chain_id": "odin-mainnet-freya", - "trace": "", + "denom": "ibc/DE6792CF9E521F6AD6E9A4BDF6225C9571A3B74ACC0A529F92BC5122A39D2E58", + "chain_id": "osmo-test-5", + "origin_denom": "uusdc", + "origin_chain_id": "grand-1", + "trace": "transfer/channel-4280", "is_cw20": false, "is_evm": false, - "symbol": "DOKI", - "name": "DOKI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "description": "DOKI the last Dragon", - "recommended_symbol": "DOKI" + "description": "USD Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "umyrk", - "chain_id": "odin-mainnet-freya", - "origin_denom": "umyrk", - "origin_chain_id": "odin-mainnet-freya", + "denom": "uion", + "chain_id": "osmo-test-5", + "origin_denom": "uion", + "origin_chain_id": "osmo-test-5", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MYRK", - "name": "MYRK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "description": "Myrkur the leader of OLD Order", - "recommended_symbol": "MYRK" - } - ] - }, - "omniflixhub-1": { - "assets": [ + "coingecko_id": "ion", + "recommended_symbol": "ION" + }, { - "denom": "ibc/A8C2D23A1E6F95DA4E48BA349667E322BD7A6C996D8A4AAE8BA72E190F3D1477", - "chain_id": "omniflixhub-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-12", + "denom": "ibc/2CFA055AF589184D8875D15DED01A9777A097B14EE420F541BDF7F10274959F4", + "chain_id": "osmo-test-5", + "origin_denom": "eth-wei", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "transfer/channel-4118", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "axlWETH", + "name": "axlWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "recommended_symbol": "WETH" + }, + { + "denom": "factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz", + "chain_id": "osmo-test-5", + "origin_denom": "factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz", + "origin_chain_id": "osmo-test-5", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WILLYZ", + "name": "WILLYZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png", "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "recommended_symbol": "WILLYZ" }, { - "denom": "ibc/F47D6F6C38DC1B5B72FFB71CC4D8A12FC4C57A5A79BAFA65286723D56B85197D", - "chain_id": "omniflixhub-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-38", + "denom": "ibc/BBB55EA097A0EDF27EE323BF922C84536E6B1805BE764E24DB59B70802E748B6", + "chain_id": "osmo-test-5", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "transfer/channel-4118", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "axlWMATIC", + "name": "axlWMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg", + "decimals": 18, + "recommended_symbol": "WMATIC" + }, + { + "denom": "ibc/0E22FFB61DB307FE01D3D0DFF4A8EBEB6CC4997DCF9E901AE0751A2FFF4B90DD", + "chain_id": "osmo-test-5", + "origin_denom": "utia", + "origin_chain_id": "mocha-4", + "trace": "transfer/channel-4370", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "recommended_symbol": "TIA" }, { - "denom": "ibc/AC4C84DD7D3732CFA95A420247FAD5179BE4F42E5635E2BF0A62C67E2E2FA4A9", - "chain_id": "omniflixhub-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-27", + "denom": "ibc/1587E7B54FC9EFDA2350DC690EC2F9B9ECEB6FC31CF11884F9C0C5207ABE3921", + "chain_id": "osmo-test-5", + "origin_denom": "uausdc", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "transfer/channel-4118", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "aUSDC", + "name": "aUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "description": "Circle's stablecoin on Axelar", - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "recommended_symbol": "aUSDC" + } + ] + }, + "osmosis-1": { + "assets": [ + { + "denom": "ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MILE", + "name": "MILE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png", + "decimals": 6, + "description": "Mille: the 1000th token on osmosis", + "recommended_symbol": "MILE" }, { - "denom": "ibc/F951C98B3D08879376970DD39F74907896391810FD40AF9B2357A02E9E82BBA5", - "chain_id": "omniflixhub-1", - "origin_denom": "ujuno", + "denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", "origin_chain_id": "juno-1", - "trace": "transfer/channel-20", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "ASVT", + "name": "ASVT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png", "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "description": "Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!", + "recommended_symbol": "ASVT" }, { - "denom": "uflix", - "chain_id": "omniflixhub-1", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "", + "denom": "ibc/C9864D1B9623F703C75BBF72B7FF8A7317E1535C96538D21467A4311246DC3B5", + "chain_id": "osmosis-1", + "origin_denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "is_svm": false, + "symbol": "LOBO", + "name": "LOBO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png", "decimals": 6, - "description": "The native staking token of OmniFlix Hub.", - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "recommended_symbol": "LOBO" }, { - "denom": "ibc/CC12CFFD769D5E0059D98E760DD34FAB477261785B99240C97F6AABC4F566CB5", - "chain_id": "omniflixhub-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-5", + "denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", + "chain_id": "osmosis-1", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "description": "Chihuahua Staking Coin", - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "description": "Native Token of Comdex Protocol", + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "chain_id": "omniflixhub-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", + "chain_id": "osmosis-1", + "origin_denom": "uqatom", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-522", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "qATOM", + "name": "qATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" + "description": "Quicksilver Liquid Staked ATOM", + "recommended_symbol": "qATOM" }, { - "denom": "ibc/980DF9E634DA22ECD375EFADB0AA7F0DACEC862EFC96AF944089883464B474A8", - "chain_id": "omniflixhub-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-26", + "denom": "ibc/FC080FAE074F57D5AB163AF3C329BD5E20AD759675F4E8D4C6F386D7DE11A75D", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-168", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "MIDDLE", + "name": "MIDDLE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "recommended_symbol": "MIDDLE" }, { - "denom": "ibc/57D5984743708A678E71C21D03EC777E3A343C51E1BDE0203C37FFD6D9C4BA7F", - "chain_id": "omniflixhub-1", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-30", + "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", + "chain_id": "osmosis-1", + "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-642", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "GUPPY", + "name": "GUPPY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "description": "GUPPY", + "recommended_symbol": "GUPPY" }, { - "denom": "ibc/7C9F6EF6BD88810F55CD0F607D582A84D23CFEFD3FD4175E9A81D3411CDC1C72", - "chain_id": "omniflixhub-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-32", + "denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", + "chain_id": "osmosis-1", + "origin_denom": "axpla", + "origin_chain_id": "dimension_37-1", + "trace": "transfer/channel-1634", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "is_svm": false, + "symbol": "XPLA", + "name": "XPLA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "description": "The native staking token of XPLA.", + "coingecko_id": "xpla", + "recommended_symbol": "XPLA" }, { - "denom": "ibc/43D3010F4CA111744AC8B68E460BC95E565C32928A267FA2B30609C04C10B274", - "chain_id": "omniflixhub-1", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-30", + "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "chain_id": "osmosis-1", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/3DA797999DE49B6FDEF54E6074C608AF56C39C8FAEE620195DC1010261CC0C25", - "chain_id": "omniflixhub-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-27", + "denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", + "chain_id": "osmosis-1", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "description": "Governance Token of Harbor protocol on Comdex network", + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "chain_id": "omniflixhub-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/B39116ED5DA87C0DD8E959A9D0DFF5B4E38608669528A20DEFF29D7447B6087B", + "chain_id": "osmosis-1", + "origin_denom": "usdc.1.2.343151", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-188", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "description": "The native token of Osmosis", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "recommended_symbol": "USDC.carbon" }, { - "denom": "ibc/215EB6E6520843612FD25B20C40A15E7BF37C27EE5C3503EE00C374BD63FFF0A", - "chain_id": "omniflixhub-1", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-3", + "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "chain_id": "osmosis-1", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", "decimals": 6, - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" - } - ] - }, - "osmo-test-5": { - "assets": [ + "description": "The native token of Chihuahua Chain", + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" + }, { - "denom": "uosmo", - "chain_id": "osmo-test-5", - "origin_denom": "uosmo", - "origin_chain_id": "osmo-test-5", - "trace": "", + "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "chain_id": "osmosis-1", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-87", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "description": "The native token of Osmosis", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "description": "Stable Token of Harbor protocol on Comdex network", + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz", - "chain_id": "osmo-test-5", - "origin_denom": "factory/osmo1zlkzu72774ynac53necz46u4ycqtp36wedrar0/willyz", - "origin_chain_id": "osmo-test-5", - "trace": "", + "denom": "ibc/5F77DE202CBE3B263AB321AC7FF6A2D35857DACF213FF9CE03E40D43CBA6A870", + "chain_id": "osmosis-1", + "origin_denom": "ceth", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "WILLYZ", - "name": "WILLYZ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/osmosistestnet/images/willyz.png", - "decimals": 6, - "recommended_symbol": "WILLYZ" + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/eth.png", + "decimals": 18, + "coingecko_id": "ethereum", + "recommended_symbol": "ETH.sif" }, { - "denom": "ibc/7B5335E2A8FEDFBC7C8A0719D14F09D4F08F52FE4C3D22A48D11A7D37B26EBA7", - "chain_id": "osmo-test-5", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "transfer/channel-4118", + "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "chain_id": "osmosis-1", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-204", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "decimals": 18, - "recommended_symbol": "WBNB" + "description": "The native EVM, governance and staking token of the Evmos Hub", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "uion", - "chain_id": "osmo-test-5", - "origin_denom": "uion", - "origin_chain_id": "osmo-test-5", - "trace": "", + "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "chain_id": "osmosis-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "USDC.axl", + "name": "USDC.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "description": "Circle's stablecoin on Axelar", + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/50B40C822A6DD6A293A8AC1C604A2CAC5C71BEBFCBB7948C84D189E357B41526", - "chain_id": "osmo-test-5", - "origin_denom": "upryzm", - "origin_chain_id": "indigo-1", - "trace": "transfer/channel-4495", + "denom": "ibc/D8155F8B0A5D7C3E524C16CBF4C0434974C35446E374E5EDD9C7C1B34E4D5B51", + "chain_id": "osmosis-1", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3VKKYtbQ9iq8f9CaZfgR6Cr3TUj6ypXPAn6kco6wjcAu", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "PRYZM", - "name": "PRYZM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/pryzmtestnet/images/pryzm.png", + "is_svm": false, + "symbol": "USDCop", + "name": "USDCop", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "recommended_symbol": "PRYZM" - }, - { - "denom": "ibc/2CFA055AF589184D8875D15DED01A9777A097B14EE420F541BDF7F10274959F4", - "chain_id": "osmo-test-5", - "origin_denom": "eth-wei", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "transfer/channel-4118", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDCop" + }, + { + "denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", + "chain_id": "osmosis-1", + "origin_denom": "wglmr-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "axlWETH", - "name": "axlWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "GLMR", + "name": "GLMR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", "decimals": 18, - "recommended_symbol": "WETH" + "description": "Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.", + "coingecko_id": "wrapped-moonbeam", + "recommended_symbol": "GLMR.axl" }, { - "denom": "ibc/7D4154153936FD83E044899228DD5D166DF07FFCEFD898670B14725D0552130C", - "chain_id": "osmo-test-5", - "origin_denom": "wavax-wei", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "transfer/channel-4118", + "denom": "ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "recommended_symbol": "WAVAX" + "is_svm": false, + "symbol": "DHK", + "name": "DHK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png", + "decimals": 0, + "recommended_symbol": "DHK" }, { - "denom": "ibc/1587E7B54FC9EFDA2350DC690EC2F9B9ECEB6FC31CF11884F9C0C5207ABE3921", - "chain_id": "osmo-test-5", - "origin_denom": "uausdc", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "transfer/channel-4118", + "denom": "ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "aUSDC", - "name": "aUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "MUSE", + "name": "MUSE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png", "decimals": 6, - "recommended_symbol": "aUSDC" + "description": "The native token cw20 for MuseDAO on Juno Chain", + "recommended_symbol": "MUSE" }, { - "denom": "ibc/0E22FFB61DB307FE01D3D0DFF4A8EBEB6CC4997DCF9E901AE0751A2FFF4B90DD", - "chain_id": "osmo-test-5", - "origin_denom": "utia", - "origin_chain_id": "mocha-4", - "trace": "transfer/channel-4370", + "denom": "ibc/094FB70C3006906F67F5D674073D2DAFAFB41537E7033098F5C752F211E7B6C2", + "chain_id": "osmosis-1", + "origin_denom": "usaga", + "origin_chain_id": "ssc-1", + "trace": "transfer/channel-38946", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", + "is_svm": false, + "symbol": "SAGA", + "name": "SAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", "decimals": 6, - "recommended_symbol": "TIA" + "description": "The native staking and governance token of Saga.", + "coingecko_id": "saga-2", + "recommended_symbol": "SAGA" }, { - "denom": "ibc/BBB55EA097A0EDF27EE323BF922C84536E6B1805BE764E24DB59B70802E748B6", - "chain_id": "osmo-test-5", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "transfer/channel-4118", + "denom": "ibc/8A07D4BD40E0F44ECFDF360F7EA7008B288926FB87C54489FE54DB81A5340E0C", + "chain_id": "osmosis-1", + "origin_denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "axlWMATIC", - "name": "axlWMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.svg", - "decimals": 18, - "recommended_symbol": "WMATIC" + "is_svm": false, + "symbol": "VIBRA", + "name": "VIBRA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png", + "decimals": 6, + "recommended_symbol": "VIBRA" }, { - "denom": "ibc/44E584C7B0EBEE2D268ABE24AE408825A60E55AC08C5E97D94497741B26C9654", - "chain_id": "osmo-test-5", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "transfer/channel-4118", + "denom": "ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A", + "chain_id": "osmosis-1", + "origin_denom": "mGeo", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-258", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "GEO", + "name": "GEO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" - } - ] - }, - "osmosis-1": { - "assets": [ + "description": "GEO token for ODIN Protocol", + "coingecko_id": "geodb", + "recommended_symbol": "GEO" + }, { - "denom": "ibc/3A0A560DD92130BC40BD574D98F922BFE5928F2793E5495617F9D0AEE1E109FB", + "denom": "ibc/1430C4E214AEDDF2DDA6A41E4FA33A51A60E1E0012293F0DCB1E2B66935E5994", "chain_id": "osmosis-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "USDCet", - "name": "USDCet", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "TREE", + "name": "TREE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png", "decimals": 6, - "coingecko_id": "usd-coin-wormhole-from-ethereum", - "recommended_symbol": "USDCet" + "recommended_symbol": "TREE" }, { - "denom": "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", + "denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", "chain_id": "osmosis-1", - "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-874", + "origin_denom": "uqsr", + "origin_chain_id": "quasar-1", + "trace": "transfer/channel-688", "is_cw20": false, "is_evm": false, - "symbol": "BAD", - "name": "BAD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "is_svm": false, + "symbol": "QSR", + "name": "QSR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", "decimals": 6, - "description": "Baddest coin on Cosmos", - "recommended_symbol": "BAD" + "description": "The native token of Quasar", + "coingecko_id": "quasar-2", + "recommended_symbol": "QSR" }, { - "denom": "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", + "denom": "ibc/A4D176906C1646949574B48C1928D475F2DF56DE0AC04E1C99B08F90BC21ABDE", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "SHIBAC", - "name": "SHIBAC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png", - "decimals": 6, - "description": "Shiba Cosmos", - "recommended_symbol": "SHIBAC" + "is_svm": false, + "symbol": "APT", + "name": "APT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg", + "decimals": 8, + "description": "Aptos token (APT) is the Aptos blockchain native token used for paying network and transaction fees.", + "coingecko_id": "aptos", + "recommended_symbol": "APT.wh" }, { - "denom": "ibc/6A6174468758D207DD2D880363BF699C6568A29E87651337AEDAFD9E69EA7E58", + "denom": "ibc/C29010E1233F367E224E53BFF53176198D526DF5E4404DECEFCBEB0E4C4FE483", "chain_id": "osmosis-1", - "origin_denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", + "origin_denom": "factory/inj13ze65lwstqrz4qy6vvxx3lglnkkuan436aw45e/HACHI", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HACHI", + "name": "Hachi", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/HACHI.jpg", + "decimals": 9, + "recommended_symbol": "HACHI" + }, + { + "denom": "ibc/022A879A5301CBCACF96216C967805F15C33C615B74DC7236027C1BA1BF664FF", + "chain_id": "osmosis-1", + "origin_denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", "origin_chain_id": "bitsong-2b", "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "KARINA", - "name": "KARINA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png", + "is_svm": false, + "symbol": "TESTA", + "name": "TESTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png", "decimals": 6, - "recommended_symbol": "KARINA" + "recommended_symbol": "TESTA" }, { - "denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", + "denom": "ibc/0362302C7F45A97E304A087F05553DCECF0EAED24A17BC3D5B1BCC5E5B787E4C", "chain_id": "osmosis-1", - "origin_denom": "stadydx", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "stDYDX", - "name": "stDYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "is_svm": false, + "symbol": "OCC", + "name": "OCC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", "decimals": 18, - "description": "Stride's liquid staked DYDX", - "coingecko_id": "stride-staked-dydx", - "recommended_symbol": "stDYDX" + "recommended_symbol": "OCC.grv" }, { - "denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", + "denom": "ibc/E42006ED917C769EDE1B474650EEA6BFE3F97958912B9206DD7010A28D01D9D5", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-341", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "ROAR", - "name": "ROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", + "is_svm": false, + "symbol": "PYTH", + "name": "PYTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg", "decimals": 6, - "description": "Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling", - "coingecko_id": "lion-dao", - "recommended_symbol": "ROAR" + "description": "Pyth is a protocol that allows market participants to publish pricing information on-chain for others to use. The protocol is an interaction between three parties:\n-Publishers submit pricing information to Pyth's oracle program. Pyth has multiple data publishers for every product to improve the accuracy and robustness of the system.\n-Pyth's oracle program combines publishers' data to produce a single aggregate price and confidence interval.\nConsumers read the price information produced by the oracle program.\n\nPyth's oracle program runs simultaneously on both Solana mainnet and Pythnet. Each instance of the program is responsible for its own set of price feeds. Solana Price Feeds are available for use by Solana protocols. In this case, since the oracle program itself runs on Solana, the resulting prices are immediately available to consumers without requiring any additional work. Pythnet Price Feeds are available on 12+ blockchains. The prices constructed on Pythnet are transferred cross-chain to reach consumers on these blockchains.\n\nIn both cases, the critical component of the system is the oracle program that combines the data from each individual publisher. This program maintains a number of different Solana accounts that list the products on Pyth and their current price data. Publishers publish their price and confidence by interacting with the oracle program on every slot. The program stores this information in its accounts. The first price update in a slot additionally triggers price aggregation, which combines the price data from the previous slot into a single aggregate price and confidence interval. This aggregate price is written to the Solana account where it is readable by other on-chain programs and available for transmission to other blockchains.", + "recommended_symbol": "PYTH.wh" }, { - "denom": "ibc/A9A73A9FEAF97112CC70F5D5E96D598398F2D015D4BD7DFE8804CE7AE8794D9D", + "denom": "uion", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HOLE", - "name": "HOLE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "recommended_symbol": "HOLE" + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "ibc/AA1C80225BCA7B32ED1FC6ABF8B8E899BEB48ECDB4B417FD69873C6D715F97E7", + "denom": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno17wzaxtfdw5em7lc94yed4ylgjme63eh73lm3lutp2rhcxttyvpwsypjm4w", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "ASVT", - "name": "ASVT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/asvt.png", - "decimals": 6, - "description": "Profit sharing token for Another.Software validator. Hold and receive dividends from Another.Software validator commissions!", - "recommended_symbol": "ASVT" + "is_svm": false, + "symbol": "BNB", + "name": "BNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "description": "BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.", + "coingecko_id": "binancecoin", + "recommended_symbol": "BNB.axl" }, { - "denom": "ibc/AD4DEA52408EA07C0C9E19444EC8DA84A274A70AD2687A710EFDDEB28BB2986A", + "denom": "ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A", "chain_id": "osmosis-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-87", + "origin_denom": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "SUMMIT", + "name": "SUMMIT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png", "decimals": 6, - "description": "Governance Token of Harbor protocol on Comdex network", - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "description": "Social Impact DAO providing showers, meals, and vehicles to the homeless", + "recommended_symbol": "SUMMIT" }, { - "denom": "ibc/BE1BB42D4BE3C30D50B68D7C41DB4DFCE9678E8EF8C539F6E6A9345048894FCC", + "denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", "chain_id": "osmosis-1", - "origin_denom": "uusd", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "wftm-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/ust.png", - "decimals": 6, - "description": "The USD stablecoin of Terra Classic.", - "coingecko_id": "terrausd", - "recommended_symbol": "USTC" + "is_svm": false, + "symbol": "FTM", + "name": "FTM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "decimals": 18, + "description": "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", + "coingecko_id": "wrapped-fantom", + "recommended_symbol": "FTM.axl" }, { - "denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", + "denom": "ibc/C103BF58C2C4F341A80A188DE244DE957F999911A9CD4203954835443F17ECE5", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/871jbn9unTavWsAe83f2Ma9GJWSv6BKsyWYLiQ6z3Pva", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "HOPE", - "name": "HOPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png", - "decimals": 6, - "description": "Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.", - "coingecko_id": "hope-galaxy", - "recommended_symbol": "HOPE" + "is_svm": false, + "symbol": "USDTbs", + "name": "USDTbs", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "decimals": 8, + "coingecko_id": "tether", + "recommended_symbol": "USDTbs" }, { - "denom": "ibc/C75CD65E9BD422B1C4649CA33048807D1473A81A7190E774FE5F9B2E0896D46C", + "denom": "ibc/1826B7AA4052BBCD027D9BE044B7979F5DD39D89754605FE050C3DFA4304A1F8", "chain_id": "osmosis-1", - "origin_denom": "cakro", + "origin_denom": "cyfi", "origin_chain_id": "sifchain-1", "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "AKRO", - "name": "AKRO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/akro.png", + "is_svm": false, + "symbol": "YFI", + "name": "YFI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/yfi.png", "decimals": 18, - "coingecko_id": "akropolis", - "recommended_symbol": "AKRO.sif" + "coingecko_id": "yearn-finance", + "recommended_symbol": "YFI.sif" }, { - "denom": "ibc/C9B27B2F497CD3A3C7EE07556FA40AE234EE346A1EC269E7DE59C9CB52A0A0A6", + "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", "chain_id": "osmosis-1", - "origin_denom": "uinr", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-320", "is_cw20": false, "is_evm": false, - "symbol": "INTC", - "name": "INTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/int.png", + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", "decimals": 6, - "recommended_symbol": "INTC" + "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { - "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", + "denom": "ibc/A0B36C71F6331A9884F466E81F80195E905B4F0B210512007877802AC909E25A", "chain_id": "osmosis-1", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "transfer/channel-199", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/arbitrum/asset/arb.png", + "decimals": 8, + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB" + }, + { + "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "chain_id": "osmosis-1", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "description": "The native staking token of OmniFlix Hub.", - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "description": "Levana Well-funded Perps is a protocol for perpetual swaps, which are leveraged trading contracts.", + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/D2BD22CD559E9C30C83D4C5E2F6153289346F1D8D974E0A3D4365E8D748BCBC5", + "denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", "chain_id": "osmosis-1", - "origin_denom": "factory/inj1qczkutnsy3nmt909xtyjy4rsrkl2q4dm6aq960/coping", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "dot-planck", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "CPINJ", - "name": "CopingInj", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CopingInj.png", + "is_svm": false, + "symbol": "moonbeam.DOT.axl", + "name": "moonbeam.DOT.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "description": "Wrapped Polkadot on Axelar", + "coingecko_id": "xcdot", + "recommended_symbol": "moonbeam.DOT.axl" + }, + { + "denom": "ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WATR", + "name": "WATR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png", "decimals": 6, - "recommended_symbol": "CPINJ" + "description": "A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!", + "recommended_symbol": "WATR" }, { "denom": "ibc/D3ADAF73F84CDF205BCB72C142FDAEEA2C612AB853CEE6D6C06F184FA38B1099", @@ -23661,6 +29297,7 @@ "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "HOPERS", "name": "HOPERS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hopers.png", @@ -23670,1017 +29307,1067 @@ "recommended_symbol": "HOPERS" }, { - "denom": "ibc/D576091DE2A905088C2FFC1514381D29943B30F24D4E9AD9B15F15E6B4EE1026", + "denom": "ibc/A9A73A9FEAF97112CC70F5D5E96D598398F2D015D4BD7DFE8804CE7AE8794D9D", "chain_id": "osmosis-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/DUVFMY2neJdL8aE4d3stcpttDDm5aoyfGyVvm29iA9Yp", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "cw20:juno1t46z6hg8vvsena7sue0vg6w85ljar3cundplkre9sz0skeqkap9sxyyy6m", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "USDCpo", - "name": "USDCpo", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "HOLE", + "name": "HOLE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hole.png", "decimals": 6, - "coingecko_id": "usd-coin-pos-wormhole", - "recommended_symbol": "USDCpo" + "recommended_symbol": "HOLE" }, { - "denom": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", + "denom": "ibc/B56EC23632BE54840D80CDF108B4C76F6BB6CB489F332932FCD27DD925C04204", "chain_id": "osmosis-1", - "origin_denom": "stk/uosmo", - "origin_chain_id": "core-1", - "trace": "transfer/channel-4", + "origin_denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "stkOSMO", - "name": "stkOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", + "is_svm": false, + "symbol": "CORGI", + "name": "CORGI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", "decimals": 6, - "description": "PSTAKE Liquid-Staked OSMO", - "coingecko_id": "pstake-staked-osmo", - "recommended_symbol": "stkOSMO" + "recommended_symbol": "CORGI" }, { - "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", + "denom": "ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6", "chain_id": "osmosis-1", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-6994", + "origin_denom": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "SEASY", + "name": "SEASY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png", "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "description": "StakeEasy governance token", + "recommended_symbol": "SEASY" }, { - "denom": "ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484", + "denom": "ibc/C2A2E9CA95DDD4828B75124B5E27B8401C7D8493BC48353D418CBFC04565899B", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", + "origin_denom": "cw20:juno1re3x67ppxap48ygndmrc7har2cnc7tcxtm9nplcas4v0gc3wnmvs3s807z", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "JOE", - "name": "JOE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png", + "is_svm": false, + "symbol": "HOPE", + "name": "HOPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/hope.png", "decimals": 6, - "description": "DAO dedicated to building tools on the Juno Network", - "recommended_symbol": "JOE" + "description": "Hope Galaxy is an NFT collection based on its own native Token $HOPE, a cw20 token on Juno chain.", + "coingecko_id": "hope-galaxy", + "recommended_symbol": "HOPE" }, { - "denom": "ibc/1D9132FB8C4913723A89CCA37038B6B400305C7F04652670C41FB5FE73880310", + "denom": "ibc/3624ED410166AC6F418D30390F003114003788620CFFAEE5C881F1B44A4DDA75", "chain_id": "osmosis-1", - "origin_denom": "cust", + "origin_denom": "cmatic", "origin_chain_id": "sifchain-1", "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ust.png", + "is_svm": false, + "symbol": "MATIC", + "name": "MATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/matic.png", "decimals": 18, - "coingecko_id": "wrapped-ust", - "recommended_symbol": "USTC.sif" - }, - { - "denom": "ibc/239A507997222805E441956EBE8087D7E2D05D6535C6D4C75EF8DCF83B3DE1A1", - "chain_id": "osmosis-1", - "origin_denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", - "is_cw20": false, - "is_evm": false, - "symbol": "FONTI", - "name": "FONTI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png", - "decimals": 6, - "recommended_symbol": "FONTI" + "coingecko_id": "matic-network", + "recommended_symbol": "MATIC.sif" }, { - "denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", + "denom": "ibc/3684F836AD9063BFE53DDC5594B179403C609E1CA30F24FE5D2DDE2126FCAE98", "chain_id": "osmosis-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-1429", - "is_cw20": false, - "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "description": "The native token of Archway network", - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "origin_denom": "cwbtc", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.sif" }, { - "denom": "ibc/2FB96E4667FBBE51C86E534017E6787F5B15377AF16815955DC97692CB237208", + "denom": "ibc/38372C22B3AC4CDB680E30D919E4A330481F5F4E01307A44FC3052914793F7A2", "chain_id": "osmosis-1", - "origin_denom": "usgd", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "caave", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "SGTC", - "name": "SGTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sgt.png", - "decimals": 6, - "recommended_symbol": "SGTC" + "is_svm": false, + "symbol": "AAVE", + "name": "AAVE", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/aave.png", + "decimals": 18, + "coingecko_id": "aave", + "recommended_symbol": "AAVE.sif" }, { - "denom": "ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A", + "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "SGNL", - "name": "SGNL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "description": "Signal Art and Gaming on Juno", - "recommended_symbol": "SGNL" + "description": "The native over-collateralized stablecoin from the Kujira chain.", + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", + "denom": "ibc/4A28F9A65630F04C9B744D4ABCEB7FDAF8898E432272FC7F2BA0C324EB2BF13B", "chain_id": "osmosis-1", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "LOCAL", + "name": "LOCAL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", "decimals": 6, - "description": "MantaDAO Governance Token", - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "recommended_symbol": "LOCAL" }, { - "denom": "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", + "denom": "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", + "origin_denom": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "juno.RAC", - "name": "juno.RAC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png", + "is_svm": false, + "symbol": "FOX", + "name": "FOX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png", "decimals": 6, - "description": "Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem", - "coingecko_id": "racoon", - "recommended_symbol": "juno.RAC" + "description": "Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.", + "recommended_symbol": "FOX" }, { - "denom": "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", + "denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", "chain_id": "osmosis-1", - "origin_denom": "swp", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "origin_denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "SWP", - "name": "SWP", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", + "is_svm": false, + "symbol": "GLTO", + "name": "GLTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", "decimals": 6, - "description": "Governance token of Kava Swap Protocol", - "coingecko_id": "kava-swap", - "recommended_symbol": "SWP" - }, - { - "denom": "ibc/73C2C269DCA7914B90E227D315C339836FDC6F2D570E5C5438D6C288472A665B", - "chain_id": "osmosis-1", - "origin_denom": "cgt/1", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-188", - "is_cw20": false, - "is_evm": false, - "symbol": "USD", - "name": "USD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", - "decimals": 18, - "recommended_symbol": "USD" + "description": "DeFi gaming platform built on Juno", + "recommended_symbol": "GLTO" }, { - "denom": "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", + "denom": "ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "GKEY", - "name": "GKEY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png", + "is_svm": false, + "symbol": "RWNE", + "name": "RWNE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png", "decimals": 6, - "description": "Gelotto Year 1 Grand Prize Token", - "recommended_symbol": "GKEY" + "recommended_symbol": "RWNE" }, { - "denom": "ibc/9F887C35128086A768DE6A6D300A6F464FE82263352CA78EA64CF89A605CE972", + "denom": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", "chain_id": "osmosis-1", - "origin_denom": "ciotx", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-642", "is_cw20": false, "is_evm": false, - "symbol": "IOTX", - "name": "IOTX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/iotx.png", - "decimals": 18, - "coingecko_id": "iotex", - "recommended_symbol": "IOTX.sif" + "is_svm": false, + "symbol": "SHARK", + "name": "SHARK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", + "decimals": 6, + "description": "SHARK is the apex price prediction market within Cosmos.", + "recommended_symbol": "SHARK" }, { - "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", + "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", "chain_id": "osmosis-1", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", "origin_chain_id": "gravity-bridge-3", "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "USDC.grv", - "name": "USDC.grv", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - "decimals": 6, - "description": "Gravity Bridge USDC", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv.grv" + "is_svm": false, + "symbol": "WETH.grv", + "name": "WETH.grv", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "description": "Gravity Bridge WETH", + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv.grv" }, { - "denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", + "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", "chain_id": "osmosis-1", - "origin_denom": "eco.uC.NCT", - "origin_chain_id": "regen-1", - "trace": "transfer/channel-8", + "origin_denom": "ncheq", + "origin_chain_id": "cheqd-mainnet-1", + "trace": "transfer/channel-108", "is_cw20": false, "is_evm": false, - "symbol": "NCT", - "name": "NCT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", - "decimals": 6, - "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", - "coingecko_id": "toucan-protocol-nature-carbon-tonne", - "recommended_symbol": "NCT" + "is_svm": false, + "symbol": "CHEQ", + "name": "CHEQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "decimals": 9, + "description": "Native token for the cheqd network", + "coingecko_id": "cheqd-network", + "recommended_symbol": "CHEQ" }, { - "denom": "ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9", + "denom": "ibc/D79E7D83AB399BFFF93433E54FAA480C191248FC556924A2A8351AE2638B3877", "chain_id": "osmosis-1", - "origin_denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-42", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-6994", "is_cw20": false, "is_evm": false, - "symbol": "DGL", - "name": "DGL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, - "recommended_symbol": "DGL" + "description": "The native token of the Celestia blockchain.", + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", + "denom": "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", + "origin_denom": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "BLOCK", - "name": "BLOCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png", + "is_svm": false, + "symbol": "NRIDE", + "name": "NRIDE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png", "decimals": 6, - "description": "The native token of Marble DEX on Juno Chain", - "recommended_symbol": "BLOCK" + "description": "nRide Token", + "recommended_symbol": "NRIDE" }, { - "denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", + "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", "chain_id": "osmosis-1", - "origin_denom": "avalanche-uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "upasg", + "origin_chain_id": "passage-2", + "trace": "transfer/channel-2494", "is_cw20": false, "is_evm": false, - "symbol": "avalanche.USDC", - "name": "avalanche.USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "PASG", + "name": "PASG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", "decimals": 6, - "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", - "recommended_symbol": "avalanche.USDC.axl.avalanche" + "description": "The native staking and governance token of the Passage chain.", + "coingecko_id": "passage", + "recommended_symbol": "PASG" }, { - "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", + "denom": "ibc/09B40B4315A4A188A84E0C5F2A11013604B3F8D8542970A1F767481B6560E66B", "chain_id": "osmosis-1", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "bnb.1.6.773edb", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-188", "is_cw20": false, "is_evm": false, - "symbol": "DAI.grv", - "name": "DAI.grv", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "is_svm": false, + "symbol": "BNB", + "name": "BNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", "decimals": 18, - "description": "Gravity Bridge DAI", - "coingecko_id": "dai", - "recommended_symbol": "DAI.grv.grv" + "recommended_symbol": "BNB.carbon" }, { - "denom": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", + "denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", "chain_id": "osmosis-1", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-259", + "origin_denom": "wfil-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", - "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "is_svm": false, + "symbol": "FIL", + "name": "FIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", + "decimals": 18, + "description": "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", + "coingecko_id": "filecoin", + "recommended_symbol": "FIL.axl" }, { - "denom": "ibc/6A8A4CB26590C4CAB7AF75F9621C4DF3294E7228A68FE7CEA47214127E5626C4", + "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", "chain_id": "osmosis-1", - "origin_denom": "cbnt", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "umars", + "origin_chain_id": "mars-1", + "trace": "transfer/channel-557", "is_cw20": false, "is_evm": false, - "symbol": "BNT", - "name": "BNT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bnt.png", - "decimals": 18, - "coingecko_id": "bancor", - "recommended_symbol": "BNT.sif" + "is_svm": false, + "symbol": "MARS", + "name": "MARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "decimals": 6, + "description": "Mars protocol token", + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "recommended_symbol": "MARS" }, { - "denom": "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", + "denom": "ibc/668F5C3CADB97A06A5A2CBE01180D40976C25645971487AE3AF83CD554280D55", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/inj1etz0laas6h7vemg3qtd67jpr6lh8v7xz7gfzqw/hdro", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "FURY", - "name": "FURY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png", + "is_svm": false, + "symbol": "HDRO", + "name": "HDRO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/hdro.png", "decimals": 6, - "description": "The native token cw20 for Fanfury on Juno Chain", - "coingecko_id": "fanfury", - "recommended_symbol": "FURY" + "recommended_symbol": "HDRO" }, { - "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", + "denom": "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", "chain_id": "osmosis-1", - "origin_denom": "ubtsg", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "BTSG", - "name": "BTSG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "is_svm": false, + "symbol": "APOLLO", + "name": "APOLLO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", "decimals": 6, - "description": "BitSong Native Token", - "coingecko_id": "bitsong", - "recommended_symbol": "BTSG" + "description": "The deflationary utility token of the Apollo DAO project", + "recommended_symbol": "APOLLO" }, { - "denom": "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", + "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", "chain_id": "osmosis-1", - "origin_denom": "stujuno", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "ulore", + "origin_chain_id": "gitopia", + "trace": "transfer/channel-781", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "is_svm": false, + "symbol": "LORE", + "name": "LORE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", "decimals": 6, - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" + "description": "The native token of Gitopia", + "coingecko_id": "gitopia", + "recommended_symbol": "LORE" }, { - "denom": "ibc/8CA0BB803F1C0B4E23883E724C0B45C755D5496804071910D916A96BDA031F57", + "denom": "ibc/B3C5D34E412E1DF9FEACA31DC2DF568BCCC5536CED27314A08F78FA5363F2EC7", "chain_id": "osmosis-1", - "origin_denom": "factory/inj1vjppa6h9lf75pt0v6qnxtej4xcl0qevnxzcrvm/INJINU", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1dxv423h8ygzgxmxnvrf33ws3k94aedfdevxd8h", "origin_chain_id": "injective-1", "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "INJINU", - "name": "INJINU", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injinu.png", - "decimals": 6, - "recommended_symbol": "INJINU" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/polygon/asset/wmatic.png", + "decimals": 8, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC" }, { - "denom": "ibc/D2945E710AB3D24E236076A185FC51F1D8379869F55CC00F841F5ED9604F8B2E", + "denom": "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", "chain_id": "osmosis-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7edDfnf4mku8So3t4Do215GNHwASEwCWrdhM5GqD51xZ", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "USDCar", - "name": "USDCar", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "GRDN", + "name": "GRDN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png", "decimals": 6, - "coingecko_id": "usd-coin-wormhole-arb", - "recommended_symbol": "USDCar" + "description": "Evmos Guardians governance token.", + "recommended_symbol": "GRDN" }, { - "denom": "uion", + "denom": "ibc/BF75AE1500CB7EC458E91A11731F1B6AC1F1FE1FA937A88564955ED6A83CA2FB", "chain_id": "osmosis-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", - "decimals": 6, - "coingecko_id": "ion", - "recommended_symbol": "ION" + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 8, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH.wh" }, { - "denom": "ibc/FC080FAE074F57D5AB163AF3C329BD5E20AD759675F4E8D4C6F386D7DE11A75D", + "denom": "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1525fuspletvzykpgr2atxpymu9le4mghd7qq4a4u23uwqzc2f3fq7fmafd", + "origin_denom": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", "origin_chain_id": "juno-1", - "trace": "transfer/channel-168", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "MIDDLE", - "name": "MIDDLE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/middle.png", + "is_svm": false, + "symbol": "PEPEC", + "name": "PEPEC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png", "decimals": 6, - "recommended_symbol": "MIDDLE" + "description": "Pepec", + "recommended_symbol": "PEPEC" }, { - "denom": "ibc/E33EB14BFC9274B7A9C349BB519A78B33C782DA682708EC91A85359FFAA6357A", + "denom": "ibc/D69F6D787EC649F4E998161A9F0646F4C2DCC64748A2AB982F14CAFBA7CC0EC9", "chain_id": "osmosis-1", - "origin_denom": "ujpy", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "factory/juno1u805lv20qc6jy7c3ttre7nct6uyl20pfky5r7e/DGL", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-42", "is_cw20": false, "is_evm": false, - "symbol": "JPTC", - "name": "JPTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/jpt.png", + "is_svm": false, + "symbol": "DGL", + "name": "DGL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dgl.png", "decimals": 6, - "recommended_symbol": "JPTC" + "recommended_symbol": "DGL" }, { - "denom": "uosmo", + "denom": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", "chain_id": "osmosis-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-642", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "RAC", + "name": "RAC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", "decimals": 6, - "description": "The native token of Osmosis", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "description": "RAC", + "recommended_symbol": "RAC" }, { - "denom": "ibc/D189335C6E4A68B513C10AB227BF1C1D38C746766278BA3EEB4FB14124F1D858", + "denom": "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", "chain_id": "osmosis-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-11348", "is_cw20": false, "is_evm": false, - "symbol": "USDC.axl", - "name": "USDC.axl", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "PUPPY", + "name": "PUPPY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png", "decimals": 6, - "description": "Circle's stablecoin on Axelar", - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "description": "Puppy", + "recommended_symbol": "PUPPY" }, { - "denom": "ibc/FC078DDBEF8E5ADC597C0C1C858774CEB9D0CFEDBFD918967EDFB3AA2019A4E3", + "denom": "ibc/E4767181FEC2D11BEBC10C590CC766F5BEAEB44AB0AA17D94E5A4839B3556158", "chain_id": "osmosis-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/4tLQqCLaoKKfNFuPjA9o39YbKUwhR1F8N29Tz3hEbfP2", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", + "is_svm": false, + "symbol": "BITS", + "name": "BITS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png", "decimals": 8, - "coingecko_id": "weth", - "recommended_symbol": "WETH" + "recommended_symbol": "BITS" }, { - "denom": "ibc/89F8552EA97BEDCFFD86888CDDE58F262FAB2A4B0A7CA31CE818E0D4387B683A", + "denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", "chain_id": "osmosis-1", - "origin_denom": "peggy0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "pepe-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", + "is_svm": false, + "symbol": "PEPE", + "name": "PEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.peggy" + "coingecko_id": "pepe", + "recommended_symbol": "PEPE.axl" }, { - "denom": "ibc/D04E6A86F25AA29B6BFDCE3F9221D624B271305497F24F8C151035353920DA68", + "denom": "ibc/E867271A6D9BB3D1AE7DF8E4BFB32744F990CA6C981D1BB816F9F8B5441D6B59", "chain_id": "osmosis-1", - "origin_denom": "cant", + "origin_denom": "cband", "origin_chain_id": "sifchain-1", "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "ANT", - "name": "ANT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ant.png", + "is_svm": false, + "symbol": "Band", + "name": "Band", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/band.png", "decimals": 18, - "coingecko_id": "aragon", - "recommended_symbol": "ANT.sif" + "coingecko_id": "band-protocol", + "recommended_symbol": "Band.sif" }, { - "denom": "ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C", + "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "SPACER", - "name": "SPACER", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png", + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "description": "Spacer", - "recommended_symbol": "SPACER" + "description": "The native token of Gravity Bridge", + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" }, { - "denom": "ibc/0AA77B8ECAAD61A09437BA40B9EAEA3A80D9CF3EF1933309895BF3C2FC699DA6", + "denom": "ibc/F17C9CA112815613C5B6771047A093054F837C3020CBA59DFFD9D780A8B2984C", "chain_id": "osmosis-1", - "origin_denom": "umnt", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "avalanche-uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "MNTC", - "name": "MNTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/mnt.png", + "is_svm": false, + "symbol": "avalanche.USDC.axl", + "name": "avalanche.USDC.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "recommended_symbol": "MNTC" + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", + "recommended_symbol": "avalanche.USDC.axl.avalanche" }, { - "denom": "ibc/6AE98883D4D5D5FF9E50D7130F1305DA2FFA0C652D1DD9C123657C6B4EB2DF8A", + "denom": "ibc/F64D67581D50AE3F641A344F31FE7CF9DC5A2C8C8C455A6967E36DEA09D563E6", "chain_id": "osmosis-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-204", + "origin_denom": "usc", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-188", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "description": "The native EVM, governance and staking token of the Evmos Hub", - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "is_svm": false, + "symbol": "USC", + "name": "USC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", + "decimals": 8, + "coingecko_id": "carbon-usd", + "recommended_symbol": "USC" }, { - "denom": "ibc/12FEFB6E8AD852D23474DB1664D6F1B1C965506492B85E34F3496A9AF7B3F6C8", + "denom": "ibc/FD4CB2BCFBE3983D4EC289515F835406574287B7CBF3D85F516BC7014952E2EF", "chain_id": "osmosis-1", - "origin_denom": "umyr", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "cdai", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "MYTC", - "name": "MYTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/myt.png", - "decimals": 6, - "recommended_symbol": "MYTC" + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dai.png", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.sif" }, { - "denom": "ibc/2A5C04E2BBB24046A98162896D6237CE56ACE8C3CD907F8070E8348A30A6376E", + "denom": "ibc/73C2C269DCA7914B90E227D315C339836FDC6F2D570E5C5438D6C288472A665B", "chain_id": "osmosis-1", - "origin_denom": "ugbp", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "cgt/1", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-188", "is_cw20": false, "is_evm": false, - "symbol": "GBTC", - "name": "GBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/gbt.png", - "decimals": 6, - "recommended_symbol": "GBTC" + "is_svm": false, + "symbol": "USD", + "name": "USD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "decimals": 18, + "recommended_symbol": "USD" }, { - "denom": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", + "denom": "ibc/834D0AEF380E2A490E4209DFF2785B8DBB7703118C144AC373699525C65B4223", "chain_id": "osmosis-1", - "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-642", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "ampWHALE", + "name": "ampWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.peggy" + "recommended_symbol": "ampWHALE" }, { - "denom": "ibc/2DA9C149E9AD2BD27FEFA635458FB37093C256C1A940392634A16BEA45262604", + "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", "chain_id": "osmosis-1", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-320", + "origin_denom": "usomm", + "origin_chain_id": "sommelier-3", + "trace": "transfer/channel-165", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "SOMM", + "name": "SOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", "decimals": 6, - "description": "BLD is the token used to secure the Agoric chain through staking and to backstop Inter Protocol.", - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", + "coingecko_id": "sommelier", + "recommended_symbol": "SOMM" }, { - "denom": "ibc/2EA157848DDD59E3D751740604987A03002E42A06D6E6C23EAF78F32134201C8", + "denom": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", "chain_id": "osmosis-1", - "origin_denom": "umyrk", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-20925", + "origin_denom": "wsteth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "MYRK", - "name": "MYRK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", - "decimals": 6, - "recommended_symbol": "MYRK" + "is_svm": false, + "symbol": "wstETH.axl", + "name": "wstETH.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH.axl" }, { - "denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", + "denom": "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", "chain_id": "osmosis-1", - "origin_denom": "wavax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "stinj", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "AVAX", - "name": "AVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", "decimals": 18, - "description": "AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.", - "coingecko_id": "wrapped-avax", - "recommended_symbol": "AVAX.axl" + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", + "denom": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-21671", "is_cw20": false, "is_evm": false, - "symbol": "SEJUNO", - "name": "SEJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png", + "is_svm": false, + "symbol": "ASTRO.cw20", + "name": "ASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", "decimals": 6, - "description": "Staking derivative seJUNO for staked JUNO", - "coingecko_id": "stakeeasy-juno-derivative", - "recommended_symbol": "SEJUNO" + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "recommended_symbol": "ASTRO.cw20" }, { - "denom": "ibc/CCF4908522F309E2E8C2A3129321C78A6C01C90085502CE3C46EE20580BCD9B4", + "denom": "ibc/CA3733CB0071F480FAE8EF0D9C3D47A49C6589144620A642BBE0D59A293D110E", "chain_id": "osmosis-1", - "origin_denom": "cbtsg", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "BTSG", - "name": "BTSG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/btsg.png", - "decimals": 18, - "coingecko_id": "bitsong", - "recommended_symbol": "BTSG.sif" + "is_svm": false, + "symbol": "BONK", + "name": "BONK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", + "decimals": 5, + "description": "The Official Bonk Inu token", + "coingecko_id": "bonk", + "recommended_symbol": "BONK.wh" }, { - "denom": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", + "denom": "ibc/CB10783FD6E5CB6155E6CA0B1558061874EEE85291DD4306D1C0B2724E361EC5", "chain_id": "osmosis-1", - "origin_denom": "ukyve", - "origin_chain_id": "kyve-1", - "trace": "transfer/channel-767", + "origin_denom": "stucmdx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "KYVE", - "name": "KYVE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", + "is_svm": false, + "symbol": "stCMDX", + "name": "stCMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", "decimals": 6, - "description": "The native utility token of the KYVE network.", - "coingecko_id": "kyve-network", - "recommended_symbol": "KYVE" + "recommended_symbol": "stCMDX" }, { - "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", + "denom": "ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC", "chain_id": "osmosis-1", - "origin_denom": "unls", - "origin_chain_id": "pirin-1", - "trace": "transfer/channel-783", + "origin_denom": "hard", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", "is_cw20": false, "is_evm": false, - "symbol": "NLS", - "name": "NLS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "is_svm": false, + "symbol": "HARD", + "name": "HARD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", "decimals": 6, - "description": "The native token of Nolus chain", - "coingecko_id": "nolus", - "recommended_symbol": "NLS" + "description": "Governance token of Kava Lend Protocol", + "coingecko_id": "kava-lend", + "recommended_symbol": "HARD" }, { - "denom": "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", + "denom": "ibc/DB9755CB6FE55192948AE074D18FA815E1429D3D374D5BDA8D89623C6CF235C3", "chain_id": "osmosis-1", - "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-75", + "origin_denom": "cw20:juno1y9rf7ql6ffwkv02hsgd4yruz23pn4w97p75e2slsnkm0mnamhzysvqnxaq", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "BRNCH", - "name": "BRNCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png", + "is_svm": false, + "symbol": "BLOCK", + "name": "BLOCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/block.png", "decimals": 6, - "description": "ohhNFT LP token.", - "recommended_symbol": "BRNCH" + "description": "The native token of Marble DEX on Juno Chain", + "recommended_symbol": "BLOCK" }, { - "denom": "ibc/723134C962D78FC0E35610DB6D6A19B5B791D04FE8F4154E4AAB7BDAB28DBB45", + "denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", "chain_id": "osmosis-1", - "origin_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "sDAI", - "name": "sDAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", - "decimals": 18, - "recommended_symbol": "sDAI.grv" + "is_svm": false, + "symbol": "N43", + "name": "N43", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png", + "decimals": 6, + "recommended_symbol": "N43" }, { - "denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", + "denom": "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", "chain_id": "osmosis-1", - "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-113", + "origin_denom": "cbeth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "WOOF", - "name": "WOOF", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", - "decimals": 6, - "description": "Woof", - "recommended_symbol": "WOOF" + "is_svm": false, + "symbol": "cbETH", + "name": "cbETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", + "decimals": 18, + "description": "Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.", + "coingecko_id": "coinbase-wrapped-staked-eth", + "recommended_symbol": "cbETH.axl" }, { - "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", + "denom": "ibc/7A70A4681F85E891C9482E33DAA996489E278BB978054DC37245951BA69E5C4D", "chain_id": "osmosis-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-642", + "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "TACOS", + "name": "TACOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png", "decimals": 6, - "description": "The native token of Migaloo Chain", - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "recommended_symbol": "TACOS" }, { - "denom": "ibc/F64D67581D50AE3F641A344F31FE7CF9DC5A2C8C8C455A6967E36DEA09D563E6", + "denom": "ibc/D2BD22CD559E9C30C83D4C5E2F6153289346F1D8D974E0A3D4365E8D748BCBC5", "chain_id": "osmosis-1", - "origin_denom": "usc", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-188", + "origin_denom": "factory/inj1qczkutnsy3nmt909xtyjy4rsrkl2q4dm6aq960/coping", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "USC", - "name": "USC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", - "decimals": 8, - "coingecko_id": "carbon-usd", - "recommended_symbol": "USC" + "is_svm": false, + "symbol": "CPINJ", + "name": "CopingInj", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/CopingInj.png", + "decimals": 6, + "recommended_symbol": "CPINJ" }, { - "denom": "ibc/FAF3DD2FCCF5631A60E4F30CC68FBBF980A2FB20FBD2BCFD13EB37E316FCA4A5", + "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", "chain_id": "osmosis-1", - "origin_denom": "ccocos", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "utori", + "origin_chain_id": "teritori-1", + "trace": "transfer/channel-362", "is_cw20": false, "is_evm": false, - "symbol": "COCOS", - "name": "COCOS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cocos.png", - "decimals": 18, - "recommended_symbol": "COCOS.sif" + "is_svm": false, + "symbol": "TORI", + "name": "TORI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "decimals": 6, + "description": "The native token of Teritori", + "coingecko_id": "teritori", + "recommended_symbol": "TORI" }, { - "denom": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", + "denom": "ibc/F74225B0AFD2F675AF56E9BE3F235486BCDE5C5E09AA88A97AFD2E052ABFE04C", "chain_id": "osmosis-1", - "origin_denom": "ukuji", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "description": "The native staking and governance token of the Kujira chain.", - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "description": "The Revenue & Governance token of Unstake.fi", + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { - "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", + "denom": "uosmo", "chain_id": "osmosis-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "description": "The native token of Osmosis", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/C29010E1233F367E224E53BFF53176198D526DF5E4404DECEFCBEB0E4C4FE483", + "denom": "ibc/6B02EF600BA79CD60D4A85BA4DC81D02559827E715386A3BC4C5D8386F8037E4", "chain_id": "osmosis-1", - "origin_denom": "factory/inj13ze65lwstqrz4qy6vvxx3lglnkkuan436aw45e/HACHI", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "ccream", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "HACHI", - "name": "Hachi", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/HACHI.jpg", - "decimals": 9, - "recommended_symbol": "HACHI" + "is_svm": false, + "symbol": "CREAM", + "name": "CREAM", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cream.png", + "decimals": 18, + "coingecko_id": "cream-2", + "recommended_symbol": "CREAM.sif" }, { - "denom": "ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3", + "denom": "ibc/58C12A46739E2FF67E57F559E08B264C2B2E347C4DE432BEFC2ADA47D49DFB69", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "BJUNO", - "name": "BJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png", + "is_svm": false, + "symbol": "DROGO", + "name": "DROGO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/drogo.png", "decimals": 6, - "description": "Staking derivative bJUNO for staked JUNO", - "coingecko_id": "stakeeasy-bjuno", - "recommended_symbol": "BJUNO" + "recommended_symbol": "DROGO" }, { - "denom": "ibc/C4A85672EAF4C51D865A76483AB8CEFD7BC37C3B6F1A1610721D97A1734F382D", + "denom": "ibc/84502A75BCA4A5F68D464C00B3F610CE2585847D59B52E5FFB7C3C9D2DDCD3FE", "chain_id": "osmosis-1", - "origin_denom": "ucny", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "stujuno", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "CNTC", - "name": "CNTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cnt.png", + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "recommended_symbol": "CNTC" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A", + "denom": "ibc/917C4B1E92EE2F959FC11ECFC435C4048F97E8B00F9444592706F4604F24BF25", "chain_id": "osmosis-1", - "origin_denom": "nanomobx", - "origin_chain_id": "fetchhub-4", - "trace": "transfer/channel-229", + "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-642", "is_cw20": false, "is_evm": false, - "symbol": "MOBX", - "name": "MOBX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png", - "decimals": 9, - "coingecko_id": "mobix", - "recommended_symbol": "MOBX" + "is_svm": false, + "symbol": "bWHALE", + "name": "bWHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", + "decimals": 6, + "coingecko_id": "backbone-labs-staked-whale", + "recommended_symbol": "bWHALE" }, { - "denom": "ibc/E47F4E97C534C95B942729E1B25DBDE111EA791411CFF100515050BEA0AC0C6B", + "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", "chain_id": "osmosis-1", - "origin_denom": "pepe-wei", + "origin_denom": "mkr-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "PEPE", - "name": "PEPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/pepe.png", + "is_svm": false, + "symbol": "MKR", + "name": "MKR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", "decimals": 18, - "coingecko_id": "pepe", - "recommended_symbol": "PEPE.axl" + "description": "Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain", + "coingecko_id": "maker", + "recommended_symbol": "MKR.axl" }, { - "denom": "ibc/EB7FB9C8B425F289B63703413327C2051030E848CE4EAAEA2E51199D6D39D3EC", + "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", "chain_id": "osmosis-1", - "origin_denom": "utori", - "origin_chain_id": "teritori-1", - "trace": "transfer/channel-362", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "TORI", - "name": "TORI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", - "decimals": 6, - "description": "The native token of Teritori", - "coingecko_id": "teritori", - "recommended_symbol": "TORI" + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "decimals": 18, + "description": "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", + "coingecko_id": "axlweth", + "recommended_symbol": "ETH.axl" }, { - "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", + "denom": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", "chain_id": "osmosis-1", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "uqosmo", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-522", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "qOSMO", + "name": "qOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "description": "Quicksilver Liquid Staked OSMO", + "recommended_symbol": "qOSMO" }, { - "denom": "ibc/D27DDDF34BB47E5D5A570742CC667DE53277867116CCCA341F27785E899A70F3", + "denom": "ibc/6F62F01D913E3FFE472A38C78235B8F021B511BC6596ADFF02615C8F83D3B373", "chain_id": "osmosis-1", - "origin_denom": "mkr-wei", + "origin_denom": "wavax-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "MKR", - "name": "MKR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", + "is_svm": false, + "symbol": "AVAX", + "name": "AVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "description": "Maker is a Decentralized Autonomous Organization that creates and insures the dai stablecoin on the Ethereum blockchain", - "coingecko_id": "maker", - "recommended_symbol": "MKR.axl" + "description": "AVAX is the native token of Avalanche. It is a hard-capped, scarce asset that is used to pay for fees, secure the platform through staking, and provide a basic unit of account between the multiple subnets created on Avalanche.", + "coingecko_id": "wrapped-avax", + "recommended_symbol": "AVAX.axl" }, { - "denom": "ibc/C04DFC9BCD893E57F2BEFE40F63EFD18D2768514DBD5F63ABD2FF7F48FC01D36", + "denom": "ibc/C2DF5C3949CA835B221C575625991F09BAB4E48FB9C11A4EE357194F736111E3", "chain_id": "osmosis-1", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "cw20:juno1wwnhkagvcd3tjz6f8vsdsw5plqnw8qy2aj3rrhqr2axvktzv9q2qz8jxn3", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "decimals": 18, - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "is_svm": false, + "symbol": "BJUNO", + "name": "BJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bjuno.png", + "decimals": 6, + "description": "Staking derivative bJUNO for staked JUNO", + "coingecko_id": "stakeeasy-bjuno", + "recommended_symbol": "BJUNO" }, { - "denom": "ibc/E4FFFC6D32085A6A10A4ACED57594434AE603F94C4A4D44F3FD5A9609E5B2BFE", + "denom": "ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SOLAR", + "name": "SOLAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png", + "decimals": 6, + "description": "Solarbank DAO Governance Token for speeding up the shift to renewable and green energy", + "recommended_symbol": "SOLAR" + }, + { + "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", "chain_id": "osmosis-1", - "origin_denom": "cshib", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "basecro", + "origin_chain_id": "crypto-org-chain-mainnet-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/shib.png", - "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.sif" + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 8, + "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO" }, { "denom": "ibc/F6B691D5F7126579DDC87357B09D653B47FDCE0A3383FF33C8D8B544FE29A8A6", @@ -24690,6 +30377,7 @@ "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "MARBLE", "name": "MARBLE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/marble.png", @@ -24699,935 +30387,961 @@ "recommended_symbol": "MARBLE" }, { - "denom": "ibc/52013CBC332B65408E0E8D30AA364612FC56820315926B33E2295275BC12A9B7", + "denom": "ibc/64537BE4AAFEE3EADAF95870D81E426D3F7E805F72DF329CC078A38C3C9E64B6", "chain_id": "osmosis-1", - "origin_denom": "udkk", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "DKTC", - "name": "DKTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/dkt.png", + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", "decimals": 6, - "recommended_symbol": "DKTC" + "recommended_symbol": "WINK" }, { - "denom": "ibc/5FF35A66F29B2521AD994CD9A323E22D430BB2B3A64C0A7079E2229DB5D96E97", + "denom": "ibc/5452AEA55B480F3E6CF87373F518F5E04827EBB2CF3E10D5327BE556035905EA", "chain_id": "osmosis-1", - "origin_denom": "busd", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "origin_denom": "caxs", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/busd.png", - "decimals": 8, - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD" + "is_svm": false, + "symbol": "AXS", + "name": "AXS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/axs.png", + "decimals": 18, + "coingecko_id": "axie-infinity", + "recommended_symbol": "AXS.sif" }, { - "denom": "ibc/C25A2303FE24B922DAFFDCE377AC5A42E5EF746806D32E2ED4B610DE85C203F7", + "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-21671", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-184", "is_cw20": false, "is_evm": false, - "symbol": "ASTRO", - "name": "ASTRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "coingecko_id": "astroport-fi", - "recommended_symbol": "ASTRO" - }, - { - "denom": "ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4", - "chain_id": "osmosis-1", - "origin_denom": "ape-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", - "is_cw20": false, - "is_evm": false, - "symbol": "APE", - "name": "APE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg", - "decimals": 18, - "description": "ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.", - "coingecko_id": "apecoin", - "recommended_symbol": "APE.axl" + "description": "The native token of Umee", + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/42D24879D4569CE6477B7E88206ADBFE47C222C6CAD51A54083E4A72594269FC", + "denom": "ibc/013C2DC54E50B760F1088513814C3525BE3CCF7BEA7E3B723AB50E3A73E0B725", "chain_id": "osmosis-1", - "origin_denom": "uqosmo", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-522", + "origin_denom": "cw20:terra1ctelwayk6t2zu30a8v9kdg3u2gr0slpjdfny5pjp7m3tuquk32ysugyjdg", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "qOSMO", - "name": "qOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", - "decimals": 6, - "description": "Quicksilver Liquid Staked OSMO", - "recommended_symbol": "qOSMO" + "is_svm": false, + "symbol": "WSOL", + "name": "WSOL", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/wsol.png", + "decimals": 8, + "recommended_symbol": "WSOL" }, { - "denom": "ibc/5F77DE202CBE3B263AB321AC7FF6A2D35857DACF213FF9CE03E40D43CBA6A870", + "denom": "ibc/6500D6B3F63B7386E9A4EBF39E7D10B99707D2FFA6705A2E2712F7620EBDD1EC", "chain_id": "osmosis-1", - "origin_denom": "ceth", + "origin_denom": "cgrt", "origin_chain_id": "sifchain-1", "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/eth.png", + "is_svm": false, + "symbol": "GRT", + "name": "GRT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/grt.png", "decimals": 18, - "coingecko_id": "ethereum", - "recommended_symbol": "ETH.sif" + "coingecko_id": "the-graph", + "recommended_symbol": "GRT.sif" }, { - "denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "denom": "ibc/D725981C4731F459E295DEF3E2E6A238CEE1EC8329A98CBDD136DABE59CD933B", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "peggy0xC5d27F27F08D1FD1E3EbBAa50b3442e6c0D50439", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "TORO", - "name": "TORO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/osmosis/asset/toro.png", - "decimals": 6, - "description": "Toro Token", - "recommended_symbol": "TORO" + "is_svm": false, + "symbol": "APP", + "name": "APP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/app.png", + "decimals": 18, + "coingecko_id": "moon-app", + "recommended_symbol": "APP.peggy" }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "denom": "ibc/70FF2F374019710F752A18821B72689C10A213D44A00E7B3472B21462528E1B7", "chain_id": "osmosis-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0", + "origin_denom": "usara-core1r9gc0rnxnzpq33u82f44aufgdwvyxv4wyepyck98m9v2pxua6naqr8h03z", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-2188", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "SARA", + "name": "SARA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/coreum/asset/sara.png", "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "coingecko_id": "pulsara", + "recommended_symbol": "SARA" }, { - "denom": "ibc/B2BD584CD2A0A9CE53D4449667E26160C7D44A9C41AF50F602C201E5B3CCA46C", + "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", "chain_id": "osmosis-1", - "origin_denom": "wsteth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "umntl", + "origin_chain_id": "mantle-1", + "trace": "transfer/channel-232", "is_cw20": false, "is_evm": false, - "symbol": "wstETH.axl", - "name": "wstETH.axl", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH.axl" + "is_svm": false, + "symbol": "MNTL", + "name": "MNTL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", + "decimals": 6, + "description": "The native token of Asset Mantle", + "coingecko_id": "assetmantle", + "recommended_symbol": "MNTL" }, { - "denom": "ibc/B538674E3091987E4AABF264899829CBB209EB5EFF89500213F5335F1BCED307", + "denom": "ibc/ECBE78BF7677320A93E7BA1761D144BCBF0CBC247C290C049655E106FE5DC68E", "chain_id": "osmosis-1", - "origin_denom": "cusdc", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "stk/uosmo", + "origin_chain_id": "core-1", + "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "stkOSMO", + "name": "stkOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkosmo.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.sif" + "description": "PSTAKE Liquid-Staked OSMO", + "coingecko_id": "stkosmo", + "recommended_symbol": "stkOSMO" }, { - "denom": "ibc/B56EC23632BE54840D80CDF108B4C76F6BB6CB489F332932FCD27DD925C04204", + "denom": "ibc/F287710FBC818A3F6C77312B1C6FA32785766E93CF7C052EA140219AEBA0878E", "chain_id": "osmosis-1", - "origin_denom": "factory/neutron1tklm6cvr2wxg8k65t8gh5ewslnzdfd5fsk0w3f/corgi", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-874", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7omXa4gryZ5NiBmLep7JsTtTtANCVKXwT9vbN91aS1br", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "CORGI", - "name": "CORGI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/babycorgi.png", - "decimals": 6, - "recommended_symbol": "CORGI" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-btc-wormhole", + "recommended_symbol": "WBTC" }, { - "denom": "ibc/2AE297399A20F5CCC7F943901CB050AE40EC4E8804D73050ADC5BB2B8128DD4C", + "denom": "ibc/EDD6F0D66BCD49C1084FB2C35353B4ACD7B9191117CE63671B61320548F7C89D", "chain_id": "osmosis-1", - "origin_denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-42", + "origin_denom": "uwhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-642", "is_cw20": false, "is_evm": false, - "symbol": "NEXX", - "name": "NEXX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png", + "is_svm": false, + "symbol": "WHALE", + "name": "WHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", "decimals": 6, - "recommended_symbol": "NEXX" + "description": "The native token of Migaloo Chain", + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" }, { - "denom": "ibc/D9FCD4244CA221F5D5236E31CB13F6E547826526AFDF7084462F47F2173AE5F1", + "denom": "ibc/D04E6A86F25AA29B6BFDCE3F9221D624B271305497F24F8C151035353920DA68", "chain_id": "osmosis-1", - "origin_denom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "cant", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "KIRA", - "name": "KIRA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/kira.png", - "decimals": 6, - "coingecko_id": "kira-the-injective-cat", - "recommended_symbol": "KIRA" + "is_svm": false, + "symbol": "ANT", + "name": "ANT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ant.png", + "decimals": 18, + "coingecko_id": "aragon", + "recommended_symbol": "ANT.sif" }, { - "denom": "ibc/0FC38457AF15A8BD1962BB97DDF1AB5EF4C74C5BFDAEF00289A9C405CBD609B0", + "denom": "ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B", "chain_id": "osmosis-1", - "origin_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-874", + "origin_denom": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "ASTROPEPE", - "name": "ASTROPEPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", + "is_svm": false, + "symbol": "MANNA", + "name": "MANNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png", "decimals": 6, - "recommended_symbol": "ASTROPEPE" + "description": "Social Impact DAO dedicated to combatting food insecurity and malnutrition", + "recommended_symbol": "MANNA" }, { - "denom": "ibc/A34E137CEB4F379E0808F729814FA3EAB99C6C2CE21C48C4FB6463ABF95B6408", + "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", "chain_id": "osmosis-1", - "origin_denom": "cdnxc", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "loki", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-258", "is_cw20": false, "is_evm": false, - "symbol": "DNXC", - "name": "DNXC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dnxc.png", - "decimals": 18, - "coingecko_id": "dinox", - "recommended_symbol": "DNXC.sif" + "is_svm": false, + "symbol": "ODIN", + "name": "ODIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "decimals": 6, + "description": "ODIN is the Staking and governance token for ODIN Protocol", + "coingecko_id": "odin-protocol", + "recommended_symbol": "ODIN" }, { - "denom": "ibc/00BC6883C29D45EAA021A55CFDD5884CA8EFF9D39F698A9FEF79E13819FF94F8", + "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "PEPE", - "name": "PEPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png", - "decimals": 6, - "recommended_symbol": "PEPE" + "is_svm": false, + "symbol": "WBTC.axl", + "name": "WBTC.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "description": "Wrapped Bitcoin on Axelar", + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/013C2DC54E50B760F1088513814C3525BE3CCF7BEA7E3B723AB50E3A73E0B725", + "denom": "ibc/77E312EB2745B8347FC83DD303B6B11858A553F35F293F15EFA656DBC7F29126", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1ctelwayk6t2zu30a8v9kdg3u2gr0slpjdfny5pjp7m3tuquk32ysugyjdg", + "origin_denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", "origin_chain_id": "phoenix-1", "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "WSOL", - "name": "WSOL", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/wsol.png", - "decimals": 8, - "recommended_symbol": "WSOL" + "is_svm": false, + "symbol": "GEM", + "name": "GEM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png", + "decimals": 6, + "recommended_symbol": "GEM" }, { - "denom": "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", + "denom": "ibc/79DB2F9D2525460B6EB75ECFB8EAE0EC7986172FDF29E66E0AE5C452D1242D79", "chain_id": "osmosis-1", - "origin_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "cbond", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "NINJA", - "name": "NINJA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", - "decimals": 6, - "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", - "coingecko_id": "dog-wif-nuchucks", - "recommended_symbol": "NINJA" + "is_svm": false, + "symbol": "BOND", + "name": "BOND", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bond.png", + "decimals": 18, + "coingecko_id": "barnbridge", + "recommended_symbol": "BOND.sif" }, { - "denom": "ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317", + "denom": "ibc/8B4B5C22A96B068AB7F49A3E9DFDBA14B0896476949D5941E51C18CDEDD41630", "chain_id": "osmosis-1", - "origin_denom": "unyx", - "origin_chain_id": "nyx", - "trace": "transfer/channel-15464", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "NYX", - "name": "NYX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", - "decimals": 6, - "description": "NYX Token (NYX) is the Nym Network's native staking and governance token.", - "recommended_symbol": "NYX" + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/sol.png", + "decimals": 8, + "coingecko_id": "solana", + "recommended_symbol": "SOL" }, { - "denom": "ibc/1B708808D372E959CD4839C594960309283424C775F4A038AAEBE7F83A988477", + "denom": "ibc/C12C353A83CD1005FC38943410B894DBEC5F2ABC97FC12908F0FB03B970E8E1B", "chain_id": "osmosis-1", - "origin_denom": "uqsr", - "origin_chain_id": "quasar-1", - "trace": "transfer/channel-688", + "origin_denom": "udoki", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-258", "is_cw20": false, "is_evm": false, - "symbol": "QSR", - "name": "QSR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", + "is_svm": false, + "symbol": "DOKI", + "name": "DOKI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", "decimals": 6, - "description": "The native token of Quasar", - "coingecko_id": "quasar-2", - "recommended_symbol": "QSR" + "description": "DOKI the last Dragon", + "coingecko_id": "doki", + "recommended_symbol": "DOKI" }, { - "denom": "ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE", + "denom": "ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", + "origin_denom": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "CASA", - "name": "CASA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png", + "is_svm": false, + "symbol": "DOGA", + "name": "DOGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png", "decimals": 6, - "description": "An innovative DAO dedicated to housing the most vulnerable", - "recommended_symbol": "CASA" - }, - { - "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", - "chain_id": "osmosis-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-1279", - "is_cw20": false, - "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "description": "The native staking and governance token of Composable.", - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "description": "Doge Apr", + "recommended_symbol": "DOGA" }, { - "denom": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", + "denom": "ibc/98BCD43F190C6960D0005BC46BB765C827403A361C9C03C2FF694150A30284B0", "chain_id": "osmosis-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-297", + "origin_denom": "cw20:terra1lxx40s29qvkrcj8fsa3yzyehy7w50umdvvnls2r830rys6lu2zns63eelv", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "ROAR", + "name": "ROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/roar.png", "decimals": 6, - "description": "The native token of Crescent", - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "description": "Lion DAO is a community DAO that lives on the Terra blockchain with the mission to reactivate the LUNAtic community and showcase Terra protocols & tooling", + "coingecko_id": "lion-dao", + "recommended_symbol": "ROAR" }, { - "denom": "ibc/61DE6748CA641D2422C6D07C53F6C7215EEF7AE8BC61439B83A0DEA061B487E1", + "denom": "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", "chain_id": "osmosis-1", - "origin_denom": "ox-wei", + "origin_denom": "reth-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "OX", - "name": "OX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg", + "is_svm": false, + "symbol": "rETH", + "name": "rETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", "decimals": 18, - "recommended_symbol": "OX.axl" + "description": "Rocket Pool is a decentralised Ethereum Proof of Stake pool.", + "coingecko_id": "rocket-pool-eth", + "recommended_symbol": "rETH.axl" }, { - "denom": "ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3", + "denom": "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-341", + "origin_denom": "stuumee", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "CUB", - "name": "CUB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", + "is_svm": false, + "symbol": "stUMEE", + "name": "stUMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", "decimals": 6, - "description": "Lion Cub DAO is a useless meme community DAO on Terra", - "recommended_symbol": "CUB" + "coingecko_id": "stride-staked-umee", + "recommended_symbol": "stUMEE" }, { - "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", + "denom": "ibc/2CDA7CA33077911B2BF5E5D3423B6CC76E1093A7F8A6D876943C2AF69CBC9875", "chain_id": "osmosis-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-6787", + "origin_denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "decimals": 18, - "description": "The native staking token of dYdX Protocol.", - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "is_svm": false, + "symbol": "ampINJ", + "name": "ampINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", + "decimals": 6, + "recommended_symbol": "ampINJ" }, { - "denom": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", + "denom": "ibc/C6B6BFCB6EE49A7CAB1A7E7B021DE35B99D525AC660844952F0F6C78DCB2A57B", "chain_id": "osmosis-1", - "origin_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "HAVA", - "name": "HAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", + "is_svm": false, + "symbol": "SEJUNO", + "name": "SEJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png", "decimals": 6, - "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters. https://havacoin.xyz/", - "recommended_symbol": "HAVA" + "description": "Staking derivative seJUNO for staked JUNO", + "coingecko_id": "stakeeasy-juno-derivative", + "recommended_symbol": "SEJUNO" }, { - "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", + "denom": "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", "chain_id": "osmosis-1", - "origin_denom": "ulum", - "origin_chain_id": "lum-network-1", - "trace": "transfer/channel-115", + "origin_denom": "acanto", + "origin_chain_id": "canto_7700-1", + "trace": "transfer/channel-550", "is_cw20": false, "is_evm": false, - "symbol": "LUM", - "name": "LUM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", - "decimals": 6, - "description": "Native token of the Lum Network", - "coingecko_id": "lum-network", - "recommended_symbol": "LUM" + "is_svm": false, + "symbol": "CANTO", + "name": "CANTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", + "decimals": 18, + "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", + "coingecko_id": "canto", + "recommended_symbol": "CANTO" }, { - "denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", + "denom": "ibc/6207D35D2C08F2162575C3C4BFD524226E50639121A273045F1B393AF67DCEB3", "chain_id": "osmosis-1", - "origin_denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-75", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "SNEAKY", - "name": "SNEAKY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png", - "decimals": 6, - "description": "The native coin of Sneaky Productions.", - "recommended_symbol": "SNEAKY" + "is_svm": false, + "symbol": "tBTC", + "name": "tBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg", + "decimals": 8, + "coingecko_id": "tbtc", + "recommended_symbol": "tBTC.wh" }, { - "denom": "ibc/95C9B5870F95E21A242E6AF9ADCB1F212EE4A8855087226C36FBE43FC41A77B8", + "denom": "ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6", "chain_id": "osmosis-1", - "origin_denom": "axpla", - "origin_chain_id": "dimension_37-1", - "trace": "transfer/channel-1634", + "origin_denom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "XPLA", - "name": "XPLA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", - "decimals": 18, - "description": "The native staking token of XPLA.", - "coingecko_id": "xpla", - "recommended_symbol": "XPLA" + "is_svm": false, + "symbol": "OIN", + "name": "OIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png", + "decimals": 6, + "description": "OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.", + "recommended_symbol": "OIN" }, { - "denom": "ibc/BAC9C6998F1F5C316D3353622EAEDAF8BD00FAABEB374FECDF8C9BC475172CFA", + "denom": "ibc/B8C608CEE08C4F30A15A7955306F2EDAF4A02BB191CABC4185C1A57FD978DA1B", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1xekkh27punj0uxruv3gvuydyt856fax0nu750xns99t2qcxp7xmsqwhfma", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "GRDN", - "name": "GRDN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/guardian.png", + "is_svm": false, + "symbol": "ASTRO", + "name": "ASTRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", "decimals": 6, - "description": "Evmos Guardians governance token.", - "recommended_symbol": "GRDN" + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO" }, { - "denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", + "denom": "ibc/30E4399A40BD81F4F8B3AA34364A48EAC85675A53BE4DF0AC55EBE34D4310148", "chain_id": "osmosis-1", - "origin_denom": "stk/uatom", - "origin_chain_id": "core-1", - "trace": "transfer/channel-4", + "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tjcf9497fwmrnk22jfu5hsdq82qshga54ajvzy", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "is_svm": false, + "symbol": "PYTH", + "name": "PYTH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/pyth.png", "decimals": 6, - "description": "PSTAKE Liquid-Staked ATOM", - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" + "coingecko_id": "pyth-network", + "recommended_symbol": "PYTH" }, { - "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", + "denom": "ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", + "origin_denom": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "PHMN", - "name": "PHMN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png", + "is_svm": false, + "symbol": "VOID", + "name": "VOID", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png", "decimals": 6, - "description": "The native token cw20 for PHMN on Juno Chain", - "coingecko_id": "posthuman", - "recommended_symbol": "PHMN" + "description": "Void", + "recommended_symbol": "VOID" }, { - "denom": "ibc/D547E4A49B10339061E0BB6B35A939C5C6609595B520447FA0CAA6FBD63CEDC2", + "denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "ufrienzies", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-750", "is_cw20": false, "is_evm": false, - "symbol": "SUNSET", - "name": "SUNSET", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png", + "is_svm": false, + "symbol": "FRNZ", + "name": "FRNZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", "decimals": 6, - "recommended_symbol": "SUNSET" + "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", + "recommended_symbol": "FRNZ" }, { - "denom": "ibc/227794C5A63E0A61F49839817288C6582E0BB3D9A082D261542F56684DC6F47D", + "denom": "ibc/77BEE176F08CCC5AFBDFCCB9C63EBDF95D773FE3A0D3A85AC667AD633CE030A7", "chain_id": "osmosis-1", - "origin_denom": "usek", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "cw20:secret197dvnt9yjxwn8sjdlx05f7zuk27lsdxtfnwxse", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-476", "is_cw20": false, "is_evm": false, - "symbol": "SETC", - "name": "SETC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/set.png", + "is_svm": false, + "symbol": "SHILL", + "name": "SHILL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shill.png", "decimals": 6, - "recommended_symbol": "SETC" + "recommended_symbol": "SHILL" }, { - "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", + "denom": "ibc/F08DE332018E8070CC4C68FE06E04E254F527556A614F5F8F9A68AF38D367E45", "chain_id": "osmosis-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-251", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "solana.USDC.wh", + "name": "solana.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "description": "The native staking token of Terra.", - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "description": "Solana USD Coin (Wormhole), Solana USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "recommended_symbol": "solana.USDC.wh" }, { - "denom": "ibc/7A08C6F11EF0F59EB841B9F788A87EC9F2361C7D9703157EC13D940DC53031FA", + "denom": "ibc/898ACF6F5DEBF535103BBD52E3E5B70A311AD097B198A152483F69290B4210C0", "chain_id": "osmosis-1", - "origin_denom": "ncheq", - "origin_chain_id": "cheqd-mainnet-1", - "trace": "transfer/channel-108", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "CHEQ", - "name": "CHEQ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", - "decimals": 9, - "description": "Native token for the cheqd network", - "coingecko_id": "cheqd-network", - "recommended_symbol": "CHEQ" + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 8, + "coingecko_id": "dai", + "recommended_symbol": "DAI.wh" }, { - "denom": "ibc/AABCB14ACAFD53A5C455BAC01EA0CA5AE18714895846681A52BFF1E3B960B44E", + "denom": "ibc/D3B574938631B0A1BA704879020C696E514CFADAA7643CDE4BD5EB010BDE327B", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1m4h8q4p305wgy7vkux0w6e5ylhqll3s6pmadhxkhqtuwd5wlxhxs8xklsw", + "origin_denom": "cw20:juno1rws84uz7969aaa7pej303udhlkt3j9ca0l3egpcae98jwak9quzq8szn2l", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "WATR", - "name": "WATR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/watr.png", + "is_svm": false, + "symbol": "PHMN", + "name": "PHMN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/phmn.png", "decimals": 6, - "description": "A revolutionary DAO created to bring clean drinking water to men, women, and children worldwide. We hope you join us on our journey!", - "recommended_symbol": "WATR" + "description": "The native token cw20 for PHMN on Juno Chain", + "coingecko_id": "posthuman", + "recommended_symbol": "PHMN" }, { - "denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", + "denom": "ibc/D53E785DC9C5C2CA50CADB1EFE4DE5D0C30418BE0E9C6F2AF9F092A247E8BC22", "chain_id": "osmosis-1", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "stadym", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "MATIC", - "name": "MATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "is_svm": false, + "symbol": "stDYM", + "name": "stDYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png", "decimals": 18, - "description": "Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.", - "coingecko_id": "wmatic", - "recommended_symbol": "MATIC.axl" - }, - { - "denom": "ibc/E4673C5CDB56B4225AB1625F3B478740AE9F11E1A6BEBC1B30F8A5080D6AFBD6", - "chain_id": "osmosis-1", - "origin_denom": "uaura", - "origin_chain_id": "xstaxy-1", - "trace": "transfer/channel-11304", - "is_cw20": false, - "is_evm": false, - "symbol": "AURA", - "name": "AURA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", - "decimals": 6, - "coingecko_id": "aura-network", - "recommended_symbol": "AURA" + "description": "Stride's liquid staked DYM", + "coingecko_id": "stride-staked-dym", + "recommended_symbol": "stDYM" }, { - "denom": "ibc/E4767181FEC2D11BEBC10C590CC766F5BEAEB44AB0AA17D94E5A4839B3556158", + "denom": "ibc/454E820139E40BD6285C821392A6AAC976D9FC59D75F1937784FC0D9B62F38D0", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno14fz92ehqt37e096xr95kmy8nc0kz803uezxtg4fwx7agjjma86sqm8mg3h", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "BITS", - "name": "BITS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bits.png", - "decimals": 8, - "recommended_symbol": "BITS" + "is_svm": false, + "symbol": "STETH", + "name": "STETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", + "decimals": 18, + "coingecko_id": "staked-ether", + "recommended_symbol": "STETH.grv" }, { - "denom": "ibc/5601083E2B77E3A01DEB4F64D033AE80A774F1327BC79524F34FB753E68ABEC5", + "denom": "ibc/4E5444C35610CC76FC94E7F7886B93121175C28262DDFDDE6F84E82BF2425452", "chain_id": "osmosis-1", - "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-259", + "origin_denom": "ubtsg", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "PLNK", - "name": "PLNK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", "decimals": 6, - "recommended_symbol": "PLNK" + "description": "BitSong Native Token", + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG" }, { - "denom": "ibc/5CF826D4A1C654B63F5025923AEBE56BD5710BD56E743FBDB9B338D0DD444077", + "denom": "ibc/6018AD9F3E8AEF59DBD127F9D81C4F2B69CF1DD5680DBD4D72F0FE1F87E7397D", "chain_id": "osmosis-1", - "origin_denom": "erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09", - "origin_chain_id": "planq_7070-2", - "trace": "transfer/channel-492", + "origin_denom": "busd.1.6.754a80", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-188", "is_cw20": false, "is_evm": false, - "symbol": "SRCX", - "name": "SRCX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png", - "decimals": 9, - "recommended_symbol": "SRCX" + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "decimals": 18, + "recommended_symbol": "BUSD.carbon" }, { - "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", + "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", "chain_id": "osmosis-1", - "origin_denom": "afet", - "origin_chain_id": "fetchhub-4", - "trace": "transfer/channel-229", + "origin_denom": "peaka", + "origin_chain_id": "vota-ash", + "trace": "transfer/channel-2694", "is_cw20": false, "is_evm": false, - "symbol": "FET", - "name": "FET", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", + "is_svm": false, + "symbol": "DORA", + "name": "DORA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", "decimals": 18, - "description": "The native staking and governance token of the Fetch Hub.", - "coingecko_id": "fetch-ai", - "recommended_symbol": "FET" + "description": "The native staking and governance token of the Theta testnet version of the Dora Vota.", + "recommended_symbol": "DORA" }, { - "denom": "ibc/C103BF58C2C4F341A80A188DE244DE957F999911A9CD4203954835443F17ECE5", + "denom": "ibc/CCF4908522F309E2E8C2A3129321C78A6C01C90085502CE3C46EE20580BCD9B4", "chain_id": "osmosis-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/871jbn9unTavWsAe83f2Ma9GJWSv6BKsyWYLiQ6z3Pva", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "cbtsg", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "USDTbs", - "name": "USDTbs", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", - "decimals": 8, - "coingecko_id": "tether", - "recommended_symbol": "USDTbs" + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/btsg.png", + "decimals": 18, + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG.sif" }, { - "denom": "ibc/61365041DAC5A57B92D60A3EBEB5143E209F86CECDBDD7326A6E7F8351352119", + "denom": "ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E", "chain_id": "osmosis-1", - "origin_denom": "ubcre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-297", + "origin_denom": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "bCRE", - "name": "bCRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", + "is_svm": false, + "symbol": "MNPU", + "name": "MNPU", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png", "decimals": 6, - "coingecko_id": "liquid-staking-crescent", - "recommended_symbol": "bCRE" + "description": "Mini Punks Token", + "recommended_symbol": "MNPU" }, { - "denom": "ibc/64537BE4AAFEE3EADAF95870D81E426D3F7E805F72DF329CC078A38C3C9E64B6", + "denom": "ibc/B1C287C2701774522570010EEBCD864BCB7AB714711B3AA218699FDD75E832F5", "chain_id": "osmosis-1", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-259", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", - "decimals": 6, - "recommended_symbol": "WINK" + "is_svm": false, + "symbol": "SUI", + "name": "SUI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", + "decimals": 8, + "description": "Sui’s native asset is called SUI.", + "coingecko_id": "sui", + "recommended_symbol": "SUI.wh" }, { - "denom": "ibc/64D56DF9EC69BE554F49EBCE0199611062FF1137EF105E2F645C1997344F3834", + "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", "chain_id": "osmosis-1", - "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-642", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "SHARK", - "name": "SHARK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "recommended_symbol": "SHARK" + "description": "The XPRT token is primarily a governance token for the Persistence chain.", + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/D6C28E07F7343360AC41E15DDD44D79701DDCA2E0C2C41279739C8D4AE5264BC", + "denom": "ibc/DD3938D8131F41994C1F01F4EB5233DEE9A0A5B787545B9A07A321925655BF38", "chain_id": "osmosis-1", - "origin_denom": "hard", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "origin_denom": "umpwr", + "origin_chain_id": "empowerchain-1", + "trace": "transfer/channel-1411", "is_cw20": false, "is_evm": false, - "symbol": "HARD", - "name": "HARD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/hard.png", + "is_svm": false, + "symbol": "MPWR", + "name": "MPWR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/empowerchain/images/mpwr.svg", "decimals": 6, - "description": "Governance token of Kava Lend Protocol", - "coingecko_id": "kava-lend", - "recommended_symbol": "HARD" + "description": "The native staking and governance token of Empower.", + "recommended_symbol": "MPWR" }, { - "denom": "ibc/454E820139E40BD6285C821392A6AAC976D9FC59D75F1937784FC0D9B62F38D0", + "denom": "ibc/0E77E090EC04C476DE2BC0A7056580AC47660DAEB7B0D4701C085E3A046AC7B7", "chain_id": "osmosis-1", - "origin_denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "factory/neutron13lkh47msw28yynspc5rnmty3yktk43wc3dsv0l/ATOM1KLFG", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "STETH", - "name": "STETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/steth.png", - "decimals": 18, - "coingecko_id": "staked-ether", - "recommended_symbol": "STETH.grv" + "is_svm": false, + "symbol": "ATOM1KLFG", + "name": "ATOM1KLFG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ATOM1KLFGc.png", + "decimals": 6, + "description": "$ATOM to $1,000 LFG!!", + "recommended_symbol": "ATOM1KLFG" }, { - "denom": "ibc/DDF1CD4CDC14AE2D6A3060193624605FF12DEE71CF1F8C19EEF35E9447653493", + "denom": "ibc/5A7C219BA5F7582B99629BA3B2A01A61BFDA0F6FD1FE95B5366F7334C4BC0580", "chain_id": "osmosis-1", - "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-642", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-297", "is_cw20": false, "is_evm": false, - "symbol": "RAC", - "name": "RAC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "description": "RAC", - "recommended_symbol": "RAC" + "description": "The native token of Crescent", + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", + "denom": "ibc/A33F7AAD8AEB6BFBEAEAD6DBBAD3A88DB094FA76103F921A8893D99D9FBC9176", "chain_id": "osmosis-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "cw20:juno1s2dp05rspeuzzpzyzdchk262szehrtfpz847uvf98cnwh53ulx4qg20qwj", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "BANANA", + "name": "BANANA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/banana.png", "decimals": 6, - "description": "The native token of Stride", - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "recommended_symbol": "BANANA" }, { - "denom": "ibc/C1CEF00F016FE89EA6E5B07DA895AACD91B0AAD69A991033D846B988AD4FB69D", + "denom": "ibc/0FC38457AF15A8BD1962BB97DDF1AB5EF4C74C5BFDAEF00289A9C405CBD609B0", "chain_id": "osmosis-1", - "origin_denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "CMQZ", - "name": "CMQZ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png", + "is_svm": false, + "symbol": "ASTROPEPE", + "name": "ASTROPEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", "decimals": 6, - "recommended_symbol": "CMQZ" + "recommended_symbol": "ASTROPEPE" }, { - "denom": "ibc/C360EF34A86D334F625E4CBB7DA3223AEA97174B61F35BB3758081A8160F7D9B", + "denom": "ibc/8F018FF2E2FDC4596BEFA2DDC38AAFF5487CCFBE10B5F31E83F6193B144AAFA2", "chain_id": "osmosis-1", - "origin_denom": "loki", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-258", + "origin_denom": "cquick", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "ODIN", - "name": "ODIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", - "decimals": 6, - "description": "Staking and governance token for ODIN Protocol", - "coingecko_id": "odin-protocol", - "recommended_symbol": "ODIN" + "is_svm": false, + "symbol": "QUICK", + "name": "QUICK", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/quick.png", + "decimals": 18, + "coingecko_id": "quick", + "recommended_symbol": "QUICK.sif" }, { - "denom": "ibc/C3FC4DED273E7D1DD2E7BAA3317EC9A53CD3252B577AA33DC00D9DF2BDF3ED5C", + "denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno159q8t5g02744lxq8lfmcn6f78qqulq9wn3y9w7lxjgkz4e0a6kvsfvapse", + "origin_denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "SOLAR", - "name": "SOLAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/solar.png", + "is_svm": false, + "symbol": "RAW", + "name": "RAW", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png", "decimals": 6, - "description": "Solarbank DAO Governance Token for speeding up the shift to renewable and green energy", - "recommended_symbol": "SOLAR" + "description": "Token governance for Junoswap", + "coingecko_id": "junoswap-raw-dao", + "recommended_symbol": "RAW" }, { - "denom": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", + "denom": "ibc/AE2719773D6FCDD05AC17B1ED63F672F5F9D84144A61965F348C86C2A83AD161", "chain_id": "osmosis-1", - "origin_denom": "stuluna", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "uni-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "stLUNA", - "name": "stLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "decimals": 6, - "coingecko_id": "stride-staked-luna", - "recommended_symbol": "stLUNA" + "is_svm": false, + "symbol": "UNI", + "name": "UNI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/uni.svg", + "decimals": 18, + "coingecko_id": "uniswap", + "recommended_symbol": "UNI.axl" }, { - "denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", + "denom": "ibc/F409BAB3C37B59F9979B915A1500E2A2991B83886B831D390EF090DBD86B5525", "chain_id": "osmosis-1", - "origin_denom": "staevmos", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "cpond", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "is_svm": false, + "symbol": "POND", + "name": "POND", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/pond.png", "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "coingecko_id": "marlin", + "recommended_symbol": "POND.sif" }, { - "denom": "ibc/C9864D1B9623F703C75BBF72B7FF8A7317E1535C96538D21467A4311246DC3B5", + "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", "chain_id": "osmosis-1", - "origin_denom": "ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "link-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "LOBO", - "name": "LOBO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft24C9FA4F10B0F235F4A815B15FC774E046A2B2EB.png", - "decimals": 6, - "recommended_symbol": "LOBO" + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "decimals": 18, + "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.axl" }, { - "denom": "ibc/8B4B5C22A96B068AB7F49A3E9DFDBA14B0896476949D5941E51C18CDEDD41630", + "denom": "ibc/DA82691243341B2F9D6631E674A08359E005B7440C1FBCF2DE7A9CF831C1D0DF", "chain_id": "osmosis-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1sthrn5ep8ls5vzz8f9gp89khhmedahhdkqa8z3", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "SOL", - "name": "SOL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/sol.png", - "decimals": 8, - "coingecko_id": "solana", - "recommended_symbol": "SOL" + "is_svm": false, + "symbol": "USDCso", + "name": "USDCso", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDCso" }, { - "denom": "ibc/92BF104008D75F9E9A602F948C824E75271A62EAB940D381AF7B1A6D95BF6021", + "denom": "ibc/FAF3DD2FCCF5631A60E4F30CC68FBBF980A2FB20FBD2BCFD13EB37E316FCA4A5", "chain_id": "osmosis-1", - "origin_denom": "usdr", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "ccocos", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "SDTC", - "name": "SDTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/sdt.png", - "decimals": 6, - "recommended_symbol": "SDTC" + "is_svm": false, + "symbol": "COCOS", + "name": "COCOS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cocos.png", + "decimals": 18, + "recommended_symbol": "COCOS.sif" }, { - "denom": "ibc/A0CC0CF735BFB30E730C70019D4218A1244FF383503FF7579C9201AB93CA9293", + "denom": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", "chain_id": "osmosis-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-4", + "origin_denom": "yieldeth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", - "decimals": 6, - "description": "The XPRT token is primarily a governance token for the Persistence chain.", - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "is_svm": false, + "symbol": "YieldETH", + "name": "YieldETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", + "decimals": 18, + "description": "Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.", + "coingecko_id": "yieldeth-sommelier", + "recommended_symbol": "YieldETH.axl" }, { - "denom": "ibc/BF55329AEA7E79B0AAB320C41A76AC8B9E4E9E07EEED8643AB57440C0978F402", + "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", "chain_id": "osmosis-1", - "origin_denom": "uidr", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "IDTC", - "name": "IDTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/idt.png", - "decimals": 6, - "recommended_symbol": "IDTC" + "is_svm": false, + "symbol": "WBTC.grv", + "name": "WBTC.grv", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "description": "Gravity Bridge WBTC", + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.grv.grv" }, { "denom": "ibc/BF685448E564B5A4AC8F6E0493A0B979D0E0BF5EC11F7E15D25A0A2160C944DD", @@ -25637,6 +31351,7 @@ "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NEWT", "name": "NEWT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", @@ -25646,420 +31361,463 @@ "recommended_symbol": "NEWT" }, { - "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", + "denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", "chain_id": "osmosis-1", - "origin_denom": "uregen", - "origin_chain_id": "regen-1", - "trace": "transfer/channel-8", + "origin_denom": "uqck", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-522", "is_cw20": false, "is_evm": false, - "symbol": "REGEN", - "name": "REGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", "decimals": 6, - "description": "REGEN coin is the token for the Regen Network Platform", - "coingecko_id": "regen", - "recommended_symbol": "REGEN" + "description": "QCK - native token of Quicksilver", + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" }, { - "denom": "ibc/6B982170CE024689E8DD0E7555B129B488005130D4EDA426733D552D10B36D8F", + "denom": "ibc/D576091DE2A905088C2FFC1514381D29943B30F24D4E9AD9B15F15E6B4EE1026", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1p8x807f6h222ur0vssqy3qk6mcpa40gw2pchquz5atl935t7kvyq894ne3", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/DUVFMY2neJdL8aE4d3stcpttDDm5aoyfGyVvm29iA9Yp", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "MUSE", - "name": "MUSE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/muse.png", + "is_svm": false, + "symbol": "USDCpo", + "name": "USDCpo", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "description": "The native token cw20 for MuseDAO on Juno Chain", - "recommended_symbol": "MUSE" + "coingecko_id": "usd-coin-pos-wormhole", + "recommended_symbol": "USDCpo" }, { - "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", + "denom": "ibc/AB589511ED0DD5FA56171A39978AFBF1371DB986EC1C3526CE138A16377E39BB", "chain_id": "osmosis-1", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "SEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", - "decimals": 6, - "description": "The native staking token of Sei.", - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "is_svm": false, + "symbol": "MATIC", + "name": "MATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "description": "Polygon (formerly Matic) Network brings massive scale to Ethereum using an adapted version of Plasma with PoS based side chains. Polygon is a well-structured, easy-to-use platform for Ethereum scaling and infrastructure development.", + "coingecko_id": "wmatic", + "recommended_symbol": "MATIC.axl" }, { - "denom": "ibc/73ACC8C994C1335BDEE9F473865EE46ED6529D345B1FE8905ED1FD5F2628AADA", + "denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", "chain_id": "osmosis-1", - "origin_denom": "cusd-wei", + "origin_denom": "frax-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "cUSD", - "name": "cUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/celo/asset/cusd.png", + "is_svm": false, + "symbol": "FRAX", + "name": "FRAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", "decimals": 18, - "coingecko_id": "celo-dollar", - "recommended_symbol": "cUSD.axl" + "description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.", + "coingecko_id": "frax", + "recommended_symbol": "FRAX.axl" }, { - "denom": "ibc/52E12CF5CA2BB903D84F5298B4BFD725D66CAB95E09AA4FC75B2904CA5485FEB", + "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1tdjwrqmnztn2j3sj2ln9xnyps5hs48q3ddwjrz7jpv6mskappjys5czd49", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-88", "is_cw20": false, "is_evm": false, - "symbol": "DHK", - "name": "DHK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/dhk.png", - "decimals": 0, - "recommended_symbol": "DHK" + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "description": "The native token of Secret Network", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/6500D6B3F63B7386E9A4EBF39E7D10B99707D2FFA6705A2E2712F7620EBDD1EC", + "denom": "ibc/B3FB7128CE957DE1ADB687A919AA0786C77C62FB1280C07CDD78AEA032D56853", "chain_id": "osmosis-1", - "origin_denom": "cgrt", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "GRT", - "name": "GRT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/grt.png", - "decimals": 18, - "coingecko_id": "the-graph", - "recommended_symbol": "GRT.sif" + "is_svm": false, + "symbol": "BJKS", + "name": "BJKS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png", + "decimals": 6, + "recommended_symbol": "BJKS" }, { - "denom": "ibc/73BB20AF857D1FE6E061D01CA13870872AD0C979497CAF71BEA25B1CBF6879F1", + "denom": "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", "chain_id": "osmosis-1", - "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-874", + "origin_denom": "usdx", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", "is_cw20": false, "is_evm": false, - "symbol": "APOLLO", - "name": "APOLLO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + "is_svm": false, + "symbol": "USDX", + "name": "USDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", "decimals": 6, - "description": "The deflationary utility token of the Apollo DAO project", - "recommended_symbol": "APOLLO" + "description": "The native stablecoin of Kava", + "coingecko_id": "usdx", + "recommended_symbol": "USDX" }, { - "denom": "ibc/7FA7EC64490E3BDE5A1A28CBE73CC0AD22522794957BC891C46321E3A6074DB9", + "denom": "ibc/C491E7582E94AE921F6A029790083CDE1106C28F3F6C4AD7F1340544C13EC372", "chain_id": "osmosis-1", - "origin_denom": "ufrienzies", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-750", + "origin_denom": "stuluna", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "FRNZ", - "name": "FRNZ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "is_svm": false, + "symbol": "stLUNA", + "name": "stLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", "decimals": 6, - "description": "Frienzies are an IBC token redeemable exclusively for a physical asset issued by the Noble entity.", - "recommended_symbol": "FRNZ" + "coingecko_id": "stride-staked-luna", + "recommended_symbol": "stLUNA" }, { - "denom": "ibc/834D0AEF380E2A490E4209DFF2785B8DBB7703118C144AC373699525C65B4223", + "denom": "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", "chain_id": "osmosis-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "origin_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", "origin_chain_id": "migaloo-1", "trace": "transfer/channel-642", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ampWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "is_svm": false, + "symbol": "ASH", + "name": "ASH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", "decimals": 6, - "recommended_symbol": "ampWHALE" + "description": "ASH", + "recommended_symbol": "ASH" }, { - "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", + "denom": "ibc/4BDADBEDA31899036AB286E9901116496A9D85FB87B35A408C9D67C0DCAC660A", "chain_id": "osmosis-1", - "origin_denom": "swth", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-188", + "origin_denom": "cw20:juno14lycavan8gvpjn97aapzvwmsj8kyrvf644p05r0hu79namyj3ens87650k", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "SWTH", - "name": "SWTH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "decimals": 8, - "description": "The native governance token of Carbon", - "coingecko_id": "switcheo", - "recommended_symbol": "SWTH" + "is_svm": false, + "symbol": "SGNL", + "name": "SGNL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sgnl.png", + "decimals": 6, + "description": "Signal Art and Gaming on Juno", + "recommended_symbol": "SGNL" }, { - "denom": "ibc/95608E3B5D8E5C31EE272E09A04AB8E6638A858F564E5B8F5A5C05CEFC33B434", + "denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", "chain_id": "osmosis-1", - "origin_denom": "uhkd", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "HKTC", - "name": "HKTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/hkt.png", + "is_svm": false, + "symbol": "KLEO", + "name": "KLEO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png", "decimals": 6, - "recommended_symbol": "HKTC" + "description": "Kleomedes Token", + "recommended_symbol": "KLEO" }, { - "denom": "ibc/DF5927A3502279A66D9B6CB764832F87D6B9347DC6E60E4C8405D648B2E823F9", + "denom": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", "chain_id": "osmosis-1", - "origin_denom": "bnb", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "origin_denom": "unym", + "origin_chain_id": "nyx", + "trace": "transfer/channel-15464", "is_cw20": false, "is_evm": false, - "symbol": "BNB", - "name": "BNB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/bnb.png", - "decimals": 8, - "coingecko_id": "binancecoin", - "recommended_symbol": "BNB" + "is_svm": false, + "symbol": "NYM", + "name": "NYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", + "decimals": 6, + "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", + "coingecko_id": "nym", + "recommended_symbol": "NYM" }, { - "denom": "ibc/B39116ED5DA87C0DD8E959A9D0DFF5B4E38608669528A20DEFF29D7447B6087B", + "denom": "ibc/1570B676D4F35BACD92F470C01E4FD7B19CA7B8D62DA974A76A59079CEE338E3", "chain_id": "osmosis-1", - "origin_denom": "usdc.1.2.343151", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-188", + "origin_denom": "factory/chihuahua17dgp6rf7wlhyaxth0j20h33zdv6nqat8xfezvy/Spitz", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "SPITZ", + "name": "SPITZ", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/chihuahua/asset/spitz.png", "decimals": 6, - "recommended_symbol": "USDC.carbon" + "recommended_symbol": "SPITZ" }, { - "denom": "ibc/B5DC1A7CE12BE59030297ABAFF0B533BDC597B42E983C187C439C0C033F51B24", + "denom": "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", "chain_id": "osmosis-1", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-259", + "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "FUZN", - "name": "FUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", + "is_svm": false, + "symbol": "AUTISM", + "name": "AUTISM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", "decimals": 6, - "recommended_symbol": "FUZN" + "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", + "coingecko_id": "autism", + "recommended_symbol": "AUTISM" }, { - "denom": "ibc/BADB06C54ADD5BC4C8B74982F961CB0287BAE326E799FCD8D03387EB8BB7D550", + "denom": "ibc/9F9B07EF9AD291167CF5700628145DE1DEB777C2CFC7907553B24446515F6D0E", "chain_id": "osmosis-1", - "origin_denom": "udoki", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-20925", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "DOKI", - "name": "DOKI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/doki_Logo.png", + "is_svm": false, + "symbol": "USDC.grv", + "name": "USDC.grv", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "recommended_symbol": "DOKI" + "description": "Gravity Bridge USDC", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv.grv" }, { - "denom": "ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E", + "denom": "ibc/CE5BFF1D9BADA03BB5CCA5F56939392A761B53A10FBD03B37506669C3218D3B2", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-341", + "origin_denom": "nhash", + "origin_chain_id": "pio-mainnet-1", + "trace": "transfer/channel-222", "is_cw20": false, "is_evm": false, - "symbol": "BLUE", - "name": "BLUE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", - "decimals": 6, - "description": "BLUE CUB DAO is a community DAO on Terra", - "recommended_symbol": "BLUE" + "is_svm": false, + "symbol": "HASH", + "name": "HASH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", + "decimals": 9, + "description": "Hash is the staking token of the Provenance Blockchain", + "coingecko_id": "provenance-blockchain", + "recommended_symbol": "HASH" }, { - "denom": "ibc/E4FFAACCDB7D55CE2D257DF637C00158CB841F11D0013B2D03E31FF7800A2C58", + "denom": "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", "chain_id": "osmosis-1", - "origin_denom": "ft387C1C279D962ED80C09C1D592A92C4275FD7C5D", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "N43", - "name": "N43", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft387C1C279D962ED80C09C1D592A92C4275FD7C5D.png", + "is_svm": false, + "symbol": "CIRCUS", + "name": "CIRCUS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", "decimals": 6, - "recommended_symbol": "N43" + "description": "clownmaxxed store of value", + "recommended_symbol": "CIRCUS" }, { - "denom": "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", + "denom": "ibc/B9A1B8C537238AA84320258F3BEF37B0E4C9378DDD431661C21D20C6CD4AF0E3", "chain_id": "osmosis-1", - "origin_denom": "uqsomm", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-522", + "origin_denom": "factory/neutron133xakkrfksq39wxy575unve2nyehg5npx75nph/MOO", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "qSOMM", - "name": "qSOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", + "is_svm": false, + "symbol": "MOO", + "name": "MOO", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/MOO.png", "decimals": 6, - "description": "Quicksilver Liquid Staked SOMM", - "recommended_symbol": "qSOMM" + "recommended_symbol": "MOO" }, { - "denom": "ibc/13EED12E8F9D922CD593302BDEC0154C58EDA4DBB8DF723F3BBFD0476BA3D988", + "denom": "ibc/1E43D59E565D41FB4E54CA639B838FFD5BCFC20003D330A56CB1396231AA1CBA", "chain_id": "osmosis-1", - "origin_denom": "cbal", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "BAL", - "name": "BAL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bal.png", - "decimals": 18, - "coingecko_id": "balancer", - "recommended_symbol": "BAL.sif" + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "decimals": 8, + "description": "Solana (SOL) is the native asset of the Solana blockchain.", + "coingecko_id": "solana", + "recommended_symbol": "SOL.wh" }, { - "denom": "ibc/1430C4E214AEDDF2DDA6A41E4FA33A51A60E1E0012293F0DCB1E2B66935E5994", + "denom": "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1uu3rxu7w7fpfj4sl4xpxppgymk57mzdzn6kg7492jdxh5dwk7d2qq9429e", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "TREE", - "name": "TREE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/livingtree.png", + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", "decimals": 6, - "recommended_symbol": "TREE" + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" }, { - "denom": "ibc/156AAF60BB330F06D4DB515FEA6D3D14A5379C2201C79A73AE242CC27591246C", + "denom": "ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835", "chain_id": "osmosis-1", - "origin_denom": "cusdt", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "CATMOS", + "name": "CATMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.sif" + "description": "Catmos", + "recommended_symbol": "CATMOS" }, { - "denom": "ibc/1570B676D4F35BACD92F470C01E4FD7B19CA7B8D62DA974A76A59079CEE338E3", + "denom": "ibc/A34E137CEB4F379E0808F729814FA3EAB99C6C2CE21C48C4FB6463ABF95B6408", "chain_id": "osmosis-1", - "origin_denom": "factory/chihuahua17dgp6rf7wlhyaxth0j20h33zdv6nqat8xfezvy/Spitz", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-113", + "origin_denom": "cdnxc", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "SPITZ", - "name": "SPITZ", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/chihuahua/asset/spitz.png", - "decimals": 6, - "recommended_symbol": "SPITZ" + "is_svm": false, + "symbol": "DNXC", + "name": "DNXC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dnxc.png", + "decimals": 18, + "coingecko_id": "dinox", + "recommended_symbol": "DNXC.sif" }, { - "denom": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", + "denom": "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", "chain_id": "osmosis-1", - "origin_denom": "shib-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "is_svm": false, + "symbol": "PAXG.grv", + "name": "PAXG.grv", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/paxg.png", "decimals": 18, - "description": "SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.", - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" + "description": "Gravity Bridge Paxos Gold", + "coingecko_id": "pax-gold", + "recommended_symbol": "PAXG.grv.grv" }, { - "denom": "ibc/23CA6C8D1AB2145DD13EB1E089A2E3F960DC298B468CCE034E19E5A78B61136E", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "chain_id": "osmosis-1", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-87", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "description": "Stable Token of Harbor protocol on Comdex network", - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/24974672B990F73622F6D0000B00B5BFCF56BD864FA9459CDD7C1B58A6139BCC", + "denom": "ibc/1F6175290F87534F4F196FA8F82B0123BED1775CB14FA3F1EDEB8984E98C60FC", "chain_id": "osmosis-1", - "origin_denom": "clink", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/link.png", - "decimals": 18, - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.sif" + "is_svm": false, + "symbol": "TALIS", + "name": "TALIS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/talis.png", + "decimals": 6, + "coingecko_id": "talis-protocol", + "recommended_symbol": "TALIS" }, { - "denom": "ibc/2E4ECFFBCDD77D42E6A1DD2D866C11FECCD4EB65B695253A610F2882B654731F", + "denom": "ibc/8A025A1E70101E39DE0C0F153E582A30806D3DA16795F6D868A3AA247D2DEDF7", "chain_id": "osmosis-1", - "origin_denom": "unok", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "cw20:secret1fl449muk5yq8dlad7a22nje4p5d2pnsgymhjfd", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-476", "is_cw20": false, "is_evm": false, - "symbol": "NOTC", - "name": "NOTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/not.png", + "is_svm": false, + "symbol": "SILK", + "name": "SILK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/silk.png", "decimals": 6, - "recommended_symbol": "NOTC" + "description": "The native token cw20 for Silk on Secret Network", + "coingecko_id": "silk-bcec1136-561c-4706-a42c-8b67d0d7f7d2", + "recommended_symbol": "SILK" }, { - "denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", + "denom": "ibc/156AAF60BB330F06D4DB515FEA6D3D14A5379C2201C79A73AE242CC27591246C", "chain_id": "osmosis-1", - "origin_denom": "uqregen", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-522", + "origin_denom": "cusdt", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "qREGEN", - "name": "qREGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "description": "Quicksilver Liquid Staked REGEN", - "recommended_symbol": "qREGEN" + "coingecko_id": "tether", + "recommended_symbol": "USDT.sif" }, { - "denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", + "denom": "ibc/62F82550D0B96522361C89B0DA1119DE262FBDFB25E5502BC5101B5C0D0DBAAC", "chain_id": "osmosis-1", - "origin_denom": "uctk", - "origin_chain_id": "shentu-2.2", - "trace": "transfer/channel-146", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "CTK", - "name": "CTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", - "decimals": 6, - "description": "The native token of Shentu", - "coingecko_id": "certik", - "recommended_symbol": "CTK" + "is_svm": false, + "symbol": "wETH.wh", + "name": "wETH.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "decimals": 8, + "description": "Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "coingecko_id": "weth", + "recommended_symbol": "wETH.wh" }, { "denom": "ibc/81F578C39006EB4B27FFFA9460954527910D73390991B379C03B18934D272F46", @@ -26069,6 +31827,7 @@ "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "sfrxETH", "name": "sfrxETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", @@ -26078,611 +31837,688 @@ "recommended_symbol": "sfrxETH.axl" }, { - "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC" - }, - { - "denom": "ibc/8F018FF2E2FDC4596BEFA2DDC38AAFF5487CCFBE10B5F31E83F6193B144AAFA2", + "denom": "ibc/D9FCD4244CA221F5D5236E31CB13F6E547826526AFDF7084462F47F2173AE5F1", "chain_id": "osmosis-1", - "origin_denom": "cquick", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "factory/inj1xy3kvlr4q4wdd6lrelsrw2fk2ged0any44hhwq/KIRA", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "QUICK", - "name": "QUICK", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/quick.png", - "decimals": 18, - "coingecko_id": "quick", - "recommended_symbol": "QUICK.sif" + "is_svm": false, + "symbol": "KIRA", + "name": "KIRA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/kira.png", + "decimals": 6, + "coingecko_id": "kira-the-injective-cat", + "recommended_symbol": "KIRA" }, { - "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", + "denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", "chain_id": "osmosis-1", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-320", + "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-204", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", - "decimals": 6, - "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "is_svm": false, + "symbol": "NEOK", + "name": "NEOK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", + "decimals": 18, + "description": "The token of Neokingdom DAO.", + "recommended_symbol": "NEOK" }, { - "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "denom": "ibc/5601083E2B77E3A01DEB4F64D033AE80A774F1327BC79524F34FB753E68ABEC5", "chain_id": "osmosis-1", - "origin_denom": "udvpn", - "origin_chain_id": "sentinelhub-2", - "trace": "transfer/channel-2", + "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "DVPN", - "name": "DVPN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", + "is_svm": false, + "symbol": "PLNK", + "name": "PLNK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", "decimals": 6, - "description": "DVPN is the native token of the Sentinel Hub.", - "coingecko_id": "sentinel", - "recommended_symbol": "DVPN" + "recommended_symbol": "PLNK" }, { - "denom": "ibc/A5CCD24BA902843B1003A7EEE5F937C632808B9CF4925601241B15C5A0A51A53", + "denom": "ibc/6A8A4CB26590C4CAB7AF75F9621C4DF3294E7228A68FE7CEA47214127E5626C4", "chain_id": "osmosis-1", - "origin_denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "cbnt", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "PAXG", - "name": "PAXG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/paxg.png", + "is_svm": false, + "symbol": "BNT", + "name": "BNT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bnt.png", "decimals": 18, - "coingecko_id": "pax-gold", - "recommended_symbol": "PAXG.grv" + "coingecko_id": "bancor", + "recommended_symbol": "BNT.sif" }, { - "denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", + "denom": "ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E", "chain_id": "osmosis-1", - "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-75", + "origin_denom": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "STRDST", - "name": "STRDST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", + "is_svm": false, + "symbol": "SKOJ", + "name": "SKOJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png", "decimals": 6, - "description": "The native token of ohhNFT.", - "recommended_symbol": "STRDST" + "description": "Sikoba Governance Token", + "recommended_symbol": "SKOJ" }, { - "denom": "ibc/E610B83FD5544E00A8A1967A2EB3BEF25F1A8CFE8650FE247A8BD4ECA9DC9222", + "denom": "ibc/8A34AF0C1943FD0DFCDE9ADBF0B2C9959C45E87E6088EA2FC6ADACD59261B8A2", "chain_id": "osmosis-1", - "origin_denom": "reth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "ulum", + "origin_chain_id": "lum-network-1", + "trace": "transfer/channel-115", "is_cw20": false, "is_evm": false, - "symbol": "rETH", - "name": "rETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", - "decimals": 18, - "description": "Rocket Pool is a decentralised Ethereum Proof of Stake pool.", - "coingecko_id": "rocket-pool-eth", - "recommended_symbol": "rETH.axl" + "is_svm": false, + "symbol": "LUM", + "name": "LUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", + "decimals": 6, + "description": "Native token of the Lum Network", + "coingecko_id": "lum-network", + "recommended_symbol": "LUM" }, { - "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", + "denom": "ibc/B538674E3091987E4AABF264899829CBB209EB5EFF89500213F5335F1BCED307", "chain_id": "osmosis-1", - "origin_denom": "unois", - "origin_chain_id": "nois-1", - "trace": "transfer/channel-8277", + "origin_denom": "cusdc", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "NOIS", - "name": "NOIS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "description": "The native token of Nois", - "recommended_symbol": "NOIS" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.sif" }, { - "denom": "ibc/AF5CF6B225B1C03E7F9C2A1AE80CB3BED4E2E7D7F79D5B85679EC2E6925C7289", + "denom": "ibc/C140AFD542AE77BD7DCC83F13FDD8C5E5BB8C4929785E6EC2F4C636F98F17901", "chain_id": "osmosis-1", - "origin_denom": "uaud", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "AUTC", - "name": "AUTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/aut.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "recommended_symbol": "AUTC" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/CB10783FD6E5CB6155E6CA0B1558061874EEE85291DD4306D1C0B2724E361EC5", + "denom": "ibc/0B3C3D06228578334B66B57FBFBA4033216CEB8119B27ACDEE18D92DA5B28D43", "chain_id": "osmosis-1", - "origin_denom": "stucmdx", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "stCMDX", - "name": "stCMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "is_svm": false, + "symbol": "avalanche.USDC.wh", + "name": "avalanche.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "recommended_symbol": "stCMDX" + "description": "Avalanche USD Coin (Wormhole), Avalanche USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "recommended_symbol": "avalanche.USDC.wh" }, { - "denom": "ibc/CBA34207E969623D95D057D9B11B0C8B32B89A71F170577D982FDDE623813FFC", + "denom": "ibc/9E6DDA08C9342179EF10BCB1573704535A4E6B8D9959A20E998232DB1F1B5170", "chain_id": "osmosis-1", - "origin_denom": "umntl", - "origin_chain_id": "mantle-1", - "trace": "transfer/channel-232", + "origin_denom": "factory/inj18nm3q7r2rckklp7h8hgfzu2dlc20sftvd2893w/nUSD", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "MNTL", - "name": "MNTL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/mntl.png", - "decimals": 6, - "description": "The native token of Asset Mantle", - "coingecko_id": "assetmantle", - "recommended_symbol": "MNTL" + "is_svm": false, + "symbol": "nUSD", + "name": "nUSD", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/nUSD.png", + "decimals": 18, + "recommended_symbol": "nUSD" }, { - "denom": "ibc/D3327A763C23F01EC43D1F0DB3CEFEC390C362569B6FD191F40A5192F8960049", + "denom": "ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE", "chain_id": "osmosis-1", - "origin_denom": "link-wei", + "origin_denom": "aave-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/link.png", + "is_svm": false, + "symbol": "AAVE", + "name": "AAVE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg", "decimals": 18, - "description": "A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.", - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.axl" + "description": "Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.", + "coingecko_id": "aave", + "recommended_symbol": "AAVE.axl" }, { - "denom": "ibc/E750D31033DC1CF4A044C3AA0A8117401316DC918FBEBC4E3D34F91B09D5F54C", + "denom": "ibc/E4CD61E1FA3EB04EF1BF924D676AB9FD55E84A0DCF4E78C11CCA0E14E5B42672", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1qmlchtmjpvu0cr7u0tad2pq8838h6farrrjzp39eqa9xswg7teussrswlq", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "NRIDE", - "name": "NRIDE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nride.png", - "decimals": 6, - "description": "nRide Token", - "recommended_symbol": "NRIDE" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.wh" }, { - "denom": "ibc/E867271A6D9BB3D1AE7DF8E4BFB32744F990CA6C981D1BB816F9F8B5441D6B59", + "denom": "ibc/3CB43B244957F7CB0A8C0C7F81ADEA524A2AC57E48716B6F8F781286D96830D2", "chain_id": "osmosis-1", - "origin_denom": "cband", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "Band", - "name": "Band", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/band.png", - "decimals": 18, - "coingecko_id": "band-protocol", - "recommended_symbol": "Band.sif" + "is_svm": false, + "symbol": "ampLUNA", + "name": "ampLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg", + "decimals": 6, + "coingecko_id": "eris-amplified-luna", + "recommended_symbol": "ampLUNA" }, { - "denom": "ibc/46AC07DBFF1352EC94AF5BD4D23740D92D9803A6B41F6E213E77F3A1143FB963", + "denom": "ibc/EAF76AD1EEF7B16D167D87711FB26ABE881AC7D9F7E6D0CF313D5FA530417208", "chain_id": "osmosis-1", - "origin_denom": "cw20:chihuahua1yl8z39ugle8s02fpwkhh293509q5xcpalmdzc4amvchz8nkexrmsy95gef", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-11348", + "origin_denom": "uqsomm", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-522", "is_cw20": false, "is_evm": false, - "symbol": "PUPPY", - "name": "PUPPY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/puppyhuahua_logo.png", + "is_svm": false, + "symbol": "qSOMM", + "name": "qSOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", "decimals": 6, - "description": "Puppy", - "recommended_symbol": "PUPPY" + "description": "Quicksilver Liquid Staked SOMM", + "recommended_symbol": "qSOMM" }, { - "denom": "ibc/1370B7C0100924E0310D7A9F71701109F86CF2A7E13B86A1D3B425E618167DBF", + "denom": "ibc/6928AFA9EA721938FED13B051F9DBF1272B16393D20C49EA5E4901BB76D94A90", "chain_id": "osmosis-1", - "origin_denom": "uthb", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "unois", + "origin_chain_id": "nois-1", + "trace": "transfer/channel-8277", "is_cw20": false, "is_evm": false, - "symbol": "THTC", - "name": "THTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/tht.png", + "is_svm": false, + "symbol": "NOIS", + "name": "NOIS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", "decimals": 6, - "recommended_symbol": "THTC" + "description": "The native token of Nois", + "recommended_symbol": "NOIS" }, { - "denom": "ibc/F4A070A6D78496D53127EA85C094A9EC87DFC1F36071B8CCDDBD020F933D213D", + "denom": "ibc/73ACC8C994C1335BDEE9F473865EE46ED6529D345B1FE8905ED1FD5F2628AADA", "chain_id": "osmosis-1", - "origin_denom": "wbnb-wei", + "origin_denom": "cusd-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "BNB", - "name": "BNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "is_svm": false, + "symbol": "cUSD", + "name": "cUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/celo/asset/cusd.png", "decimals": 18, - "description": "BNB powers the BNB Chain ecosystem and is the native coin of the BNB Beacon Chain and BNB Smart Chain.", - "coingecko_id": "binancecoin", - "recommended_symbol": "BNB.axl" + "coingecko_id": "celo-dollar", + "recommended_symbol": "cUSD.axl" }, { - "denom": "ibc/F4A07138CAEF0BFB4889E03C44C57956A48631061F1C8AB80421C1F229C1B835", + "denom": "ibc/DF5927A3502279A66D9B6CB764832F87D6B9347DC6E60E4C8405D648B2E823F9", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1f5datjdse3mdgrapwuzs3prl7pvxxht48ns6calnn0t77v2s9l8s0qu488", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "bnb", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", "is_cw20": false, "is_evm": false, - "symbol": "CATMOS", - "name": "CATMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/catmos.png", - "decimals": 6, - "description": "Catmos", - "recommended_symbol": "CATMOS" + "is_svm": false, + "symbol": "BNB", + "name": "BNB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/bnb.png", + "decimals": 8, + "coingecko_id": "binancecoin", + "recommended_symbol": "BNB" }, { - "denom": "ibc/FBB3FEF80ED2344D821D4F95C31DBFD33E4E31D5324CAD94EF756E67B749F668", + "denom": "ibc/CD20AC50CE57F1CF2EA680D7D47733DA9213641D2D116C5806A880F508609A7A", "chain_id": "osmosis-1", - "origin_denom": "yieldeth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "nanomobx", + "origin_chain_id": "fetchhub-4", + "trace": "transfer/channel-229", "is_cw20": false, "is_evm": false, - "symbol": "YieldETH", - "name": "YieldETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/yieldeth.png", - "decimals": 18, - "description": "Maximize ETH yield through leveraged staking across Aave, Compound and Morpho and liquidity provision of ETH liquid staking tokens on Uniswap V3.", - "coingecko_id": "yieldeth-sommelier", - "recommended_symbol": "YieldETH.axl" + "is_svm": false, + "symbol": "MOBX", + "name": "MOBX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/mobx.png", + "decimals": 9, + "coingecko_id": "mobix", + "recommended_symbol": "MOBX" }, { - "denom": "ibc/1F6175290F87534F4F196FA8F82B0123BED1775CB14FA3F1EDEB8984E98C60FC", + "denom": "ibc/DA961FE314B009C38595FFE3AF41225D8894D663B8C3F6650DCB5B6F8435592E", "chain_id": "osmosis-1", - "origin_denom": "factory/inj1maeyvxfamtn8lfyxpjca8kuvauuf2qeu6gtxm3/Talis", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "cw20:terra1gwrz9xzhqsygyr5asrgyq3pu0ewpn00mv2zenu86yvx2nlwpe8lqppv584", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "TALIS", - "name": "TALIS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/injective/asset/talis.png", + "is_svm": false, + "symbol": "BLUE", + "name": "BLUE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/blue.png", "decimals": 6, - "coingecko_id": "talis-protocol", - "recommended_symbol": "TALIS" + "description": "BLUE CUB DAO is a community DAO on Terra", + "recommended_symbol": "BLUE" }, { - "denom": "ibc/98B3DBF1FA79C4C14CC5F08F62ACD5498560FCB515F677526FD200D54EA048B6", + "denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", "chain_id": "osmosis-1", - "origin_denom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "factory/osmo1nr8zfakf6jauye3uqa9lrmr5xumee5n42lv92z/toro", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OIN", - "name": "OIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png", + "is_svm": false, + "symbol": "TORO", + "name": "TORO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/toro.png", "decimals": 6, - "description": "OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.", - "recommended_symbol": "OIN" + "description": "The memecoin built for the Celestia community", + "recommended_symbol": "TORO" }, { - "denom": "ibc/FD4CB2BCFBE3983D4EC289515F835406574287B7CBF3D85F516BC7014952E2EF", + "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", "chain_id": "osmosis-1", - "origin_denom": "cdai", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "dai-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DAI", "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dai.png", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", "decimals": 18, + "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", "coingecko_id": "dai", - "recommended_symbol": "DAI.sif" + "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/EA1D43981D5C9A1C4AAEA9C23BB1D4FA126BA9BC7020A25E0AE4AA841EA25DC5", + "denom": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", "chain_id": "osmosis-1", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "mO9W", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-258", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "O9W", + "name": "O9W", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", + "decimals": 6, + "description": "O9W token for ODIN Protocol", + "recommended_symbol": "O9W" + }, + { + "denom": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", + "chain_id": "osmosis-1", + "origin_denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "injective.GLTO", + "name": "injective.GLTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", + "decimals": 6, + "description": "GLTO-ERC20 on injective", + "recommended_symbol": "injective.GLTO.peggy" + }, + { + "denom": "ibc/0824A92510C1CE67BF02944854A5D7C7F392DF111045B4551ADDF7EFFEA05A32", + "chain_id": "osmosis-1", + "origin_denom": "eth.1.2.942d87", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-188", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ETH", "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", "decimals": 18, - "description": "Ethereum (ETH) is a decentralized, open-source blockchain system featuring smart contract functionality. It's the native cryptocurrency of the Ethereum platform, often regarded as the second most popular digital currency after Bitcoin. Ethereum was proposed in late 2013 and development was crowdfunded in 2014, leading to its network going live on 30 July 2015.\n\nETH, as a digital currency, is used for a variety of purposes within the Ethereum ecosystem, including the execution of decentralized smart contracts and as a mode of payment. Unlike Bitcoin, Ethereum was designed to be a platform for applications that can operate without the need for intermediaries, using blockchain technology. This has made Ethereum a leading platform for various applications, including decentralized finance (DeFi), non-fungible tokens (NFTs), and more. Ethereum is constantly evolving, with a significant upgrade termed Ethereum 2.0, which aims to improve its scalability, security, and sustainability.", - "coingecko_id": "axlweth", - "recommended_symbol": "ETH.axl" + "recommended_symbol": "ETH.carbon" }, { - "denom": "ibc/FA602364BEC305A696CBDF987058E99D8B479F0318E47314C49173E8838C5BAC", + "denom": "ibc/43E2B0BB9753B6090023055F150B6EB56DBC8A84338F2560E520D7A18DDBF812", "chain_id": "osmosis-1", - "origin_denom": "uqatom", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-522", + "origin_denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-42", "is_cw20": false, "is_evm": false, - "symbol": "qATOM", - "name": "qATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "is_svm": false, + "symbol": "wind", + "name": "wind", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/juno/asset/wind.png", "decimals": 6, - "description": "Quicksilver Liquid Staked ATOM", - "recommended_symbol": "qATOM" + "recommended_symbol": "wind" }, { - "denom": "ibc/30E4399A40BD81F4F8B3AA34364A48EAC85675A53BE4DF0AC55EBE34D4310148", + "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", "chain_id": "osmosis-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1tjcf9497fwmrnk22jfu5hsdq82qshga54ajvzy", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PYTH", - "name": "PYTH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/solana/asset/pyth.png", + "is_svm": false, + "symbol": "IBCX", + "name": "IBCX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", "decimals": 6, - "coingecko_id": "pyth-network", - "recommended_symbol": "PYTH" + "coingecko_id": "ibc-index", + "recommended_symbol": "IBCX" }, { - "denom": "ibc/E6931F78057F7CC5DA0FD6CEF82FF39373A6E0452BF1FD76910B93292CF356C1", + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", "chain_id": "osmosis-1", - "origin_denom": "basecro", - "origin_chain_id": "crypto-org-chain-mainnet-1", - "trace": "transfer/channel-5", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", - "decimals": 8, - "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO" + "is_svm": false, + "symbol": "sqOSMO", + "name": "sqOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "decimals": 6, + "description": "Margined Power Token sqOSMO", + "recommended_symbol": "sqOSMO" }, { - "denom": "ibc/79DB2F9D2525460B6EB75ECFB8EAE0EC7986172FDF29E66E0AE5C452D1242D79", + "denom": "ibc/831F0B1BBB1D08A2B75311892876D71565478C532967545476DF4C2D7492E48C", "chain_id": "osmosis-1", - "origin_denom": "cbond", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-6787", "is_cw20": false, "is_evm": false, - "symbol": "BOND", - "name": "BOND", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bond.png", + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", "decimals": 18, - "coingecko_id": "barnbridge", - "recommended_symbol": "BOND.sif" + "description": "The native staking token of dYdX Protocol.", + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" }, { - "denom": "ibc/77E312EB2745B8347FC83DD303B6B11858A553F35F293F15EFA656DBC7F29126", + "denom": "ibc/7A496DB7C2277D4B74EC4428DDB5AC8A62816FBD0DEBE1CFE094935D746BE19C", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1ynvsz80w9xmhdxucv96gkwpxlwvjgsq75xh2f3pf825c4wfmkfxskq6pqv", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-341", + "origin_denom": "cw20:juno1dyyf7pxeassxvftf570krv7fdf5r8e4r04mp99h0mllsqzp3rs4q7y8yqg", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "GEM", - "name": "GEM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/gem.png", + "is_svm": false, + "symbol": "SPACER", + "name": "SPACER", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/spacer.png", "decimals": 6, - "recommended_symbol": "GEM" + "description": "Spacer", + "recommended_symbol": "SPACER" }, { - "denom": "ibc/EA3E1640F9B1532AB129A571203A0B9F789A7F14BB66E350DCBFA18E1A1931F0", + "denom": "ibc/706C7109561F500AF00C06D45790E824D70060FDFC3835E360312691786119DC", "chain_id": "osmosis-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-87", + "origin_denom": "factory/neutron1fjn0vr4dma5crx2rctv6vmfwxx0v0vrdk50l3p/TakumiProp16JunoWhaleInu", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "PROP16", + "name": "TakumiProp16JunoWhaleInu", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/prop16.png", "decimals": 6, - "description": "Native Token of Comdex Protocol", - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "recommended_symbol": "PROP16" }, { - "denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", + "denom": "ibc/723134C962D78FC0E35610DB6D6A19B5B791D04FE8F4154E4AAB7BDAB28DBB45", "chain_id": "osmosis-1", - "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "origin_denom": "gravity0x83F20F44975D03b1b09e64809B757c47f942BEeA", "origin_chain_id": "gravity-bridge-3", "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "PAGE", - "name": "PAGE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", - "decimals": 8, - "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", - "coingecko_id": "page", - "recommended_symbol": "PAGE.grv" + "is_svm": false, + "symbol": "sDAI", + "name": "sDAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sdai.png", + "decimals": 18, + "recommended_symbol": "sDAI.grv" + }, + { + "denom": "ibc/5CF826D4A1C654B63F5025923AEBE56BD5710BD56E743FBDB9B338D0DD444077", + "chain_id": "osmosis-1", + "origin_denom": "erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09", + "origin_chain_id": "planq_7070-2", + "trace": "transfer/channel-492", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SRCX", + "name": "SRCX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png", + "decimals": 9, + "recommended_symbol": "SRCX" + }, + { + "denom": "ibc/613BF0BF2F2146AE9941E923725745E931676B2C14E9768CD609FA0849B2AE13", + "chain_id": "osmosis-1", + "origin_denom": "ukyve", + "origin_chain_id": "kyve-1", + "trace": "transfer/channel-767", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "KYVE", + "name": "KYVE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve-token.png", + "decimals": 6, + "description": "The native utility token of the KYVE network.", + "coingecko_id": "kyve-network", + "recommended_symbol": "KYVE" }, { - "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", + "denom": "ibc/7CE5F388D661D82A0774E47B5129DA51CC7129BD1A70B5FA6BCEBB5B0A2FAEAF", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", + "origin_denom": "cw20:juno1cltgm8v842gu54srmejewghnd6uqa26lzkpa635wzra9m9xuudkqa2gtcz", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "NETA", - "name": "NETA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png", + "is_svm": false, + "symbol": "FURY.legacy", + "name": "FURY.legacy", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fanfury.png", "decimals": 6, - "description": "The native token cw20 for Neta on Juno Chain", - "coingecko_id": "neta", - "recommended_symbol": "NETA" + "description": "The native token cw20 for Fanfury on Juno Chain", + "coingecko_id": "fanfury", + "recommended_symbol": "FURY.legacy" }, { - "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", + "denom": "ibc/FC078DDBEF8E5ADC597C0C1C858774CEB9D0CFEDBFD918967EDFB3AA2019A4E3", "chain_id": "osmosis-1", - "origin_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-113", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/4tLQqCLaoKKfNFuPjA9o39YbKUwhR1F8N29Tz3hEbfP2", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "BADDOG", - "name": "BADDOG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", - "decimals": 6, - "description": "has a hat", - "recommended_symbol": "BADDOG" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", + "decimals": 8, + "coingecko_id": "weth", + "recommended_symbol": "WETH" }, { - "denom": "ibc/423967B46B1A51D78619085105B04FCFA14F7CBC0BE7539A316B2DCDFC7D8C07", + "denom": "ibc/53B651EDCF2C113AAE9E4CFDA6C440D6A97C6CCDB9C0AC22C52DCDC88B4984FD", "chain_id": "osmosis-1", - "origin_denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "FASANO", - "name": "FASANO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png", + "is_svm": false, + "symbol": "GAZE", + "name": "GAZE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png", "decimals": 6, - "recommended_symbol": "FASANO" + "recommended_symbol": "GAZE" }, { - "denom": "ibc/4976049456D261659D0EC499CC9C2391D3C7D1128A0B9FB0BBF2842D1B2BC7BC", + "denom": "ibc/D547E4A49B10339061E0BB6B35A939C5C6609595B520447FA0CAA6FBD63CEDC2", "chain_id": "osmosis-1", - "origin_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-642", + "origin_denom": "cw20:juno17703kcxtsg37hryxnestejyyycuv5yyvnghp2e7w0kqvafnnyetsgzq62w", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "ASH", - "name": "ASH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", + "is_svm": false, + "symbol": "SUNSET", + "name": "SUNSET", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sunset.png", "decimals": 6, - "description": "ASH", - "recommended_symbol": "ASH" + "recommended_symbol": "SUNSET" }, { - "denom": "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", + "denom": "ibc/D1DD525F3226643940897A170DFDFC3727F5C4C43131C4D91EEF7D0E93F102B7", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-341", + "origin_denom": "factory/neutron1shu8ygztjpwppfa454c4a74e49erfyus0y432q/YAWP", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "BMOS", - "name": "BMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", + "is_svm": false, + "symbol": "YAWP", + "name": "YAWP", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/YAWP.svg", "decimals": 6, - "recommended_symbol": "BMOS" + "recommended_symbol": "YAWP" }, { - "denom": "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", + "denom": "ibc/89F8552EA97BEDCFFD86888CDDE58F262FAB2A4B0A7CA31CE818E0D4387B683A", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "peggy0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "SLCA", - "name": "SLCA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png", - "decimals": 6, - "description": "Silica", - "recommended_symbol": "SLCA" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", + "decimals": 18, + "coingecko_id": "weth", + "recommended_symbol": "WETH.peggy" }, { - "denom": "ibc/71066B030D8FC6479E638580E1BA9C44925E8C1F6E45036669D22017CFDC8C5E", + "denom": "ibc/2EA157848DDD59E3D751740604987A03002E42A06D6E6C23EAF78F32134201C8", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1qqwf3lkfjhp77yja7gmg3y95pda0e5xctqrdhf3wvwdd79flagvqfgrgxp", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "umyrk", + "origin_chain_id": "odin-mainnet-freya", + "trace": "transfer/channel-20925", "is_cw20": false, "is_evm": false, - "symbol": "SKOJ", - "name": "SKOJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sikoba.png", + "is_svm": false, + "symbol": "MYRK", + "name": "MYRK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/MYRK_Logo.png", "decimals": 6, - "description": "Sikoba Governance Token", - "recommended_symbol": "SKOJ" + "recommended_symbol": "MYRK" }, { - "denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", + "denom": "ibc/56D7C03B8F6A07AD322EEE1BEF3AE996E09D1C1E34C27CF37E0D4A0AC5972516", "chain_id": "osmosis-1", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-1279", "is_cw20": false, "is_evm": false, - "symbol": "USDT.grv", - "name": "USDT.grv", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "decimals": 6, - "description": "Gravity Bridge USDT", - "coingecko_id": "tether", - "recommended_symbol": "USDT.grv.grv" + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "description": "The native staking and governance token of Composable.", + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { - "denom": "ibc/93B9AA28AF48E1601399BA808B09A3EE59299B48D70A1E1BCD04D9DB84E246F3", + "denom": "ibc/447A0DCE83691056289503DDAB8EB08E52E167A73629F2ACC59F056B92F51CE8", "chain_id": "osmosis-1", - "origin_denom": "utwd", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "cw20:juno1x5qt47rw84c4k6xvvywtrd40p8gxjt8wnmlahlqg07qevah3f8lqwxfs7z", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "TWTC", - "name": "TWTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/twt.png", + "is_svm": false, + "symbol": "SHIBAC", + "name": "SHIBAC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/shibacosmos.png", "decimals": 6, - "recommended_symbol": "TWTC" + "description": "Shiba Cosmos", + "recommended_symbol": "SHIBAC" }, { - "denom": "ibc/9B6FBABA36BB4A3BF127AE5E96B572A5197FD9F3111D895D8919B07BC290764A", + "denom": "ibc/6F18EFEBF1688AA77F7EAC17065609494DC1BA12AFC78E9AEC832AF70A11BEF3", "chain_id": "osmosis-1", - "origin_denom": "mGeo", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-258", + "origin_denom": "cw20:terra1lalvk0r6nhruel7fvzdppk3tup3mh5j4d4eadrqzfhle4zrf52as58hh9t", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "GEO", - "name": "GEO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/geo.png", + "is_svm": false, + "symbol": "CUB", + "name": "CUB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/cub.png", "decimals": 6, - "description": "GEO token for ODIN Protocol", - "coingecko_id": "geodb", - "recommended_symbol": "GEO" + "description": "Lion Cub DAO is a useless meme community DAO on Terra", + "recommended_symbol": "CUB" }, { "denom": "ibc/8061A06D3BD4D52C4A28FFECF7150D370393AF0BA661C3776C54FF32836C3961", @@ -26692,6 +32528,7 @@ "trace": "transfer/channel-4/transfer/channel-38", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PSTAKE", "name": "PSTAKE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", @@ -26701,549 +32538,694 @@ "recommended_symbol": "PSTAKE.grv" }, { - "denom": "ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156", + "denom": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", + "origin_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-204", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BERLIN", + "name": "BERLIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png", + "decimals": 18, + "description": "The token of Teledisko DAO.", + "recommended_symbol": "BERLIN" + }, + { + "denom": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "OSDOGE", - "name": "OSDOGE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png", + "is_svm": false, + "symbol": "WYND", + "name": "WYND", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png", "decimals": 6, - "description": "The First Doge on Osmosis", - "recommended_symbol": "OSDOGE" + "description": "WYND DAO Governance Token", + "coingecko_id": "wynd", + "recommended_symbol": "WYND" }, { - "denom": "ibc/DA82691243341B2F9D6631E674A08359E005B7440C1FBCF2DE7A9CF831C1D0DF", + "denom": "ibc/6B99DB46AA9FF47162148C1726866919E44A6A5E0274B90912FD17E19A337695", "chain_id": "osmosis-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "USDCso", - "name": "USDCso", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "USDC.wh", + "name": "USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, + "description": "USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", "coingecko_id": "usd-coin", - "recommended_symbol": "USDCso" + "recommended_symbol": "USDC.wh" }, { - "denom": "ibc/E97634A40119F1898989C2A23224ED83FDD0A57EA46B3A094E287288D1672B44", + "denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", "chain_id": "osmosis-1", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "factory/osmo13gu58hzw3e9aqpj25h67m7snwcjuccd7v4p55w/brnz", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", - "decimals": 6, - "description": "The native token of Gravity Bridge", - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" + "is_svm": false, + "symbol": "BRNZ", + "name": "BRNZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/BRNZ.svg", + "decimals": 0, + "description": "Memecoin for The International Brane Wave", + "recommended_symbol": "BRNZ" }, { - "denom": "ibc/5452AEA55B480F3E6CF87373F518F5E04827EBB2CF3E10D5327BE556035905EA", + "denom": "ibc/C5579A9595790017C600DD726276D978B9BF314CF82406CE342720A9C7911A01", "chain_id": "osmosis-1", - "origin_denom": "caxs", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "AXS", - "name": "AXS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/axs.png", + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", "decimals": 18, - "coingecko_id": "axie-infinity", - "recommended_symbol": "AXS.sif" + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" }, { - "denom": "ibc/38372C22B3AC4CDB680E30D919E4A330481F5F4E01307A44FC3052914793F7A2", + "denom": "ibc/F3166F4D31D6BA1EC6C9F5536F5DDDD4CC93DBA430F7419E7CDC41C497944A65", "chain_id": "osmosis-1", - "origin_denom": "caave", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-2188", "is_cw20": false, "is_evm": false, - "symbol": "AAVE", - "name": "AAVE", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/aave.png", - "decimals": 18, - "coingecko_id": "aave", - "recommended_symbol": "AAVE.sif" + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "decimals": 6, + "description": "The native token of Coreum", + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", + "denom": "ibc/6A6174468758D207DD2D880363BF699C6568A29E87651337AEDAFD9E69EA7E58", "chain_id": "osmosis-1", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-1", + "origin_denom": "ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "KARINA", + "name": "KARINA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2DD67F5D99E9A141142B48474FA7B6B3FF00A3FE.png", "decimals": 6, - "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "recommended_symbol": "KARINA" }, { - "denom": "ibc/912275A63A565BFD80734AEDFFB540132C51E446EAC41483B26EDE8A557C71CF", + "denom": "ibc/D2945E710AB3D24E236076A185FC51F1D8379869F55CC00F841F5ED9604F8B2E", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1llg7q2d5dqlrqzh5dxv8c7kzzjszld34s5vktqmlmaaxqjssz43sxyhq0d", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7edDfnf4mku8So3t4Do215GNHwASEwCWrdhM5GqD51xZ", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "MILE", - "name": "MILE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mille.png", + "is_svm": false, + "symbol": "USDCar", + "name": "USDCar", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "description": "Mille: the 1000th token on osmosis", - "recommended_symbol": "MILE" + "coingecko_id": "usd-coin-wormhole-arb", + "recommended_symbol": "USDCar" }, { - "denom": "ibc/B9E0A1A524E98BB407D3CED8720EFEFD186002F90C1B1B7964811DD0CCC12228", + "denom": "ibc/E4673C5CDB56B4225AB1625F3B478740AE9F11E1A6BEBC1B30F8A5080D6AFBD6", "chain_id": "osmosis-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-113", + "origin_denom": "uaura", + "origin_chain_id": "xstaxy-1", + "trace": "transfer/channel-11304", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "is_svm": false, + "symbol": "AURA", + "name": "AURA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", "decimals": 6, - "description": "The native token of Chihuahua Chain", - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "coingecko_id": "aura-network", + "recommended_symbol": "AURA" }, { - "denom": "ibc/1826B7AA4052BBCD027D9BE044B7979F5DD39D89754605FE050C3DFA4304A1F8", + "denom": "ibc/A8CA5EE328FA10C9519DF6057DA1F69682D28F7D0F5CCC7ECB72E3DCA2D157A4", "chain_id": "osmosis-1", - "origin_denom": "cyfi", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "description": "The native token of Stride", + "coingecko_id": "stride", + "recommended_symbol": "STRD" + }, + { + "denom": "ibc/C75CD65E9BD422B1C4649CA33048807D1473A81A7190E774FE5F9B2E0896D46C", + "chain_id": "osmosis-1", + "origin_denom": "cakro", "origin_chain_id": "sifchain-1", "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "YFI", - "name": "YFI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/yfi.png", + "is_svm": false, + "symbol": "AKRO", + "name": "AKRO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/akro.png", "decimals": 18, - "coingecko_id": "yearn-finance", - "recommended_symbol": "YFI.sif" + "coingecko_id": "akropolis", + "recommended_symbol": "AKRO.sif" }, { - "denom": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", + "denom": "ibc/F292A17CF920E3462C816CBE6B042E779F676CAB59096904C4C1C966413E3DF5", "chain_id": "osmosis-1", - "origin_denom": "rai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "RAI", - "name": "RAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg", + "is_svm": false, + "symbol": "DAI.grv", + "name": "DAI.grv", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", "decimals": 18, - "description": "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", - "coingecko_id": "rai", - "recommended_symbol": "RAI.axl" + "description": "Gravity Bridge DAI", + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv.grv" }, { - "denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "YMOS", - "name": "YMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", + "is_svm": false, + "symbol": "USDT.axl", + "name": "USDT.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", "decimals": 6, - "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", - "recommended_symbol": "YMOS" + "description": "Tether's USD stablecoin on Axelar", + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "ibc/37CB3078432510EE57B9AFA8DBE028B33AE3280A144826FEAC5F2334CF2C5539", + "denom": "ibc/23A62409E4AD8133116C249B1FA38EED30E500A115D7B153109462CD82C1CD99", "chain_id": "osmosis-1", - "origin_denom": "unym", - "origin_chain_id": "nyx", - "trace": "transfer/channel-15464", + "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "NYM", - "name": "NYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", - "decimals": 6, - "description": "NYM Token (NYM) is the Nym Network's native utility token, used as the primary means to incentivize mixnet node operators.", - "coingecko_id": "nym", - "recommended_symbol": "NYM" + "is_svm": false, + "symbol": "PAGE", + "name": "PAGE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "decimals": 8, + "description": "The PAGE token is used for actions in the PageDAO NFT literary ecosystem and for DAO governance.", + "coingecko_id": "page", + "recommended_symbol": "PAGE.grv" }, { - "denom": "ibc/9DDF52A334F92BC57A9E0D59DFF9984EAC61D2A14E5162605DF601AA58FDFC6D", + "denom": "ibc/23AB778D694C1ECFC59B91D8C399C115CC53B0BD1C61020D8E19519F002BDD85", "chain_id": "osmosis-1", - "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-1429", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "description": "The native token of Archway network", + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, + { + "denom": "ibc/8CA0BB803F1C0B4E23883E724C0B45C755D5496804071910D916A96BDA031F57", + "chain_id": "osmosis-1", + "origin_denom": "factory/inj1vjppa6h9lf75pt0v6qnxtej4xcl0qevnxzcrvm/INJINU", "origin_chain_id": "injective-1", "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "AUTISM", - "name": "AUTISM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "is_svm": false, + "symbol": "INJINU", + "name": "INJINU", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/injinu.png", "decimals": 6, - "description": "$AUTISM exists to celebrate autism as a superior biological tech stack for a changing world", - "coingecko_id": "autism", - "recommended_symbol": "AUTISM" + "recommended_symbol": "INJINU" }, { - "denom": "ibc/DEE262653B9DE39BCEF0493D47E0DFC4FE62F7F046CF38B9FDEFEBE98D149A71", + "denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", "chain_id": "osmosis-1", - "origin_denom": "erc20/0x655ecB57432CC1370f65e5dc2309588b71b473A9", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-204", + "origin_denom": "ujkl", + "origin_chain_id": "jackal-1", + "trace": "transfer/channel-412", "is_cw20": false, "is_evm": false, - "symbol": "NEOK", - "name": "NEOK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.png", - "decimals": 18, - "description": "The token of Neokingdom DAO.", - "recommended_symbol": "NEOK" + "is_svm": false, + "symbol": "JKL", + "name": "JKL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "decimals": 6, + "description": "The native staking and governance token of Jackal.", + "coingecko_id": "jackal-protocol", + "recommended_symbol": "JKL" }, { - "denom": "ibc/04BE4E9C825ED781F9684A1226114BB49607500CAD855F1E3FEEC18532297250", + "denom": "ibc/0613015ADBC138C75772D6A64C07302FACC8761019B5F453A0E94AB831A85DF5", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1k2ruzzvvwwtwny6gq6kcwyfhkzahaunp685wmz4hafplduekj98q9hgs6d", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "cw20:terra1x62mjnme4y0rdnag3r8rfgjuutsqlkkyuh4ndgex0wl3wue25uksau39q8", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "DOGA", - "name": "DOGA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/doga.png", + "is_svm": false, + "symbol": "xASTRO.cw20", + "name": "xASTRO.cw20", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/xastro-cw20.svg", "decimals": 6, - "description": "Doge Apr", - "recommended_symbol": "DOGA" + "recommended_symbol": "xASTRO.cw20" }, { - "denom": "ibc/3BD8B9C0E5B1C6910F5E78B0B4F66942EFA255F180BB8F387EDE2DED85CF6528", + "denom": "ibc/5FF35A66F29B2521AD994CD9A323E22D430BB2B3A64C0A7079E2229DB5D96E97", "chain_id": "osmosis-1", - "origin_denom": "cconv", + "origin_denom": "busd", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/bnb-beacon-chain/asset/busd.png", + "decimals": 8, + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD" + }, + { + "denom": "ibc/21F5C1F42DB8AAB18E7D5268011F6F8723C1EB584B32AE4684D8CDC49D4BF61B", + "chain_id": "osmosis-1", + "origin_denom": "ckft", "origin_chain_id": "sifchain-1", "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "CONV", - "name": "CONV", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/conv.png", + "is_svm": false, + "symbol": "KFT", + "name": "KFT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/kft.png", "decimals": 18, - "coingecko_id": "convergence", - "recommended_symbol": "CONV.sif" + "coingecko_id": "knit-finance", + "recommended_symbol": "KFT.sif" }, { - "denom": "ibc/4D4C6199EDADACC046B17FCC39C9060EBA1CDF71B4692BE309AE71BA992F792B", + "denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", "chain_id": "osmosis-1", - "origin_denom": "ucad", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "CATC", - "name": "CATC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cat.png", + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", "decimals": 6, - "recommended_symbol": "CATC" + "description": "Stride's liquid staked TIA", + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" }, { - "denom": "ibc/559B4D308D13DFD4CF535B417C97740E99516B6EF4E0C66AD54CCAD2F46C55E5", + "denom": "ibc/3A0A560DD92130BC40BD574D98F922BFE5928F2793E5495617F9D0AEE1E109FB", "chain_id": "osmosis-1", - "origin_denom": "uphp", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "PHTC", - "name": "PHTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/pht.png", + "is_svm": false, + "symbol": "USDCet", + "name": "USDCet", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "recommended_symbol": "PHTC" + "coingecko_id": "usd-coin-wormhole-from-ethereum", + "recommended_symbol": "USDCet" }, { - "denom": "ibc/672406ADE4EDFD8C5EA7A0D0DD0C37E431DA7BD8393A15CD2CFDE3364917EB2A", + "denom": "ibc/BB6BCDB515050BAE97516111873CCD7BCF1FD0CCB723CC12F3C4F704D6C646CE", "chain_id": "osmosis-1", - "origin_denom": "peaka", - "origin_chain_id": "vota-ash", - "trace": "transfer/channel-2694", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "DORA", - "name": "DORA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", - "decimals": 18, - "description": "The native staking and governance token of the Theta testnet version of the Dora Vota.", - "recommended_symbol": "DORA" + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "decimals": 6, + "description": "The native staking and governance token of the Kujira chain.", + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", "chain_id": "osmosis-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-75", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "description": "The native token of Stargaze", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "description": "The native token of Neutron chain.", + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "ibc/9883832395B05DCED4CF1CC95403C49536CA58850C886C149186E89471528912", + "denom": "ibc/24974672B990F73622F6D0000B00B5BFCF56BD864FA9459CDD7C1B58A6139BCC", "chain_id": "osmosis-1", - "origin_denom": "clina", + "origin_denom": "clink", "origin_chain_id": "sifchain-1", "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "LINA", - "name": "LINA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lina.png", + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/link.png", "decimals": 18, - "coingecko_id": "linear", - "recommended_symbol": "LINA.sif" + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.sif" }, { - "denom": "ibc/B3FB7128CE957DE1ADB687A919AA0786C77C62FB1280C07CDD78AEA032D56853", + "denom": "ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D", "chain_id": "osmosis-1", - "origin_denom": "ft52EEB0EE509AC546ED92EAC8591F731F213DDD16", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "BJKS", - "name": "BJKS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft52EEB0EE509AC546ED92EAC8591F731F213DDD16.png", + "is_svm": false, + "symbol": "APEMOS", + "name": "APEMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png", "decimals": 6, - "recommended_symbol": "BJKS" + "description": "Apemos", + "recommended_symbol": "APEMOS" }, { - "denom": "ibc/C00B17F74C94449A62935B4C886E6F0F643249A270DEF269D53CE6741ECCDB93", + "denom": "ibc/297C64CC42B5A8D8F82FE2EBE208A6FE8F94B86037FA28C4529A23701C228F7A", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1epxnvge53c4hkcmqzlxryw5fp7eae2utyk6ehjcfpwajwp48km3sgxsh9k", + "origin_denom": "cw20:juno168ctmpyppk90d34p3jjy658zf5a5l3w8wk35wht6ccqj4mr0yv8s4j5awr", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "PEPEC", - "name": "PEPEC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepec.png", + "is_svm": false, + "symbol": "NETA", + "name": "NETA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/neta.png", "decimals": 6, - "description": "Pepec", - "recommended_symbol": "PEPEC" + "description": "The native token cw20 for Neta on Juno Chain", + "coingecko_id": "neta", + "recommended_symbol": "NETA" }, { - "denom": "ibc/C9B0D48FD2C5B91135F118FF2484551888966590D7BDC20F6A87308DBA670796", + "denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", "chain_id": "osmosis-1", - "origin_denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "WBTC.grv", - "name": "WBTC.grv", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "description": "Gravity Bridge WBTC", - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.grv.grv" + "is_svm": false, + "symbol": "CLST", + "name": "CLST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png", + "decimals": 6, + "description": "Celestims", + "recommended_symbol": "CLST" }, { - "denom": "ibc/40370BD36E498B562FFC5E557ACD6C984557234EC60D69B0BD60481E5B2D5B1C", + "denom": "ibc/8AEEA9B9304392070F72611076C0E328CE3F2DECA1E18557E36F9DB4F09C0156", "chain_id": "osmosis-1", - "origin_denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-874", + "origin_denom": "cw20:juno1ytymtllllsp3hfmndvcp802p2xmy5s8m59ufel8xv9ahyxyfs4hs4kd4je", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "JIMMY", - "name": "JIMMY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", + "is_svm": false, + "symbol": "OSDOGE", + "name": "OSDOGE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/osdoge.png", "decimals": 6, - "recommended_symbol": "JIMMY" + "description": "The First Doge on Osmosis", + "recommended_symbol": "OSDOGE" }, { - "denom": "ibc/635CB83EF1DFE598B10A3E90485306FD0D47D34217A4BE5FD9977FA010A5367D", + "denom": "ibc/1480B8FD20AD5FCAE81EA87584D269547DD4D436843C1D20F15E00EB64743EF4", "chain_id": "osmosis-1", - "origin_denom": "uqck", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-522", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "QCK", - "name": "QCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "description": "QCK - native token of Quicksilver", - "coingecko_id": "quicksilver", - "recommended_symbol": "QCK" + "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", + "denom": "ibc/19305E20681911F14D1FB275E538CDE524C3BF88CF9AE5D5F78F4D4DA05E85B2", "chain_id": "osmosis-1", - "origin_denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "shib-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "CLAY", - "name": "CLAY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png", + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "decimals": 18, + "description": "SHIBA INU is a 100% decentralized community experiment with it claims that 1/2 the tokens have been sent to Vitalik and the other half were locked to a Uniswap pool and the keys burned.", + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" + }, + { + "denom": "ibc/9712DBB13B9631EDFA9BF61B55F1B2D290B2ADB67E3A4EB3A875F3B6081B3B84", + "chain_id": "osmosis-1", + "origin_denom": "udvpn", + "origin_chain_id": "sentinelhub-2", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DVPN", + "name": "DVPN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", "decimals": 6, - "recommended_symbol": "CLAY" + "description": "DVPN is the native token of the Sentinel Hub.", + "coingecko_id": "sentinel", + "recommended_symbol": "DVPN" }, { - "denom": "ibc/7A70A4681F85E891C9482E33DAA996489E278BB978054DC37245951BA69E5C4D", + "denom": "ibc/A76EB6ECF4E3E2D4A23C526FD1B48FDD42F171B206C9D2758EF778A7826ADD68", "chain_id": "osmosis-1", - "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/utacos", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-113", + "origin_denom": "eco.uC.NCT", + "origin_chain_id": "regen-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "TACOS", - "name": "TACOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/tacos.png", + "is_svm": false, + "symbol": "NCT", + "name": "NCT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", "decimals": 6, - "recommended_symbol": "TACOS" + "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", + "coingecko_id": "toucan-protocol-nature-carbon-tonne", + "recommended_symbol": "NCT" }, { - "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", + "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", "chain_id": "osmosis-1", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-19774", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", "decimals": 18, - "description": "The native governance and staking token of the Dymension Hub", - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "description": "The INJ token is the native governance token for the Injective chain.", + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { - "denom": "ibc/2FBAC4BF296D7844796844B35978E5899984BA5A6314B2DD8F83C215550010B3", + "denom": "ibc/CEE970BB3D26F4B907097B6B660489F13F3B0DA765B83CC7D9A0BC0CE220FA6F", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "transfer/channel-199", "is_cw20": false, "is_evm": false, - "symbol": "WYND", - "name": "WYND", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png", + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", "decimals": 6, - "description": "WYND DAO Governance Token", - "coingecko_id": "wynd", - "recommended_symbol": "WYND" + "description": "The native staking token of OmniFlix Hub.", + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" }, { - "denom": "ibc/022A879A5301CBCACF96216C967805F15C33C615B74DC7236027C1BA1BF664FF", + "denom": "ibc/7ED954CFFFC06EE8419387F3FC688837FF64EF264DE14219935F724EEEDBF8D3", "chain_id": "osmosis-1", - "origin_denom": "ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "uctk", + "origin_chain_id": "shentu-2.2", + "trace": "transfer/channel-146", "is_cw20": false, "is_evm": false, - "symbol": "TESTA", - "name": "TESTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft4B030260D99E3ABE2B604EA2B33BAF3C085CDA12.png", + "is_svm": false, + "symbol": "CTK", + "name": "CTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", "decimals": 6, - "recommended_symbol": "TESTA" + "description": "The native token of Shentu", + "coingecko_id": "certik", + "recommended_symbol": "CTK" }, { - "denom": "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", + "denom": "ibc/3BD8B9C0E5B1C6910F5E78B0B4F66942EFA255F180BB8F387EDE2DED85CF6528", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-341", + "origin_denom": "cconv", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "SAYVE", - "name": "SAYVE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", + "is_svm": false, + "symbol": "CONV", + "name": "CONV", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/conv.png", + "decimals": 18, + "coingecko_id": "convergence", + "recommended_symbol": "CONV.sif" + }, + { + "denom": "ibc/0E30775281643124D79B8670ACD3F478AC5FAB2B1CA1E32903D0775D8A8BB064", + "chain_id": "osmosis-1", + "origin_denom": "cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PLTN", + "name": "PLTN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png", "decimals": 6, - "recommended_symbol": "SAYVE" + "recommended_symbol": "PLTN" }, { - "denom": "ibc/204A582244FC241613DBB50B04D1D454116C58C4AF7866C186AA0D6EEAD42780", + "denom": "ibc/161D7D62BAB3B9C39003334F1671208F43C06B643CC9EDBBE82B64793C857F1D", "chain_id": "osmosis-1", - "origin_denom": "ukrw", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "orai", + "origin_chain_id": "Oraichain", + "trace": "transfer/channel-216", "is_cw20": false, "is_evm": false, - "symbol": "KRTC", - "name": "KRTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/krt.png", + "is_svm": false, + "symbol": "ORAI", + "name": "ORAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", "decimals": 6, - "description": "The KRW stablecoin of Terra Classic.", - "coingecko_id": "terrakrw", - "recommended_symbol": "KRTC" + "description": "The native token of Oraichain", + "coingecko_id": "oraichain-token", + "recommended_symbol": "ORAI" }, { - "denom": "ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54", + "denom": "ibc/0CB9DB3441D0D50F35699DEE22B9C965487E83FB2D9F483D1CC5CA34E856C484", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", + "origin_denom": "cw20:juno1n7n7d5088qlzlj37e9mgmkhx6dfgtvt02hqxq66lcap4dxnzdhwqfmgng3", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "INVDRS", - "name": "INVDRS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png", + "is_svm": false, + "symbol": "JOE", + "name": "JOE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/joe.png", "decimals": 6, - "description": "Evmos Guardians' Invaders DAO token.", - "recommended_symbol": "INVDRS" + "description": "DAO dedicated to building tools on the Juno Network", + "recommended_symbol": "JOE" }, { - "denom": "ibc/4ABBEF4C8926DDDB320AE5188CFD63267ABBCEFC0583E4AE05D6E5AA2401DDAB", + "denom": "ibc/4017C65CEA338196ECCEC3FE3FE8258F23D1DE88F1D95750CC912C7A1C1016FF", "chain_id": "osmosis-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "origin_denom": "unibi", + "origin_chain_id": "cataclysm-1", + "trace": "transfer/channel-21113", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "NIBI", + "name": "NIBI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nibiru/images/nibiru.png", "decimals": 6, - "description": "Tether gives you the joint benefits of open blockchain technology and traditional currency by converting your cash into a stable digital currency equivalent.", - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "description": "The native token of Nibiru network", + "coingecko_id": "nibiru", + "recommended_symbol": "NIBI" }, { - "denom": "ibc/4F24D904BAB5FFBD3524F2DE3EC3C7A9E687A2408D9A985E57B356D9FA9201C6", + "denom": "ibc/79A676508A2ECA1021EDDC7BB9CF70CEEC9514C478DA526A5A8B3E78506C2206", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1u8cr3hcjvfkzxcaacv9q75uw9hwjmn8pucc93pmy6yvkzz79kh3qncca8x", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "uqregen", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-522", "is_cw20": false, "is_evm": false, - "symbol": "FOX", - "name": "FOX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/fox.png", + "is_svm": false, + "symbol": "qREGEN", + "name": "qREGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", "decimals": 6, - "description": "Inspired by Bonk. A community project to celebrate the settlers of JunoNetwork.", - "recommended_symbol": "FOX" + "description": "Quicksilver Liquid Staked REGEN", + "recommended_symbol": "qREGEN" }, { "denom": "ibc/10E5E5B06D78FFBB61FD9F89209DEE5FD4446ED0550CBB8E3747DA79E10D9DC6", @@ -27253,6 +33235,7 @@ "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARB", "name": "ARB", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", @@ -27262,1051 +33245,1168 @@ "recommended_symbol": "ARB.axl" }, { - "denom": "ibc/384E5DD50BDE042E1AAF51F312B55F08F95BC985C503880189258B4D9374CBBE", + "denom": "ibc/2C3E0E3B798B60F342F07757F2B097F09A1949C0E49EEBD187615BAE890DF14C", "chain_id": "osmosis-1", - "origin_denom": "aave-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "xrpl11278ecf9e-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-2188", "is_cw20": false, "is_evm": false, - "symbol": "AAVE", - "name": "AAVE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/aave.svg", - "decimals": 18, - "description": "Aave is an Open Source and Non-Custodial protocol to earn interest on deposits & borrow assets. It also features access to highly innovative flash loans, which let developers borrow instantly and easily; no collateral needed. With 16 different assets, 5 of which are stablecoins.", - "coingecko_id": "aave", - "recommended_symbol": "AAVE.axl" + "is_svm": false, + "symbol": "SOLO", + "name": "SOLO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/coreum/asset/solo.png", + "decimals": 15, + "coingecko_id": "solo-coin", + "recommended_symbol": "SOLO" }, { - "denom": "ibc/65381C5F3FD21442283D56925E62EA524DED8B6927F0FF94E21E0020954C40B5", + "denom": "ibc/183C0BB962D2F57C957E0B134CFA0AC9D6F755C02DE9DC2A59089BA23009DEC3", "chain_id": "osmosis-1", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "WETH.grv", - "name": "WETH.grv", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "NINJA", + "name": "NINJA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png", + "decimals": 6, + "description": "The first meme coin on Injective. It’s a dog, but he has nunchucks", + "coingecko_id": "dog-wif-nuchucks", + "recommended_symbol": "NINJA" + }, + { + "denom": "ibc/5EC896BED3EBCB2CB6F1C167582E4EFA3F6FA3385F28BA5EA92D4A489DA010C5", + "chain_id": "osmosis-1", + "origin_denom": "erc20/0xfbF4318d24a93753F11d365A6dcF8b830e98Ab0F", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-204", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CROWDP", + "name": "CROWDP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/evmos/asset/crowdp.png", "decimals": 18, - "description": "Gravity Bridge WETH", - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv.grv" + "recommended_symbol": "CROWDP" }, { - "denom": "ibc/6D2561C8849B856A0518172805ED22C3D66DDCDAC18E4792D7D932A278025C15", + "denom": "ibc/980E82A9F8E7CA8CD480F4577E73682A6D3855A267D1831485D7EBEF0E7A6C2C", "chain_id": "osmosis-1", - "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-874", + "origin_denom": "stadydx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "ECLIP", - "name": "ECLIP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", - "decimals": 6, - "coingecko_id": "eclipse-fi", - "recommended_symbol": "ECLIP" + "is_svm": false, + "symbol": "stDYDX", + "name": "stDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "decimals": 18, + "description": "Stride's liquid staked DYDX", + "coingecko_id": "stride-staked-dydx", + "recommended_symbol": "stDYDX" }, { - "denom": "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", + "denom": "ibc/9883832395B05DCED4CF1CC95403C49536CA58850C886C149186E89471528912", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "clina", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "LIGHT", - "name": "LIGHT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png", - "decimals": 9, - "description": "Light: LumenX community DAO treasury token", - "recommended_symbol": "LIGHT" + "is_svm": false, + "symbol": "LINA", + "name": "LINA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lina.png", + "decimals": 18, + "coingecko_id": "linear", + "recommended_symbol": "LINA.sif" }, { - "denom": "ibc/980A2748F37C938AD129B92A51E2ABA8CFFC6862ADD61EC1B291125535DBE30B", + "denom": "ibc/E4FFFC6D32085A6A10A4ACED57594434AE603F94C4A4D44F3FD5A9609E5B2BFE", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno13ca2g36ng6etcfhr9qxx352uw2n5e92np54thfkm3w3nzlhsgvwsjaqlyq", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "cshib", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "MANNA", - "name": "MANNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/manna.png", - "decimals": 6, - "description": "Social Impact DAO dedicated to combatting food insecurity and malnutrition", - "recommended_symbol": "MANNA" + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/shib.png", + "decimals": 18, + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.sif" }, { - "denom": "ibc/3FF92D26B407FD61AE95D975712A7C319CDE28DE4D80BDC9978D935932B991D7", + "denom": "ibc/D176154B0C63D1F9C6DCFB4F70349EBF2E2B5A87A05902F57A6AE92B863E9AEC", "chain_id": "osmosis-1", - "origin_denom": "dot-planck", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "DOT.axl", - "name": "DOT.axl", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "description": "Wrapped Polkadot on Axelar", - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "decimals": 6, + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "ibc/DC0D3303BBE739E073224D0314385B88B247F56D71D726A91414CCA244FFFE7E", + "denom": "ibc/239A507997222805E441956EBE8087D7E2D05D6535C6D4C75EF8DCF83B3DE1A1", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno166heaxlyntd33a5euh4rrz26svhean4klzw594esmd02l4atan6sazy2my", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "MNPU", - "name": "MNPU", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/mnpu.png", + "is_svm": false, + "symbol": "FONTI", + "name": "FONTI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft56664FC98A2CF5F4FBAC3566D1A11D891AD88305.png", "decimals": 6, - "description": "Mini Punks Token", - "recommended_symbol": "MNPU" + "recommended_symbol": "FONTI" }, { - "denom": "ibc/8242AD24008032E457D2E12D46588FD39FB54FB29680C6C7663D296B383C37C4", + "denom": "ibc/6D2561C8849B856A0518172805ED22C3D66DDCDAC18E4792D7D932A278025C15", "chain_id": "osmosis-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "USDT.axl", - "name": "USDT.axl", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "ECLIP", + "name": "ECLIP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", "decimals": 6, - "description": "Tether's USD stablecoin on Axelar", - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "coingecko_id": "eclipse-fi", + "recommended_symbol": "ECLIP" }, { - "denom": "ibc/8A07D4BD40E0F44ECFDF360F7EA7008B288926FB87C54489FE54DB81A5340E0C", + "denom": "ibc/1DCC8A6CB5689018431323953344A9F6CC4D0BFB261E88C9F7777372C10CD076", "chain_id": "osmosis-1", - "origin_denom": "ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "uregen", + "origin_chain_id": "regen-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "VIBRA", - "name": "VIBRA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft7020C2A8E984EEBCBB383E91CD6FBB067BB2272B.png", + "is_svm": false, + "symbol": "REGEN", + "name": "REGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", "decimals": 6, - "recommended_symbol": "VIBRA" + "description": "REGEN coin is the token for the Regen Network Platform", + "coingecko_id": "regen", + "recommended_symbol": "REGEN" }, { - "denom": "ibc/917C4B1E92EE2F959FC11ECFC435C4048F97E8B00F9444592706F4604F24BF25", + "denom": "ibc/71B441E27F1BBB44DD0891BCD370C2794D404D60A4FFE5AECCD9B1E28BC89805", "chain_id": "osmosis-1", - "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-642", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "bWHALE", - "name": "bWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", + "is_svm": false, + "symbol": "USDT.grv", + "name": "USDT.grv", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "recommended_symbol": "bWHALE" + "description": "Gravity Bridge USDT", + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv.grv" }, { - "denom": "ibc/09B40B4315A4A188A84E0C5F2A11013604B3F8D8542970A1F767481B6560E66B", + "denom": "ibc/8FEFAE6AECF6E2A255585617F781F35A8D5709A545A804482A261C0C9548A9D3", "chain_id": "osmosis-1", - "origin_denom": "bnb.1.6.773edb", + "origin_denom": "swth", "origin_chain_id": "carbon-1", "trace": "transfer/channel-188", "is_cw20": false, "is_evm": false, - "symbol": "BNB", - "name": "BNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/bnb.png", - "decimals": 18, - "recommended_symbol": "BNB.carbon" + "is_svm": false, + "symbol": "SWTH", + "name": "SWTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "decimals": 8, + "description": "The native governance token of Carbon", + "coingecko_id": "switcheo", + "recommended_symbol": "SWTH" }, { - "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", + "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", "chain_id": "osmosis-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-750", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "description": "MilkyWay's liquid staked TIA", + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/573FCD90FACEE750F55A8864EF7D38265F07E5A9273FA0E8DAFD39951332B580", + "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", "chain_id": "osmosis-1", - "origin_denom": "umars", - "origin_chain_id": "mars-1", - "trace": "transfer/channel-557", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MARS", - "name": "MARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "description": "Mars protocol token", - "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", - "recommended_symbol": "MARS" + "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + "recommended_symbol": "WOSMO" }, { - "denom": "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", + "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", "chain_id": "osmosis-1", - "origin_denom": "stusomm", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stSOMM", - "name": "stSOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", + "is_svm": false, + "symbol": "stIBCX", + "name": "stIBCX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", "decimals": 6, - "coingecko_id": "stride-staked-sommelier", - "recommended_symbol": "stSOMM" + "recommended_symbol": "stIBCX" }, { - "denom": "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", + "denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", "chain_id": "osmosis-1", - "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-874", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "description": "wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.", - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" }, { - "denom": "ibc/5DD1F95ED336014D00CE2520977EC71566D282F9749170ADC83A392E0EA7426A", + "denom": "ibc/61365041DAC5A57B92D60A3EBEB5143E209F86CECDBDD7326A6E7F8351352119", "chain_id": "osmosis-1", - "origin_denom": "stustars", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "ubcre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-297", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "is_svm": false, + "symbol": "bCRE", + "name": "bCRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/bcre.png", "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "coingecko_id": "liquid-staking-crescent", + "recommended_symbol": "bCRE" }, { - "denom": "ibc/6018AD9F3E8AEF59DBD127F9D81C4F2B69CF1DD5680DBD4D72F0FE1F87E7397D", + "denom": "ibc/00BC6883C29D45EAA021A55CFDD5884CA8EFF9D39F698A9FEF79E13819FF94F8", "chain_id": "osmosis-1", - "origin_denom": "busd.1.6.754a80", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-188", + "origin_denom": "cw20:juno1zqrj3ta4u7ylv0wqzd8t8q3jrr9rdmn43zuzp9zemeunecnhy8fss778g7", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "recommended_symbol": "BUSD.carbon" + "is_svm": false, + "symbol": "PEPE", + "name": "PEPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pepe.png", + "decimals": 6, + "recommended_symbol": "PEPE" }, { - "denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", + "denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", "chain_id": "osmosis-1", - "origin_denom": "busd-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "aplanq", + "origin_chain_id": "planq_7070-2", + "trace": "transfer/channel-492", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "is_svm": false, + "symbol": "PLQ", + "name": "PLQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", "decimals": 18, - "description": "Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.", - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD.axl" + "description": "The native EVM, governance and staking token of the Planq Network", + "coingecko_id": "planq", + "recommended_symbol": "PLQ" }, { - "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", + "denom": "ibc/7D389F0ABF1E4D45BE6D7BBE36A2C50EA0559C01E076B02F8E381E685EC1F942", "chain_id": "osmosis-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-42", + "origin_denom": "cw20:terra1sxe8u2hjczlekwfkcq0rs28egt38pg3wqzfx4zcrese4fnvzzupsk9gjkq", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "BMOS", + "name": "BMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bitmos.png", "decimals": 6, - "description": "The native token of JUNO Chain", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "description": "Bitmos opens doors for BRC20 tokens to thrive alongside established players in the Cosmos Network, revolutionizing decentralized finance (DeFi) for all.", + "recommended_symbol": "BMOS" }, { - "denom": "ibc/47CAF2DB8C016FAC960F33BC492FD8E454593B65CC59D70FA9D9F30424F9C32F", + "denom": "ibc/9B8EC667B6DF55387DC0F3ACC4F187DA6921B0806ED35DE6B04DE96F5AB81F53", "chain_id": "osmosis-1", - "origin_denom": "acanto", - "origin_chain_id": "canto_7700-1", - "trace": "transfer/channel-550", + "origin_denom": "factory/chihuahua13jawsn574rf3f0u5rhu7e8n6sayx5gkw3eddhp/uwoof", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "CANTO", - "name": "CANTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", - "decimals": 18, - "description": "Canto is a Layer-1 blockchain built to deliver on the promise of DeFi", - "coingecko_id": "canto", - "recommended_symbol": "CANTO" + "is_svm": false, + "symbol": "WOOF", + "name": "WOOF", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/woof.png", + "decimals": 6, + "description": "Woof", + "recommended_symbol": "WOOF" }, { - "denom": "ibc/A0B36C71F6331A9884F466E81F80195E905B4F0B210512007877802AC909E25A", + "denom": "ibc/CFF40564FDA3E958D9904B8B479124987901168494655D9CC6B7C0EC0416020B", "chain_id": "osmosis-1", - "origin_denom": "factory/inj14ejqjyq8um4p3xfqj74yld5waqljf88f9eneuk/inj1d5vz0uzwlpfvgwrwulxg6syy82axa58y4fuszd", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "ARB", - "name": "ARB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/arbitrum/asset/arb.png", - "decimals": 8, - "coingecko_id": "arbitrum", - "recommended_symbol": "ARB" + "is_svm": false, + "symbol": "STRDST", + "name": "STRDST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", + "decimals": 6, + "description": "The native token of ohhNFT.", + "recommended_symbol": "STRDST" }, { - "denom": "ibc/C78F65E1648A3DFE0BAEB6C4CDA69CC2A75437F1793C0E6386DFDA26393790AE", + "denom": "ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83", "chain_id": "osmosis-1", - "origin_denom": "usdx", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "origin_denom": "uqstars", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-522", "is_cw20": false, "is_evm": false, - "symbol": "USDX", - "name": "USDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/usdx.png", + "is_svm": false, + "symbol": "qSTARS", + "name": "qSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", "decimals": 6, - "description": "The native stablecoin of Kava", - "coingecko_id": "usdx", - "recommended_symbol": "USDX" + "description": "Quicksilver Liquid Staked STARS", + "recommended_symbol": "qSTARS" }, { - "denom": "ibc/D1542AA8762DB13087D8364F3EA6509FD6F009A34F00426AF9E4F9FA85CBBF1F", + "denom": "ibc/1D9132FB8C4913723A89CCA37038B6B400305C7F04652670C41FB5FE73880310", "chain_id": "osmosis-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "cust", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "WBTC.axl", - "name": "WBTC.axl", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "description": "Wrapped Bitcoin on Axelar", - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "USTC", + "name": "USTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ust.png", + "decimals": 18, + "coingecko_id": "wrapped-ust", + "recommended_symbol": "USTC.sif" }, { - "denom": "ibc/D8155F8B0A5D7C3E524C16CBF4C0434974C35446E374E5EDD9C7C1B34E4D5B51", + "denom": "ibc/498A0751C798A0D9A389AA3691123DADA57DAA4FE165D5C75894505B876BA6E4", "chain_id": "osmosis-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3VKKYtbQ9iq8f9CaZfgR6Cr3TUj6ypXPAn6kco6wjcAu", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-750", "is_cw20": false, "is_evm": false, - "symbol": "USDCop", - "name": "USDCop", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, + "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", "coingecko_id": "usd-coin", - "recommended_symbol": "USDCop" + "recommended_symbol": "USDC" }, { - "denom": "ibc/00B6E60AD3D65CBEF5579AC8AF609527C0B57535B6E32D96C80A735344FD9DCC", + "denom": "ibc/2F5C084037D951B24D100F15CC013A131DF786DCE1B1DBDC48F018A9B9A138DE", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", + "origin_denom": "cw20:juno1ju8k8sqwsqu5k6umrypmtyqu2wqcpnrkf4w4mntvl0javt4nma7s8lzgss", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "RAW", - "name": "RAW", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png", + "is_svm": false, + "symbol": "CASA", + "name": "CASA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/casa.png", "decimals": 6, - "description": "Token governance for Junoswap", - "coingecko_id": "junoswap-raw-dao", - "recommended_symbol": "RAW" + "description": "An innovative DAO dedicated to housing the most vulnerable", + "recommended_symbol": "CASA" }, { - "denom": "ibc/02F196DA6FD0917DD5FEA249EE61880F4D941EE9059E7964C5C9B50AF103800F", + "denom": "ibc/9A76CDF0CBCEF37923F32518FA15E5DC92B9F56128292BC4D63C4AEA76CBB110", "chain_id": "osmosis-1", - "origin_denom": "stuumee", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-19774", "is_cw20": false, "is_evm": false, - "symbol": "stUMEE", - "name": "stUMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", - "decimals": 6, - "coingecko_id": "stride-staked-umee", - "recommended_symbol": "stUMEE" + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "decimals": 18, + "description": "The native governance and staking token of the Dymension Hub", + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "ibc/0362302C7F45A97E304A087F05553DCECF0EAED24A17BC3D5B1BCC5E5B787E4C", + "denom": "ibc/9F887C35128086A768DE6A6D300A6F464FE82263352CA78EA64CF89A605CE972", "chain_id": "osmosis-1", - "origin_denom": "gravity0x2F109021aFe75B949429fe30523Ee7C0D5B27207", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-144", + "origin_denom": "ciotx", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "OCC", - "name": "OCC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/occamfi.png", + "is_svm": false, + "symbol": "IOTX", + "name": "IOTX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/iotx.png", "decimals": 18, - "recommended_symbol": "OCC.grv" + "coingecko_id": "iotex", + "recommended_symbol": "IOTX.sif" }, { - "denom": "ibc/0954E1C28EB7AF5B72D24F3BC2B47BBB2FDF91BDDFD57B74B99E133AED40972A", + "denom": "ibc/2FFE07C4B4EFC0DDA099A16C6AF3C9CCA653CC56077E87217A585D48794B0BC7", "chain_id": "osmosis-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-88", + "origin_denom": "factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-113", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "BADDOG", + "name": "BADDOG", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png", "decimals": 6, - "description": "The native token of Secret Network", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "description": "has a hat", + "recommended_symbol": "BADDOG" }, { - "denom": "ibc/0CD3A0285E1341859B5E86B6AB7682F023D03E97607CCC1DC95706411D866DF7", + "denom": "ibc/785AFEC6B3741100D15E7AF01374E3C4C36F24888E96479B1C33F5C71F364EF9", "chain_id": "osmosis-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-251", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", - "decimals": 18, - "description": "Multi-Collateral Dai, brings a lot of new and exciting features, such as support for new CDP collateral types and Dai Savings Rate.", - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "decimals": 6, + "description": "The native staking token of Terra.", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/0CD46223FEABD2AEAAAF1F057D01E63BCA79B7D4BD6B68F1EB973A987344695D", + "denom": "ibc/AC6EE43E608B5A7EEE460C960480BC1C3708010E32B2071C429DA259836E10C3", "chain_id": "osmosis-1", - "origin_denom": "mO9W", - "origin_chain_id": "odin-mainnet-freya", - "trace": "transfer/channel-258", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "O9W", - "name": "O9W", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/o9w.png", + "is_svm": false, + "symbol": "W", + "name": "W", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png", "decimals": 6, - "description": "O9W token for ODIN Protocol", - "recommended_symbol": "O9W" + "description": "W is the native token powering the Wormhole interoperability platform.", + "recommended_symbol": "W" }, { - "denom": "ibc/126DA09104B71B164883842B769C0E9EC1486C0887D27A9999E395C2C8FB5682", + "denom": "ibc/3DC08BDF2689978DBCEE28C7ADC2932AA658B2F64B372760FBC5A0058669AD29", "chain_id": "osmosis-1", - "origin_denom": "untrn", + "origin_denom": "cw20:juno1dpany8c0lj526lsa02sldv7shzvnw5dt5ues72rk35hd69rrydxqeraz8l", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LIGHT", + "name": "LIGHT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/light.png", + "decimals": 9, + "description": "Light: LumenX community DAO treasury token", + "recommended_symbol": "LIGHT" + }, + { + "denom": "ibc/1DE9A32D603EE05E9B8619DF24D90FD518C932AE0B5B3209A986B7262DBADE2A", + "chain_id": "osmosis-1", + "origin_denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "D9X", + "name": "D9X", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png", + "decimals": 6, + "recommended_symbol": "D9X" + }, + { + "denom": "ibc/2F21E6D4271DE3F561F20A02CD541DAF7405B1E9CB3B9B07E3C2AC7D8A4338A5", + "chain_id": "osmosis-1", + "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", "origin_chain_id": "neutron-1", "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", - "decimals": 6, - "description": "The native token of Neutron chain.", - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "description": "wstETH is a wrapped version of stETH. As some DeFi protocols require a constant balance mechanism for tokens, wstETH keeps your balance of stETH fixed and uses an underlying share system to reflect your earned staking rewards.", + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH" }, { - "denom": "ibc/3684F836AD9063BFE53DDC5594B179403C609E1CA30F24FE5D2DDE2126FCAE98", + "denom": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", "chain_id": "osmosis-1", - "origin_denom": "cwbtc", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.sif" + "is_svm": false, + "symbol": "404DR", + "name": "404DR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png", + "decimals": 6, + "recommended_symbol": "404DR" }, { - "denom": "ibc/4D7A6F2A7744B1534C984A21F9EDFFF8809FC71A9E9243FFB702073E7FCA513A", + "denom": "ibc/5D1F516200EE8C6B2354102143B78A2DEDA25EDE771AC0F8DC3C1837C8FD4447", "chain_id": "osmosis-1", - "origin_denom": "cbeth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "afet", + "origin_chain_id": "fetchhub-4", + "trace": "transfer/channel-229", "is_cw20": false, "is_evm": false, - "symbol": "cbETH", - "name": "cbETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", + "is_svm": false, + "symbol": "FET", + "name": "FET", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", "decimals": 18, - "description": "Coinbase Wrapped Staked ETH (“cbETH”) is a utility token and liquid representation of ETH staked through Coinbase. cbETH gives customers the option to sell, transfer, or otherwise use their staked ETH in dapps while it remains locked by the Ethereum protocol.", - "coingecko_id": "coinbase-wrapped-staked-eth", - "recommended_symbol": "cbETH.axl" + "description": "The native staking and governance token of the Fetch Hub.", + "coingecko_id": "fetch-ai", + "recommended_symbol": "FET" }, { - "denom": "ibc/52C57FCA7D6854AA178E7A183DDBE4EF322B904B1D719FC485F6FFBC1F72A19E", + "denom": "ibc/7ABF696369EFB3387DF22B6A24204459FE5EFD010220E8E5618DC49DB877047B", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1j0a9ymgngasfn3l5me8qpd53l5zlm9wurfdk7r65s5mg6tkxal3qpgf5se", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "GLTO", - "name": "GLTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", + "is_svm": false, + "symbol": "CLAY", + "name": "CLAY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft2D8E7041556CE93E1EFD66C07C45D551A6AAAE09.png", "decimals": 6, - "description": "DeFi gaming platform built on Juno", - "recommended_symbol": "GLTO" + "recommended_symbol": "CLAY" }, { - "denom": "ibc/53B651EDCF2C113AAE9E4CFDA6C440D6A97C6CCDB9C0AC22C52DCDC88B4984FD", + "denom": "ibc/6329DD8CF31A334DD5BE3F68C846C9FE313281362B37686A62343BAC1EB1546D", "chain_id": "osmosis-1", - "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-75", + "origin_denom": "busd-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "GAZE", - "name": "GAZE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png", - "decimals": 6, - "recommended_symbol": "GAZE" + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "decimals": 18, + "description": "Binance USD (BUSD) is a dollar-backed stablecoin issued and custodied by Paxos Trust Company, and regulated by the New York State Department of Financial Services. BUSD is available directly for sale 1:1 with USD on Paxos.com and will be listed for trading on Binance.", + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD.axl" }, { - "denom": "ibc/56B988C4D934FB7503F5EA9B440C75D489C8AD5D193715B477BEC4F84B8BBA2A", + "denom": "ibc/B84F8CC583A54DA8173711C0B66B22FDC1954FEB1CA8DBC66C89919DAFE02000", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1j4ux0f6gt7e82z7jdpm25v4g2gts880ap64rdwa49989wzhd0dfqed6vqm", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "peggy0xA4426666addBE8c4985377d36683D17FB40c31Be", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "SUMMIT", - "name": "SUMMIT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/summit.png", + "is_svm": false, + "symbol": "BEAST", + "name": "BEAST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/beast.png", "decimals": 6, - "description": "Social Impact DAO providing showers, meals, and vehicles to the homeless", - "recommended_symbol": "SUMMIT" + "description": "BEAST-ERC20 on injective", + "recommended_symbol": "BEAST.peggy" }, { - "denom": "ibc/593F820ECE676A3E0890C734EC4F3A8DE16EC10A54EEDFA8BDFEB40EEA903960", + "denom": "ibc/F83CC6471DA4D4B508F437244F10B9E4C68975344E551A2DEB6B8617AB08F0D4", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1lpvx3mv2a6ddzfjc7zzz2v2cm5gqgqf0hx67hc5p5qwn7hz4cdjsnznhu8", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "ape-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "VOID", - "name": "VOID", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/void.png", - "decimals": 6, - "description": "Void", - "recommended_symbol": "VOID" + "is_svm": false, + "symbol": "APE", + "name": "APE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ape.svg", + "decimals": 18, + "description": "ApeCoin found new expression in web3 through art, gaming, entertainment, and events. APE is a token made to support what’s next, controlled, and built on by the community. It will serve as a decentralized protocol layer for community-led initiatives that drive culture forward into the metaverse.", + "coingecko_id": "apecoin", + "recommended_symbol": "APE.axl" }, { - "denom": "ibc/67795E528DF67C5606FC20F824EA39A6EF55BA133F4DC79C90A8C47A0901E17C", + "denom": "ibc/70CF1A54E23EA4E480DEDA9E12082D3FD5684C3483CBDCE190C5C807227688C5", "chain_id": "osmosis-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-184", + "origin_denom": "swp", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "SWP", + "name": "SWP", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/swp.png", "decimals": 6, - "description": "The native token of Umee", - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "description": "Governance token of Kava Swap Protocol", + "coingecko_id": "kava-swap", + "recommended_symbol": "SWP" }, { - "denom": "ibc/1BC5AE276CEBAF1837F985B1A750FD35932F1AC0EC8411CAD1EE9D643BF4855B", + "denom": "ibc/3DB1721541C94AD19D7735FECED74C227E13F925BDB814392980B40A19C1ED54", "chain_id": "osmosis-1", - "origin_denom": "cwscrt", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "cw20:juno1jwdy7v4egw36pd84aeks3ww6n8k7zhsumd4ac8q5lts83ppxueus4626e8", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "WSCRT", - "name": "WSCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wscrt.png", + "is_svm": false, + "symbol": "INVDRS", + "name": "INVDRS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/invdrs.png", "decimals": 6, - "coingecko_id": "secret-erc20", - "recommended_symbol": "WSCRT.sif" + "description": "Evmos Guardians' Invaders DAO token.", + "recommended_symbol": "INVDRS" }, { - "denom": "ibc/04908A077381D38524451F5E2F387E47A12244E5526397E73C0CBAD83E372910", + "denom": "ibc/40370BD36E498B562FFC5E557ACD6C984557234EC60D69B0BD60481E5B2D5B1C", "chain_id": "osmosis-1", - "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-259", + "origin_denom": "factory/neutron108x7vp9zv22d6wxrs9as8dshd3pd5vsga463yd/JIMMY", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "ampKUJI", - "name": "ampKUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", + "is_svm": false, + "symbol": "JIMMY", + "name": "JIMMY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/jimmy.png", "decimals": 6, - "recommended_symbol": "ampKUJI" + "recommended_symbol": "JIMMY" }, { - "denom": "ibc/051A38BBEF92B9D8293AFBE1FA293E704359E9CB28297A0FD5DBA3E9CCEE9AB1", + "denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", "chain_id": "osmosis-1", - "origin_denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ENMODA", - "name": "ENMODA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png", + "is_svm": false, + "symbol": "BADKID", + "name": "BADKID", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", "decimals": 6, - "recommended_symbol": "ENMODA" + "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", + "recommended_symbol": "BADKID" }, { - "denom": "ibc/0613015ADBC138C75772D6A64C07302FACC8761019B5F453A0E94AB831A85DF5", + "denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1x62mjnme4y0rdnag3r8rfgjuutsqlkkyuh4ndgex0wl3wue25uksau39q8", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-341", + "origin_denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "xASTRO", - "name": "xASTRO", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/xAstro.svg", + "is_svm": false, + "symbol": "bOSMO", + "name": "bOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png", "decimals": 6, - "recommended_symbol": "xASTRO" + "description": "BackBone Labs Liquid Staked OSMO", + "recommended_symbol": "bOSMO" }, { - "denom": "ibc/0EF15DF2F02480ADE0BB6E85D9EBB5DAEA2836D3860E9F97F9AADE4F57A31AA0", + "denom": "ibc/63A7CA0B6838AD8CAD6B5103998FF9B9B6A6F06FBB9638BFF51E63E0142339F3", "chain_id": "osmosis-1", - "origin_denom": "uluna", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "drop-core1zhs909jp9yktml6qqx9f0ptcq2xnhhj99cja03j3lfcsp2pgm86studdrz", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-2188", "is_cw20": false, "is_evm": false, - "symbol": "LUNC", - "name": "LUNC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", + "is_svm": false, + "symbol": "XRP.core", + "name": "XRP.core", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/xrpl/images/xrp.png", "decimals": 6, - "description": "The native staking token of Terra Classic.", - "coingecko_id": "terra-luna", - "recommended_symbol": "LUNC" + "description": "XRP bridged from XRPL", + "coingecko_id": "ripple", + "recommended_symbol": "XRP.core" }, { - "denom": "ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE", + "denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "JAPE", - "name": "JAPE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png", + "is_svm": false, + "symbol": "ampOSMO", + "name": "ampOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", "decimals": 6, - "description": "Governance and utility token for the Junø Apes NFT platform on Juno", - "recommended_symbol": "JAPE" + "description": "ERIS liquid staked OSMO", + "recommended_symbol": "ampOSMO" }, { - "denom": "ibc/1DE9A32D603EE05E9B8619DF24D90FD518C932AE0B5B3209A986B7262DBADE2A", + "denom": "ibc/051A38BBEF92B9D8293AFBE1FA293E704359E9CB28297A0FD5DBA3E9CCEE9AB1", "chain_id": "osmosis-1", - "origin_denom": "ft575B10B0CEE2C164D9ED6A96313496F164A9607C", + "origin_denom": "ft85AE1716C5E39EA6D64BBD7898C3899A7B500626", "origin_chain_id": "bitsong-2b", "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "D9X", - "name": "D9X", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft575B10B0CEE2C164D9ED6A96313496F164A9607C.png", + "is_svm": false, + "symbol": "ENMODA", + "name": "ENMODA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft85AE1716C5E39EA6D64BBD7898C3899A7B500626.png", "decimals": 6, - "recommended_symbol": "D9X" + "recommended_symbol": "ENMODA" }, { - "denom": "ibc/249A784F6859EB66DB4792E0021BDAE7B358A70DF91B92E66587CB4D45B5AF35", + "denom": "ibc/2108F2D81CBE328F371AD0CEF56691B18A86E08C3651504E42487D9EE92DDE9C", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-168", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "origin_chain_id": "wormchain", + "trace": "transfer/channel-2186", "is_cw20": false, "is_evm": false, - "symbol": "EMPWR", - "name": "EMPWR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png", + "is_svm": false, + "symbol": "USDT.wh", + "name": "USDT.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "recommended_symbol": "EMPWR" + "description": "Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "coingecko_id": "tether", + "recommended_symbol": "USDT.wh" }, { - "denom": "ibc/42A9553A7770F3D7B62F3A82AF04E7719B4FD6EAF31BE5645092AAC4A6C2201D", + "denom": "ibc/398B6C2444E1C62BC17B807FE0396407AE6B48424752F8D4150FB2C90FC4572F", "chain_id": "osmosis-1", - "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-642", + "origin_denom": "factory/kujira1w4yaama77v53fp0f9343t9w2f932z526vj970n2jv5055a7gt92sxgwypf/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "GUPPY", - "name": "GUPPY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "is_svm": false, + "symbol": "xUSK", + "name": "xUSK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/xusk.png", "decimals": 6, - "description": "GUPPY", - "recommended_symbol": "GUPPY" + "recommended_symbol": "xUSK" }, { - "denom": "ibc/44492EAB24B72E3FB59B9FA619A22337FB74F95D8808FE6BC78CC0E6C18DC2EC", + "denom": "ibc/61DE6748CA641D2422C6D07C53F6C7215EEF7AE8BC61439B83A0DEA061B487E1", "chain_id": "osmosis-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-259", + "origin_denom": "ox-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", - "decimals": 6, - "description": "The native over-collateralized stablecoin from the Kujira chain.", - "coingecko_id": "usk", - "recommended_symbol": "USK" + "is_svm": false, + "symbol": "OX", + "name": "OX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg", + "decimals": 18, + "recommended_symbol": "OX.axl" }, { - "denom": "ibc/46C83BB054E12E189882B5284542DB605D94C99827E367C9192CF0579CD5BC83", + "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", "chain_id": "osmosis-1", - "origin_denom": "uqstars", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-522", + "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "qSTARS", - "name": "qSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", + "is_svm": false, + "symbol": "SAIL", + "name": "SAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", "decimals": 6, - "description": "Quicksilver Liquid Staked STARS", - "recommended_symbol": "qSTARS" + "description": "Sail DAO is a liquidity deployment and management DAO built as a collaboration between the Osmosis and Migaloo Blockchains.", + "recommended_symbol": "SAIL" }, { - "denom": "ibc/698350B8A61D575025F3ED13E9AC9C0F45C89DEFE92F76D5838F1D3C1A7FF7C9", + "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", "chain_id": "osmosis-1", - "origin_denom": "stutia", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-326", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-143", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "stTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "decimals": 6, - "description": "Stride's liquid staked TIA", - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" + "description": "The native staking and governance token of Kava", + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E", + "denom": "ibc/92BE0717F4678905E53F4E45B2DED18BC0CB97BF1F8B6A25AFEDF3D5A879B4D5", "chain_id": "osmosis-1", - "origin_denom": "usomm", - "origin_chain_id": "sommelier-3", - "trace": "transfer/channel-165", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-320", "is_cw20": false, "is_evm": false, - "symbol": "SOMM", - "name": "SOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", "decimals": 6, - "description": "Somm Token (SOMM) is the native staking token of the Sommelier Chain", - "coingecko_id": "sommelier", - "recommended_symbol": "SOMM" + "description": "IST is the stable token used by the Agoric chain for execution fees and commerce.", + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" }, { - "denom": "ibc/B1E0166EA0D759FDF4B207D1F5F12210D8BFE36F2345CEFC76948CE2B36DFBAF", + "denom": "ibc/1A611E8A3E4248106A1A5A80A64BFA812739435E8B9888EB3F652A21F029F317", "chain_id": "osmosis-1", - "origin_denom": "aplanq", - "origin_chain_id": "planq_7070-2", - "trace": "transfer/channel-492", + "origin_denom": "unyx", + "origin_chain_id": "nyx", + "trace": "transfer/channel-15464", "is_cw20": false, "is_evm": false, - "symbol": "PLQ", - "name": "PLQ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", - "decimals": 18, - "description": "The native EVM, governance and staking token of the Planq Network", - "coingecko_id": "planq", - "recommended_symbol": "PLQ" + "is_svm": false, + "symbol": "NYX", + "name": "NYX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nyx.png", + "decimals": 6, + "description": "NYX Token (NYX) is the Nym Network's native staking and governance token.", + "recommended_symbol": "NYX" }, { - "denom": "ibc/B797E4F42CD33C50511B341E50C5CC0E8EF0D93B1E1247ABAA071583B8619202", + "denom": "ibc/1BC5AE276CEBAF1837F985B1A750FD35932F1AC0EC8411CAD1EE9D643BF4855B", "chain_id": "osmosis-1", - "origin_denom": "ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "cwscrt", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "404DR", - "name": "404DR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft99091610CCC66F4277C66D14AF2BC4C5EE52E27A.png", + "is_svm": false, + "symbol": "WSCRT", + "name": "WSCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wscrt.png", "decimals": 6, - "recommended_symbol": "404DR" + "coingecko_id": "secret-erc20", + "recommended_symbol": "WSCRT.sif" }, { - "denom": "ibc/5E2DFDF1734137302129EA1C1BA21A580F96F778D4F021815EA4F6DB378DA1A4", + "denom": "ibc/1C65320EE79A82EB2C716CE7F6E51A36833FEA6B7E7D62447C6566D41E9FF97B", "chain_id": "osmosis-1", - "origin_denom": "wftm-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "cenj", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "FTM", - "name": "FTM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/fantom/images/ftm.png", + "is_svm": false, + "symbol": "ENJ", + "name": "ENJ", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/enj.png", "decimals": 18, - "description": "Fantom's native utility token — FTM — powers the entire Fantom blockchain ecosystem. FTM tokens are used for staking, governance, payments, and fees on the network.", - "coingecko_id": "wrapped-fantom", - "recommended_symbol": "FTM.axl" + "coingecko_id": "enjincoin", + "recommended_symbol": "ENJ.sif" }, { - "denom": "ibc/072E5B3D6F278B3E6A9C51D7EAD1A737148609512C5EBE8CBCB5663264A0DDB7", + "denom": "factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR", "chain_id": "osmosis-1", - "origin_denom": "peggy0xd73175f9eb15eee81745d367ae59309Ca2ceb5e2", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "injective.GLTO", - "name": "injective.GLTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/glto.png", + "is_svm": false, + "symbol": "RAPTR", + "name": "RAPTR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png", "decimals": 6, - "description": "GLTO-ERC20 on injective", - "recommended_symbol": "injective.GLTO.peggy" + "description": "Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.", + "recommended_symbol": "RAPTR" }, { - "denom": "ibc/0824A92510C1CE67BF02944854A5D7C7F392DF111045B4551ADDF7EFFEA05A32", + "denom": "ibc/2AE297399A20F5CCC7F943901CB050AE40EC4E8804D73050ADC5BB2B8128DD4C", "chain_id": "osmosis-1", - "origin_denom": "eth.1.2.942d87", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-188", + "origin_denom": "factory/juno1qly4zcmzr2gyxtze5yt9chv2srczwwunppxjfh/NEXX", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-42", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", - "decimals": 18, - "recommended_symbol": "ETH.carbon" + "is_svm": false, + "symbol": "NEXX", + "name": "NEXX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/nexx.png", + "decimals": 6, + "recommended_symbol": "NEXX" }, { - "denom": "ibc/2BF9656CAB0384A31167DB9B0254F0FB1CB4346A229BD7E5CBDCBB911C3740F7", + "denom": "ibc/2CD9F8161C3FC332E78EF0C25F6E684D09379FB2F56EF9267E7EC139642EC57B", "chain_id": "osmosis-1", - "origin_denom": "erc20/0x1cFc8f1FE8D5668BAFF2724547EcDbd6f013a280", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-204", + "origin_denom": "stusaga", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "BERLIN", - "name": "BERLIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/berlin.png", - "decimals": 18, - "recommended_symbol": "BERLIN" + "is_svm": false, + "symbol": "stSAGA", + "name": "stSAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", + "decimals": 6, + "description": "Stride's liquid staked SAGA", + "coingecko_id": "stride-staked-saga", + "recommended_symbol": "stSAGA" }, { - "denom": "ibc/3624ED410166AC6F418D30390F003114003788620CFFAEE5C881F1B44A4DDA75", + "denom": "ibc/5A0060579D24FBE5268BEA74C3281E7FE533D361C41A99307B4998FEC611E46B", "chain_id": "osmosis-1", - "origin_denom": "cmatic", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "stusomm", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "MATIC", - "name": "MATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/matic.png", - "decimals": 18, - "coingecko_id": "matic-network", - "recommended_symbol": "MATIC.sif" + "is_svm": false, + "symbol": "stSOMM", + "name": "stSOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", + "decimals": 6, + "coingecko_id": "stride-staked-sommelier", + "recommended_symbol": "stSOMM" }, { - "denom": "ibc/5F5B7DA5ECC80F6C7A8702D525BB0B74279B1F7B8EFAE36E423D68788F7F39FF", + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno10gthz5ufgrpuk5cscve2f0hjp56wgp90psqxcrqlg4m9mcu9dh8q4864xy", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KLEO", - "name": "KLEO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png", + "is_svm": false, + "symbol": "MBRN", + "name": "MBRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", "decimals": 6, - "description": "Kleomedes Token", - "recommended_symbol": "KLEO" + "description": "Membrane's protocol token", + "coingecko_id": "membrane", + "recommended_symbol": "MBRN" }, { - "denom": "ibc/18A676A074F73B9B42DA4F9DFC8E5AEF334C9A6636DDEC8D34682F52F1DECDF6", + "denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno19rqljkh95gh40s7qdx40ksx3zq5tm4qsmsrdz9smw668x9zdr3lqtg33mf", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/osmo1vdvnznwg597qngrq9mnfcfk0am9jdc9y446jewhcqdreqz4r75xq5j5zvy/ymos", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEASY", - "name": "SEASY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png", + "is_svm": false, + "symbol": "YMOS", + "name": "YMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ymos.png", "decimals": 6, - "description": "StakeEasy governance token", - "recommended_symbol": "SEASY" + "description": "The governance and utility token of Yieldmos, the Interchain Automation Protocol", + "recommended_symbol": "YMOS" }, { - "denom": "ibc/18FB5C09D9D2371F659D4846A956FA56225E377EE3C3652A2BF3542BF809159D", + "denom": "ibc/0B3D528E74E3DEAADF8A68F393887AC7E06028904D02173561B0D27F6E751D0A", "chain_id": "osmosis-1", - "origin_denom": "wfil-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "origin_denom": "cw20:secret153wu605vvp934xhd4k9dtd640zsep5jkesstdm", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-476", "is_cw20": false, "is_evm": false, - "symbol": "FIL", - "name": "FIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/filecoin/images/wfil.png", - "decimals": 18, - "description": "Filecoin is a decentralized storage network designed to turn cloud storage into an algorithmic market. The network facilitates open markets for storing and retrieving data, where users pay to store their files on storage miners. Filecoin is built on top of the InterPlanetary File System (IPFS), a peer-to-peer storage network. Filecoin aims to store data in a decentralized manner, unlike traditional cloud storage providers.\n\nParticipants in the Filecoin network are incentivized to act honestly and store as much data as possible because they earn the Filecoin cryptocurrency (FIL) in exchange for their storage services. This setup ensures the integrity and accessibility of data stored. Filecoin's model allows for a variety of storage options, including long-term archival storage and more rapid retrieval services, making it a versatile solution for decentralized data storage. The project, developed by Protocol Labs, also focuses on ensuring that data is stored reliably and efficiently.", - "coingecko_id": "filecoin", - "recommended_symbol": "FIL.axl" + "is_svm": false, + "symbol": "SHD", + "name": "SHD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/shd.png", + "decimals": 8, + "description": "The native token cw20 for Shade on Secret Network", + "coingecko_id": "shade-protocol", + "recommended_symbol": "SHD" }, { - "denom": "ibc/4A28F9A65630F04C9B744D4ABCEB7FDAF8898E432272FC7F2BA0C324EB2BF13B", + "denom": "ibc/13EED12E8F9D922CD593302BDEC0154C58EDA4DBB8DF723F3BBFD0476BA3D988", "chain_id": "osmosis-1", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-259", + "origin_denom": "cbal", + "origin_chain_id": "sifchain-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", - "decimals": 6, - "recommended_symbol": "LOCAL" + "is_svm": false, + "symbol": "BAL", + "name": "BAL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bal.png", + "decimals": 18, + "coingecko_id": "balancer", + "recommended_symbol": "BAL.sif" }, { - "denom": "ibc/5035A2B603841B19A40A060B9F6693F09C8F1E038C2A42589F781929A253148E", + "denom": "ibc/94ED1F172BC633DFC56D7E26551D8B101ADCCC69052AC44FED89F97FF658138F", "chain_id": "osmosis-1", - "origin_denom": "ueur", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "origin_denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "EUTC", - "name": "EUTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/eut.png", + "is_svm": false, + "symbol": "SNEAKY", + "name": "SNEAKY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png", "decimals": 6, - "recommended_symbol": "EUTC" + "description": "The native coin of Sneaky Productions.", + "recommended_symbol": "SNEAKY" }, { - "denom": "ibc/57AA1A70A4BC9769C525EBF6386F7A21536E04A79D62E1981EFCEF9428EBB205", + "denom": "ibc/B5DC1A7CE12BE59030297ABAFF0B533BDC597B42E983C187C439C0C033F51B24", "chain_id": "osmosis-1", - "origin_denom": "ukava", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-143", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "KAVA", - "name": "KAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "is_svm": false, + "symbol": "FUZN", + "name": "FUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", "decimals": 6, - "description": "The native staking and governance token of Kava", - "coingecko_id": "kava", - "recommended_symbol": "KAVA" + "recommended_symbol": "FUZN" }, { - "denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", + "denom": "ibc/CAA179E40F0266B0B29FB5EAA288FB9212E628822265D4141EBD1C47C3CBFCBC", "chain_id": "osmosis-1", - "origin_denom": "rowan", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, - "symbol": "ROWAN", - "name": "ROWAN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", - "decimals": 18, - "description": "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", - "coingecko_id": "sifchain", - "recommended_symbol": "ROWAN" + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "decimals": 6, + "description": "PSTAKE Liquid-Staked ATOM", + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" }, { - "denom": "ibc/8C8F6349F656C943543C6B040377BE44123D01F712277815C3C13098BB98818C", + "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", "chain_id": "osmosis-1", - "origin_denom": "factory/neutron170v88vrtnedesyfytuku257cggxc79rd7lwt7q/ucircus", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-874", + "origin_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CIRCUS", - "name": "CIRCUS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/circus.png", + "is_svm": false, + "symbol": "CDT", + "name": "CDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", "decimals": 6, - "description": "clownmaxxed store of value", - "recommended_symbol": "CIRCUS" + "description": "Membrane's CDP-style stablecoin called CDT", + "coingecko_id": "collateralized-debt-token", + "recommended_symbol": "CDT" }, { - "denom": "ibc/8E697BDABE97ACE8773C6DF7402B2D1D5104DD1EEABE12608E3469B7F64C15BA", - "chain_id": "osmosis-1", - "origin_denom": "ujkl", - "origin_chain_id": "jackal-1", - "trace": "transfer/channel-412", + "denom": "ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4", + "chain_id": "osmosis-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "JKL", - "name": "JKL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "description": "The native staking and governance token of Jackal.", - "coingecko_id": "jackal-protocol", - "recommended_symbol": "JKL" + "description": "The native token of Stargaze", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/1EB03F13F29FEA73444586FC4E88A8C14ACE9291501E9658E3BEF951EA4AC85D", + "denom": "ibc/176DD560277BB0BD676260BE02EBAB697725CA85144D8A2BF286C6B5323DB5FE", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1jrr0tuuzxrrwcg6hgeqhw5wqpck2y55734e7zcrp745aardlp0qqg8jz06", + "origin_denom": "cw20:juno1zkwveux7y6fmsr88atf3cyffx96p0c96qr8tgcsj7vfnhx7sal3s3zu3ps", "origin_chain_id": "juno-1", "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "APEMOS", - "name": "APEMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/apemos.png", + "is_svm": false, + "symbol": "JAPE", + "name": "JAPE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/jape.png", "decimals": 6, - "description": "Apemos", - "recommended_symbol": "APEMOS" + "description": "Governance and utility token for the Junø Apes NFT platform on Juno", + "recommended_symbol": "JAPE" }, { - "denom": "ibc/0E4FA664327BD40B32803EE84A77F145834C0281B7F82B65521333B3669FA0BA", + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", "chain_id": "osmosis-1", - "origin_denom": "cw20:juno1ngww7zxak55fql42wmyqrr4rhzpne24hhs4p3w4cwhcdgqgr3hxsmzl9zg", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CLST", - "name": "CLST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/celestims.png", + "is_svm": false, + "symbol": "sqTIA", + "name": "sqTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg", "decimals": 6, - "description": "Celestims", - "recommended_symbol": "CLST" + "description": "Margined Power Token sqTIA", + "recommended_symbol": "sqTIA" }, { "denom": "ibc/231FD77ECCB2DB916D314019DA30FE013202833386B1908A191D16989AD80B5A", @@ -28316,629 +34416,709 @@ "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "polygon.USDC", - "name": "polygon.USDC", + "is_svm": false, + "symbol": "polygon.USDC.axl", + "name": "polygon.USDC.axl", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, "description": "USDC is a fully collateralized US Dollar stablecoin developed by CENTRE, the open source project with Circle being the first of several forthcoming issuers.", "recommended_symbol": "polygon.USDC.axl.polygon" }, { - "denom": "ibc/56C276FC136E239449DCE664292DBEEF5795C4EF4B5B35DB98BD1C0948274867", + "denom": "ibc/442A08C33AE9875DF90792FFA73B5728E1CAECE87AB4F26AE9B422F1E682ED23", "chain_id": "osmosis-1", - "origin_denom": "ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A", - "origin_chain_id": "bitsong-2b", - "trace": "transfer/channel-73", + "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-874", "is_cw20": false, "is_evm": false, - "symbol": "RWNE", - "name": "RWNE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftE4903ECC861CA45F2C2BC7EAB8255D2E6E87A33A.png", + "is_svm": false, + "symbol": "BAD", + "name": "BAD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", "decimals": 6, - "recommended_symbol": "RWNE" + "description": "Baddest coin on Cosmos", + "recommended_symbol": "BAD" }, { - "denom": "ibc/9E6DDA08C9342179EF10BCB1573704535A4E6B8D9959A20E998232DB1F1B5170", + "denom": "ibc/5164ECF584AD7DC27DA9E6A89E75DAB0F7C4FCB0A624B69215B8BC6A2C40CD07", "chain_id": "osmosis-1", - "origin_denom": "factory/inj18nm3q7r2rckklp7h8hgfzu2dlc20sftvd2893w/nUSD", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "cw20:juno10vgf2u03ufcf25tspgn05l7j3tfg0j63ljgpffy98t697m5r5hmqaw95ux", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "nUSD", - "name": "nUSD", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/nUSD.png", - "decimals": 18, - "recommended_symbol": "nUSD" + "is_svm": false, + "symbol": "SLCA", + "name": "SLCA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/silica.png", + "decimals": 6, + "description": "Silica", + "recommended_symbol": "SLCA" }, { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", + "denom": "ibc/51D893F870B7675E507E91DA8DB0B22EA66333207E4F5C0708757F08EE059B0B", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/ucdt", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "CDT", - "name": "CDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/CDT.svg", + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "decimals": 6, - "description": "Membrane's CDP-style stablecoin called CDT", - "coingecko_id": "collateralized-debt-token", - "recommended_symbol": "CDT" + "description": "MantaDAO Governance Token", + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" }, { - "denom": "ibc/B1C1806A540B3E165A2D42222C59946FB85BA325596FC85662D7047649F419F3", + "denom": "ibc/6BDB4C8CCD45033F9604E4B93ED395008A753E01EECD6992E7D1EA23D9D3B788", "chain_id": "osmosis-1", - "origin_denom": "ulore", - "origin_chain_id": "gitopia", - "trace": "transfer/channel-781", + "origin_denom": "cw20:juno1r4pzw8f9z0sypct5l9j906d47z998ulwvhvqe5xdwgy8wf84583sxwh0pa", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "LORE", - "name": "LORE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/lore.png", + "is_svm": false, + "symbol": "juno.RAC", + "name": "juno.RAC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/rac.png", "decimals": 6, - "description": "The native token of Gitopia", - "coingecko_id": "gitopia", - "recommended_symbol": "LORE" + "description": "Racoon aims to simplify accessibility to AI, NFTs and Gambling on the Cosmos Ecosystem", + "coingecko_id": "racoon", + "recommended_symbol": "juno.RAC" }, { - "denom": "ibc/F287710FBC818A3F6C77312B1C6FA32785766E93CF7C052EA140219AEBA0878E", + "denom": "ibc/7C781B4C2082CD62129A972D47486D78EC17155C299270E3C89348EA026BEAF8", "chain_id": "osmosis-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7omXa4gryZ5NiBmLep7JsTtTtANCVKXwT9vbN91aS1br", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-782", + "origin_denom": "cw20:juno1gz8cf86zr4vw9cjcyyv432vgdaecvr9n254d3uwwkx9rermekddsxzageh", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-169", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-btc-wormhole", - "recommended_symbol": "WBTC" + "is_svm": false, + "symbol": "GKEY", + "name": "GKEY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/gkey.png", + "decimals": 6, + "description": "Gelotto Year 1 Grand Prize Token", + "recommended_symbol": "GKEY" }, { - "denom": "ibc/1E26DB0E5122AED464D98462BD384FCCB595732A66B3970AE6CE0B58BAE0FC49", + "denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", "chain_id": "osmosis-1", - "origin_denom": "wglmr-wei", + "origin_denom": "uaxl", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "GLMR", - "name": "GLMR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", - "decimals": 18, - "description": "Glimmer (GLMR) is the utility token of the Moonbeam Network, Moonbeam’s primary deployment on the Polkadot network that serves as a developer-friendly parachain.", - "coingecko_id": "wrapped-moonbeam", - "recommended_symbol": "GLMR.axl" - }, - { - "denom": "ibc/208B2F137CDE510B44C41947C045CFDC27F996A9D990EA64460BDD5B3DBEB2ED", - "chain_id": "osmosis-1", - "origin_denom": "upasg", - "origin_chain_id": "passage-2", - "trace": "transfer/channel-2494", - "is_cw20": false, - "is_evm": false, - "symbol": "PASG", - "name": "PASG", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "description": "The native staking and governance token of the Passage chain.", - "coingecko_id": "passage", - "recommended_symbol": "PASG" + "description": "The native token of Axelar", + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/21F5C1F42DB8AAB18E7D5268011F6F8723C1EB584B32AE4684D8CDC49D4BF61B", + "denom": "ibc/8318FD63C42203D16DDCAF49FE10E8590669B3219A3E87676AC9DA50722687FB", "chain_id": "osmosis-1", - "origin_denom": "ckft", + "origin_denom": "rowan", "origin_chain_id": "sifchain-1", "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "KFT", - "name": "KFT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/kft.png", + "is_svm": false, + "symbol": "ROWAN", + "name": "ROWAN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", "decimals": 18, - "coingecko_id": "knit-finance", - "recommended_symbol": "KFT.sif" + "description": "Rowan Token (ROWAN) is the Sifchain Network's native utility token, used as the primary means to govern, provide liquidity, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "coingecko_id": "sifchain", + "recommended_symbol": "ROWAN" }, { - "denom": "ibc/2CDA7CA33077911B2BF5E5D3423B6CC76E1093A7F8A6D876943C2AF69CBC9875", + "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", "chain_id": "osmosis-1", - "origin_denom": "factory/inj1cdwt8g7nxgtg2k4fn8sj363mh9ahkw2qt0vrnc/ampINJ", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampINJ", - "name": "ampINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ampinj.png", + "is_svm": false, + "symbol": "sqATOM", + "name": "sqATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg", "decimals": 6, - "recommended_symbol": "ampINJ" + "description": "Margined Power Token sqATOM", + "recommended_symbol": "sqATOM" }, { - "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "denom": "ibc/D9AFCECDD361D38302AA66EB3BAC23B95234832C51D12489DC451FA2B7C72782", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "unls", + "origin_chain_id": "pirin-1", + "trace": "transfer/channel-783", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "is_svm": false, + "symbol": "NLS", + "name": "NLS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", "decimals": 6, - "description": "Margined Power Token sqOSMO", - "recommended_symbol": "sqOSMO" + "description": "The native token of Nolus chain", + "coingecko_id": "nolus", + "recommended_symbol": "NLS" }, { - "denom": "ibc/1C65320EE79A82EB2C716CE7F6E51A36833FEA6B7E7D62447C6566D41E9FF97B", + "denom": "ibc/249A784F6859EB66DB4792E0021BDAE7B358A70DF91B92E66587CB4D45B5AF35", "chain_id": "osmosis-1", - "origin_denom": "cenj", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-168", "is_cw20": false, "is_evm": false, - "symbol": "ENJ", - "name": "ENJ", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/enj.png", - "decimals": 18, - "coingecko_id": "enjincoin", - "recommended_symbol": "ENJ.sif" + "is_svm": false, + "symbol": "EMPWR", + "name": "EMPWR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png", + "decimals": 6, + "recommended_symbol": "EMPWR" }, { - "denom": "ibc/903A61A498756EA560B85A85132D3AEE21B5DEDD41213725D22ABF276EA6945E", + "denom": "ibc/BD796662F8825327D41C96355DF62045A5BA225BAE31C0A86289B9D88ED3F44E", "chain_id": "osmosis-1", - "origin_denom": "uaxl", + "origin_denom": "rai-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-208", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "description": "The native token of Axelar", - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "RAI", + "name": "RAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/rai.svg", + "decimals": 18, + "description": "RAI is a non-pegged, ETH-backed stable asset. It is useful as more 'stable' collateral for other DeFi protocols (compared to ETH or BTC) or as a stable asset with an embedded interest rate.", + "coingecko_id": "rai", + "recommended_symbol": "RAI.axl" }, { - "denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "denom": "ibc/C1CEF00F016FE89EA6E5B07DA895AACD91B0AAD69A991033D846B988AD4FB69D", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "SAIL", - "name": "SAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "is_svm": false, + "symbol": "CMQZ", + "name": "CMQZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ftD4B6290EDEE1EC7B97AB5A1DC6C177EFD08ADCC3.png", "decimals": 6, - "description": "Sail DAO Token", - "recommended_symbol": "SAIL" + "recommended_symbol": "CMQZ" }, { - "denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "denom": "ibc/04908A077381D38524451F5E2F387E47A12244E5526397E73C0CBAD83E372910", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-259", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "ampKUJI", + "name": "ampKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", "decimals": 6, - "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", - "recommended_symbol": "WOSMO" + "recommended_symbol": "ampKUJI" }, { - "denom": "ibc/6B02EF600BA79CD60D4A85BA4DC81D02559827E715386A3BC4C5D8386F8037E4", + "denom": "ibc/423967B46B1A51D78619085105B04FCFA14F7CBC0BE7539A316B2DCDFC7D8C07", "chain_id": "osmosis-1", - "origin_denom": "ccream", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "origin_denom": "ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7", + "origin_chain_id": "bitsong-2b", + "trace": "transfer/channel-73", "is_cw20": false, "is_evm": false, - "symbol": "CREAM", - "name": "CREAM", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cream.png", - "decimals": 18, - "coingecko_id": "cream-2", - "recommended_symbol": "CREAM.sif" + "is_svm": false, + "symbol": "FASANO", + "name": "FASANO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/ft25B30C386CDDEBD1413D5AE1180956AE9EB3B9F7.png", + "decimals": 6, + "recommended_symbol": "FASANO" }, { - "denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "denom": "ibc/46B44899322F3CD854D2D46DEEF881958467CDD4B3B10086DA49296BBED94BED", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-42", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "description": "Levana native token", - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "description": "The native token of JUNO Chain", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", + "denom": "ibc/06EF575844982382F4D1BC3830D294557A30EDB3CD223153AFC8DFEF06349C56", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1s794h9rxggytja3a4pmwul53u98k06zy2qtrdvjnfuxruh7s8yjs6cyxgd/umbrn", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "cw20:terra1xp9hrhthzddnl7j5du83gqqr4wmdjm5t0guzg9jp6jwrtpukwfjsjgy4f3", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-341", "is_cw20": false, "is_evm": false, - "symbol": "MBRN", - "name": "MBRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/MBRN.svg", + "is_svm": false, + "symbol": "SAYVE", + "name": "SAYVE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/sayve.png", "decimals": 6, - "description": "Membrane's protocol token", - "coingecko_id": "membrane", - "recommended_symbol": "MBRN" + "description": "Sayve is a revolutionary language learning app in the Web3 era that combines gamification, blockchain technology, and a Metaverse experience to motivate users to learn languages while earning rewards.", + "recommended_symbol": "SAYVE" }, { - "denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "denom": "ibc/2AD3C64D19ADFBB522CD738B58F421102143F827C1CAFF574A8BF0B81017D53D", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "description": "MilkyWay's liquid staked TIA", - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "coingecko_id": "tether", + "recommended_symbol": "USDT.peggy" }, { - "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", + "denom": "ibc/71DAA4CAFA4FE2F9803ABA0696BA5FC0EFC14305A2EA8B4E01880DB851B1EC02", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqatom", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/uBRNCH", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-75", "is_cw20": false, "is_evm": false, - "symbol": "sqATOM", - "name": "sqATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqatom.svg", + "is_svm": false, + "symbol": "BRNCH", + "name": "BRNCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png", "decimals": 6, - "description": "Margined Power Token sqATOM", - "recommended_symbol": "sqATOM" + "description": "ohhNFT LP token.", + "recommended_symbol": "BRNCH" }, { - "denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "denom": "ibc/71F11BC0AF8E526B80E44172EBA9D3F0A8E03950BB882325435691EBC9450B1D", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-782", "is_cw20": false, "is_evm": false, - "symbol": "stIBCX", - "name": "stIBCX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", + "is_svm": false, + "symbol": "SEI", + "name": "SEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", "decimals": 6, - "recommended_symbol": "stIBCX" + "description": "The native staking token of Sei.", + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" }, { - "denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "denom": "ibc/884EBC228DFCE8F1304D917A712AA9611427A6C1ECC3179B2E91D7468FB091A2", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "origin_chain_id": "osmosis-1", - "trace": "", + "origin_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "IBCX", - "name": "IBCX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", + "is_svm": false, + "symbol": "HAVA", + "name": "HAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", "decimals": 6, - "coingecko_id": "ibc-index", - "recommended_symbol": "IBCX" + "description": "Hava Coin is the lifeblood of the Cosmos & Injective networks, rewarding builders and welcoming supporters.", + "coingecko_id": "hava-coin", + "recommended_symbol": "HAVA" }, { - "denom": "ibc/58C12A46739E2FF67E57F559E08B264C2B2E347C4DE432BEFC2ADA47D49DFB69", + "denom": "factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC", "chain_id": "osmosis-1", - "origin_denom": "cw20:terra1cl273523kmr2uwjhhznq54je69mted2u3ljffm8kp2ap4z3drdksftwqun", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-341", + "origin_denom": "factory/osmo1kqdw6pvn0xww6tyfv2sqvkkencdz0qw406x54r/IBC", + "origin_chain_id": "osmosis-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DROGO", - "name": "DROGO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/drogo.png", + "is_svm": false, + "symbol": "IBC", + "name": "IBC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibc.png", "decimals": 6, - "recommended_symbol": "DROGO" + "description": "OnE mEmEcOiN tO cOnNeCt oL ImBeCiles - aNd in Da Cosmos BiNd DeM", + "recommended_symbol": "IBC" }, { - "denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "origin_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", "origin_chain_id": "osmosis-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampOSMO", - "name": "ampOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", + "is_svm": false, + "symbol": "LAB", + "name": "LAB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", "decimals": 6, - "description": "ERIS liquid staked OSMO", - "recommended_symbol": "ampOSMO" + "description": "LAB - Everything is an Experiment", + "recommended_symbol": "LAB" + } + ] + }, + "pacific-1": { + "assets": [ + { + "denom": "factory/sei1wrv8u8ghtnu5dlnez4kgscz6l5s6eg97pf805v/SEIV", + "chain_id": "pacific-1", + "origin_denom": "factory/sei1wrv8u8ghtnu5dlnez4kgscz6l5s6eg97pf805v/SEIV", + "origin_chain_id": "pacific-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SEIV", + "name": "SEIVIOUR", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seiv-2.png", + "decimals": 6, + "recommended_symbol": "SEIV" }, { - "denom": "ibc/0E30775281643124D79B8670ACD3F478AC5FAB2B1CA1E32903D0775D8A8BB064", - "chain_id": "osmosis-1", - "origin_denom": "cw20:juno15au4k2jgwd0jnchy0fkg3lm00fpt7jt0j2duuzradn2q7sega2dszyn5pp", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-169", + "denom": "ibc/1AFD3AA954049436FC51D861BB47153390FFF08A445B7793C15E99281FB02FA3", + "chain_id": "pacific-1", + "origin_denom": "peaka", + "origin_chain_id": "vota-ash", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "PLTN", - "name": "PLTN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/pltn.png", + "is_svm": false, + "symbol": "DORA", + "name": "DORA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", + "decimals": 18, + "recommended_symbol": "DORA" + }, + { + "denom": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "chain_id": "pacific-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "recommended_symbol": "PLTN" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/64BA6E31FE887D66C6F8F31C7B1A80C7CA179239677B4088BB55F5EA07DBE273", - "chain_id": "osmosis-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-122", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/871jbn9unTavWsAe83f2Ma9GJWSv6BKsyWYLiQ6z3Pva", + "chain_id": "pacific-1", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/871jbn9unTavWsAe83f2Ma9GJWSv6BKsyWYLiQ6z3Pva", + "origin_chain_id": "pacific-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDTbs", + "name": "USDTbs", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "decimals": 8, + "description": "Binance-Peg BSC-USD from BSC (Wormhole)", + "coingecko_id": "tether", + "recommended_symbol": "USDTbs" + }, + { + "denom": "factory/sei1yg63c0kcy2lrcq2szzcctysuyltyxm8d752ee6/seimars", + "chain_id": "pacific-1", + "origin_denom": "factory/sei1yg63c0kcy2lrcq2szzcctysuyltyxm8d752ee6/seimars", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "decimals": 18, - "description": "The INJ token is the native governance token for the Injective chain.", - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "is_svm": false, + "symbol": "SEIMARS", + "name": "Sei Mars", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seimars.png", + "decimals": 6, + "recommended_symbol": "SEIMARS" }, { - "denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "chain_id": "osmosis-1", - "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "origin_chain_id": "osmosis-1", - "trace": "", + "denom": "ibc/423DE4133F8676069BC9550FF251F1F870F6885621C8E363A9F70257BF3AA638", + "chain_id": "pacific-1", + "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, - "symbol": "BADKID", - "name": "BADKID", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "is_svm": false, + "symbol": "AUTISM", + "name": "AUTISM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", "decimals": 6, - "description": "A clan of 11y bad kids crafting chaos on the Cosmos eco. One bad memecoin to rule them all $BADKID. Airdropped to Badkids NFT holders and $STARS stakers. It's so bad, your wallet's throwing a tantrum for it.", - "recommended_symbol": "BADKID" + "coingecko_id": "autism", + "recommended_symbol": "AUTISM" }, { - "denom": "factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR", - "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1279xudevmf5cw83vkhglct7jededp86k90k2le/RAPTR", - "origin_chain_id": "osmosis-1", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/HktfLoADCk9mnjv7XJiN4YXK9ayE6xinLzt8wzcsR2rY", + "chain_id": "pacific-1", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/HktfLoADCk9mnjv7XJiN4YXK9ayE6xinLzt8wzcsR2rY", + "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RAPTR", - "name": "RAPTR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/RAPTR.png", + "is_svm": false, + "symbol": "USDTet", + "name": "USDTet", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "description": "Rapture insurance is the first ever P2P insurance platform on $OSMO. Get rewarded to take care of peoples loved ones after the Rapture.", - "recommended_symbol": "RAPTR" + "description": "Wrapped Tether USD from Ethereum (Wormhole)", + "coingecko_id": "tether-usd-wormhole-from-ethereum", + "recommended_symbol": "USDTet" }, { - "denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", - "chain_id": "osmosis-1", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/sqtia", - "origin_chain_id": "osmosis-1", + "denom": "factory/sei1af98wayfra6xzwly2k9r8v8eentz6fl4qyyqlq/SEIMOON", + "chain_id": "pacific-1", + "origin_denom": "factory/sei1af98wayfra6xzwly2k9r8v8eentz6fl4qyyqlq/SEIMOON", + "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "sqTIA", - "name": "sqTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqtia.svg", + "is_svm": false, + "symbol": "SEIMOON", + "name": "SEIMOON", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seimoon.png", "decimals": 6, - "description": "Margined Power Token sqTIA", - "recommended_symbol": "sqTIA" + "recommended_symbol": "SEIMOON" }, { - "denom": "ibc/0863B7BFD46942F07AA55B3C7138C50F26D9A8168A47767897B04DBF41B7DF37", - "chain_id": "osmosis-1", - "origin_denom": "uchf", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-72", + "denom": "factory/sei1kde9nvjmw6ef5z8gayr5msz79eyt4nswupvfp4/GOGETA", + "chain_id": "pacific-1", + "origin_denom": "factory/sei1kde9nvjmw6ef5z8gayr5msz79eyt4nswupvfp4/GOGETA", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CHTC", - "name": "CHTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/cht.png", + "is_svm": false, + "symbol": "GOGETA", + "name": "SeiGogeta", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/gogeta.png", "decimals": 6, - "recommended_symbol": "CHTC" + "recommended_symbol": "GOGETA" }, { - "denom": "ibc/0E43EDE2E2A3AFA36D0CD38BDDC0B49FECA64FA426A82E102F304E430ECF46EE", - "chain_id": "osmosis-1", + "denom": "ibc/59034348F9F2DBA4EAE6621D9DDA9ADF190F60BDDDD2DC99E226F800886F70B5", + "chain_id": "pacific-1", "origin_denom": "frax-wei", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-208", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "FRAX", "name": "FRAX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", "decimals": 18, - "description": "Frax is a fractional-algorithmic stablecoin protocol. It aims to provide a highly scalable, decentralized, algorithmic money in place of fixed-supply assets like BTC. Additionally, FXS is the value accrual and governance token of the entire Frax ecosystem.", "coingecko_id": "frax", "recommended_symbol": "FRAX.axl" }, { - "denom": "ibc/F409BAB3C37B59F9979B915A1500E2A2991B83886B831D390EF090DBD86B5525", - "chain_id": "osmosis-1", - "origin_denom": "cpond", - "origin_chain_id": "sifchain-1", - "trace": "transfer/channel-47", + "denom": "ibc/91DF61C7EFA0E52C56BA0724E80B93DF6ADECD3A5B19D38FD2B4A7F955D2E2E7", + "chain_id": "pacific-1", + "origin_denom": "ox-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "POND", - "name": "POND", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/pond.png", + "is_svm": false, + "symbol": "OX", + "name": "OX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg", "decimals": 18, - "coingecko_id": "marlin", - "recommended_symbol": "POND.sif" - } - ] - }, - "pacific-1": { - "assets": [ + "coingecko_id": "open-exchange-token", + "recommended_symbol": "OX.axl" + }, { - "denom": "ibc/7577185E42939EE57EF73E2DE57A28BBE7693EDC0766C506E570C5D6B7636B33", + "denom": "ibc/B90CC71937648DEC399CB252D8E179D1EECAB2DCB48E3DA9776CE78B95E3ABF8", "chain_id": "pacific-1", - "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "SAIL", - "name": "SAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "recommended_symbol": "SAIL" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", + "denom": "ibc/CA6FBFAF399474A06263E10D0CE5AEBBE15189D6D4B2DD9ADE61007E68EB9DB0", "chain_id": "pacific-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-45", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/D472EC3D7F2551E2BE949B4F5A61FED25181E8BD9D5DB6F233FA239D48AD570F", + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", "chain_id": "pacific-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-14", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ampWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "is_svm": false, + "symbol": "axlUSDC", + "name": "axlUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "recommended_symbol": "ampWHALE" + "description": "Circle's stablecoin on Axelar", + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "usei", "chain_id": "pacific-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "SEI", + "name": "SEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "description": "The native staking token of Sei.", + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" }, { - "denom": "factory/sei1s3alydvv2mcjtqklk478qfc2scknl2enektkkm/InseinClownPosse", + "denom": "factory/sei1epyu0nrw0gzllswnmlt42a58gl8wlzmr4u86gv/SEIWA", "chain_id": "pacific-1", - "origin_denom": "factory/sei1s3alydvv2mcjtqklk478qfc2scknl2enektkkm/InseinClownPosse", + "origin_denom": "factory/sei1epyu0nrw0gzllswnmlt42a58gl8wlzmr4u86gv/SEIWA", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "JUGGALO", - "name": "InseinClownPosse", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/InseinClownPosse.png", + "is_svm": false, + "symbol": "SEIWA", + "name": "SEIWA-清和", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEIWA.png", "decimals": 6, - "recommended_symbol": "JUGGALO" + "recommended_symbol": "SEIWA" }, { - "denom": "factory/sei1vrz7ndadkf6gwanf6ccy2d2v706yzrx2957fjd/GOLDENRULES", + "denom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", "chain_id": "pacific-1", - "origin_denom": "factory/sei1vrz7ndadkf6gwanf6ccy2d2v706yzrx2957fjd/GOLDENRULES", + "origin_denom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "$GNR", - "name": "goldenrules.lol", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/goldenrules.png", + "is_svm": false, + "symbol": "OIN", + "name": "OIN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png", "decimals": 6, - "recommended_symbol": "$GNR" + "description": "OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.", + "recommended_symbol": "OIN" }, { - "denom": "factory/sei1q96rdw97rpzqut4fkklpsavptkae6mmdsh2u0l/chad", + "denom": "ibc/7577185E42939EE57EF73E2DE57A28BBE7693EDC0766C506E570C5D6B7636B33", "chain_id": "pacific-1", - "origin_denom": "factory/sei1q96rdw97rpzqut4fkklpsavptkae6mmdsh2u0l/chad", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "SEICHAD", - "name": "SEI CHAD", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEICHAD.png", + "is_svm": false, + "symbol": "SAIL", + "name": "SAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", "decimals": 6, - "recommended_symbol": "SEICHAD" + "recommended_symbol": "SAIL" }, { - "denom": "factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "chain_id": "pacific-1", - "origin_denom": "factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "SENSEI", - "name": "SENSEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SenseiDog.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "description": "A wise dog and a marshal arts master", - "recommended_symbol": "SENSEI" + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "factory/sei1nmhmzhtu8sfznlj4f0z7k6pvswrlp00nd5m5z5/SEITAMA", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9tTHn18vLnfyBvrQaia6N15zwrfRCAebZDshoPZ39ahN", "chain_id": "pacific-1", - "origin_denom": "factory/sei1nmhmzhtu8sfznlj4f0z7k6pvswrlp00nd5m5z5/SEITAMA", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9tTHn18vLnfyBvrQaia6N15zwrfRCAebZDshoPZ39ahN", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEITAMA", - "name": "Seitama", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEITAMA.png", - "decimals": 6, - "recommended_symbol": "SEITAMA" + "is_svm": false, + "symbol": "WETHbs", + "name": "WETHbs", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", + "decimals": 8, + "description": "Wrapped Ether from BSC (Wormhole)", + "coingecko_id": "weth", + "recommended_symbol": "WETHbs" }, { - "denom": "ibc/59034348F9F2DBA4EAE6621D9DDA9ADF190F60BDDDD2DC99E226F800886F70B5", + "denom": "factory/sei18n0y0a5wk9afd45j7399gsyasvp6h3k3znts58/shit", "chain_id": "pacific-1", - "origin_denom": "frax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "origin_denom": "factory/sei18n0y0a5wk9afd45j7399gsyasvp6h3k3znts58/shit", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FRAX", - "name": "FRAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", - "decimals": 18, - "coingecko_id": "frax", - "recommended_symbol": "FRAX.axl" + "is_svm": false, + "symbol": "SHIT", + "name": "Seiyan Hulk Illuminati Testosterone", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seiyanhit.png", + "decimals": 6, + "recommended_symbol": "SHIT" }, { "denom": "factory/sei1h76utglzakjeswen79wswzj2x0m2crg722v9cv/seisyphus", @@ -28948,6 +35128,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "seisyphus", "name": "seisyphus", "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seisyphus.png", @@ -28955,223 +35136,274 @@ "recommended_symbol": "seisyphus" }, { - "denom": "factory/sei1saeel30g6mkwqzdp8ezcjwvauzaclxlldn492m/SEIJAY", + "denom": "factory/sei1ntacl2rjuhha4gjlzaal4as5qtnjwxtf47sfg3/useito", "chain_id": "pacific-1", - "origin_denom": "factory/sei1saeel30g6mkwqzdp8ezcjwvauzaclxlldn492m/SEIJAY", + "origin_denom": "factory/sei1ntacl2rjuhha4gjlzaal4as5qtnjwxtf47sfg3/useito", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEIJAY", - "name": "SeiyanJay", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seijay.png", + "is_svm": false, + "symbol": "SEITO", + "name": "Seito Kaiba", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seito-kaiba.png", "decimals": 6, - "recommended_symbol": "SEIJAY" + "recommended_symbol": "SEITO" }, { - "denom": "factory/sei1dud3m0nnj4dcg9qwd4y7n94hy8npe3d6x5a36t/SEIKITTY", + "denom": "factory/sei1r7s9enhsn485rma4uchgvz46hde4caw7hspf6y/SEIGON", "chain_id": "pacific-1", - "origin_denom": "factory/sei1dud3m0nnj4dcg9qwd4y7n94hy8npe3d6x5a36t/SEIKITTY", + "origin_denom": "factory/sei1r7s9enhsn485rma4uchgvz46hde4caw7hspf6y/SEIGON", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEIKITTY", - "name": "SEIKITTY", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/kitty.png", + "is_svm": false, + "symbol": "SEIGON", + "name": "SeiDragon", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seigon.png", "decimals": 6, - "recommended_symbol": "SEIKITTY" + "recommended_symbol": "SEIGON" }, { - "denom": "factory/sei10mwfmhhyr9zyfsyhl8hneu4qptxks2llgngk5t/seionara", + "denom": "factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI", "chain_id": "pacific-1", - "origin_denom": "factory/sei10mwfmhhyr9zyfsyhl8hneu4qptxks2llgngk5t/seionara", + "origin_denom": "factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SNARA", - "name": "Seionara", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seionara.png", + "is_svm": false, + "symbol": "ampSEI", + "name": "ampSEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg", "decimals": 6, - "recommended_symbol": "SNARA" + "description": "ERIS liquid staked SEI", + "recommended_symbol": "ampSEI" }, { - "denom": "factory/sei1ntacl2rjuhha4gjlzaal4as5qtnjwxtf47sfg3/useito", + "denom": "ibc/1FF96B82FDE4B0E38FA0A8EC24A83E1EAC2615F338468A47473BAD3B45E066D2", "chain_id": "pacific-1", - "origin_denom": "factory/sei1ntacl2rjuhha4gjlzaal4as5qtnjwxtf47sfg3/useito", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-66", "is_cw20": false, "is_evm": false, - "symbol": "SEITO", - "name": "Seito Kaiba", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seito-kaiba.png", + "is_svm": false, + "symbol": "ASTRO", + "name": "ASTRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", "decimals": 6, - "recommended_symbol": "SEITO" + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO" }, { - "denom": "ibc/B90CC71937648DEC399CB252D8E179D1EECAB2DCB48E3DA9776CE78B95E3ABF8", + "denom": "ibc/A5BA3F1C38ADAA11F941D66B19A7CD67B127F25DE2EA581BCD2DC4D8D50BEED9", "chain_id": "pacific-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-3", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "sqOSMO", + "name": "sqOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "recommended_symbol": "sqOSMO" }, { - "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "denom": "ibc/A7806379C45021F6947A2F239D26AA0670A63FB5A0E47D410DEBF6E45BA960E4", "chain_id": "pacific-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-66", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDC", - "name": "axlUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "description": "Circle's stablecoin on Axelar", - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "factory/sei1c6968m9mp8jgtaw9re8hcctxxphgvx3aeva3e0/COMMUNISM", + "denom": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", "chain_id": "pacific-1", - "origin_denom": "factory/sei1c6968m9mp8jgtaw9re8hcctxxphgvx3aeva3e0/COMMUNISM", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "COMMUNISM", - "name": "COMMUNISM", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/communism.png", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "recommended_symbol": "COMMUNISM" + "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + "recommended_symbol": "WOSMO" }, { - "denom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", + "denom": "factory/sei1vrz7ndadkf6gwanf6ccy2d2v706yzrx2957fjd/GOLDENRULES", "chain_id": "pacific-1", - "origin_denom": "factory/sei1thgp6wamxwqt7rthfkeehktmq0ujh5kspluw6w/OIN", + "origin_denom": "factory/sei1vrz7ndadkf6gwanf6ccy2d2v706yzrx2957fjd/GOLDENRULES", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OIN", - "name": "OIN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/oin.png", + "is_svm": false, + "symbol": "$GNR", + "name": "goldenrules.lol", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/goldenrules.png", "decimals": 6, - "description": "OIN Token ($OIN) is a groundbreaking digital asset developed on the $SEI Blockchain. It transcends being merely a cryptocurrency; $OIN stands as a robust store of value, symbolizing the future of decentralized finance and its potential to reshape the crypto landscape.", - "recommended_symbol": "OIN" + "recommended_symbol": "$GNR" }, { - "denom": "factory/sei1epyu0nrw0gzllswnmlt42a58gl8wlzmr4u86gv/SEIWA", + "denom": "ibc/0EC78B75D318EA0AAB6160A12AEE8F3C7FEA3CFEAD001A3B103E11914709F4CE", "chain_id": "pacific-1", - "origin_denom": "factory/sei1epyu0nrw0gzllswnmlt42a58gl8wlzmr4u86gv/SEIWA", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "SEIWA", - "name": "SEIWA-清和", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEIWA.png", + "is_svm": false, + "symbol": "ASTRO.cw20", + "name": "Astroport", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/astro-cw20.svg", "decimals": 6, - "recommended_symbol": "SEIWA" + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO.cw20" }, { - "denom": "factory/sei1ce8v5tnt90a7afssu4et2dd95tczfu0scpd2x6/SEIGNEUR", + "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", "chain_id": "pacific-1", - "origin_denom": "factory/sei1ce8v5tnt90a7afssu4et2dd95tczfu0scpd2x6/SEIGNEUR", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "decimals": 6, + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" + }, + { + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/DUVFMY2neJdL8aE4d3stcpttDDm5aoyfGyVvm29iA9Yp", + "chain_id": "pacific-1", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/DUVFMY2neJdL8aE4d3stcpttDDm5aoyfGyVvm29iA9Yp", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEIGNEUR", - "name": "SEIGNEUR", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEIGNEUR.png", + "is_svm": false, + "symbol": "USDCpo", + "name": "USDCpo", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "recommended_symbol": "SEIGNEUR" + "description": "Wrapped USDC from Polygon (Wormhole)", + "coingecko_id": "usd-coin-pos-wormhole", + "recommended_symbol": "USDCpo" }, { - "denom": "ibc/C0E66D1C81D8AAF0E6896E05190FDFBC222367148F86AC3EA679C28327A763CD", + "denom": "ibc/6C18438B29DF9D62583F6890FFAA77770CB612C386E74425AD1C1BB6535D8FCB", "chain_id": "pacific-1", - "origin_denom": "uaxl", + "origin_denom": "shib-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "decimals": 18, + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7omXa4gryZ5NiBmLep7JsTtTtANCVKXwT9vbN91aS1br", + "denom": "factory/sei1k30qfr6aqgyhwfpr5u3u0zhcdunn22qedul8tt/SEI7", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7omXa4gryZ5NiBmLep7JsTtTtANCVKXwT9vbN91aS1br", + "origin_denom": "factory/sei1k30qfr6aqgyhwfpr5u3u0zhcdunn22qedul8tt/SEI7", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", - "decimals": 8, - "description": "Wrapped Bitcoin from Ethereum (Wormhole)", - "coingecko_id": "wrapped-btc-wormhole", - "recommended_symbol": "WBTC" + "is_svm": false, + "symbol": "SEI7", + "name": "SEI7", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/sei7.png", + "decimals": 6, + "recommended_symbol": "SEI7" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3VKKYtbQ9iq8f9CaZfgR6Cr3TUj6ypXPAn6kco6wjcAu", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3VKKYtbQ9iq8f9CaZfgR6Cr3TUj6ypXPAn6kco6wjcAu", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDCop", - "name": "USDCop", + "is_svm": false, + "symbol": "USDCet", + "name": "USDCet", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "description": "Wrapped USDC from Optimism (Wormhole)", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDCop" + "description": "Wrapped USDC from Ethereum (Wormhole)", + "coingecko_id": "usd-coin-wormhole-from-ethereum", + "recommended_symbol": "USDCet" }, { - "denom": "factory/sei1kde9nvjmw6ef5z8gayr5msz79eyt4nswupvfp4/GOGETA", + "denom": "factory/sei1pjdffrn4t4g3wc646l6rxfy5mrrgd6lzj4kdtj/SEIV", "chain_id": "pacific-1", - "origin_denom": "factory/sei1kde9nvjmw6ef5z8gayr5msz79eyt4nswupvfp4/GOGETA", + "origin_denom": "factory/sei1pjdffrn4t4g3wc646l6rxfy5mrrgd6lzj4kdtj/SEIV", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "GOGETA", - "name": "SeiGogeta", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/gogeta.png", + "is_svm": false, + "symbol": "SEIV", + "name": "SEIVIOUR", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seiv.png", "decimals": 6, - "recommended_symbol": "GOGETA" + "recommended_symbol": "SEIV" + }, + { + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7omXa4gryZ5NiBmLep7JsTtTtANCVKXwT9vbN91aS1br", + "chain_id": "pacific-1", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7omXa4gryZ5NiBmLep7JsTtTtANCVKXwT9vbN91aS1br", + "origin_chain_id": "pacific-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", + "decimals": 8, + "description": "Wrapped Bitcoin from Ethereum (Wormhole)", + "coingecko_id": "wrapped-btc-wormhole", + "recommended_symbol": "WBTC" }, { - "denom": "factory/sei1lg259fed9fn0340k000tyg3fama5awdmeczfmx/SeiyanInu", + "denom": "ibc/4786BEBBFDD989C467C4552AD73065D8B2578230B8428B3B9275D540EB04C851", "chain_id": "pacific-1", - "origin_denom": "factory/sei1lg259fed9fn0340k000tyg3fama5awdmeczfmx/SeiyanInu", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "SeiyanInu", - "name": "SeiyanInu", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SeiyanInu.png", + "is_svm": false, + "symbol": "LVN", + "name": "Levana", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "recommended_symbol": "SeiyanInu" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { "denom": "ibc/5A3DCF59BC9EC5C0BB7AA0CA0279FC2BB126640CB8B8F704F7BC2DC42495041B", @@ -29181,6 +35413,7 @@ "trace": "transfer/channel-54", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "INJ", "name": "INJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", @@ -29189,36 +35422,35 @@ "recommended_symbol": "INJ" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3Ri4N719RQfQaudHiB9CMCYACtK3aieoz1q1Ph24VdAb", + "denom": "factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3Ri4N719RQfQaudHiB9CMCYACtK3aieoz1q1Ph24VdAb", + "origin_denom": "factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDCbs", - "name": "USDCbs", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", - "decimals": 8, - "description": "Wrapped USDC from BSC (Wormhole)", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDCbs" + "is_svm": false, + "symbol": "POPEYE", + "name": "POPEYE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/popeye.png", + "decimals": 6, + "description": "Popeye the Seilor", + "recommended_symbol": "POPEYE" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/4tLQqCLaoKKfNFuPjA9o39YbKUwhR1F8N29Tz3hEbfP2", + "denom": "factory/sei1lg259fed9fn0340k000tyg3fama5awdmeczfmx/SeiyanInu", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/4tLQqCLaoKKfNFuPjA9o39YbKUwhR1F8N29Tz3hEbfP2", + "origin_denom": "factory/sei1lg259fed9fn0340k000tyg3fama5awdmeczfmx/SeiyanInu", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", - "decimals": 8, - "description": "Wrapped Ether from Ethereum (Wormhole)", - "coingecko_id": "weth", - "recommended_symbol": "WETH" + "is_svm": false, + "symbol": "SeiyanInu", + "name": "SeiyanInu", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SeiyanInu.png", + "decimals": 6, + "recommended_symbol": "SeiyanInu" }, { "denom": "factory/sei1pw6sywysx29yl4wuw7nwclv3gehvkc9p49y89m/seixy", @@ -29228,6 +35460,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SEIXY", "name": "Seixy", "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEIXY.png", @@ -29235,136 +35468,141 @@ "recommended_symbol": "SEIXY" }, { - "denom": "ibc/6C00E4AA0CC7618370F81F7378638AE6C48EFF8C9203CE1C2357012B440EBDB7", + "denom": "factory/sei1q0xgrxtje0agpg6y6jy0u6pvruc62yml5e525vn7u0czm70ptusslzmzqd/mid", "chain_id": "pacific-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-18", + "origin_denom": "factory/sei1q0xgrxtje0agpg6y6jy0u6pvruc62yml5e525vn7u0czm70ptusslzmzqd/mid", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDt", - "name": "USDt", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "MID", + "name": "Mid", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/mid.png", "decimals": 6, - "description": "Tether USDt", - "coingecko_id": "tether", - "recommended_symbol": "USDt" + "recommended_symbol": "MID" }, { - "denom": "ibc/CA6FBFAF399474A06263E10D0CE5AEBBE15189D6D4B2DD9ADE61007E68EB9DB0", + "denom": "factory/sei1s3alydvv2mcjtqklk478qfc2scknl2enektkkm/InseinClownPosse", "chain_id": "pacific-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-45", + "origin_denom": "factory/sei1s3alydvv2mcjtqklk478qfc2scknl2enektkkm/InseinClownPosse", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "Noble", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "JUGGALO", + "name": "InseinClownPosse", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/InseinClownPosse.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "recommended_symbol": "JUGGALO" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/DUVFMY2neJdL8aE4d3stcpttDDm5aoyfGyVvm29iA9Yp", + "denom": "factory/sei1s6kwljuxrgg93sju2aq8n2ln20u3q0m5kjxpg0/SIF", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/DUVFMY2neJdL8aE4d3stcpttDDm5aoyfGyVvm29iA9Yp", + "origin_denom": "factory/sei1s6kwljuxrgg93sju2aq8n2ln20u3q0m5kjxpg0/SIF", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDCpo", - "name": "USDCpo", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "SIF", + "name": "SEIWIFHAT", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SIF.png", "decimals": 6, - "description": "Wrapped USDC from Polygon (Wormhole)", - "coingecko_id": "usd-coin-pos-wormhole", - "recommended_symbol": "USDCpo" + "recommended_symbol": "SIF" }, { - "denom": "factory/sei1q0xgrxtje0agpg6y6jy0u6pvruc62yml5e525vn7u0czm70ptusslzmzqd/mid", + "denom": "factory/sei10mwfmhhyr9zyfsyhl8hneu4qptxks2llgngk5t/seionara", "chain_id": "pacific-1", - "origin_denom": "factory/sei1q0xgrxtje0agpg6y6jy0u6pvruc62yml5e525vn7u0czm70ptusslzmzqd/mid", + "origin_denom": "factory/sei10mwfmhhyr9zyfsyhl8hneu4qptxks2llgngk5t/seionara", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MID", - "name": "Mid", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/mid.png", + "is_svm": false, + "symbol": "SNARA", + "name": "Seionara", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seionara.png", "decimals": 6, - "recommended_symbol": "MID" + "recommended_symbol": "SNARA" }, { - "denom": "factory/sei18n0y0a5wk9afd45j7399gsyasvp6h3k3znts58/shit", + "denom": "factory/sei1dud3m0nnj4dcg9qwd4y7n94hy8npe3d6x5a36t/SEIKITTY", "chain_id": "pacific-1", - "origin_denom": "factory/sei18n0y0a5wk9afd45j7399gsyasvp6h3k3znts58/shit", + "origin_denom": "factory/sei1dud3m0nnj4dcg9qwd4y7n94hy8npe3d6x5a36t/SEIKITTY", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SHIT", - "name": "Seiyan Hulk Illuminati Testosterone", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seiyanhit.png", + "is_svm": false, + "symbol": "SEIKITTY", + "name": "SEIKITTY", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/kitty.png", "decimals": 6, - "recommended_symbol": "SHIT" + "recommended_symbol": "SEIKITTY" }, { - "denom": "factory/sei1af98wayfra6xzwly2k9r8v8eentz6fl4qyyqlq/SEIMOON", + "denom": "factory/sei1e3gttzq5e5k49f9f5gzvrl0rltlav65xu6p9xc0aj7e84lantdjqp7cncc/isei", "chain_id": "pacific-1", - "origin_denom": "factory/sei1af98wayfra6xzwly2k9r8v8eentz6fl4qyyqlq/SEIMOON", + "origin_denom": "factory/sei1e3gttzq5e5k49f9f5gzvrl0rltlav65xu6p9xc0aj7e84lantdjqp7cncc/isei", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEIMOON", - "name": "SEIMOON", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seimoon.png", + "is_svm": false, + "symbol": "iSEI", + "name": "Liquid Staking Sei via Silo", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/isei.png", "decimals": 6, - "recommended_symbol": "SEIMOON" + "recommended_symbol": "iSEI" }, { - "denom": "factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye", + "denom": "factory/sei1fg873yaxd0y9x37vsdgsn70e7z3lsyhxhy92yt/PDOG", "chain_id": "pacific-1", - "origin_denom": "factory/sei1fl8pg59wfsgw2wp4aruk38zqccfnc2g8ptrm24/popeye", + "origin_denom": "factory/sei1fg873yaxd0y9x37vsdgsn70e7z3lsyhxhy92yt/PDOG", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "POPEYE", - "name": "POPEYE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/popeye.png", + "is_svm": false, + "symbol": "PDOG", + "name": "Pirate Dog", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/PDOG.png", "decimals": 6, - "description": "Popeye the Seilor", - "recommended_symbol": "POPEYE" + "recommended_symbol": "PDOG" }, { - "denom": "factory/sei1pjdffrn4t4g3wc646l6rxfy5mrrgd6lzj4kdtj/SEIV", + "denom": "factory/sei1saeel30g6mkwqzdp8ezcjwvauzaclxlldn492m/SEIJAY", "chain_id": "pacific-1", - "origin_denom": "factory/sei1pjdffrn4t4g3wc646l6rxfy5mrrgd6lzj4kdtj/SEIV", + "origin_denom": "factory/sei1saeel30g6mkwqzdp8ezcjwvauzaclxlldn492m/SEIJAY", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEIV", - "name": "SEIVIOUR", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seiv.png", + "is_svm": false, + "symbol": "SEIJAY", + "name": "SeiyanJay", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seijay.png", "decimals": 6, - "recommended_symbol": "SEIV" + "recommended_symbol": "SEIJAY" }, { - "denom": "factory/sei1r7s9enhsn485rma4uchgvz46hde4caw7hspf6y/SEIGON", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3VKKYtbQ9iq8f9CaZfgR6Cr3TUj6ypXPAn6kco6wjcAu", "chain_id": "pacific-1", - "origin_denom": "factory/sei1r7s9enhsn485rma4uchgvz46hde4caw7hspf6y/SEIGON", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3VKKYtbQ9iq8f9CaZfgR6Cr3TUj6ypXPAn6kco6wjcAu", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEIGON", - "name": "SeiDragon", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seigon.png", + "is_svm": false, + "symbol": "USDCop", + "name": "USDCop", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "recommended_symbol": "SEIGON" + "description": "Wrapped USDC from Optimism (Wormhole)", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDCop" }, { "denom": "factory/sei16kqm2nmsdvmuv7sh9gftgjlg6fu8vlghfc3yzx/SEIRIO", @@ -29374,6 +35612,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SEIRIO", "name": "SeiMario", "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seirio.png", @@ -29381,111 +35620,67 @@ "recommended_symbol": "SEIRIO" }, { - "denom": "factory/sei1fg873yaxd0y9x37vsdgsn70e7z3lsyhxhy92yt/PDOG", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "pacific-1", - "origin_denom": "factory/sei1fg873yaxd0y9x37vsdgsn70e7z3lsyhxhy92yt/PDOG", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "PDOG", - "name": "Pirate Dog", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/PDOG.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "recommended_symbol": "PDOG" - }, - { - "denom": "ibc/6C18438B29DF9D62583F6890FFAA77770CB612C386E74425AD1C1BB6535D8FCB", - "chain_id": "pacific-1", - "origin_denom": "shib-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", - "is_cw20": false, - "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", - "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "factory/sei12a6nk7ut6rt7u7zmkcsy238le2u69d7uvtt3d7/TOKENTEST", "chain_id": "pacific-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", + "origin_denom": "factory/sei12a6nk7ut6rt7u7zmkcsy238le2u69d7uvtt3d7/TOKENTEST", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "TOKENTEST", + "name": "TOKENTEST", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/TOKENTEST.png", "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "recommended_symbol": "TOKENTEST" }, { - "denom": "factory/sei170273gwp44f07tykrg4ptv8twu0kxkrp8rr96p/sensei", + "denom": "factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei", "chain_id": "pacific-1", - "origin_denom": "factory/sei170273gwp44f07tykrg4ptv8twu0kxkrp8rr96p/sensei", + "origin_denom": "factory/sei1ta5rkr6y2qlkj7px8w2cvear7m2822q4f4ea0m/sensei", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SENSEI", - "name": "Sensei", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/sensei.png", + "name": "SENSEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/SenseiDog.png", "decimals": 6, + "description": "A wise dog and a marshal arts master", "recommended_symbol": "SENSEI" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9tTHn18vLnfyBvrQaia6N15zwrfRCAebZDshoPZ39ahN", - "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9tTHn18vLnfyBvrQaia6N15zwrfRCAebZDshoPZ39ahN", - "origin_chain_id": "pacific-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "WETHbs", - "name": "WETHbs", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", - "decimals": 8, - "description": "Wrapped Ether from BSC (Wormhole)", - "coingecko_id": "weth", - "recommended_symbol": "WETHbs" - }, - { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7edDfnf4mku8So3t4Do215GNHwASEwCWrdhM5GqD51xZ", + "denom": "factory/sei1ce8v5tnt90a7afssu4et2dd95tczfu0scpd2x6/SEIGNEUR", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7edDfnf4mku8So3t4Do215GNHwASEwCWrdhM5GqD51xZ", + "origin_denom": "factory/sei1ce8v5tnt90a7afssu4et2dd95tczfu0scpd2x6/SEIGNEUR", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDCar", - "name": "USDCar", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "SEIGNEUR", + "name": "SEIGNEUR", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEIGNEUR.png", "decimals": 6, - "description": "Wrapped USDC from Arbitrum (Wormhole)", - "coingecko_id": "usd-coin-wormhole-arb", - "recommended_symbol": "USDCar" - }, - { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/871jbn9unTavWsAe83f2Ma9GJWSv6BKsyWYLiQ6z3Pva", - "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/871jbn9unTavWsAe83f2Ma9GJWSv6BKsyWYLiQ6z3Pva", - "origin_chain_id": "pacific-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "USDTbs", - "name": "USDTbs", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", - "decimals": 8, - "description": "Binance-Peg BSC-USD from BSC (Wormhole)", - "coingecko_id": "tether", - "recommended_symbol": "USDTbs" + "recommended_symbol": "SEIGNEUR" }, { "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9hJDBDaxqQQhF5HhaPUykeLncBa38XQ5uoNxN3tPQu5r", @@ -29495,6 +35690,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WETHar", "name": "WETHar", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", @@ -29504,301 +35700,270 @@ "recommended_symbol": "WETHar" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/HktfLoADCk9mnjv7XJiN4YXK9ayE6xinLzt8wzcsR2rY", + "denom": "factory/sei1y25r9u0kvrdya34csz436vj7eja7vc8ma6m4l7/KiraWifHat", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/HktfLoADCk9mnjv7XJiN4YXK9ayE6xinLzt8wzcsR2rY", + "origin_denom": "factory/sei1y25r9u0kvrdya34csz436vj7eja7vc8ma6m4l7/KiraWifHat", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDTet", - "name": "USDTet", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "KiraWifHat", + "name": "KiraWifHat", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/KiraWifHat.png", "decimals": 6, - "description": "Wrapped Tether USD from Ethereum (Wormhole)", - "coingecko_id": "tether-usd-wormhole-from-ethereum", - "recommended_symbol": "USDTet" + "recommended_symbol": "KiraWifHat" }, { - "denom": "factory/sei1e3gttzq5e5k49f9f5gzvrl0rltlav65xu6p9xc0aj7e84lantdjqp7cncc/isei", + "denom": "ibc/245542EB0E68A922FB2E276A4CDD3AAC11A677570956E0B80E5D5F47F6EBAC6A", "chain_id": "pacific-1", - "origin_denom": "factory/sei1e3gttzq5e5k49f9f5gzvrl0rltlav65xu6p9xc0aj7e84lantdjqp7cncc/isei", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-65", "is_cw20": false, "is_evm": false, - "symbol": "iSEI", - "name": "Liquid Staking Sei via Silo", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/isei.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "recommended_symbol": "iSEI" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "factory/sei1k30qfr6aqgyhwfpr5u3u0zhcdunn22qedul8tt/SEI7", + "denom": "factory/sei170273gwp44f07tykrg4ptv8twu0kxkrp8rr96p/sensei", "chain_id": "pacific-1", - "origin_denom": "factory/sei1k30qfr6aqgyhwfpr5u3u0zhcdunn22qedul8tt/SEI7", + "origin_denom": "factory/sei170273gwp44f07tykrg4ptv8twu0kxkrp8rr96p/sensei", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEI7", - "name": "SEI7", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/sei7.png", + "is_svm": false, + "symbol": "SENSEI", + "name": "Sensei", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/sensei.png", "decimals": 6, - "recommended_symbol": "SEI7" + "recommended_symbol": "SENSEI" }, { - "denom": "factory/sei1yg63c0kcy2lrcq2szzcctysuyltyxm8d752ee6/seimars", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7edDfnf4mku8So3t4Do215GNHwASEwCWrdhM5GqD51xZ", "chain_id": "pacific-1", - "origin_denom": "factory/sei1yg63c0kcy2lrcq2szzcctysuyltyxm8d752ee6/seimars", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/7edDfnf4mku8So3t4Do215GNHwASEwCWrdhM5GqD51xZ", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEIMARS", - "name": "Sei Mars", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seimars.png", + "is_svm": false, + "symbol": "USDCar", + "name": "USDCar", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "recommended_symbol": "SEIMARS" - }, - { - "denom": "ibc/1AFD3AA954049436FC51D861BB47153390FFF08A445B7793C15E99281FB02FA3", - "chain_id": "pacific-1", - "origin_denom": "peaka", - "origin_chain_id": "vota-ash", - "trace": "transfer/channel-64", - "is_cw20": false, - "is_evm": false, - "symbol": "DORA", - "name": "DORA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", - "decimals": 18, - "recommended_symbol": "DORA" + "description": "Wrapped USDC from Arbitrum (Wormhole)", + "coingecko_id": "usd-coin-wormhole-arb", + "recommended_symbol": "USDCar" }, { - "denom": "ibc/423DE4133F8676069BC9550FF251F1F870F6885621C8E363A9F70257BF3AA638", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3Ri4N719RQfQaudHiB9CMCYACtK3aieoz1q1Ph24VdAb", "chain_id": "pacific-1", - "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-54", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/3Ri4N719RQfQaudHiB9CMCYACtK3aieoz1q1Ph24VdAb", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AUTISM", - "name": "AUTISM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", - "decimals": 6, - "coingecko_id": "autism", - "recommended_symbol": "AUTISM" + "is_svm": false, + "symbol": "USDCbs", + "name": "USDCbs", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "decimals": 8, + "description": "Wrapped USDC from BSC (Wormhole)", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDCbs" }, { - "denom": "ibc/4786BEBBFDD989C467C4552AD73065D8B2578230B8428B3B9275D540EB04C851", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH", "chain_id": "pacific-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "Levana", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "USDCso", + "name": "USDCso", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "description": "Wrapped USDC from Solana (Wormhole)", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDCso" }, { - "denom": "ibc/825CBB2F938AC6E79D69EED47E82FA85C190BA4A2888E3979F2245ECE4C1ECB2", + "denom": "factory/sei1nx560efk4hxyr4sj9j2l6nxp8f6r9xkpy04wcc/seipepe", "chain_id": "pacific-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-14", + "origin_denom": "factory/sei1nx560efk4hxyr4sj9j2l6nxp8f6r9xkpy04wcc/seipepe", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "SEIPEPE", + "name": "SeiPepe", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seipepe.png", "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" - }, - { - "denom": "ibc/91DF61C7EFA0E52C56BA0724E80B93DF6ADECD3A5B19D38FD2B4A7F955D2E2E7", - "chain_id": "pacific-1", - "origin_denom": "ox-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", - "is_cw20": false, - "is_evm": false, - "symbol": "OX", - "name": "OX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/ox.svg", - "decimals": 18, - "coingecko_id": "open-exchange-token", - "recommended_symbol": "OX.axl" - }, - { - "denom": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", - "chain_id": "pacific-1", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-2", - "is_cw20": false, - "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" + "recommended_symbol": "SEIPEPE" }, { - "denom": "ibc/A5BA3F1C38ADAA11F941D66B19A7CD67B127F25DE2EA581BCD2DC4D8D50BEED9", + "denom": "factory/sei1q96rdw97rpzqut4fkklpsavptkae6mmdsh2u0l/chad", "chain_id": "pacific-1", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "factory/sei1q96rdw97rpzqut4fkklpsavptkae6mmdsh2u0l/chad", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "is_svm": false, + "symbol": "SEICHAD", + "name": "SEI CHAD", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEICHAD.png", "decimals": 6, - "recommended_symbol": "sqOSMO" + "recommended_symbol": "SEICHAD" }, { - "denom": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", + "denom": "factory/sei17225n9g2rurwudfv9ntly76szh6vrplswh33a9/chase", "chain_id": "pacific-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "factory/sei17225n9g2rurwudfv9ntly76szh6vrplswh33a9/chase", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "CHASE", + "name": "Chase", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/ChaseLogo.png", "decimals": 6, - "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", - "recommended_symbol": "WOSMO" + "recommended_symbol": "CHASE" }, { - "denom": "factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI", + "denom": "factory/sei1nmhmzhtu8sfznlj4f0z7k6pvswrlp00nd5m5z5/SEITAMA", "chain_id": "pacific-1", - "origin_denom": "factory/sei1x2fgaaqecvk8kwuqkjqcj27clw5p5g99uawdzy9sc4rku8avumcq3cky4k/ampSEI", + "origin_denom": "factory/sei1nmhmzhtu8sfznlj4f0z7k6pvswrlp00nd5m5z5/SEITAMA", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ampSEI", - "name": "ampSEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/ampsei.svg", + "is_svm": false, + "symbol": "SEITAMA", + "name": "Seitama", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SEITAMA.png", "decimals": 6, - "description": "ERIS liquid staked SEI", - "recommended_symbol": "ampSEI" + "recommended_symbol": "SEITAMA" }, { - "denom": "ibc/0EC78B75D318EA0AAB6160A12AEE8F3C7FEA3CFEAD001A3B103E11914709F4CE", + "denom": "factory/sei1v3pfvczvfhtpkjjfw3waulx4arax2jc7uj92cw/SEITTERS", "chain_id": "pacific-1", - "origin_denom": "cw20:terra1nsuqsk6kh58ulczatwev87ttq2z6r3pusulg9r24mfj2fvtzd4uq3exn26", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-8", + "origin_denom": "factory/sei1v3pfvczvfhtpkjjfw3waulx4arax2jc7uj92cw/SEITTERS", + "origin_chain_id": "pacific-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ASTRO", - "name": "Astroport", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/astro.png", + "is_svm": false, + "symbol": "SEITTERS", + "name": "SEITTERS", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seitters.png", "decimals": 6, - "coingecko_id": "astroport-fi", - "recommended_symbol": "ASTRO" + "recommended_symbol": "SEITTERS" }, { - "denom": "usei", + "denom": "ibc/A585C2D15DCD3B010849B453A2CFCB5E213208A5AB665691792684C26274304D", "chain_id": "pacific-1", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "SEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", - "decimals": 6, - "description": "The native staking token of Sei.", - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "decimals": 18, + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" }, { - "denom": "factory/sei1096s98z7w0pealkewgtnu9yxdsw47ux7dujtel/seize", + "denom": "ibc/6C00E4AA0CC7618370F81F7378638AE6C48EFF8C9203CE1C2357012B440EBDB7", "chain_id": "pacific-1", - "origin_denom": "factory/sei1096s98z7w0pealkewgtnu9yxdsw47ux7dujtel/seize", - "origin_chain_id": "pacific-1", - "trace": "", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-18", "is_cw20": false, "is_evm": false, - "symbol": "SEIZE", - "name": "SEIze token", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seize.png", + "is_svm": false, + "symbol": "USDt", + "name": "USDt", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "recommended_symbol": "SEIZE" + "description": "Tether USDt", + "coingecko_id": "tether", + "recommended_symbol": "USDt" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH", + "denom": "factory/sei1c6968m9mp8jgtaw9re8hcctxxphgvx3aeva3e0/COMMUNISM", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/9fELvUhFo6yWL34ZaLgPbCPzdk9MD1tAzMycgH45qShH", + "origin_denom": "factory/sei1c6968m9mp8jgtaw9re8hcctxxphgvx3aeva3e0/COMMUNISM", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDCso", - "name": "USDCso", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "COMMUNISM", + "name": "COMMUNISM", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/communism.png", "decimals": 6, - "description": "Wrapped USDC from Solana (Wormhole)", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDCso" + "recommended_symbol": "COMMUNISM" }, { - "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H", + "denom": "factory/sei1096s98z7w0pealkewgtnu9yxdsw47ux7dujtel/seize", "chain_id": "pacific-1", - "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/Hq4tuDzhRBnxw3tFA5n6M52NVMVcC19XggbyDiJKCD6H", + "origin_denom": "factory/sei1096s98z7w0pealkewgtnu9yxdsw47ux7dujtel/seize", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDCet", - "name": "USDCet", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "is_svm": false, + "symbol": "SEIZE", + "name": "SEIze token", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seize.png", "decimals": 6, - "description": "Wrapped USDC from Ethereum (Wormhole)", - "coingecko_id": "usd-coin-wormhole-from-ethereum", - "recommended_symbol": "USDCet" + "recommended_symbol": "SEIZE" }, { - "denom": "factory/sei12a6nk7ut6rt7u7zmkcsy238le2u69d7uvtt3d7/TOKENTEST", + "denom": "factory/sei1ptkjfpvnr6hle7pwr9egwzh8r56ulx7uujq6fl/uswiper", "chain_id": "pacific-1", - "origin_denom": "factory/sei12a6nk7ut6rt7u7zmkcsy238le2u69d7uvtt3d7/TOKENTEST", + "origin_denom": "factory/sei1ptkjfpvnr6hle7pwr9egwzh8r56ulx7uujq6fl/uswiper", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TOKENTEST", - "name": "TOKENTEST", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/TOKENTEST.png", + "is_svm": false, + "symbol": "SWIPER", + "name": "Swiper", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/swiper.png", "decimals": 6, - "recommended_symbol": "TOKENTEST" + "recommended_symbol": "SWIPER" }, { - "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", + "denom": "ibc/57503D7852EF4E1899FE6D71C5E81D7C839F76580F86F21E39348FC2BC9D7CE2", "chain_id": "pacific-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { "denom": "ibc/DF8722298D192AAB85D86D0462E8166234A6A9A572DD4A2EA7996029DF4DB363", @@ -29808,6 +35973,7 @@ "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WBTC", "name": "WBTC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", @@ -29816,18 +35982,21 @@ "recommended_symbol": "WBTC.axl" }, { - "denom": "factory/sei1wrv8u8ghtnu5dlnez4kgscz6l5s6eg97pf805v/SEIV", + "denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/4tLQqCLaoKKfNFuPjA9o39YbKUwhR1F8N29Tz3hEbfP2", "chain_id": "pacific-1", - "origin_denom": "factory/sei1wrv8u8ghtnu5dlnez4kgscz6l5s6eg97pf805v/SEIV", + "origin_denom": "factory/sei189adguawugk3e55zn63z8r9ll29xrjwca636ra7v7gxuzn98sxyqwzt47l/4tLQqCLaoKKfNFuPjA9o39YbKUwhR1F8N29Tz3hEbfP2", "origin_chain_id": "pacific-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEIV", - "name": "SEIVIOUR", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/seiv-2.png", - "decimals": 6, - "recommended_symbol": "SEIV" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/weth.png", + "decimals": 8, + "description": "Wrapped Ether from Ethereum (Wormhole)", + "coingecko_id": "weth", + "recommended_symbol": "WETH" } ] }, @@ -29841,6 +36010,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PASG", "name": "PASG", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/passage/asset/pasg.png", @@ -29850,21 +36020,6 @@ }, "passage-2": { "assets": [ - { - "denom": "ibc/46F2AFF56A0F50EB006CDBAEDC41350F079CE86AE959FE6D261EFC530351A115", - "chain_id": "passage-2", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-5", - "is_cw20": false, - "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" - }, { "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "passage-2", @@ -29873,6 +36028,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -29880,6 +36036,22 @@ "coingecko_id": "osmosis", "recommended_symbol": "OSMO" }, + { + "denom": "ibc/46F2AFF56A0F50EB006CDBAEDC41350F079CE86AE959FE6D261EFC530351A115", + "chain_id": "passage-2", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, { "denom": "upasg", "chain_id": "passage-2", @@ -29888,6 +36060,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "PASG", "name": "PASG", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", @@ -29901,63 +36074,130 @@ "phoenix-1": { "assets": [ { - "denom": "ibc/2362890CB9F19127D83DD751E9E76CD6F05AB3BFC9AD427D5FFE4CADAE11D2B5", + "denom": "ibc/18B0967BE3E73DCCE3F10EDE6DEFC472AAA3339DBE536E77C0B8E7BCE2628966", "chain_id": "phoenix-1", - "origin_denom": "eth.1.2.942d87", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-36", + "origin_denom": "factory/osmo17fel472lgzs87ekt9dvk0zqyh5gl80sqp4sk4n/LAB", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", - "decimals": 18, - "recommended_symbol": "ETH.carbon" + "is_svm": false, + "symbol": "LAB", + "name": "LAB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/LAB.png", + "decimals": 6, + "recommended_symbol": "LAB" }, { - "denom": "ibc/EF21BC562B7EB4D22BBF467D011E3118B7E3AD6D095000A672A9FCECA5ABCF15", + "denom": "ibc/745F771553C6359177F99817B0CCC5F7E7606904EF0856016D34DC9EBAA6745C", "chain_id": "phoenix-1", - "origin_denom": "mkr-wei", + "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-255", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AUTISM", + "name": "AUTISM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "decimals": 6, + "coingecko_id": "autism", + "recommended_symbol": "AUTISM" + }, + { + "denom": "ibc/F992067A054C819B42D2DAB57F5CCE347D38352EB90453E59D566BFE64F1614B", + "chain_id": "phoenix-1", + "origin_denom": "wavax-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "MKR", - "name": "MKR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "coingecko_id": "maker", - "recommended_symbol": "MKR.axl" + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C", + "denom": "ibc/271DAA570D495549CD1381840C125FABEF3F840CD618105C4CD7160CBEBDD257", "chain_id": "phoenix-1", - "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-229", + "origin_denom": "factory/inj1h0ypsdtjfcjynqu3m75z2zwwz5mmrj8rtk2g52/uhava", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-255", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "Lido", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH" + "is_svm": false, + "symbol": "HAVA", + "name": "HAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/hava.png", + "decimals": 6, + "coingecko_id": "hava-coin", + "recommended_symbol": "HAVA" }, { - "denom": "ibc/BC8A77AFBD872FDC32A348D3FB10CC09277C266CFE52081DE341C7EC6752E674", + "denom": "ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1", "chain_id": "phoenix-1", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "Wrapped Ether", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.axl" + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "decimals": 6, + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" + }, + { + "denom": "ibc/AF5B6C16A304BA111AE9B75342B7BAAACB018D0EA9F0978C522D9E643496B75E", + "chain_id": "phoenix-1", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-39", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "decimals": 6, + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" + }, + { + "denom": "ibc/6CD39EACF052B761E3ADC709A11747CFCCA49F07DA23A26E61DB1CEF4D0CCC33", + "chain_id": "phoenix-1", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-39", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMDX", + "name": "Comdex", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "decimals": 6, + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" + }, + { + "denom": "ibc/B2D7F46321A2CC835440391BFEBEF5B560A48C32974DAF5C6C4787BAC484ADA7", + "chain_id": "phoenix-1", + "origin_denom": "factory/kujira15e8q5wzlk5k38gjxlhse3vu6vqnafysncx2ltexd6y9gx50vuj2qpt7dgv/boneKuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "bKUJI", + "name": "bKUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bKUJI.png", + "decimals": 6, + "recommended_symbol": "bKUJI" }, { "denom": "ibc/B3504E092456BA618CC28AC671A71FB08C6CA0FD0BE7C8A5B5A3E2DD933CC9E4", @@ -29967,6 +36207,7 @@ "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "axlUSDC", "name": "axlUSDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", @@ -29975,181 +36216,371 @@ "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/FD9DBF0DB4D301313195159303811FD2FD72185C4B11A51659EFCD49D7FF1228", + "denom": "uluna", "chain_id": "phoenix-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-46", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "Stride", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "description": "The native staking token of Terra.", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/1F84E60240ED39D5D7E679E88A9622D3FB21F2E0DD04CC6CD3962D3D566EEB35", + "denom": "ibc/1C388025D0A7644F96ED0429109F3D493931A85485586484237D193F20E2267B", "chain_id": "phoenix-1", - "origin_denom": "cgt/1", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-36", + "origin_denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "USD", - "name": "USD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "is_svm": false, + "symbol": "RAW", + "name": "RAW", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png", + "decimals": 6, + "coingecko_id": "junoswap-raw-dao", + "recommended_symbol": "RAW" + }, + { + "denom": "ibc/390B25B1BA21312C031FC6273F2E421DDE62466D858EEE88B7FC48E13B1D47B5", + "chain_id": "phoenix-1", + "origin_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-86", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ASH", + "name": "ASH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", + "decimals": 6, + "recommended_symbol": "ASH" + }, + { + "denom": "ibc/D54CE4CD2927F744CDCA844DD0E1A5DF88762274C55CD9AAB13E504A29BE8933", + "chain_id": "phoenix-1", + "origin_denom": "wglmr-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WGLMR", + "name": "WGLMR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", "decimals": 18, - "recommended_symbol": "USD" + "coingecko_id": "wrapped-moonbeam", + "recommended_symbol": "WGLMR.axl" }, { - "denom": "ibc/EEDCCB3A5A58F2EEB63BECC2FE0827C8251931AF492D924F21A4B886B2742567", + "denom": "ibc/06F2A845E2AF08C2CC07F5D0BA4229F453E63B7954AA1FB67CDE160F675FAF6D", "chain_id": "phoenix-1", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-46", + "origin_denom": "peggy0xb2617246d0c6c0087f18703d576831899ca94f01", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-255", "is_cw20": false, "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "is_svm": false, + "symbol": "ZIG", + "name": "ZIG", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zig.png", "decimals": 18, - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "coingecko_id": "zignaly", + "recommended_symbol": "ZIG.peggy" }, { - "denom": "ibc/F11C82FE9BB5F210869161D4A76415218D1996A3EB2CD7FDAFE9192B78D940F8", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "chain_id": "phoenix-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-324", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "ATOM", + "name": "Cosmos Hub", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD", + "denom": "ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB", "chain_id": "phoenix-1", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-253", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "recommended_symbol": "sqOSMO" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278", + "denom": "ibc/4113023044511851A29AC9E9C4C79B686DFA0287592F806C4781178B92E80BC2", "chain_id": "phoenix-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_denom": "cw20:juno1mvkgcr5uce2rnpzr4qrzf50hx4qreuwzlt7fzsjrhjud3xnjmttq5mkh2m", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-33", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "bJUNO", + "name": "bJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/bJUNO-bbl.png", + "decimals": 6, + "coingecko_id": "backbone-labs-staked-juno", + "recommended_symbol": "bJUNO" + }, + { + "denom": "ibc/6F45FFC7C8BF941B356DAD73B41DD3D232CBB72025A0D9B82AAA0494D107297C", + "chain_id": "phoenix-1", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-37", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CRE", + "name": "Crescent", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "decimals": 6, + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" + }, + { + "denom": "ibc/724090386B617F168512CE62FF7B71E996A362A17D88ED820CB6D834801A2E56", + "chain_id": "phoenix-1", + "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-229", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "APOLLO", + "name": "APOLLO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", + "decimals": 6, + "recommended_symbol": "APOLLO" + }, + { + "denom": "ibc/792AAE6279F4709F66068E29A79E6F16BBC0A9B93561A91FC040606793E62D6B", + "chain_id": "phoenix-1", + "origin_denom": "swth", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-36", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SWTH", + "name": "Carbon", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "decimals": 8, + "coingecko_id": "switcheo", + "recommended_symbol": "SWTH" + }, + { + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "chain_id": "phoenix-1", + "origin_denom": "uosmo", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "OSMO", + "name": "Osmosis", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", - "recommended_symbol": "WOSMO" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/B3F639855EE7478750CC8F82072307ED6E131A8EFF20345E1D136B50C4E5EC36", + "denom": "ibc/8D8A7F7253615E5F76CB6252A1E1BD921D5EDB7BBAAF8913FB1C77FF125D9995", "chain_id": "phoenix-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-86", + "origin_denom": "factory/neutron1ffus553eet978k024lmssw0czsxwr97mggyv85lpcsdkft8v9ufsz3sa07/astro", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-229", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ERIS Amplified Whale", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "is_svm": false, + "symbol": "ASTRO", + "name": "ASTRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astro.png", "decimals": 6, - "recommended_symbol": "ampWHALE" + "description": "Astroport is a neutral marketplace where anyone, from anywhere in the galaxy, can dock to trade their wares.", + "coingecko_id": "astroport-fi", + "recommended_symbol": "ASTRO" }, { - "denom": "uluna", + "denom": "ibc/96B471382D2B1A9C712C9225754E3D1C58F94463905C2CE6B59297C5597C2E46", "chain_id": "phoenix-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", "decimals": 6, - "description": "The native staking token of Terra.", - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" }, { - "denom": "ibc/A06709D9DE8643F5B935DC4D7A6418944F18A03B75F85FCCA5CE794523D5BA8A", + "denom": "ibc/EFA135F8BAAEF5953A9F918C23C2F1C8A74EA60ED6FBF3A06B5BAD2DD99B9E0F", "chain_id": "phoenix-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-265", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "decimals": 6, + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" + }, + { + "denom": "ibc/05D299885B07905B6886F554B39346EA6761246076A1120B1950049B92B922DD", + "chain_id": "phoenix-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "Wrapped Bitcoin", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.axl" + }, + { + "denom": "ibc/0EFC7B44625187BFB60AF09FF28A25FA49B68B959A505CC5313DF0498D8CF528", + "chain_id": "phoenix-1", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-46", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STRD", + "name": "Stride", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "coingecko_id": "stride", + "recommended_symbol": "STRD" + }, + { + "denom": "ibc/7CB33A66F90533ED1E168CB3251253C719CF4B04FF1290AFD795F14CA1D67278", + "chain_id": "phoenix-1", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "decimals": 6, + "description": "The first native memecoin on Osmosis. Crafted by the deftest of hands in the lab of lunacy. It's scientifically anarchic, professionally foolish, and your ticket to the madhouse.", + "recommended_symbol": "WOSMO" + }, + { + "denom": "ibc/857D33D2A925912214224B8F3FA38DECF0527AAF76375BD3388BB16727BAF759", + "chain_id": "phoenix-1", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-233", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HUAHUA", + "name": "Chihuahua", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "decimals": 6, + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" }, { - "denom": "ibc/AF5B6C16A304BA111AE9B75342B7BAAACB018D0EA9F0978C522D9E643496B75E", + "denom": "ibc/94385C534BC055BE5E5870413CE00BF7D1340739EB88C1171EBD6AD8892B3691", "chain_id": "phoenix-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-39", + "origin_denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "SEJUNO", + "name": "SEJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "coingecko_id": "stakeeasy-juno-derivative", + "recommended_symbol": "SEJUNO" }, { - "denom": "ibc/C2103F4B4373016B4B844A461CE2083DE3DE33136F3C9D3C8E1AD9F77A8F588E", + "denom": "ibc/97A32980B4B830AF064BFD0CC381C8DE85AF72F185D1A1F8FB5BB110F075372B", "chain_id": "phoenix-1", - "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/shark", "origin_chain_id": "migaloo-1", "trace": "transfer/channel-86", "is_cw20": false, "is_evm": false, - "symbol": "RAC", - "name": "RAC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", + "is_svm": false, + "symbol": "SHARK", + "name": "SHARK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/shark.png", "decimals": 6, - "recommended_symbol": "RAC" + "recommended_symbol": "SHARK" }, { - "denom": "ibc/FDDF98401F29AC63212C1742F9EC86D3AA1E1BE94BF9EB2F72B990C490303F42", + "denom": "ibc/3866A9F82A2848DE872A136AE0B6D7C550AA397A8FD9ACB8C8C594DA059D2B76", "chain_id": "phoenix-1", - "origin_denom": "busd-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "origin_denom": "cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", - "decimals": 18, - "coingecko_id": "binance-usd", - "recommended_symbol": "BUSD.axl" + "is_svm": false, + "symbol": "YFD", + "name": "YFD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.png", + "decimals": 6, + "recommended_symbol": "YFD" + }, + { + "denom": "ibc/AADE2B055785745EBAAA957CF16505607CE03B4B24F693B20FC239836C34A6E4", + "chain_id": "phoenix-1", + "origin_denom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-33", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WYND", + "name": "WYND", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png", + "decimals": 6, + "coingecko_id": "wynd", + "recommended_symbol": "WYND" }, { "denom": "ibc/CBF67A2BCF6CAE343FDF251E510C8E18C361FC02B23430C121116E0811835DEF", @@ -30159,6 +36590,7 @@ "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "axlUSDT", "name": "axlUSDT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", @@ -30167,476 +36599,568 @@ "recommended_symbol": "USDT.axl" }, { - "denom": "ibc/E262CAE3F7F6EDC47267CEA6B5BD2A199CBBA77215DA5FF2C1866436B5361DBA", + "denom": "ibc/B22B4DD21586965DAEF42A7600BA371EA77C02E90FC8A7F2330BF9F9DE129B07", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "origin_denom": "ukuji", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "rFUZN", - "name": "rFUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", + "is_svm": false, + "symbol": "KUJI", + "name": "Kujira", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "recommended_symbol": "rFUZN" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/E83DFA7C774804925765C4EFCBFAF2088AFE8B41302AB66000CA6234BD5976E4", + "denom": "ibc/B59EB83C4DC29858022B59CF5E4280A8CE2E8C16A294960A19ED0792F5FC7F37", "chain_id": "phoenix-1", - "origin_denom": "uandr", - "origin_chain_id": "andromeda-1", - "trace": "transfer/channel-351", + "origin_denom": "factory/osmo1s3l0lcqc7tu0vpj6wdjz9wqpxv8nk6eraevje4fuwkyjnwuy82qsx3lduv/boneOsmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "ANDR", - "name": "ANDR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", + "is_svm": false, + "symbol": "bOSMO", + "name": "bOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/bOSMO.png", "decimals": 6, - "coingecko_id": "andromeda-2", - "recommended_symbol": "ANDR" + "recommended_symbol": "bOSMO" }, { - "denom": "ibc/EFA135F8BAAEF5953A9F918C23C2F1C8A74EA60ED6FBF3A06B5BAD2DD99B9E0F", + "denom": "ibc/CFE5902FC4463DA839B77B4BD3611AD57B8C74D674AE1C6A58FD48DBA575432D", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-10", + "origin_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-86", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "FABLE", + "name": "FABLE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg", "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "recommended_symbol": "FABLE" }, { - "denom": "ibc/F992067A054C819B42D2DAB57F5CCE347D38352EB90453E59D566BFE64F1614B", + "denom": "ibc/FD9DBF0DB4D301313195159303811FD2FD72185C4B11A51659EFCD49D7FF1228", "chain_id": "phoenix-1", - "origin_denom": "wavax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" + "is_svm": false, + "symbol": "stATOM", + "name": "Stride", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "decimals": 6, + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/3E35008738AC049C9C1A1E37F785E947A8DAA9811B3EA3B25580664294056151", + "denom": "ibc/25BC59386BB65725F735EFC0C369BB717AA8B5DAD846EAF9CBF5D0F18F207211", "chain_id": "phoenix-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-255", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "Axelar", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { - "denom": "ibc/B9B979301D10A9CD5080723000C797392EB33DFA4C5A5CF95F2B5AB077AAF018", + "denom": "ibc/334AD41CE64F4D9FFEB7DA4F533B2C1A872FBBD1524A47531FB105C174313B16", "chain_id": "phoenix-1", - "origin_denom": "usc", + "origin_denom": "busd.1.6.754a80", "origin_chain_id": "carbon-1", "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "USC", - "name": "USC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", - "decimals": 8, - "coingecko_id": "carbon-usd", - "recommended_symbol": "USC" + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "decimals": 18, + "recommended_symbol": "BUSD.carbon" }, { - "denom": "ibc/C17F17047DCB2187CA917A5C9FE99E9AF5B17760BF7D0C2274B5AE0961F02E15", + "denom": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", "chain_id": "phoenix-1", - "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-86", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "GUPPY", - "name": "GUPPY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", + "is_svm": false, + "symbol": "JUNO", + "name": "Juno", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "recommended_symbol": "GUPPY" + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "ibc/21F3876A6F5A1A1231768FE8A065C04B5C728632B9B8BA8CA418829E0214D8EE", + "denom": "ibc/FDDF98401F29AC63212C1742F9EC86D3AA1E1BE94BF9EB2F72B990C490303F42", "chain_id": "phoenix-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-299", + "origin_denom": "busd-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "is_svm": false, + "symbol": "BUSD", + "name": "BUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "coingecko_id": "binance-usd", + "recommended_symbol": "BUSD.axl" }, { - "denom": "ibc/2E435CEEEBA18CCB2719E0182BC5D142A364D6CCE9957DE6E1AC4D62127D2913", + "denom": "ibc/66E616A35525829F181241532E4C5F0DA983EBFA8F96AE25EFC2E7D1BF0E6480", "chain_id": "phoenix-1", - "origin_denom": "frax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "origin_denom": "stadydx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "FRAX", - "name": "FRAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", + "is_svm": false, + "symbol": "stDYDX", + "name": "stDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", "decimals": 18, - "coingecko_id": "frax", - "recommended_symbol": "FRAX.axl" + "coingecko_id": "stride-staked-dydx", + "recommended_symbol": "stDYDX" }, { - "denom": "ibc/334AD41CE64F4D9FFEB7DA4F533B2C1A872FBBD1524A47531FB105C174313B16", + "denom": "ibc/62CC85ED0F0C43C453B1A059BF5A147498550C2A7ADDEE6324A0B4E9E371C9C7", "chain_id": "phoenix-1", - "origin_denom": "busd.1.6.754a80", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-36", + "origin_denom": "shib-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "BUSD", - "name": "BUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", "decimals": 18, - "recommended_symbol": "BUSD.carbon" + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" }, { - "denom": "ibc/6F45FFC7C8BF941B356DAD73B41DD3D232CBB72025A0D9B82AAA0494D107297C", + "denom": "ibc/6DF5BAFB08A7BBE2B9793F602864147768B2FA1A1BE9F460F224B4C41409F4EA", "chain_id": "phoenix-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-37", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-273", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "Crescent", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/96B471382D2B1A9C712C9225754E3D1C58F94463905C2CE6B59297C5597C2E46", + "denom": "ibc/1F84E60240ED39D5D7E679E88A9622D3FB21F2E0DD04CC6CD3962D3D566EEB35", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-10", + "origin_denom": "cgt/1", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "USD", + "name": "USD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/carbon-grouped-usd.png", + "decimals": 18, + "recommended_symbol": "USD" + }, + { + "denom": "ibc/E4A918946C5E89B1B5C8DCAFEAEF3D3631AE516CEBEF01AA62AC88F7E2E2C18E", + "chain_id": "phoenix-1", + "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-255", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" + "coingecko_id": "tether", + "recommended_symbol": "USDT.peggy" }, { - "denom": "ibc/BCB139B1FB690E0AC1AD98EBAAD281949ECB341872E697717BCF95B67917C34F", + "denom": "ibc/7B7831150D7A8FF2A198DF4F8BD246F1BEA8E94B9ECD3EF7F8B6497B66BB206C", "chain_id": "phoenix-1", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-39", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-229", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "Harbor Protocol", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "NTRN", + "name": "Neutron", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "ibc/BD6CB5987E6909DB57E7976B47291FE51E51BDE5E4EB561F5B168A91CB2FEDEE", + "denom": "ibc/7C5F3D31658C890C44A9FC2FDD5EB68242C33D851BA169DBEC37587A8F50B3D3", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "WINK", - "name": "WINK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", + "is_svm": false, + "symbol": "LOCAL", + "name": "LOCAL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", "decimals": 6, - "recommended_symbol": "WINK" + "recommended_symbol": "LOCAL" }, { - "denom": "ibc/724090386B617F168512CE62FF7B71E996A362A17D88ED820CB6D834801A2E56", + "denom": "ibc/EF21BC562B7EB4D22BBF467D011E3118B7E3AD6D095000A672A9FCECA5ABCF15", "chain_id": "phoenix-1", - "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-229", + "origin_denom": "mkr-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "APOLLO", - "name": "APOLLO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", - "decimals": 6, - "recommended_symbol": "APOLLO" + "is_svm": false, + "symbol": "MKR", + "name": "MKR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mkr.svg", + "decimals": 18, + "coingecko_id": "maker", + "recommended_symbol": "MKR.axl" }, { - "denom": "ibc/745F771553C6359177F99817B0CCC5F7E7606904EF0856016D34DC9EBAA6745C", + "denom": "ibc/F11C82FE9BB5F210869161D4A76415218D1996A3EB2CD7FDAFE9192B78D940F8", "chain_id": "phoenix-1", - "origin_denom": "factory/inj14lf8xm6fcvlggpa7guxzjqwjmtr24gnvf56hvz/autism", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-255", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-324", "is_cw20": false, "is_evm": false, - "symbol": "AUTISM", - "name": "AUTISM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/autism.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "coingecko_id": "autism", - "recommended_symbol": "AUTISM" + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/792AAE6279F4709F66068E29A79E6F16BBC0A9B93561A91FC040606793E62D6B", + "denom": "ibc/A06709D9DE8643F5B935DC4D7A6418944F18A03B75F85FCCA5CE794523D5BA8A", "chain_id": "phoenix-1", - "origin_denom": "swth", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-36", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-265", "is_cw20": false, "is_evm": false, - "symbol": "SWTH", - "name": "Carbon", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "decimals": 8, - "coingecko_id": "switcheo", - "recommended_symbol": "SWTH" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/AADE2B055785745EBAAA957CF16505607CE03B4B24F693B20FC239836C34A6E4", + "denom": "ibc/AC65808D27055D0A44359F4196176B7017C124DE9E866F48BC793C13291BA992", "chain_id": "phoenix-1", - "origin_denom": "cw20:juno1mkw83sv6c7sjdvsaplrzc8yaes9l42p4mhy0ssuxjnyzl87c9eps7ce3m9", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-33", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-216", "is_cw20": false, "is_evm": false, - "symbol": "WYND", - "name": "WYND", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wynd.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "wynd", - "recommended_symbol": "WYND" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/19313100CB022954D65361B26AC3C5BAFB0AEEEDF7DF86D44E8CA9F5148B6B08", + "denom": "ibc/517E13F14A1245D4DE8CF467ADD4DA0058974CDCC880FA6AE536DBCA1D16D84E", "chain_id": "phoenix-1", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-300", + "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-86", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "bWHALE", + "name": "BackBone Labs", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "coingecko_id": "backbone-labs-staked-whale", + "recommended_symbol": "bWHALE" }, { - "denom": "ibc/FFE8C5C4357457B8D4DBB5795DDD87185315301E98DCC9E20D7D5AC652056BD8", + "denom": "ibc/14ACCAD1750327C74BB35978AD0C3E97B184DAB9F0BF4BD876FBD1F782B57110", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "FUZN", - "name": "FUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", + "is_svm": false, + "symbol": "USK", + "name": "Kujira USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "recommended_symbol": "FUZN" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "ibc/05D299885B07905B6886F554B39346EA6761246076A1120B1950049B92B922DD", + "denom": "ibc/0711FA27330AD6D14E48578B7AF64D318E76970CD097BB4332D6DCE85F3491DC", "chain_id": "phoenix-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "Wrapped Bitcoin", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "ampMNTA", + "name": "ampMNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "decimals": 6, + "recommended_symbol": "ampMNTA" }, { - "denom": "ibc/0A31B4B46B4C5F10ED3EF4BFBD1453CE96A270D168FC672436ABCA2DB4CC1401", + "denom": "ibc/1319C6B38CA613C89D78C2D1461B305038B1085F6855E8CD276FE3F7C9600B4C", "chain_id": "phoenix-1", - "origin_denom": "arb-wei", + "origin_denom": "wbnb-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "ARB", - "name": "ARB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", "decimals": 18, - "coingecko_id": "arbitrum", - "recommended_symbol": "ARB.axl" + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "ibc/0EFC7B44625187BFB60AF09FF28A25FA49B68B959A505CC5313DF0498D8CF528", + "denom": "ibc/1645FDF541F13E9C382BD7B76557BA826404A493E2FEE58E45FA21F81D58C5FA", "chain_id": "phoenix-1", - "origin_denom": "ustrd", + "origin_denom": "stustars", "origin_chain_id": "stride-1", "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "Stride", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "decimals": 6, + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" + }, + { + "denom": "ibc/21F3876A6F5A1A1231768FE8A065C04B5C728632B9B8BA8CA418829E0214D8EE", + "chain_id": "phoenix-1", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-299", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" + }, + { + "denom": "ibc/42571BCE9220896912D379C54825BB92EC8C402F8BDC9D895D83937C3DA27BDF", + "chain_id": "phoenix-1", + "origin_denom": "ncheq", + "origin_chain_id": "cheqd-mainnet-1", + "trace": "transfer/channel-301", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CHEQ", + "name": "CHEQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "decimals": 9, + "coingecko_id": "cheqd-network", + "recommended_symbol": "CHEQ" + }, + { + "denom": "ibc/52B30BB501A222D586222700F241EBC8CA97A4A17C9737DDCC00DD0BBC24CEAD", + "chain_id": "phoenix-1", + "origin_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-229", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ASTROPEPE", + "name": "AstroPepe", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", + "decimals": 6, + "recommended_symbol": "ASTROPEPE" + }, + { + "denom": "ibc/B3F639855EE7478750CC8F82072307ED6E131A8EFF20345E1D136B50C4E5EC36", + "chain_id": "phoenix-1", + "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-86", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ampWHALE", + "name": "ERIS Amplified Whale", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "recommended_symbol": "ampWHALE" }, { - "denom": "ibc/25BC59386BB65725F735EFC0C369BB717AA8B5DAD846EAF9CBF5D0F18F207211", + "denom": "ibc/B9B979301D10A9CD5080723000C797392EB33DFA4C5A5CF95F2B5AB077AAF018", "chain_id": "phoenix-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-255", + "origin_denom": "usc", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "is_svm": false, + "symbol": "USC", + "name": "USC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/usc.png", + "decimals": 8, + "coingecko_id": "carbon-usd", + "recommended_symbol": "USC" }, { - "denom": "ibc/2C50C2CC304FAE4C87868ED4B4279F8BF769F10CCFFD3154B6101C61E57AA498", + "denom": "ibc/BD6CB5987E6909DB57E7976B47291FE51E51BDE5E4EB561F5B168A91CB2FEDEE", "chain_id": "phoenix-1", - "origin_denom": "umars", - "origin_chain_id": "mars-1", - "trace": "transfer/channel-78", + "origin_denom": "factory/kujira12cjjeytrqcj25uv349thltcygnp9k0kukpct0e/uwink", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "MARS", - "name": "Mars Protocol", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "is_svm": false, + "symbol": "WINK", + "name": "WINK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", "decimals": 6, - "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", - "recommended_symbol": "MARS" + "recommended_symbol": "WINK" }, { - "denom": "ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB", + "denom": "ibc/E0687047EA2BDEFC10A211E27502C2A78441684F624B41FD2FCFDEFDFB5AA569", "chain_id": "phoenix-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-253", + "origin_denom": "factory/osmo1dv8wz09tckslr2wy5z86r46dxvegylhpt97r9yd6qc3kyc6tv42qa89dr9/ampOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "Noble", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "ampOSMO", + "name": "ampOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/amposmo.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "recommended_symbol": "ampOSMO" }, { - "denom": "ibc/4CD525F166D32B0132C095F353F4C6F033B0FF5C49141470D1EFDA1D63303D04", + "denom": "ibc/E262CAE3F7F6EDC47267CEA6B5BD2A199CBBA77215DA5FF2C1866436B5361DBA", "chain_id": "phoenix-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-2", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/urfuzn", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "Juno", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "rFUZN", + "name": "rFUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzionr.png", "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "recommended_symbol": "rFUZN" }, { - "denom": "ibc/55892DEC5D6213E0353F76D72161037780DB2DCEF27C9134817808AD5005B35A", + "denom": "ibc/E83DFA7C774804925765C4EFCBFAF2088AFE8B41302AB66000CA6234BD5976E4", "chain_id": "phoenix-1", - "origin_denom": "cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-33", + "origin_denom": "uandr", + "origin_chain_id": "andromeda-1", + "trace": "transfer/channel-351", "is_cw20": false, "is_evm": false, - "symbol": "EMPWR", - "name": "EMPWR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png", + "is_svm": false, + "symbol": "ANDR", + "name": "ANDR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", "decimals": 6, - "recommended_symbol": "EMPWR" + "coingecko_id": "andromeda-2", + "recommended_symbol": "ANDR" }, { - "denom": "ibc/F6FADDC637C1F7CDF392B7E57C0A4B4C126C428692498B77938533C52F01CDFB", + "denom": "ibc/10BD6ED30BA132AB96F146D71A23B46B2FC19E7D79F52707DC91F2F3A45040AD", "chain_id": "phoenix-1", - "origin_denom": "ukava", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-216", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "KAVA", - "name": "Kava", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "coingecko_id": "kava", - "recommended_symbol": "KAVA" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/02833502787A39DD2FF18CB11599CAF6D172DE6065F807A6C1BC02566F87C3DB", + "denom": "ibc/EEDCCB3A5A58F2EEB63BECC2FE0827C8251931AF492D924F21A4B886B2742567", "chain_id": "phoenix-1", - "origin_denom": "stuosmo", + "origin_denom": "stinj", "origin_chain_id": "stride-1", "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", - "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" - }, - { - "denom": "ibc/06F2A845E2AF08C2CC07F5D0BA4229F453E63B7954AA1FB67CDE160F675FAF6D", - "chain_id": "phoenix-1", - "origin_denom": "peggy0xb2617246d0c6c0087f18703d576831899ca94f01", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-255", - "is_cw20": false, - "is_evm": false, - "symbol": "ZIG", - "name": "ZIG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zig.png", + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", "decimals": 18, - "coingecko_id": "zignaly", - "recommended_symbol": "ZIG.peggy" + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "ibc/0711FA27330AD6D14E48578B7AF64D318E76970CD097BB4332D6DCE85F3491DC", + "denom": "ibc/FFE8C5C4357457B8D4DBB5795DDD87185315301E98DCC9E20D7D5AC652056BD8", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira175yatpvkpgw07w0chhzuks3zrrae9z9g2y6r7u5pzqesyau4x9eqqyv0rr/ampMNTA", + "origin_denom": "factory/kujira1sc6a0347cc5q3k890jj0pf3ylx2s38rh4sza4t/ufuzn", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "ampMNTA", - "name": "ampMNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampmnta.png", + "is_svm": false, + "symbol": "FUZN", + "name": "FUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/fuzion.png", "decimals": 6, - "recommended_symbol": "ampMNTA" + "recommended_symbol": "FUZN" }, { "denom": "ibc/08095CEDEA29977C9DD0CE9A48329FDA622C183359D5F90CF04CC4FF80CBE431", @@ -30646,6 +37170,7 @@ "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stLUNA", "name": "Stride", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", @@ -30661,6 +37186,7 @@ "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KLEO", "name": "KLEO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/kleomedes.png", @@ -30668,537 +37194,592 @@ "recommended_symbol": "KLEO" }, { - "denom": "ibc/1C388025D0A7644F96ED0429109F3D493931A85485586484237D193F20E2267B", - "chain_id": "phoenix-1", - "origin_denom": "cw20:juno15u3dt79t6sxxa3x3kpkhzsy56edaa5a66wvt3kxmukqjz2sx0hes5sn38g", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-33", - "is_cw20": false, - "is_evm": false, - "symbol": "RAW", - "name": "RAW", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/raw.png", - "decimals": 6, - "coingecko_id": "junoswap-raw-dao", - "recommended_symbol": "RAW" - }, - { - "denom": "ibc/36A02FFC4E74DF4F64305130C3DFA1B06BEAC775648927AA44467C76A77AB8DB", + "denom": "ibc/0A31B4B46B4C5F10ED3EF4BFBD1453CE96A270D168FC672436ABCA2DB4CC1401", "chain_id": "phoenix-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-86", + "origin_denom": "arb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "Migaloo", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", - "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "is_svm": false, + "symbol": "ARB", + "name": "ARB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/arbitrum/images/arb.png", + "decimals": 18, + "coingecko_id": "arbitrum", + "recommended_symbol": "ARB.axl" }, { - "denom": "ibc/3866A9F82A2848DE872A136AE0B6D7C550AA397A8FD9ACB8C8C594DA059D2B76", + "denom": "ibc/14E4FD1AB72DE9BF1D6725CBA18373C406CB9A7DA17955299F3F4DC5C6131A4E", "chain_id": "phoenix-1", - "origin_denom": "cw20:juno12mcwmd6wqhledkjsurlfqtc8j0pedvxlcxw3gs4kh2qf808ehehsen8nmw", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-33", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "YFD", - "name": "YFD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/yfd.png", - "decimals": 6, - "recommended_symbol": "YFD" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/19313100CB022954D65361B26AC3C5BAFB0AEEEDF7DF86D44E8CA9F5148B6B08", "chain_id": "phoenix-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-300", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "Osmosis", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "ibc/28F5B923E22AE07CA00959425E5252CC69CCE68A9C4F121398DCD2D1A075F2F5", + "denom": "ibc/2E435CEEEBA18CCB2719E0182BC5D142A364D6CCE9957DE6E1AC4D62127D2913", "chain_id": "phoenix-1", - "origin_denom": "uflix", - "origin_chain_id": "omniflixhub-1", - "trace": "transfer/channel-211", + "origin_denom": "frax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "FLIX", - "name": "FLIX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", - "decimals": 6, - "coingecko_id": "omniflix-network", - "recommended_symbol": "FLIX" + "is_svm": false, + "symbol": "FRAX", + "name": "FRAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", + "decimals": 18, + "coingecko_id": "frax", + "recommended_symbol": "FRAX.axl" }, { - "denom": "ibc/7B7831150D7A8FF2A198DF4F8BD246F1BEA8E94B9ECD3EF7F8B6497B66BB206C", + "denom": "ibc/2F991B31CE426BCA00C5270F33AF520C2ACC73690541DBC84CBF68431D54DF04", "chain_id": "phoenix-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-229", + "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "Neutron", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "ampKUJI", + "name": "Eris Amplified KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "recommended_symbol": "ampKUJI" }, { - "denom": "ibc/7C5F3D31658C890C44A9FC2FDD5EB68242C33D851BA169DBEC37587A8F50B3D3", + "denom": "ibc/447BDA64EA09B52D4C52337C26BC49EBE42184BAF094F89938399773CFBD7E0C", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-10", + "origin_denom": "factory/inj1esz96ru3guug4ctmn5chjmkymt979sfvufq0hs/PUNK", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-255", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "is_svm": false, + "symbol": "PUNK", + "name": "PUNK", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/PUNK.png", "decimals": 6, - "recommended_symbol": "LOCAL" + "recommended_symbol": "PUNK" }, { - "denom": "ibc/857D33D2A925912214224B8F3FA38DECF0527AAF76375BD3388BB16727BAF759", + "denom": "ibc/C17F17047DCB2187CA917A5C9FE99E9AF5B17760BF7D0C2274B5AE0961F02E15", "chain_id": "phoenix-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-233", + "origin_denom": "factory/migaloo1etlu2h30tjvv8rfa4fwdc43c92f6ul5w9acxzk/uguppy", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-86", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "Chihuahua", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", + "is_svm": false, + "symbol": "GUPPY", + "name": "GUPPY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/guppy.png", "decimals": 6, - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "recommended_symbol": "GUPPY" }, { - "denom": "ibc/94385C534BC055BE5E5870413CE00BF7D1340739EB88C1171EBD6AD8892B3691", + "denom": "ibc/C2103F4B4373016B4B844A461CE2083DE3DE33136F3C9D3C8E1AD9F77A8F588E", "chain_id": "phoenix-1", - "origin_denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-33", + "origin_denom": "factory/migaloo1eqntnl6tzcj9h86psg4y4h6hh05g2h9nj8e09l/urac", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-86", "is_cw20": false, "is_evm": false, - "symbol": "SEJUNO", - "name": "SEJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png", + "is_svm": false, + "symbol": "RAC", + "name": "RAC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/rac.png", "decimals": 6, - "coingecko_id": "stakeeasy-juno-derivative", - "recommended_symbol": "SEJUNO" + "recommended_symbol": "RAC" }, { - "denom": "ibc/B22B4DD21586965DAEF42A7600BA371EA77C02E90FC8A7F2330BF9F9DE129B07", + "denom": "ibc/5BDDCE0FEE672CB481C0FC7B82132B90CBCD5B5CF314934A8868D570F69756F8", "chain_id": "phoenix-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-10", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-158", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "Kujira", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "SEI", + "name": "Sei", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" }, { - "denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", + "denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", "chain_id": "phoenix-1", - "origin_denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", + "origin_denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", "origin_chain_id": "phoenix-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "boneWHALEt", - "name": "boneWHALEt", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg", + "is_svm": false, + "symbol": "ampROAR", + "name": "ampROAR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png", "decimals": 6, - "description": "ERIS Alliance Staked boneWHALE on Terra", - "recommended_symbol": "boneWHALEt" + "description": "ERIS Liquid Enterprise Staked ROAR", + "recommended_symbol": "ampROAR" }, { - "denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", + "denom": "ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD", "chain_id": "phoenix-1", - "origin_denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", - "origin_chain_id": "phoenix-1", - "trace": "", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALEt", - "name": "ampWHALEt", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg", + "is_svm": false, + "symbol": "sqOSMO", + "name": "sqOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", "decimals": 6, - "description": "ERIS Alliance Staked ampWHALE on Terra", - "recommended_symbol": "ampWHALEt" + "recommended_symbol": "sqOSMO" }, { - "denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", + "denom": "ibc/3E35008738AC049C9C1A1E37F785E947A8DAA9811B3EA3B25580664294056151", "chain_id": "phoenix-1", - "origin_denom": "factory/terra1vklefn7n6cchn0u962w3gaszr4vf52wjvd4y95t2sydwpmpdtszsqvk9wy/ampROAR", - "origin_chain_id": "phoenix-1", - "trace": "", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "ampROAR", - "name": "ampROAR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/amproar.png", + "is_svm": false, + "symbol": "AXL", + "name": "Axelar", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "description": "ERIS Liquid Enterprise Staked ROAR", - "recommended_symbol": "ampROAR" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/517E13F14A1245D4DE8CF467ADD4DA0058974CDCC880FA6AE536DBCA1D16D84E", + "denom": "ibc/55892DEC5D6213E0353F76D72161037780DB2DCEF27C9134817808AD5005B35A", "chain_id": "phoenix-1", - "origin_denom": "factory/migaloo1mf6ptkssddfmxvhdx0ech0k03ktp6kf9yk59renau2gvht3nq2gqdhts4u/boneWhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-86", + "origin_denom": "cw20:juno12etxwkxvms0uy9ak8g3pyq6a53myukufdnx82pakzmjmpm77a0ksr9gs5v", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "bWHALE", - "name": "BackBone Labs", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/bWHALE.png", + "is_svm": false, + "symbol": "EMPWR", + "name": "EMPWR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/empwr.png", "decimals": 6, - "recommended_symbol": "bWHALE" + "recommended_symbol": "EMPWR" }, { - "denom": "ibc/52B30BB501A222D586222700F241EBC8CA97A4A17C9737DDCC00DD0BBC24CEAD", + "denom": "ibc/F2F160FCF854896FAE3E846C5D936F1FDD8413646F2A780A1DE1CF35F2E8504C", "chain_id": "phoenix-1", - "origin_denom": "factory/neutron14henrqx9y328fjrdvz6l6d92r0t7g5hk86q5nd/uastropepe", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-229", + "origin_denom": "cw20:juno1a0khag6cfzu5lrwazmyndjgvlsuk7g4vn9jd8ceym8f4jf6v2l9q6d348a", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "ASTROPEPE", - "name": "AstroPepe", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/astropepe.png", + "is_svm": false, + "symbol": "ampJUNO", + "name": "ampJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/ampjuno.svg", "decimals": 6, - "recommended_symbol": "ASTROPEPE" + "recommended_symbol": "ampJUNO" }, { - "denom": "ibc/5BDDCE0FEE672CB481C0FC7B82132B90CBCD5B5CF314934A8868D570F69756F8", + "denom": "ibc/F6FADDC637C1F7CDF392B7E57C0A4B4C126C428692498B77938533C52F01CDFB", "chain_id": "phoenix-1", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-158", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-216", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "Sei", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "decimals": 6, - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/6CD39EACF052B761E3ADC709A11747CFCCA49F07DA23A26E61DB1CEF4D0CCC33", + "denom": "ibc/F71B530BA586C155652404FA7B07E5CDFBF9944F57682630D8AC9498C4C75B77", "chain_id": "phoenix-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-39", + "origin_denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "Comdex", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "qcFUZN", + "name": "qcFUZN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", "decimals": 6, - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "recommended_symbol": "qcFUZN" }, { - "denom": "ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73", + "denom": "ibc/2C50C2CC304FAE4C87868ED4B4279F8BF769F10CCFFD3154B6101C61E57AA498", "chain_id": "phoenix-1", - "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "umars", + "origin_chain_id": "mars-1", + "trace": "transfer/channel-78", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC" + "is_svm": false, + "symbol": "MARS", + "name": "Mars Protocol", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", + "decimals": 6, + "coingecko_id": "mars-protocol-a7fcbcfb-fd61-4017-92f0-7ee9f9cc6da3", + "recommended_symbol": "MARS" }, { - "denom": "ibc/CFE5902FC4463DA839B77B4BD3611AD57B8C74D674AE1C6A58FD48DBA575432D", + "denom": "ibc/36A02FFC4E74DF4F64305130C3DFA1B06BEAC775648927AA44467C76A77AB8DB", "chain_id": "phoenix-1", - "origin_denom": "factory/migaloo18a9m9stu3dyvewwcq9qmp85euxqcvln5mefync/fable", + "origin_denom": "uwhale", "origin_chain_id": "migaloo-1", "trace": "transfer/channel-86", "is_cw20": false, "is_evm": false, - "symbol": "FABLE", - "name": "FABLE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/fable.svg", + "is_svm": false, + "symbol": "WHALE", + "name": "Migaloo", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", "decimals": 6, - "recommended_symbol": "FABLE" + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" }, { - "denom": "ibc/E4A918946C5E89B1B5C8DCAFEAEF3D3631AE516CEBEF01AA62AC88F7E2E2C18E", + "denom": "factory/terra1hj8vslywgrgwuluajuggzpgcudk5fc9d4e6la08426dffgyl7ujs8a3e88/mjj", "chain_id": "phoenix-1", - "origin_denom": "peggy0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-255", + "origin_denom": "factory/terra1hj8vslywgrgwuluajuggzpgcudk5fc9d4e6la08426dffgyl7ujs8a3e88/mjj", + "origin_chain_id": "phoenix-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "is_svm": false, + "symbol": "MJJ", + "name": "Jiooji", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/MJJ.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.peggy" + "recommended_symbol": "MJJ" }, { - "denom": "ibc/10BD6ED30BA132AB96F146D71A23B46B2FC19E7D79F52707DC91F2F3A45040AD", + "denom": "ibc/A356EC90DC3AE43D485514DA7260EDC7ABB5CFAA0654CE2524C739392975AD3C", "chain_id": "phoenix-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-3", + "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-229", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "is_svm": false, + "symbol": "wstETH", + "name": "Lido", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH" }, { - "denom": "ibc/1319C6B38CA613C89D78C2D1461B305038B1085F6855E8CD276FE3F7C9600B4C", + "denom": "ibc/2362890CB9F19127D83DD751E9E76CD6F05AB3BFC9AD427D5FFE4CADAE11D2B5", "chain_id": "phoenix-1", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "origin_denom": "eth.1.2.942d87", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-36", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "recommended_symbol": "ETH.carbon" }, { - "denom": "ibc/14ACCAD1750327C74BB35978AD0C3E97B184DAB9F0BF4BD876FBD1F782B57110", + "denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-10", + "origin_denom": "factory/terra10j3zrymfrkta2pxe0gklc79gu06tqyuy8c3kh6tqdsrrprsjqkrqzfl4df/boneWHALEt", + "origin_chain_id": "phoenix-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "Kujira USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "boneWHALEt", + "name": "boneWHALEt", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/bonewhalet.svg", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "description": "ERIS Alliance Staked boneWHALE on Terra", + "recommended_symbol": "boneWHALEt" }, { - "denom": "ibc/14E4FD1AB72DE9BF1D6725CBA18373C406CB9A7DA17955299F3F4DC5C6131A4E", + "denom": "ibc/BC8A77AFBD872FDC32A348D3FB10CC09277C266CFE52081DE341C7EC6752E674", "chain_id": "phoenix-1", - "origin_denom": "wmatic-wei", + "origin_denom": "weth-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "is_svm": false, + "symbol": "WETH", + "name": "Wrapped Ether", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "coingecko_id": "weth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/1645FDF541F13E9C382BD7B76557BA826404A493E2FEE58E45FA21F81D58C5FA", + "denom": "ibc/BCB139B1FB690E0AC1AD98EBAAD281949ECB341872E697717BCF95B67917C34F", "chain_id": "phoenix-1", - "origin_denom": "stustars", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-46", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-39", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "is_svm": false, + "symbol": "CMST", + "name": "Harbor Protocol", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", "chain_id": "phoenix-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0", + "origin_denom": "factory/terra1j35ta0llaxcf55auv2cjqau5a7aee6g8fz7md7my7005cvh23jfsaw83dy/ampWHALEt", + "origin_chain_id": "phoenix-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "Cosmos Hub", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "ampWHALEt", + "name": "ampWHALEt", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampwhalet.svg", "decimals": 6, - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "description": "ERIS Alliance Staked ampWHALE on Terra", + "recommended_symbol": "ampWHALEt" }, { - "denom": "ibc/2F991B31CE426BCA00C5270F33AF520C2ACC73690541DBC84CBF68431D54DF04", + "denom": "ibc/6B3BC1FA67079EBF2088CA56CC2461DA791F59D9285CE1F5662E3F5A80719D96", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira1n3fr5f56r2ce0s37wdvwrk98yhhq3unnxgcqus8nzsfxvllk0yxquurqty/ampKUJI", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-10", + "origin_denom": "factory/inj18nm3q7r2rckklp7h8hgfzu2dlc20sftvd2893w/nUSD", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-255", "is_cw20": false, "is_evm": false, - "symbol": "ampKUJI", - "name": "Eris Amplified KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/ampkuji.png", - "decimals": 6, - "recommended_symbol": "ampKUJI" + "is_svm": false, + "symbol": "nUSD", + "name": "nUSD", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/nUSD.png", + "decimals": 18, + "recommended_symbol": "nUSD" }, { - "denom": "ibc/390B25B1BA21312C031FC6273F2E421DDE62466D858EEE88B7FC48E13B1D47B5", + "denom": "ibc/A42883E20767D7FF9D69D3CAF21FE2F8666AD1CCFA660CEF61AEB2A262085609", "chain_id": "phoenix-1", - "origin_denom": "factory/migaloo1erul6xyq0gk6ws98ncj7lnq9l4jn4gnnu9we73gdz78yyl2lr7qqrvcgup/ash", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-86", + "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "ASH", - "name": "ASH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ash.svg", + "is_svm": false, + "symbol": "SAIL", + "name": "SAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", "decimals": 6, - "recommended_symbol": "ASH" + "recommended_symbol": "SAIL" }, { - "denom": "ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1", + "denom": "ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73", "chain_id": "phoenix-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", - "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" }, { - "denom": "ibc/D54CE4CD2927F744CDCA844DD0E1A5DF88762274C55CD9AAB13E504A29BE8933", + "denom": "ibc/28F5B923E22AE07CA00959425E5252CC69CCE68A9C4F121398DCD2D1A075F2F5", "chain_id": "phoenix-1", - "origin_denom": "wglmr-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "origin_denom": "uflix", + "origin_chain_id": "omniflixhub-1", + "trace": "transfer/channel-211", "is_cw20": false, "is_evm": false, - "symbol": "WGLMR", - "name": "WGLMR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/moonbeam/images/glmr.png", - "decimals": 18, - "coingecko_id": "wrapped-moonbeam", - "recommended_symbol": "WGLMR.axl" + "is_svm": false, + "symbol": "FLIX", + "name": "FLIX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", + "decimals": 6, + "coingecko_id": "omniflix-network", + "recommended_symbol": "FLIX" }, { - "denom": "ibc/F71B530BA586C155652404FA7B07E5CDFBF9944F57682630D8AC9498C4C75B77", + "denom": "ibc/02833502787A39DD2FF18CB11599CAF6D172DE6065F807A6C1BC02566F87C3DB", "chain_id": "phoenix-1", - "origin_denom": "factory/kujira1l04ged98c7a7s9tllu62ld09ztylwf442qgm4thfgmadrvngeumsz4zrh2/urcpt", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-10", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "qcFUZN", - "name": "qcFUZN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/qcfuzn.svg", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "recommended_symbol": "qcFUZN" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" + } + ] + }, + "pio-mainnet-1": { + "assets": [ + { + "denom": "nhash", + "chain_id": "pio-mainnet-1", + "origin_denom": "nhash", + "origin_chain_id": "pio-mainnet-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "HASH", + "name": "HASH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/provenance/images/prov.png", + "decimals": 9, + "description": "Hash is the staking token of the Provenance Blockchain", + "coingecko_id": "provenance-blockchain", + "recommended_symbol": "HASH" }, { - "denom": "ibc/A42883E20767D7FF9D69D3CAF21FE2F8666AD1CCFA660CEF61AEB2A262085609", - "chain_id": "phoenix-1", - "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/C01154C2547F4CB10A985EA78E7CD4BA891C1504360703A37E1D7043F06B5E1F", + "chain_id": "pio-mainnet-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "SAIL", - "name": "SAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "recommended_symbol": "SAIL" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/AC65808D27055D0A44359F4196176B7017C124DE9E866F48BC793C13291BA992", - "chain_id": "phoenix-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-216", + "denom": "ibc/FAC1BAAA6ECDCB88408A6EEEA13AD4736DA687F85ACD22B5BBD00D36754AC0FA", + "chain_id": "pio-mainnet-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "Kava", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/447BDA64EA09B52D4C52337C26BC49EBE42184BAF094F89938399773CFBD7E0C", - "chain_id": "phoenix-1", - "origin_denom": "factory/inj1esz96ru3guug4ctmn5chjmkymt979sfvufq0hs/PUNK", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-255", + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "chain_id": "pio-mainnet-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "PUNK", - "name": "PUNK", - "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/PUNK.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "recommended_symbol": "PUNK" + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/62CC85ED0F0C43C453B1A059BF5A147498550C2A7ADDEE6324A0B4E9E371C9C7", - "chain_id": "phoenix-1", - "origin_denom": "shib-wei", + "denom": "ibc/301DAF9CB0A9E247CD478533EF0E21F48FF8118C4A51F77C8BC3EB70E5566DBC", + "chain_id": "pio-mainnet-1", + "origin_denom": "wbtc-satoshi", "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-6", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", - "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" } ] }, "pion-1": { "assets": [ { - "denom": "ibc/CC8B40E3F3536D003C6ED7C65421067215453AECE1517A6F0935470C634A036B", + "denom": "ibc/85CE72EE820A66F0ABD5EE3907A34E243E4BE2D6CFAEB4C08DF85BD6C0784FA2", "chain_id": "pion-1", - "origin_denom": "eth-wei", + "origin_denom": "uaxl", "origin_chain_id": "axelar-testnet-lisbon-3", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "axlWETH", - "name": "axlWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + }, + { + "denom": "ibc/C74D5A562B2D54AF03198E5BC6693D16EF978EBA0BD3BA22A7098511B43249CA", + "chain_id": "pion-1", + "origin_denom": "wavax-wei", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", "decimals": 18, - "recommended_symbol": "WETH" + "recommended_symbol": "WAVAX" }, { "denom": "untrn", @@ -31208,6 +37789,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NTRN", "name": "NTRN", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.png", @@ -31216,47 +37798,49 @@ "recommended_symbol": "NTRN" }, { - "denom": "factory/neutron1xdtwh5jr4zjx8g3zh29jud75c666wua7tsmum3ajm6ylf782etfs60dj2h/wstETH", + "denom": "ibc/4CDD4BA98A61F9F797CE9C83582AB2DC48AF464C585BF4895A0604C10BE5CE3D", "chain_id": "pion-1", - "origin_denom": "factory/neutron1xdtwh5jr4zjx8g3zh29jud75c666wua7tsmum3ajm6ylf782etfs60dj2h/wstETH", - "origin_chain_id": "pion-1", - "trace": "", + "origin_denom": "utia", + "origin_chain_id": "mocha-4", + "trace": "transfer/channel-221", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wsteth.png", - "decimals": 18, - "recommended_symbol": "wstETH" + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", + "decimals": 6, + "recommended_symbol": "TIA" }, { - "denom": "ibc/85CE72EE820A66F0ABD5EE3907A34E243E4BE2D6CFAEB4C08DF85BD6C0784FA2", + "denom": "ibc/CC8B40E3F3536D003C6ED7C65421067215453AECE1517A6F0935470C634A036B", "chain_id": "pion-1", - "origin_denom": "uaxl", + "origin_denom": "eth-wei", "origin_chain_id": "axelar-testnet-lisbon-3", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "axlWETH", + "name": "axlWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "recommended_symbol": "WETH" }, { - "denom": "ibc/F91EA2C0A23697A1048E08C2F787E3A58AC6F706A1CD2257A504925158CFC0F3", + "denom": "factory/neutron1xdtwh5jr4zjx8g3zh29jud75c666wua7tsmum3ajm6ylf782etfs60dj2h/wstETH", "chain_id": "pion-1", - "origin_denom": "uausdc", - "origin_chain_id": "axelar-testnet-lisbon-3", - "trace": "transfer/channel-8", + "origin_denom": "factory/neutron1xdtwh5jr4zjx8g3zh29jud75c666wua7tsmum3ajm6ylf782etfs60dj2h/wstETH", + "origin_chain_id": "pion-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "aUSDC", - "name": "aUSDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", - "decimals": 6, - "recommended_symbol": "aUSDC" + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wsteth.png", + "decimals": 18, + "recommended_symbol": "wstETH" }, { "denom": "ibc/B4AD449E01839EFBA0561B18E0C2A37821DAF20EB448C7B8DAC82070A78D1B1A", @@ -31266,6 +37850,7 @@ "trace": "transfer/channel-196", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -31274,190 +37859,204 @@ "recommended_symbol": "OSMO" }, { - "denom": "ibc/4CDD4BA98A61F9F797CE9C83582AB2DC48AF464C585BF4895A0604C10BE5CE3D", + "denom": "ibc/F91EA2C0A23697A1048E08C2F787E3A58AC6F706A1CD2257A504925158CFC0F3", "chain_id": "pion-1", - "origin_denom": "utia", - "origin_chain_id": "mocha-4", - "trace": "transfer/channel-221", + "origin_denom": "uausdc", + "origin_chain_id": "axelar-testnet-lisbon-3", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", + "is_svm": false, + "symbol": "aUSDC", + "name": "aUSDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "recommended_symbol": "TIA" + "recommended_symbol": "aUSDC" } ] }, "pirin-1": { "assets": [ { - "denom": "ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09", + "denom": "ibc/9C7F70E92CCBA0F2DC94796B0682955E090676EA7A2F8E0A4611956B79CB4406", "chain_id": "pirin-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-3839", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-0/transfer/channel-19774", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", - "decimals": 6, - "description": "The native token of Neutron chain.", - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "decimals": 18, + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "ibc/0FA6D366910D24A63E8ADE5298DC46F3D2C1C443FD06CF8B7034CCE413B137A9", + "denom": "ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE", "chain_id": "pirin-1", - "origin_denom": "peaka", - "origin_chain_id": "vota-ash", - "trace": "transfer/channel-4092", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-0/transfer/channel-204", "is_cw20": false, "is_evm": false, - "symbol": "DORA", - "name": "DORA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "decimals": 18, - "recommended_symbol": "DORA" + "description": "The native EVM, governance and staking token of the Evmos Hub", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221", + "denom": "ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1", "chain_id": "pirin-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-0/transfer/channel-208", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-0/transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "WBTC.axl", - "name": "WBTC.axl", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "description": "Wrapped Bitcoin on Axelar", - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "decimals": 6, + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8", + "denom": "ibc/BF25D70C6347C21597B23469BD91DD5E9493E973E7FC853A6DA57A6D6CFAEBDF", "chain_id": "pirin-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-0/transfer/channel-326", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-0/transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" }, { - "denom": "ibc/4128D5DDF2EF8776B5C704C3153E1CBEC5DABC04DB0CC6221EDCC342EB04779C", + "denom": "ibc/16CF38F8C53F179370C68CE27F6D5F561E9D1571781E05A24C67EF39766710E1", "chain_id": "pirin-1", - "origin_denom": "uluna", - "origin_chain_id": "columbus-5", - "trace": "transfer/channel-0/transfer/channel-72", + "origin_denom": "stujuno", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-0/transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "LUNC", - "name": "LUNC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "coingecko_id": "terra-luna", - "recommended_symbol": "LUNC" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "ibc/F5FABF52B54E65064B57BF6DBD8E5FAD22CEE9F4B8A57ADBB20CCD0173AA72A4", + "denom": "ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C", "chain_id": "pirin-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-0/transfer/channel-750", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-0/transfer/channel-42", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "description": "The native token of JUNO Chain", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "ibc/4786BEBBFDD989C467C4552AD73065D8B2578230B8428B3B9275D540EB04C851", + "denom": "ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5", "chain_id": "pirin-1", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-0/transfer/channel-6994", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "unls", + "denom": "ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388", "chain_id": "pirin-1", - "origin_denom": "unls", - "origin_chain_id": "pirin-1", - "trace": "", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0/transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "NLS", - "name": "NLS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "description": "The native token of Nolus chain", - "coingecko_id": "nolus", - "recommended_symbol": "NLS" + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107", + "denom": "ibc/B474BAE18361B48F4D59B8DB429EE494355E030EE50DE6A8CBE9AE5631DEAF50", "chain_id": "pirin-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-0/transfer/channel-88", + "origin_denom": "factory/neutron1p8d89wvxyjcnawmgw72klknr3lg9gwwl6ypxda/newt", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-3839", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "NEWT", + "name": "NEWT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/newt.png", "decimals": 6, - "description": "The native token of Secret Network", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "coingecko_id": "newt", + "recommended_symbol": "NEWT" }, { - "denom": "ibc/317FCA2D7554F55BBCD0019AB36F7FEA18B6D161F462AF5E565068C719A29F20", + "denom": "unls", "chain_id": "pirin-1", - "origin_denom": "uqatom", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-0/transfer/channel-522", + "origin_denom": "unls", + "origin_chain_id": "pirin-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "qATOM", - "name": "qATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "is_svm": false, + "symbol": "NLS", + "name": "NLS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", "decimals": 6, - "recommended_symbol": "qATOM" + "description": "The native token of Nolus chain", + "coingecko_id": "nolus", + "recommended_symbol": "NLS" }, { - "denom": "ibc/A59A9C955F1AB8B76671B00C1A0482C64A6590352944BB5880E5122358F7E1CE", + "denom": "ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48", "chain_id": "pirin-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-0/transfer/channel-204", + "origin_denom": "basecro", + "origin_chain_id": "crypto-org-chain-mainnet-1", + "trace": "transfer/channel-0/transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "description": "The native EVM, governance and staking token of the Evmos Hub", - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 8, + "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO" }, { "denom": "ibc/A7C4A3FB19E88ABE60416125F9189DA680800F4CDD14E3C10C874E022BEFF04C", @@ -31467,6 +38066,7 @@ "trace": "transfer/channel-0/transfer/channel-208", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ETH", "name": "ETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", @@ -31483,6 +38083,7 @@ "trace": "transfer/channel-0/transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stkATOM", "name": "stkATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", @@ -31491,6 +38092,23 @@ "coingecko_id": "stkatom", "recommended_symbol": "stkATOM" }, + { + "denom": "ibc/EA00FFF0335B07B5CD1530B7EB3D2C710620AE5B168C71AFF7B50532D690E107", + "chain_id": "pirin-1", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-0/transfer/channel-88", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "description": "The native token of Secret Network", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" + }, { "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "pirin-1", @@ -31499,6 +38117,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -31508,20 +38127,20 @@ "recommended_symbol": "OSMO" }, { - "denom": "ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5", + "denom": "ibc/FCFF8B19C61677F3B78E2A5AE3B4A34A8D23858D16905F253B8438B3AFD07FF8", "chain_id": "pirin-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-0/transfer/channel-75", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-0/transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "description": "The native token of Stargaze", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { "denom": "ibc/04CA9067228BB51F1C39A506DA00DF07E1496D8308DD21E8EF66AD6169FA722B", @@ -31531,6 +38150,7 @@ "trace": "transfer/channel-0/transfer/channel-326", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STRD", "name": "STRD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", @@ -31540,97 +38160,184 @@ "recommended_symbol": "STRD" }, { - "denom": "ibc/4F3E83AB35529435E4BFEA001F5D935E7250133347C4E1010A9C77149EF0394C", + "denom": "ibc/28F026607184B151F1F7D7F5D8AE644528550EB05203A28B6233DFA923669876", "chain_id": "pirin-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-0/transfer/channel-42", + "origin_denom": "ujkl", + "origin_chain_id": "jackal-1", + "trace": "transfer/channel-0/transfer/channel-412", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "JKL", + "name": "JKL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", "decimals": 6, - "description": "The native token of JUNO Chain", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "coingecko_id": "jackal-protocol", + "recommended_symbol": "JKL" }, { - "denom": "ibc/6C349F0EB135C5FA99301758F35B87DB88403D690E5E314AB080401FEE4066E5", + "denom": "ibc/317FCA2D7554F55BBCD0019AB36F7FEA18B6D161F462AF5E565068C719A29F20", "chain_id": "pirin-1", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-0/transfer/channel-6994", + "origin_denom": "uqatom", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-0/transfer/channel-522", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "qATOM", + "name": "qATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "recommended_symbol": "qATOM" }, { - "denom": "ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459", + "denom": "ibc/3D6BC6E049CAEB905AC97031A42800588C58FB471EBDC7A3530FFCD0C3DC9E09", "chain_id": "pirin-1", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-0/transfer/channel-1", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-3839", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "description": "The native token of Neutron chain.", + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "ibc/AF5559D128329B6C753F15481BEC26E533B847A471074703FA4903E7E6F61BA1", + "denom": "ibc/4786BEBBFDD989C467C4552AD73065D8B2578230B8428B3B9275D540EB04C851", "chain_id": "pirin-1", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-0/transfer/channel-326", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/E1BCC0F7B932E654B1A930F72B76C0678D55095387E2A4D8F00E941A8F82EE48", + "denom": "ibc/4DE84C92C714009D07AFEA7350AB3EC383536BB0FAAD7AF9C0F1A0BEA169304E", "chain_id": "pirin-1", - "origin_denom": "basecro", - "origin_chain_id": "crypto-org-chain-mainnet-1", - "trace": "transfer/channel-0/transfer/channel-5", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-0/transfer/channel-122", "is_cw20": false, "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" + }, + { + "denom": "ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4", + "chain_id": "pirin-1", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-3839/transfer/channel-48", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "description": "DYDX on Neutron", + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" + }, + { + "denom": "ibc/7F2DC2A595EDCAEC1C03D607C6DC3C79EDDC029A53D16C0788835C1A9AA06306", + "chain_id": "pirin-1", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-0/transfer/channel-1279", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" + }, + { + "denom": "ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911", + "chain_id": "pirin-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-0/transfer/channel-208", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC.axl", + "name": "USDC.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "description": "Circle's stablecoin on Axelar", + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/84E70F4A34FB2DE135FD3A04FDDF53B7DA4206080AA785C8BAB7F8B26299A221", + "chain_id": "pirin-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-0/transfer/channel-208", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC.axl", + "name": "WBTC.axl", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", "decimals": 8, - "description": "CRO is the native token of the Crypto.org Chain, referred to as Native CRO.", - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO" + "description": "Wrapped Bitcoin on Axelar", + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", + "denom": "ibc/8D4FC51F696E03711B9B37A5787FB89BD2DDBAF788813478B002D552A12F9157", "chain_id": "pirin-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-0/transfer/channel-326", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" + }, + { + "denom": "ibc/11E3CF372E065ACB1A39C531A3C7E7E03F60B5D0653AD2139D31128ACD2772B5", + "chain_id": "pirin-1", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-0/transfer/channel-75", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "decimals": 6, + "description": "The native token of Stargaze", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { "denom": "ibc/1B03A71B8E6F6EF424411DC9326A8E0D25D096E4D2616425CFAF2AF06F0FE717", @@ -31640,6 +38347,7 @@ "trace": "transfer/channel-0/transfer/channel-208", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "AXL", "name": "AXL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", @@ -31649,87 +38357,105 @@ "recommended_symbol": "AXL" }, { - "denom": "ibc/6CDD4663F2F09CD62285E2D45891FC149A3568E316CE3EBBE201A71A78A69388", + "denom": "ibc/237D015A64364977C849C6784BA9093D88306C21CE2A7B8C1422BA2E40633353", "chain_id": "pirin-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0/transfer/channel-0", + "origin_denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-3839", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH" }, { - "denom": "ibc/7FBDBEEEBA9C50C4BCDF7BF438EAB99E64360833D240B32655C96E319559E911", + "denom": "ibc/ADC63C00000CA75F909D2BE3ACB5A9980BED3A73B92746E0FCE6C67414055459", "chain_id": "pirin-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-0/transfer/channel-208", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-0/transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "USDC.axl", - "name": "USDC.axl", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "description": "Circle's stablecoin on Axelar", - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "description": "Akash Token (AKT) is the Akash Network's native utility token, used as the primary means to govern, secure the blockchain, incentivize participants, and provide a default mechanism to store and exchange value.", + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/BF25D70C6347C21597B23469BD91DD5E9493E973E7FC853A6DA57A6D6CFAEBDF", + "denom": "ibc/F5FABF52B54E65064B57BF6DBD8E5FAD22CEE9F4B8A57ADBB20CCD0173AA72A4", "chain_id": "pirin-1", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-0/transfer/channel-144", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-0/transfer/channel-750", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "recommended_symbol": "USDC" }, { - "denom": "ibc/6DF8CF5C976851D152E2C7270B0AB25C4F9D64C0A46513A68D6CBB2662A98DF4", + "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", "chain_id": "pirin-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-3839/transfer/channel-48", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "decimals": 6, + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" + }, + { + "denom": "ibc/0FA6D366910D24A63E8ADE5298DC46F3D2C1C443FD06CF8B7034CCE413B137A9", + "chain_id": "pirin-1", + "origin_denom": "peaka", + "origin_chain_id": "vota-ash", + "trace": "transfer/channel-4092", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DORA", + "name": "DORA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", "decimals": 18, - "description": "DYDX on Neutron", - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "recommended_symbol": "DORA" } ] }, "planq_7070-2": { "assets": [ { - "denom": "aplanq", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "chain_id": "planq_7070-2", - "origin_denom": "aplanq", - "origin_chain_id": "planq_7070-2", - "trace": "", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "PLQ", - "name": "PLQ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", - "decimals": 18, - "description": "The native EVM, governance and staking token of the Planq Network", - "coingecko_id": "planq", - "recommended_symbol": "PLQ" + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { "denom": "ibc/567E5E9FDF8104C5BDC3A31235CBAE66D38A901901E4BA80387C1AE2375E67F9", @@ -31739,6 +38465,7 @@ "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KUJI", "name": "KUJI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", @@ -31746,6 +38473,22 @@ "coingecko_id": "kujira", "recommended_symbol": "KUJI" }, + { + "denom": "ibc/88178A7DF538EF97AC4585C949304C3DE4FC04AA91F8F1372281E921D3F44A0D", + "chain_id": "planq_7070-2", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-43", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, { "denom": "erc20/0x091F9A57A3F58d758b6572E9d41675918EAC7F09", "chain_id": "planq_7070-2", @@ -31754,6 +38497,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SRCX", "name": "SRCX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/srcx.png", @@ -31762,20 +38506,19 @@ "recommended_symbol": "SRCX" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/4B4E225B5BB4C7B8D7444CA06A7AC528FD7E67F12E30C7CE557414C10CD0F888", "chain_id": "planq_7070-2", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "PLNK", + "name": "PLNK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "recommended_symbol": "PLNK" }, { "denom": "ibc/C8AB3A9F9A36AC71C7B7C52A4094604FD6D7AE16FC632A538291331EBE44AC6B", @@ -31785,6 +38528,7 @@ "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARCH", "name": "ARCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -31793,23 +38537,43 @@ "recommended_symbol": "ARCH" }, { - "denom": "ibc/4B4E225B5BB4C7B8D7444CA06A7AC528FD7E67F12E30C7CE557414C10CD0F888", + "denom": "aplanq", "chain_id": "planq_7070-2", - "origin_denom": "factory/kujira166ysf07ze5suazfzj0r05tv8amk2yn8zvsfuu7/uplnk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-23", + "origin_denom": "aplanq", + "origin_chain_id": "planq_7070-2", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PLNK", - "name": "PLNK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/PLNK_drk.png", - "decimals": 6, - "recommended_symbol": "PLNK" + "is_svm": false, + "symbol": "PLQ", + "name": "PLQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", + "decimals": 18, + "description": "The native EVM, governance and staking token of the Planq Network", + "coingecko_id": "planq", + "recommended_symbol": "PLQ" } ] }, "quasar-1": { "assets": [ + { + "denom": "uqsr", + "chain_id": "quasar-1", + "origin_denom": "uqsr", + "origin_chain_id": "quasar-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "QSR", + "name": "QSR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", + "decimals": 6, + "description": "The native token of Quasar", + "coingecko_id": "quasar-2", + "recommended_symbol": "QSR" + }, { "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "chain_id": "quasar-1", @@ -31818,6 +38582,7 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -31834,6 +38599,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -31850,6 +38616,7 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "milkTIA", "name": "milkTIA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", @@ -31865,32 +38632,32 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "sqOSMO", "name": "sqOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", "decimals": 6, "recommended_symbol": "sqOSMO" - }, - { - "denom": "uqsr", - "chain_id": "quasar-1", - "origin_denom": "uqsr", - "origin_chain_id": "quasar-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "QSR", - "name": "QSR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", - "decimals": 6, - "description": "The native token of Quasar", - "coingecko_id": "quasar-2", - "recommended_symbol": "QSR" } ] }, "quicksilver-2": { "assets": [ + { + "denom": "ibc/061226CF8A346CB5B5F0AFA10BEE31D1AACC48723E4E4781C5D7606BE9D8C21A", + "chain_id": "quicksilver-2", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "decimals": 6, + "recommended_symbol": "WOSMO" + }, { "denom": "ibc/A7E38774F447445DB94A8ED00BEE78EFC43EED7A732D314D3F7F4AB743993E9F", "chain_id": "quicksilver-2", @@ -31899,6 +38666,7 @@ "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "REGEN", "name": "REGEN", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", @@ -31915,6 +38683,7 @@ "trace": "transfer/channel-101", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SOMM", "name": "SOMM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", @@ -31931,12 +38700,92 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "qSTARS", "name": "qSTARS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", "decimals": 6, - "description": "Quicksilver Liquid Staked STARS", - "recommended_symbol": "qSTARS" + "description": "Quicksilver Liquid Staked STARS", + "recommended_symbol": "qSTARS" + }, + { + "denom": "ibc/25A01BCED23530945E74C17A63C29DAD5970F7405B398681D015738B51A0B64C", + "chain_id": "quicksilver-2", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-94", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" + }, + { + "denom": "ibc/3EDFD287DA7552429E1148BF954AB6F44F7C9730567964208B3052E6DDF18D08", + "chain_id": "quicksilver-2", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-86", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, + { + "denom": "ibc/50296617D7BB7A72E04AE9501FF009C7B78E6052E89FC6A6FA48EFBA3F70D9E1", + "chain_id": "quicksilver-2", + "origin_denom": "factory/juno1h6y8tkceau4d8zyv5aa0fwdj2pa2y0gz2hx0tq/uwind", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-86", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "wind", + "name": "wind", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/juno/asset/wind.png", + "decimals": 6, + "recommended_symbol": "wind" + }, + { + "denom": "uqregen", + "chain_id": "quicksilver-2", + "origin_denom": "uqregen", + "origin_chain_id": "quicksilver-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "qREGEN", + "name": "qREGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "decimals": 6, + "description": "Quicksilver Liquid Staked REGEN", + "recommended_symbol": "qREGEN" + }, + { + "denom": "ibc/0EE32E83564D18F2268A003A0088FC656E05341E5FCA400732DD08994CF9E25F", + "chain_id": "quicksilver-2", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-52", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "decimals": 6, + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { "denom": "ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B", @@ -31946,6 +38795,7 @@ "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -31954,21 +38804,6 @@ "coingecko_id": "osmosis", "recommended_symbol": "OSMO" }, - { - "denom": "ibc/3EDFD287DA7552429E1148BF954AB6F44F7C9730567964208B3052E6DDF18D08", - "chain_id": "quicksilver-2", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-86", - "is_cw20": false, - "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "decimals": 6, - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" - }, { "denom": "ibc/49BAE4CD2172833F14000627DA87ED8024AD46A38D6ED33F6239F22B5832F958", "chain_id": "quicksilver-2", @@ -31977,6 +38812,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STARS", "name": "STARS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", @@ -31993,6 +38829,7 @@ "trace": "transfer/channel-16", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "XPRT", "name": "XPRT", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", @@ -32001,6 +38838,37 @@ "coingecko_id": "persistence", "recommended_symbol": "XPRT" }, + { + "denom": "ibc/5CC131485B2E91C2A1BE0AD5D62086D7BA14552F1C81D1FB05B32DCE1A535D13", + "chain_id": "quicksilver-2", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-164", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" + }, + { + "denom": "ibc/6906B8D2981F8CA4FB77E73658967BFC8185BEAAFCE966B81A07AA4EA813C3BE", + "chain_id": "quicksilver-2", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-2", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "sqOSMO", + "name": "sqOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "decimals": 6, + "recommended_symbol": "sqOSMO" + }, { "denom": "ibc/D474553C1A29257F4EC4056C346FCF7EF6F979909E9ACF88BA259C1ED2C54036", "chain_id": "quicksilver-2", @@ -32009,6 +38877,7 @@ "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "UMEE", "name": "UMEE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", @@ -32024,6 +38893,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "qATOM", "name": "qATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", @@ -32031,36 +38901,6 @@ "description": "Quicksilver Liquid Staked ATOM", "recommended_symbol": "qATOM" }, - { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "chain_id": "quicksilver-2", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", - "is_cw20": false, - "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" - }, - { - "denom": "ibc/C87A988C60DE234F90AC945ED00B894893C9CD60CEB221E7C76CE61B86CB14DB", - "chain_id": "quicksilver-2", - "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-2", - "is_cw20": false, - "is_evm": false, - "symbol": "SAIL", - "name": "SAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", - "decimals": 6, - "recommended_symbol": "SAIL" - }, { "denom": "uqck", "chain_id": "quicksilver-2", @@ -32069,6 +38909,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "QCK", "name": "QCK", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", @@ -32085,6 +38926,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "qOSMO", "name": "qOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", @@ -32092,36 +38934,6 @@ "description": "Quicksilver Liquid Staked OSMO", "recommended_symbol": "qOSMO" }, - { - "denom": "ibc/25A01BCED23530945E74C17A63C29DAD5970F7405B398681D015738B51A0B64C", - "chain_id": "quicksilver-2", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-94", - "is_cw20": false, - "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" - }, - { - "denom": "uqregen", - "chain_id": "quicksilver-2", - "origin_denom": "uqregen", - "origin_chain_id": "quicksilver-2", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "qREGEN", - "name": "qREGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", - "decimals": 6, - "description": "Quicksilver Liquid Staked REGEN", - "recommended_symbol": "qREGEN" - }, { "denom": "uqsomm", "chain_id": "quicksilver-2", @@ -32130,6 +38942,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "qSOMM", "name": "qSOMM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", @@ -32138,53 +38951,107 @@ "recommended_symbol": "qSOMM" }, { - "denom": "ibc/0EE32E83564D18F2268A003A0088FC656E05341E5FCA400732DD08994CF9E25F", + "denom": "ibc/56446D416C5998249DD4F0E52C9C973AD9F4D5D9D25FF99C6D37240712C7A1ED", "chain_id": "quicksilver-2", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-52", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-116", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { - "denom": "ibc/6906B8D2981F8CA4FB77E73658967BFC8185BEAAFCE966B81A07AA4EA813C3BE", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "chain_id": "quicksilver-2", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-2", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "recommended_symbol": "sqOSMO" + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/56446D416C5998249DD4F0E52C9C973AD9F4D5D9D25FF99C6D37240712C7A1ED", + "denom": "ibc/C87A988C60DE234F90AC945ED00B894893C9CD60CEB221E7C76CE61B86CB14DB", "chain_id": "quicksilver-2", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-116", + "origin_denom": "factory/osmo1rckme96ptawr4zwexxj5g5gej9s2dmud8r2t9j0k0prn5mch5g4snzzwjv/sail", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-2", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "SAIL", + "name": "SAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sail.png", + "decimals": 6, + "recommended_symbol": "SAIL" } ] }, "regen-1": { "assets": [ + { + "denom": "uregen", + "chain_id": "regen-1", + "origin_denom": "uregen", + "origin_chain_id": "regen-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "REGEN", + "name": "REGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "decimals": 6, + "description": "REGEN coin is the token for the Regen Network Platform", + "coingecko_id": "regen", + "recommended_symbol": "REGEN" + }, + { + "denom": "ibc/2223D14415B4414CF65582189D3EB562D211B3EDC7F4996D8CEDE1477A0BBD38", + "chain_id": "regen-1", + "origin_denom": "uqck", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-62", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", + "decimals": 6, + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" + }, + { + "denom": "eco.uC.NCT", + "chain_id": "regen-1", + "origin_denom": "eco.uC.NCT", + "origin_chain_id": "regen-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NCT", + "name": "NCT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", + "decimals": 6, + "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", + "coingecko_id": "toucan-protocol-nature-carbon-tonne", + "recommended_symbol": "NCT" + }, { "denom": "ibc/3C147E71BD9FEC5AAAED09BF022F1C06F52D360580D602F79A5389DA471E7BA3", "chain_id": "regen-1", @@ -32193,6 +39060,7 @@ "trace": "transfer/channel-48", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DAI", "name": "DAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", @@ -32200,6 +39068,21 @@ "coingecko_id": "dai", "recommended_symbol": "DAI.axl" }, + { + "denom": "ibc/B2DCA297A3AFF98480BCCCC962E1D00A3BBE06A37136D3FABD16DC8FB19451E1", + "chain_id": "regen-1", + "origin_denom": "uqregen", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-62", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "qREGEN", + "name": "qREGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "decimals": 6, + "recommended_symbol": "qREGEN" + }, { "denom": "ibc/900EA63EC1C5222243A8D054A722C63F390E88DB6DC557F94D8D43A53D5727EC", "chain_id": "regen-1", @@ -32208,6 +39091,7 @@ "trace": "transfer/channel-48", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "AXL", "name": "AXL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", @@ -32215,6 +39099,23 @@ "coingecko_id": "axelar", "recommended_symbol": "AXL" }, + { + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "chain_id": "regen-1", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" + }, { "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "chain_id": "regen-1", @@ -32223,6 +39124,7 @@ "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -32231,21 +39133,6 @@ "coingecko_id": "osmosis", "recommended_symbol": "OSMO" }, - { - "denom": "ibc/2223D14415B4414CF65582189D3EB562D211B3EDC7F4996D8CEDE1477A0BBD38", - "chain_id": "regen-1", - "origin_denom": "uqck", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-62", - "is_cw20": false, - "is_evm": false, - "symbol": "QCK", - "name": "QCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", - "decimals": 6, - "coingecko_id": "quicksilver", - "recommended_symbol": "QCK" - }, { "denom": "ibc/334740505537E9894A64E8561030695016481830D7B36E6A9B6D13C608B55653", "chain_id": "regen-1", @@ -32254,6 +39141,7 @@ "trace": "transfer/channel-48", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", @@ -32261,20 +39149,6 @@ "coingecko_id": "axlusdc", "recommended_symbol": "USDC.axl" }, - { - "denom": "ibc/B2DCA297A3AFF98480BCCCC962E1D00A3BBE06A37136D3FABD16DC8FB19451E1", - "chain_id": "regen-1", - "origin_denom": "uqregen", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-62", - "is_cw20": false, - "is_evm": false, - "symbol": "qREGEN", - "name": "qREGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", - "decimals": 6, - "recommended_symbol": "qREGEN" - }, { "denom": "ibc/C0B2F6309C73078A793F8DB25B72028728F9CE1244A60E0D356DDF92861503CB", "chain_id": "regen-1", @@ -32283,216 +39157,273 @@ "trace": "transfer/channel-48", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "BUSD", "name": "BUSD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/busd.png", "decimals": 18, "coingecko_id": "binance-usd", "recommended_symbol": "BUSD.axl" - }, + } + ] + }, + "secret-4": { + "assets": [ { - "denom": "uregen", - "chain_id": "regen-1", - "origin_denom": "uregen", - "origin_chain_id": "regen-1", - "trace": "", + "denom": "ibc/7E8714E75B6A303CB074576F08D6FB3FB064C7E936F59AFE273CBB05DECE7151", + "chain_id": "secret-4", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-80", "is_cw20": false, "is_evm": false, - "symbol": "REGEN", - "name": "REGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", - "decimals": 6, - "description": "REGEN coin is the token for the Regen Network Platform", - "coingecko_id": "regen", - "recommended_symbol": "REGEN" + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { - "denom": "eco.uC.NCT", - "chain_id": "regen-1", - "origin_denom": "eco.uC.NCT", - "origin_chain_id": "regen-1", - "trace": "", + "denom": "ibc/9162FF8AC138FFAB8723606E1FD726A95A2A153831ED6786396C374004AC28F8", + "chain_id": "secret-4", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-88", "is_cw20": false, "is_evm": false, - "symbol": "NCT", - "name": "NCT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "description": "Nature Carbon Ton (NCT) is a carbon token standard backed 1:1 by carbon credits issued by Verra, a global leader in the voluntary carbon market. NCT credits on Regen Network have been tokenized by Toucan.earth.", - "coingecko_id": "toucan-protocol-nature-carbon-tonne", - "recommended_symbol": "NCT" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", - "chain_id": "regen-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "denom": "ibc/97048A1FAFF5D84D4A5DDD9976AD332A3CAD99C81BC5C0C2B82A50E4C2131FB2", + "chain_id": "secret-4", + "origin_denom": "uqatom", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-65", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "qATOM", + "name": "qATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" - } - ] - }, - "secret-4": { - "assets": [ + "recommended_symbol": "qATOM" + }, { - "denom": "ibc/1B5D8D2E9B85030391AE48EB992A0466F8DE5DB8F15E745CF25D5714142391BD", + "denom": "ibc/9877130F93E5275DFF468215F4D7924B6D893A105CC807E55BAF51385AFE1544", "chain_id": "secret-4", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-126", + "origin_denom": "cw20:terra1ecgazyd0waaj3g7l9cmy5gulhxkps2gmxu9ghducvuypjq68mq2s5lvsct", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-127", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "ampLUNA", + "name": "ampLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampluna.svg", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "coingecko_id": "eris-amplified-luna", + "recommended_symbol": "ampLUNA" }, { - "denom": "ibc/83C1D2450F61E34897273720BB4B2738BE77396D455DB3B5108F401BAC32F269", + "denom": "ibc/9B7F6219D699F608B23382F341E29303D66D5CA81F91D6D0B957119F97569F0F", "chain_id": "secret-4", - "origin_denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-40", + "origin_denom": "stujuno", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "SEJUNO", - "name": "SEJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png", + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "coingecko_id": "stakeeasy-juno-derivative", - "recommended_symbol": "SEJUNO" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "ibc/A7CBAF118AC24A896DC46A098FE9FA2A588A36A2F0239913229D3A11D92E7B2E", + "denom": "ibc/A223651B9E968C94D2C8378DDFAAF619CD215925BB793763A6CD626C7E36ED0C", "chain_id": "secret-4", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-20", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" }, { - "denom": "ibc/CE763BC6FC07E3D04301DEC34395064D16D33D6AECA19E68B2C447B9674A8CCD", + "denom": "ibc/B8CA0EBE2C9D8800390CE4256DF6C194CF6740CB0AEE140EEE60C1CE288CDB86", "chain_id": "secret-4", - "origin_denom": "utori", - "origin_chain_id": "teritori-1", - "trace": "transfer/channel-111", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, - "symbol": "TORI", - "name": "TORI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "description": "Teritori Staking Coin", - "coingecko_id": "teritori", - "recommended_symbol": "TORI" + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/1B26C5CEE7509C05EDFB4AED90997C84A4F9E8DCED7E544C8D2C630486686405", + "denom": "ibc/C22245B8F7F154020A352A2721421218CD251B013B21954FBB6A5D7B655D88F6", "chain_id": "secret-4", - "origin_denom": "wbtc-satoshi", + "origin_denom": "frax-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "FRAX", + "name": "FRAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", + "decimals": 18, + "coingecko_id": "frax", + "recommended_symbol": "FRAX.axl" }, { - "denom": "ibc/38FB1A3DA004C5F0E013432DC6CEF632000AE1387F41E09809A10DC234DE9C49", + "denom": "ibc/C84076353ADA602528AC211EE626AE95FC4E091A0033B93CA5E1F6BE17070BBE", "chain_id": "secret-4", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-17", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-22", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "coingecko_id": "usk", + "recommended_symbol": "USK" }, { - "denom": "ibc/1D5E074747E7E5B67DE2CDD360FD5581640591FAEDB7EEFFF9E4CA5AAE3FEF9E", + "denom": "ibc/DEA3620A6407C63A287A4FE1683D07627F27AF7A83E077B1E51EDFF8833980FE", "chain_id": "secret-4", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-57", + "origin_denom": "stk/uatom", + "origin_chain_id": "core-1", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "is_svm": false, + "symbol": "stkATOM", + "name": "stkATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" + "coingecko_id": "stkatom", + "recommended_symbol": "stkATOM" }, { - "denom": "ibc/A223651B9E968C94D2C8378DDFAAF619CD215925BB793763A6CD626C7E36ED0C", + "denom": "ibc/C8D8F46E3CE6F41E01E32542215597CF4B32709C8A310F728653CB91FDB8A904", "chain_id": "secret-4", - "origin_denom": "stutia", + "origin_denom": "stuluna", "origin_chain_id": "stride-1", "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "stTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "is_svm": false, + "symbol": "stLUNA", + "name": "stLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", "decimals": 6, - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" + "coingecko_id": "stride-staked-luna", + "recommended_symbol": "stLUNA" + }, + { + "denom": "ibc/CF57A83CED6CEC7D706631B5DC53ABC21B7EDA7DF7490732B4361E6D5DD19C73", + "chain_id": "secret-4", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" + }, + { + "denom": "ibc/B9A62775A6281080F7C6B22D79F9B3B2863FF826C6BEDA5E7CF7CE2EDC656939", + "chain_id": "secret-4", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-22", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "decimals": 6, + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" + }, + { + "denom": "ibc/3EA9790C386BD0FE422C9F9DB4BE162C130B9200D6D8245472F66E27AA82789C", + "chain_id": "secret-4", + "origin_denom": "ucore", + "origin_chain_id": "coreum-mainnet-1", + "trace": "transfer/channel-101", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "COREUM", + "name": "COREUM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png", + "decimals": 6, + "coingecko_id": "coreum", + "recommended_symbol": "COREUM" }, { - "denom": "ibc/E83107E876FF194B54E9AC3099E49DBB7728156F250ABD3E997D2B7E89E0810B", + "denom": "ibc/48B753EAF5C3CB2D780EB596DB4391DBB0CD8E15B99E8846A9A9D75F140B8043", "chain_id": "secret-4", - "origin_denom": "udvpn", - "origin_chain_id": "sentinelhub-2", - "trace": "transfer/channel-3", + "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "DVPN", - "name": "DVPN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", - "decimals": 6, - "description": "Sentinel Staking Coin", - "coingecko_id": "sentinel", - "recommended_symbol": "DVPN" + "is_svm": false, + "symbol": "PSTAKE", + "name": "PSTAKE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "decimals": 18, + "coingecko_id": "pstake-finance", + "recommended_symbol": "PSTAKE.grv" }, { - "denom": "ibc/B6E97E0FB88FF4660A677B27CE0CD03E5F74E0DE1B9D2B65F107249A3CE5C8FB", + "denom": "ibc/C21A7C8801B94E73EBEDB9B0870D492190D7A01F63C8855962AAFDE2F026D8F6", "chain_id": "secret-4", - "origin_denom": "ujkl", - "origin_chain_id": "jackal-1", - "trace": "transfer/channel-62", + "origin_denom": "uqck", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-65", "is_cw20": false, "is_evm": false, - "symbol": "JKL", - "name": "JKL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", "decimals": 6, - "coingecko_id": "jackal-protocol", - "recommended_symbol": "JKL" + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" }, { "denom": "ibc/FFA324A40F82EF430CF78D498CE04FF634D2091FCDC04EFEC8841B86011F307A", @@ -32502,6 +39433,7 @@ "trace": "transfer/channel-22", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KUJI", "name": "KUJI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", @@ -32510,94 +39442,84 @@ "recommended_symbol": "KUJI" }, { - "denom": "ibc/8E31B43C53FA68AFEB6A0A4A61DA67F357A6BD757F745A3CB65B97CD9D9DA1BB", + "denom": "ibc/29E66548B3FE6F694001EE8902B40DD24D9FF2D538AAA8BB4C05E52C713B9C75", "chain_id": "secret-4", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-91", + "origin_denom": "factory/neutron10sr06r3qkhn7xzpw3339wuj77hu06mzna6uht0/eclip", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "ECLIP", + "name": "ECLIP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/neutron/asset/eclipse.png", "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "coingecko_id": "eclipse-fi", + "recommended_symbol": "ECLIP" }, { - "denom": "ibc/B8CA0EBE2C9D8800390CE4256DF6C194CF6740CB0AEE140EEE60C1CE288CDB86", + "denom": "ibc/5938378D6974EF73519C90789CBBFFFAEC43992A3D2B5E3F465F5DA96E434029", "chain_id": "secret-4", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-63", + "origin_denom": "usaga", + "origin_chain_id": "ssc-1", + "trace": "transfer/channel-152", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "SAGA", + "name": "SAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "coingecko_id": "saga-2", + "recommended_symbol": "SAGA" }, { - "denom": "ibc/BFB5BBB93D43AC6458BA9C8871B3F3FE5D4B81301A1BEA2BDA2297C1D6A5D47F", + "denom": "ibc/862D31E2B69C7E2C08AF52E564E05FFE7A55061337912E43F55198268598E2D9", "chain_id": "secret-4", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-20", + "origin_denom": "unls", + "origin_chain_id": "pirin-1", + "trace": "transfer/channel-146", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "NLS", + "name": "NLS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "coingecko_id": "nolus", + "recommended_symbol": "NLS" }, { - "denom": "ibc/C0DB3E0C7F3CD32FA24FC031FD8B6833627A1C690B741BA85D7A4752D974A77F", + "denom": "ibc/8E31B43C53FA68AFEB6A0A4A61DA67F357A6BD757F745A3CB65B97CD9D9DA1BB", "chain_id": "secret-4", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-91", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "ibc/C1B6DD96E2344095412DE3CD11FF0DE78572C671AC7EBFEFC18D54EBF2D7DCA7", + "denom": "ibc/4870D3BE3BD3C44C7069588BEC579928D399D983E9D02F0113A4878DAF135F0A", "chain_id": "secret-4", - "origin_denom": "dot-planck", + "origin_denom": "wbnb-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "DOT", - "name": "DOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" - }, - { - "denom": "ibc/C42A8CCEFE62BE36B73506C0C0E31FD1283E101E3E007C32144F97161906D4B7", - "chain_id": "secret-4", - "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-17", - "is_cw20": false, - "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.grv" + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { "denom": "ibc/70FF6A895E39F2EF8C679684215830B138B97222C615DADB8D8B0EDF9A27966F", @@ -32607,6 +39529,7 @@ "trace": "transfer/channel-40", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SEASY", "name": "SEASY", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/seasy.png", @@ -32614,216 +39537,276 @@ "recommended_symbol": "SEASY" }, { - "denom": "ibc/CDEA201B61DF09C2456A91A60A87856796E6B40FAF41FC64E3482D4EF07DE26C", + "denom": "ibc/B6E97E0FB88FF4660A677B27CE0CD03E5F74E0DE1B9D2B65F107249A3CE5C8FB", "chain_id": "secret-4", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-51", + "origin_denom": "ujkl", + "origin_chain_id": "jackal-1", + "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "JKL", + "name": "JKL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "coingecko_id": "jackal-protocol", + "recommended_symbol": "JKL" }, { - "denom": "ibc/DF8D00B4B31B55AFCA9BAF192BC36C67AA06D9987DCB96490661BCAB63C27006", + "denom": "uscrt", "chain_id": "secret-4", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-8", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" - }, - { - "denom": "ibc/7E8DC1B7D29E1FD88496D49CA8045F98EDF5C4D332D64D058BFB7DFCAACE8F46", - "chain_id": "secret-4", - "origin_denom": "stinj", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-37", - "is_cw20": false, - "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "decimals": 18, - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "description": "The native token of Secret Network", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { - "denom": "ibc/C84076353ADA602528AC211EE626AE95FC4E091A0033B93CA5E1F6BE17070BBE", + "denom": "ibc/3D75BFD985535448AB8812084A4CC41821FC34F0728EB407903E5DB449F9CC65", "chain_id": "secret-4", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-22", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "LOCAL", + "name": "LOCAL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "recommended_symbol": "LOCAL" }, { - "denom": "ibc/CD7B6B7D85FDF5F72A78E806BCFB8060B561EEF27677B111E0A610626056451E", + "denom": "ibc/044FB7DDE7236498107023152F9F235E5DB50D9E999761CB3D4CF8C217F938F6", "chain_id": "secret-4", - "origin_denom": "uusdc", + "origin_denom": "wmatic-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" + }, + { + "denom": "ibc/B0988C39E7418C644FDFD41682A59D22DCAD1BCC7A6429B2EAAA195FB726A2D7", + "chain_id": "secret-4", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-37", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "ibc/DEA3620A6407C63A287A4FE1683D07627F27AF7A83E077B1E51EDFF8833980FE", + "denom": "ibc/3587AC36A81A13FCFB1D0EC03CEB98AEAAAB1F5275B68C7DC2B40BA6279AA696", "chain_id": "secret-4", - "origin_denom": "stk/uatom", + "origin_denom": "uxprt", "origin_chain_id": "core-1", "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "stkATOM", - "name": "stkATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "coingecko_id": "stkatom", - "recommended_symbol": "stkATOM" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", + "denom": "ibc/3615C32EDF0886E6B8692404484DA43AFE4F497E86FC4EB77684CF292A0CFCCF", "chain_id": "secret-4", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" + "coingecko_id": "tether", + "recommended_symbol": "USDT.grv" }, { - "denom": "ibc/C8D8F46E3CE6F41E01E32542215597CF4B32709C8A310F728653CB91FDB8A904", + "denom": "ibc/3665ACBA97B115133C35F060DB67E9671035E9ED48B2FC9140260C122D0C4E03", "chain_id": "secret-4", - "origin_denom": "stuluna", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-37", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "stLUNA", - "name": "stLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", - "decimals": 6, - "coingecko_id": "stride-staked-luna", - "recommended_symbol": "stLUNA" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "decimals": 18, + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/F8C99EE495085DED2F11728CAEFE48CF144FEE7862DDBF57809B3DA24AA64E93", + "denom": "ibc/55D94A32095A766971637425D998AAABF8357A1ABCB1CAC8614887BE51BF1FB1", "chain_id": "secret-4", - "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-17", + "origin_denom": "uandr", + "origin_chain_id": "andromeda-1", + "trace": "transfer/channel-97", "is_cw20": false, "is_evm": false, - "symbol": "PAGE", - "name": "PAGE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", - "decimals": 8, - "coingecko_id": "page", - "recommended_symbol": "PAGE.grv" + "is_svm": false, + "symbol": "ANDR", + "name": "ANDR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", + "decimals": 6, + "coingecko_id": "andromeda-2", + "recommended_symbol": "ANDR" }, { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "denom": "ibc/448B29AB9766D29CC09944EDF6A08573B45A37C55746A45FA3CF53F1B58DF98D", "chain_id": "secret-4", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-21", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/B9A62775A6281080F7C6B22D79F9B3B2863FF826C6BEDA5E7CF7CE2EDC656939", + "denom": "ibc/1B26C5CEE7509C05EDFB4AED90997C84A4F9E8DCED7E544C8D2C630486686405", "chain_id": "secret-4", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-22", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", - "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { - "denom": "ibc/B0988C39E7418C644FDFD41682A59D22DCAD1BCC7A6429B2EAAA195FB726A2D7", + "denom": "ibc/007F5EB5C29FF8BB23133B099B4A3D68326BD02B05E20590287746FAFF29E3CD", "chain_id": "secret-4", - "origin_denom": "stuosmo", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-89", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" + }, + { + "denom": "ibc/CE591002C567BE4B8C4EC3F3F3D18AF7A1CA9FADBF5876C8413F8B2BD83CE8FF", + "chain_id": "secret-4", + "origin_denom": "ustrd", "origin_chain_id": "stride-1", "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/3D75BFD985535448AB8812084A4CC41821FC34F0728EB407903E5DB449F9CC65", + "denom": "ibc/C35B578C6388E3061E7E88AF1F0C79074DEC6CF306F57156A2AFE60FB0903532", "chain_id": "secret-4", - "origin_denom": "factory/kujira1swkuyt08z74n5jl7zr6hx0ru5sa2yev5v896p6/local", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-22", + "origin_denom": "orai", + "origin_chain_id": "Oraichain", + "trace": "transfer/channel-135", "is_cw20": false, "is_evm": false, - "symbol": "LOCAL", - "name": "LOCAL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/local.png", + "is_svm": false, + "symbol": "ORAI", + "name": "ORAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/oraichain/images/orai-white.png", "decimals": 6, - "recommended_symbol": "LOCAL" + "coingecko_id": "oraichain-token", + "recommended_symbol": "ORAI" }, { - "denom": "ibc/A0E80E59956C754F1D9CB37234D13E0CF2949E7254896359F284512FA8428E18", + "denom": "ibc/6F3AC063885E799319E49C0F5D984C5DB1FC6542558225B87653023342DDD2CE", "chain_id": "secret-4", - "origin_denom": "stuatom", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-130", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "decimals": 18, + "coingecko_id": "dymension", + "recommended_symbol": "DYM" + }, + { + "denom": "ibc/C42A8CCEFE62BE36B73506C0C0E31FD1283E101E3E007C32144F97161906D4B7", + "chain_id": "secret-4", + "origin_denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-17", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 18, + "coingecko_id": "dai", + "recommended_symbol": "DAI.grv" + }, + { + "denom": "ibc/7E8DC1B7D29E1FD88496D49CA8045F98EDF5C4D332D64D058BFB7DFCAACE8F46", + "chain_id": "secret-4", + "origin_denom": "stinj", "origin_chain_id": "stride-1", "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", - "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "decimals": 18, + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { "denom": "ibc/8161CB553A9AF7494CA20237CD7A52027409AA1A3B55A37F968CCE99C7C5BDF2", @@ -32833,6 +39816,7 @@ "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "DAI", "name": "DAI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", @@ -32841,109 +39825,100 @@ "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/28DECFA7FB7E3AB58DC3B3AEA9B11C6C6B6E46356DCC26505205DAD3379984F5", + "denom": "ibc/A7CBAF118AC24A896DC46A098FE9FA2A588A36A2F0239913229D3A11D92E7B2E", "chain_id": "secret-4", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-16", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" - }, - { - "denom": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", - "chain_id": "secret-4", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-23", - "is_cw20": false, - "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/9B7F6219D699F608B23382F341E29303D66D5CA81F91D6D0B957119F97569F0F", + "denom": "ibc/83C1D2450F61E34897273720BB4B2738BE77396D455DB3B5108F401BAC32F269", "chain_id": "secret-4", - "origin_denom": "stujuno", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-37", + "origin_denom": "cw20:juno1dd0k0um5rqncfueza62w9sentdfh3ec4nw4aq4lk5hkjl63vljqscth9gv", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-40", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "is_svm": false, + "symbol": "SEJUNO", + "name": "SEJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/sejuno.png", "decimals": 6, - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" + "coingecko_id": "stakeeasy-juno-derivative", + "recommended_symbol": "SEJUNO" }, { - "denom": "ibc/9162FF8AC138FFAB8723606E1FD726A95A2A153831ED6786396C374004AC28F8", + "denom": "ibc/01FD9A46F4B9ED5A01BFA9DA7A039A8D3B3A8BA5EAA4333520DBF43C6B8028D7", "chain_id": "secret-4", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-88", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "decimals": 18, + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" }, { - "denom": "ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD", + "denom": "ibc/A0E80E59956C754F1D9CB37234D13E0CF2949E7254896359F284512FA8428E18", "chain_id": "secret-4", - "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-1", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "sqOSMO", - "name": "sqOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "recommended_symbol": "sqOSMO" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/044FB7DDE7236498107023152F9F235E5DB50D9E999761CB3D4CF8C217F938F6", + "denom": "ibc/CDEA201B61DF09C2456A91A60A87856796E6B40FAF41FC64E3482D4EF07DE26C", "chain_id": "secret-4", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-20", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "decimals": 6, + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "denom": "ibc/F8C99EE495085DED2F11728CAEFE48CF144FEE7862DDBF57809B3DA24AA64E93", "chain_id": "secret-4", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0", + "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "is_svm": false, + "symbol": "PAGE", + "name": "PAGE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "decimals": 8, + "coingecko_id": "page", + "recommended_symbol": "PAGE.grv" }, { "denom": "ibc/204D91CB4CAB9942E50A4062A049D197F76DC7BDCCAEA3FD1F6E1B514A4DD7C3", @@ -32953,6 +39928,7 @@ "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WBTC", "name": "WBTC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", @@ -32960,6 +39936,22 @@ "coingecko_id": "wrapped-bitcoin", "recommended_symbol": "WBTC.grv" }, + { + "denom": "ibc/28DECFA7FB7E3AB58DC3B3AEA9B11C6C6B6E46356DCC26505205DAD3379984F5", + "chain_id": "secret-4", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-16", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", + "decimals": 6, + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" + }, { "denom": "ibc/33E509EAF84ED39E60F746CCAF89130B386A11FDD3B76A77377FB3946BC9D829", "chain_id": "secret-4", @@ -32968,6 +39960,7 @@ "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "HARBOR", "name": "HARBOR", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", @@ -32976,94 +39969,53 @@ "recommended_symbol": "HARBOR" }, { - "denom": "ibc/3587AC36A81A13FCFB1D0EC03CEB98AEAAAB1F5275B68C7DC2B40BA6279AA696", + "denom": "ibc/E83107E876FF194B54E9AC3099E49DBB7728156F250ABD3E997D2B7E89E0810B", "chain_id": "secret-4", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-64", + "origin_denom": "udvpn", + "origin_chain_id": "sentinelhub-2", + "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "DVPN", + "name": "DVPN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "description": "Sentinel Staking Coin", + "coingecko_id": "sentinel", + "recommended_symbol": "DVPN" }, { - "denom": "ibc/3615C32EDF0886E6B8692404484DA43AFE4F497E86FC4EB77684CF292A0CFCCF", + "denom": "ibc/F1E2912B7740A256EE98F87F464CC50EEB4511CEDFA9512365B2DA93057482DC", "chain_id": "secret-4", - "origin_denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-17", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-144", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.grv" - }, - { - "denom": "ibc/3665ACBA97B115133C35F060DB67E9671035E9ED48B2FC9140260C122D0C4E03", - "chain_id": "secret-4", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-20", - "is_cw20": false, - "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" - }, - { - "denom": "ibc/4870D3BE3BD3C44C7069588BEC579928D399D983E9D02F0113A4878DAF135F0A", - "chain_id": "secret-4", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-20", - "is_cw20": false, - "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", - "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "ibc/48B753EAF5C3CB2D780EB596DB4391DBB0CD8E15B99E8846A9A9D75F140B8043", + "denom": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", "chain_id": "secret-4", - "origin_denom": "gravity0xfB5c6815cA3AC72Ce9F5006869AE67f18bF77006", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-17", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, - "symbol": "PSTAKE", - "name": "PSTAKE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/pstake.png", + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", "decimals": 18, - "coingecko_id": "pstake-finance", - "recommended_symbol": "PSTAKE.grv" - }, - { - "denom": "ibc/55D94A32095A766971637425D998AAABF8357A1ABCB1CAC8614887BE51BF1FB1", - "chain_id": "secret-4", - "origin_denom": "uandr", - "origin_chain_id": "andromeda-1", - "trace": "transfer/channel-97", - "is_cw20": false, - "is_evm": false, - "symbol": "ANDR", - "name": "ANDR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", - "decimals": 6, - "coingecko_id": "andromeda-2", - "recommended_symbol": "ANDR" + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { "denom": "ibc/5BE3E5E08E949BDF29EE93E81BF2CBD66347C86CE3D5D99A6E6FB487E62D8414", @@ -33073,6 +40025,7 @@ "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "IST", "name": "IST", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", @@ -33081,109 +40034,68 @@ "recommended_symbol": "IST" }, { - "denom": "ibc/630E7B10690ADEC9E9CEEE904CE78C522BBCDDC6A081B23FA26A55F6EF40E41E", - "chain_id": "secret-4", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-11", - "is_cw20": false, - "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", - "decimals": 6, - "description": "Chihuahua Staking Coin", - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" - }, - { - "denom": "ibc/6F3AC063885E799319E49C0F5D984C5DB1FC6542558225B87653023342DDD2CE", - "chain_id": "secret-4", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-130", - "is_cw20": false, - "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", - "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" - }, - { - "denom": "ibc/79F822764AF21756380877295C75F9FEB56BC0020612A7039931E27F30C01BE9", + "denom": "ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1", "chain_id": "secret-4", - "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-22", + "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "MNTA", - "name": "MNTA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "is_svm": false, + "symbol": "LVN", + "name": "LVN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", "decimals": 6, - "coingecko_id": "mantadao", - "recommended_symbol": "MNTA" - }, - { - "denom": "ibc/7E8714E75B6A303CB074576F08D6FB3FB064C7E936F59AFE273CBB05DECE7151", - "chain_id": "secret-4", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-80", - "is_cw20": false, - "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "coingecko_id": "levana-protocol", + "recommended_symbol": "LVN" }, { - "denom": "ibc/97048A1FAFF5D84D4A5DDD9976AD332A3CAD99C81BC5C0C2B82A50E4C2131FB2", + "denom": "ibc/BFB5BBB93D43AC6458BA9C8871B3F3FE5D4B81301A1BEA2BDA2297C1D6A5D47F", "chain_id": "secret-4", - "origin_denom": "uqatom", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-65", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "qATOM", - "name": "qATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", "decimals": 6, - "recommended_symbol": "qATOM" + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" }, { - "denom": "ibc/C21A7C8801B94E73EBEDB9B0870D492190D7A01F63C8855962AAFDE2F026D8F6", + "denom": "ibc/C0DB3E0C7F3CD32FA24FC031FD8B6833627A1C690B741BA85D7A4752D974A77F", "chain_id": "secret-4", - "origin_denom": "uqck", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-65", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "QCK", - "name": "QCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "coingecko_id": "quicksilver", - "recommended_symbol": "QCK" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/C22245B8F7F154020A352A2721421218CD251B013B21954FBB6A5D7B655D88F6", + "denom": "ibc/C1B6DD96E2344095412DE3CD11FF0DE78572C671AC7EBFEFC18D54EBF2D7DCA7", "chain_id": "secret-4", - "origin_denom": "frax-wei", + "origin_denom": "dot-planck", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "FRAX", - "name": "FRAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/frax.svg", - "decimals": 18, - "coingecko_id": "frax", - "recommended_symbol": "FRAX.axl" + "is_svm": false, + "symbol": "DOT", + "name": "DOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" }, { "denom": "ibc/DEEF987757F80419CC651C8323ACD21D6C3D664E51B5E5A29B2663F5AD132A67", @@ -33193,6 +40105,7 @@ "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "GRAVITON", "name": "GRAVITON", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", @@ -33201,6 +40114,23 @@ "coingecko_id": "graviton", "recommended_symbol": "GRAVITON" }, + { + "denom": "ibc/DF8D00B4B31B55AFCA9BAF192BC36C67AA06D9987DCB96490661BCAB63C27006", + "chain_id": "secret-4", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" + }, { "denom": "ibc/DFBDE185EC916F4933DF02D3A282FA801BC9EE77FE0B768FB517407730105491", "chain_id": "secret-4", @@ -33209,6 +40139,7 @@ "trace": "transfer/channel-63", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CMDX", "name": "CMDX", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", @@ -33216,6 +40147,53 @@ "coingecko_id": "comdex", "recommended_symbol": "CMDX" }, + { + "denom": "ibc/1B5D8D2E9B85030391AE48EB992A0466F8DE5DB8F15E745CF25D5714142391BD", + "chain_id": "secret-4", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-126", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "decimals": 6, + "coingecko_id": "umee", + "recommended_symbol": "UMEE" + }, + { + "denom": "ibc/79F822764AF21756380877295C75F9FEB56BC0020612A7039931E27F30C01BE9", + "chain_id": "secret-4", + "origin_denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-22", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "MNTA", + "name": "MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/mnta.png", + "decimals": 6, + "coingecko_id": "mantadao", + "recommended_symbol": "MNTA" + }, + { + "denom": "ibc/03FB4E4D1043755015ABF1A84773EA334B2726EF464CF90D926C888ECE2D64FD", + "chain_id": "secret-4", + "origin_denom": "factory/osmo1g8qypve6l95xmhgc0fddaecerffymsl7kn9muw/squosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "sqOSMO", + "name": "sqOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", + "decimals": 6, + "recommended_symbol": "sqOSMO" + }, { "denom": "ibc/64C032841EC8FEDFEA08C89B1AE8CEB5D616533C7CFC02158B83F221D8AE5618", "chain_id": "secret-4", @@ -33224,6 +40202,7 @@ "trace": "transfer/channel-84", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARCH", "name": "ARCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -33232,115 +40211,189 @@ "recommended_symbol": "ARCH" }, { - "denom": "ibc/6A9571DE6A3F60D7703C3290E2944E806C15A47C1EA6D4AFCD3AE4DC8AF080B1", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", "chain_id": "secret-4", - "origin_denom": "factory/osmo1mlng7pz4pnyxtpq0akfwall37czyk9lukaucsrn30ameplhhshtqdvfm5c/ulvn", + "origin_denom": "uosmo", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "LVN", - "name": "LVN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/levana.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "levana-protocol", - "recommended_symbol": "LVN" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "ibc/007F5EB5C29FF8BB23133B099B4A3D68326BD02B05E20590287746FAFF29E3CD", + "denom": "ibc/CD7B6B7D85FDF5F72A78E806BCFB8060B561EEF27677B111E0A610626056451E", "chain_id": "secret-4", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-89", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-20", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/448B29AB9766D29CC09944EDF6A08573B45A37C55746A45FA3CF53F1B58DF98D", + "denom": "ibc/EA7DF7F779C7F14E07172E5713E07356B55F01496CA649DDE46CF8FBF1A8466D", "chain_id": "secret-4", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-21", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "uscrt", + "denom": "ibc/630E7B10690ADEC9E9CEEE904CE78C522BBCDDC6A081B23FA26A55F6EF40E41E", "chain_id": "secret-4", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "", + "origin_denom": "uhuahua", + "origin_chain_id": "chihuahua-1", + "trace": "transfer/channel-11", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "HUAHUA", + "name": "HUAHUA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", "decimals": 6, - "description": "The native token of Secret Network", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "description": "Chihuahua Staking Coin", + "coingecko_id": "chihuahua-token", + "recommended_symbol": "HUAHUA" }, { - "denom": "ibc/01FD9A46F4B9ED5A01BFA9DA7A039A8D3B3A8BA5EAA4333520DBF43C6B8028D7", + "denom": "ibc/770CF5C334866B8760435B1670C3CEEE3A42B4E6C85CB5A71E23F1610B62DB70", "chain_id": "secret-4", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-17", + "origin_denom": "stk/adydx", + "origin_chain_id": "core-1", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", + "is_svm": false, + "symbol": "stkDYDX", + "name": "stkDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkdydx.png", "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" + "coingecko_id": "stkdydx", + "recommended_symbol": "stkDYDX" }, { - "denom": "ibc/CE591002C567BE4B8C4EC3F3F3D18AF7A1CA9FADBF5876C8413F8B2BD83CE8FF", + "denom": "ibc/0D5DA8508A67E30C3C268A0400EA15FAFB553C0C371757994C90BFA023FF0B93", "chain_id": "secret-4", - "origin_denom": "ustrd", + "origin_denom": "ncheq", + "origin_chain_id": "cheqd-mainnet-1", + "trace": "transfer/channel-141", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CHEQ", + "name": "CHEQ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", + "decimals": 9, + "coingecko_id": "cheqd-network", + "recommended_symbol": "CHEQ" + }, + { + "denom": "ibc/1D5E074747E7E5B67DE2CDD360FD5581640591FAEDB7EEFFF9E4CA5AAE3FEF9E", + "chain_id": "secret-4", + "origin_denom": "uwhale", + "origin_chain_id": "migaloo-1", + "trace": "transfer/channel-57", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WHALE", + "name": "WHALE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", + "decimals": 6, + "coingecko_id": "white-whale", + "recommended_symbol": "WHALE" + }, + { + "denom": "ibc/359CC85AD0FA4363A0472C13912F6F7EA4C8C2677330E584D5F9E62AE8D29D67", + "chain_id": "secret-4", + "origin_denom": "staevmos", "origin_chain_id": "stride-1", "trace": "transfer/channel-37", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" + }, + { + "denom": "ibc/38FB1A3DA004C5F0E013432DC6CEF632000AE1387F41E09809A10DC234DE9C49", + "chain_id": "secret-4", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-17", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" + }, + { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "chain_id": "secret-4", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" } ] }, "sentinelhub-2": { "assets": [ { - "denom": "udvpn", + "denom": "ibc/31FEE1A2A9F9C01113F90BD0BBCCE8FD6BBB8585FAF109A2101827DD1D5B95B8", "chain_id": "sentinelhub-2", - "origin_denom": "udvpn", - "origin_chain_id": "sentinelhub-2", - "trace": "", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "DVPN", - "name": "DVPN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "description": "DVPN is the native token of the Sentinel Hub.", - "coingecko_id": "sentinel", - "recommended_symbol": "DVPN" + "description": "Secret Staking Coin", + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { "denom": "ibc/BA0951087CB20C364C5BE93FC682E4C6F57305E474FC1F015DCAC06DD74944F0", @@ -33350,6 +40403,7 @@ "trace": "transfer/channel-92", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARCH", "name": "ARCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -33357,6 +40411,23 @@ "coingecko_id": "archway", "recommended_symbol": "ARCH" }, + { + "denom": "udvpn", + "chain_id": "sentinelhub-2", + "origin_denom": "udvpn", + "origin_chain_id": "sentinelhub-2", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DVPN", + "name": "DVPN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", + "decimals": 6, + "description": "DVPN is the native token of the Sentinel Hub.", + "coingecko_id": "sentinel", + "recommended_symbol": "DVPN" + }, { "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "sentinelhub-2", @@ -33365,6 +40436,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -33381,6 +40453,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ION", "name": "ION", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", @@ -33388,42 +40461,11 @@ "description": "Native Coin", "coingecko_id": "ion", "recommended_symbol": "ION" - }, - { - "denom": "ibc/31FEE1A2A9F9C01113F90BD0BBCCE8FD6BBB8585FAF109A2101827DD1D5B95B8", - "chain_id": "sentinelhub-2", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-50", - "is_cw20": false, - "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "description": "Secret Staking Coin", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" } ] }, "shentu-2.2": { "assets": [ - { - "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", - "chain_id": "shentu-2.2", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-8", - "is_cw20": false, - "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" - }, { "denom": "ibc/AFCDF4348DBDF92BCF631B1D38628F75683F45A8A0DCE304FC9AAD4F31609916", "chain_id": "shentu-2.2", @@ -33432,6 +40474,7 @@ "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "sqOSMO", "name": "sqOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", @@ -33446,6 +40489,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CTK", "name": "CTK", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", @@ -33453,340 +40497,346 @@ "description": "The native token of Shentu", "coingecko_id": "certik", "recommended_symbol": "CTK" + }, + { + "denom": "ibc/92E0120F15D037353CFB73C14651FC8930ADC05B93100FD7754D3A689E53B333", + "chain_id": "shentu-2.2", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" } ] }, "sifchain-1": { "assets": [ { - "denom": "cuma", - "chain_id": "sifchain-1", - "origin_denom": "cuma", - "origin_chain_id": "sifchain-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "UMA", - "name": "UMA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uma.png", - "decimals": 18, - "coingecko_id": "uma", - "recommended_symbol": "UMA.sif" - }, - { - "denom": "ibc/03E798784835B5D86DD9181B8ECFED3A301CFF938409F079CAF6B4A106F46CAF", - "chain_id": "sifchain-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-92", - "is_cw20": false, - "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" - }, - { - "denom": "cftm", + "denom": "czcx", "chain_id": "sifchain-1", - "origin_denom": "cftm", + "origin_denom": "czcx", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FTM", - "name": "FTM", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ftm.png", + "is_svm": false, + "symbol": "ZCX", + "name": "ZCX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zcx.png", "decimals": 18, - "coingecko_id": "fantom", - "recommended_symbol": "FTM.sif" + "coingecko_id": "unizen", + "recommended_symbol": "ZCX.sif" }, { - "denom": "csushi", + "denom": "cquick", "chain_id": "sifchain-1", - "origin_denom": "csushi", + "origin_denom": "cquick", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SUSHI", - "name": "SUSHI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sushi.png", + "is_svm": false, + "symbol": "QUICK", + "name": "QUICK", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/quick.png", "decimals": 18, - "coingecko_id": "sushi", - "recommended_symbol": "SUSHI.sif" + "coingecko_id": "quick", + "recommended_symbol": "QUICK.sif" }, { - "denom": "ctidal", + "denom": "cshib", "chain_id": "sifchain-1", - "origin_denom": "ctidal", + "origin_denom": "cshib", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TIDAL", - "name": "TIDAL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/tidal.png", + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/shib.png", "decimals": 18, - "coingecko_id": "tidal-finance", - "recommended_symbol": "TIDAL.sif" + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.sif" }, { - "denom": "ctoke", + "denom": "czrx", "chain_id": "sifchain-1", - "origin_denom": "ctoke", + "origin_denom": "czrx", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TOKE", - "name": "TOKE", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/toke.png", + "is_svm": false, + "symbol": "ZCX", + "name": "ZCX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zrx.png", "decimals": 18, - "coingecko_id": "tokemak", - "recommended_symbol": "TOKE.sif" + "coingecko_id": "0x", + "recommended_symbol": "ZCX.sif" }, { - "denom": "ctshp", + "denom": "cyfi", "chain_id": "sifchain-1", - "origin_denom": "ctshp", + "origin_denom": "cyfi", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "TSHP", - "name": "TSHP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/tshp.png", + "is_svm": false, + "symbol": "YFI", + "name": "YFI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/yfi.png", "decimals": 18, - "coingecko_id": "12ships", - "recommended_symbol": "TSHP.sif" + "coingecko_id": "yearn-finance", + "recommended_symbol": "YFI.sif" }, { - "denom": "caxs", + "denom": "cdon", "chain_id": "sifchain-1", - "origin_denom": "caxs", + "origin_denom": "cdon", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AXS", - "name": "AXS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/axs.png", + "is_svm": false, + "symbol": "DON", + "name": "DON", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/don.png", "decimals": 18, - "coingecko_id": "axie-infinity", - "recommended_symbol": "AXS.sif" + "coingecko_id": "donkey-token", + "recommended_symbol": "DON.sif" }, { - "denom": "ccomp", + "denom": "cmatic", "chain_id": "sifchain-1", - "origin_denom": "ccomp", + "origin_denom": "cmatic", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "COMP", - "name": "COMP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/comp.png", + "is_svm": false, + "symbol": "MATIC", + "name": "MATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/matic.png", "decimals": 18, - "coingecko_id": "xxxxx", - "recommended_symbol": "COMP.sif" + "coingecko_id": "matic-network", + "recommended_symbol": "MATIC.sif" }, { - "denom": "crune", + "denom": "csusd", "chain_id": "sifchain-1", - "origin_denom": "crune", + "origin_denom": "csusd", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RUNE", - "name": "RUNE", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rune.png", + "is_svm": false, + "symbol": "sUSD", + "name": "sUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/susd.png", "decimals": 18, - "coingecko_id": "thorchain", - "recommended_symbol": "RUNE.sif" + "coingecko_id": "nusd", + "recommended_symbol": "sUSD.sif" }, { - "denom": "creef", + "denom": "csushi", "chain_id": "sifchain-1", - "origin_denom": "creef", + "origin_denom": "csushi", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "REEF", - "name": "REEF", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/reef.png", + "is_svm": false, + "symbol": "SUSHI", + "name": "SUSHI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sushi.png", "decimals": 18, - "coingecko_id": "reef", - "recommended_symbol": "REEF.sif" + "coingecko_id": "sushi", + "recommended_symbol": "SUSHI.sif" }, { - "denom": "crndr", + "denom": "cuni", "chain_id": "sifchain-1", - "origin_denom": "crndr", + "origin_denom": "cuni", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RNDR", - "name": "RNDR", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rndr.png", + "is_svm": false, + "symbol": "UNI", + "name": "UNI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uni.png", "decimals": 18, - "coingecko_id": "render-token", - "recommended_symbol": "RNDR.sif" + "coingecko_id": "uniswap", + "recommended_symbol": "UNI.sif" }, { - "denom": "clink", + "denom": "cwfil", "chain_id": "sifchain-1", - "origin_denom": "clink", + "origin_denom": "cwfil", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LINK", - "name": "LINK", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/link.png", + "is_svm": false, + "symbol": "WFIL", + "name": "WFIL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wfil.png", "decimals": 18, - "coingecko_id": "chainlink", - "recommended_symbol": "LINK.sif" + "coingecko_id": "wrapped-filecoin", + "recommended_symbol": "WFIL.sif" }, { - "denom": "csaito", + "denom": "czcn", "chain_id": "sifchain-1", - "origin_denom": "csaito", + "origin_denom": "czcn", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SAITO", - "name": "SAITO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/saito.png", - "decimals": 18, - "coingecko_id": "saito", - "recommended_symbol": "SAITO.sif" + "is_svm": false, + "symbol": "ZCN", + "name": "ZCN", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zcn.png", + "decimals": 10, + "coingecko_id": "0chain", + "recommended_symbol": "ZCN.sif" }, { - "denom": "cufo", + "denom": "cratom", "chain_id": "sifchain-1", - "origin_denom": "cufo", + "origin_denom": "cratom", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UFO", - "name": "UFO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ufo.png", + "is_svm": false, + "symbol": "RATOM", + "name": "RATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ratom.png", "decimals": 18, - "coingecko_id": "ufo-gaming", - "recommended_symbol": "UFO.sif" + "coingecko_id": "stafi-ratom", + "recommended_symbol": "RATOM.sif" }, { - "denom": "clina", + "denom": "csxp", "chain_id": "sifchain-1", - "origin_denom": "clina", + "origin_denom": "csxp", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LINA", - "name": "LINA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lina.png", + "is_svm": false, + "symbol": "SXP", + "name": "SXP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sxp.png", "decimals": 18, - "coingecko_id": "linear", - "recommended_symbol": "LINA.sif" + "coingecko_id": "swipe", + "recommended_symbol": "SXP.sif" }, { - "denom": "cb20", + "denom": "ctoke", "chain_id": "sifchain-1", - "origin_denom": "cb20", + "origin_denom": "ctoke", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "B20", - "name": "B20", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/b20.png", + "is_svm": false, + "symbol": "TOKE", + "name": "TOKE", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/toke.png", "decimals": 18, - "coingecko_id": "b20", - "recommended_symbol": "B20.sif" + "coingecko_id": "tokemak", + "recommended_symbol": "TOKE.sif" }, { - "denom": "cbal", + "denom": "cufo", "chain_id": "sifchain-1", - "origin_denom": "cbal", + "origin_denom": "cufo", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BAL", - "name": "BAL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bal.png", + "is_svm": false, + "symbol": "UFO", + "name": "UFO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ufo.png", "decimals": 18, - "coingecko_id": "balancer", - "recommended_symbol": "BAL.sif" + "coingecko_id": "ufo-gaming", + "recommended_symbol": "UFO.sif" }, { - "denom": "cband", + "denom": "cuma", "chain_id": "sifchain-1", - "origin_denom": "cband", + "origin_denom": "cuma", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "Band", - "name": "Band", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/band.png", + "is_svm": false, + "symbol": "UMA", + "name": "UMA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uma.png", "decimals": 18, - "coingecko_id": "band-protocol", - "recommended_symbol": "Band.sif" + "coingecko_id": "uma", + "recommended_symbol": "UMA.sif" }, { - "denom": "clon", + "denom": "cwscrt", "chain_id": "sifchain-1", - "origin_denom": "clon", + "origin_denom": "cwscrt", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LON", - "name": "LON", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lon.png", - "decimals": 18, - "coingecko_id": "tokenlon", - "recommended_symbol": "LON.sif" + "is_svm": false, + "symbol": "WSCRT", + "name": "WSCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wscrt.png", + "decimals": 6, + "coingecko_id": "secret-erc20", + "recommended_symbol": "WSCRT.sif" }, { - "denom": "cant", + "denom": "ibc/8FCD92E4B97E69EC1A334EADDFF903A6C44408A8C9B03A40B3FBCABE575A8359", "chain_id": "sifchain-1", - "origin_denom": "cant", - "origin_chain_id": "sifchain-1", - "trace": "", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-91", "is_cw20": false, "is_evm": false, - "symbol": "ANT", - "name": "ANT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ant.png", - "decimals": 18, - "coingecko_id": "aragon", - "recommended_symbol": "ANT.sif" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "coh", + "denom": "cfrax", "chain_id": "sifchain-1", - "origin_denom": "coh", + "origin_denom": "cfrax", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OH", - "name": "OH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/oh.png", + "is_svm": false, + "symbol": "FRAX", + "name": "FRAX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/frax.png", "decimals": 18, - "coingecko_id": "oh-finance", - "recommended_symbol": "OH.sif" + "coingecko_id": "frax", + "recommended_symbol": "FRAX.sif" }, { "denom": "csand", @@ -33796,6 +40846,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SAND", "name": "SAND", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sand.png", @@ -33804,153 +40855,148 @@ "recommended_symbol": "SAND.sif" }, { - "denom": "ctusd", - "chain_id": "sifchain-1", - "origin_denom": "ctusd", - "origin_chain_id": "sifchain-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "TUSD", - "name": "TUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/tusd.png", - "decimals": 18, - "coingecko_id": "true-usd", - "recommended_symbol": "TUSD.sif" - }, - { - "denom": "cdino", + "denom": "ctidal", "chain_id": "sifchain-1", - "origin_denom": "cdino", + "origin_denom": "ctidal", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DINO", - "name": "DINO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dino.png", + "is_svm": false, + "symbol": "TIDAL", + "name": "TIDAL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/tidal.png", "decimals": 18, - "recommended_symbol": "DINO.sif" + "coingecko_id": "tidal-finance", + "recommended_symbol": "TIDAL.sif" }, { - "denom": "cfxs", + "denom": "ibc/5E382AAFA6A1A4CF97780231914F3011B9364F3C173EC278EE09666FA7CE3DB8", "chain_id": "sifchain-1", - "origin_denom": "cfxs", - "origin_chain_id": "sifchain-1", - "trace": "", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-90", "is_cw20": false, "is_evm": false, - "symbol": "FXS", - "name": "FXS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/fxs.png", - "decimals": 18, - "coingecko_id": "frax-share", - "recommended_symbol": "FXS.sif" + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "cshib", + "denom": "caxs", "chain_id": "sifchain-1", - "origin_denom": "cshib", + "origin_denom": "caxs", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/shib.png", + "is_svm": false, + "symbol": "AXS", + "name": "AXS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/axs.png", "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.sif" + "coingecko_id": "axie-infinity", + "recommended_symbol": "AXS.sif" }, { - "denom": "crly", + "denom": "cbtsg", "chain_id": "sifchain-1", - "origin_denom": "crly", + "origin_denom": "cbtsg", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RLY", - "name": "RLY", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rly.png", + "is_svm": false, + "symbol": "BTSG", + "name": "BTSG", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/btsg.png", "decimals": 18, - "coingecko_id": "rally-2", - "recommended_symbol": "RLY.sif" + "coingecko_id": "bitsong", + "recommended_symbol": "BTSG.sif" }, { - "denom": "crfuel", + "denom": "ccream", "chain_id": "sifchain-1", - "origin_denom": "crfuel", + "origin_denom": "ccream", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RFUEL", - "name": "RFUEL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rfuel.png", + "is_svm": false, + "symbol": "CREAM", + "name": "CREAM", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cream.png", "decimals": 18, - "coingecko_id": "rio-defi", - "recommended_symbol": "RFUEL.sif" + "coingecko_id": "cream-2", + "recommended_symbol": "CREAM.sif" }, { - "denom": "csxp", + "denom": "cenj", "chain_id": "sifchain-1", - "origin_denom": "csxp", + "origin_denom": "cenj", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SXP", - "name": "SXP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/sxp.png", + "is_svm": false, + "symbol": "ENJ", + "name": "ENJ", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/enj.png", "decimals": 18, - "coingecko_id": "swipe", - "recommended_symbol": "SXP.sif" + "coingecko_id": "enjincoin", + "recommended_symbol": "ENJ.sif" }, { - "denom": "cyfi", + "denom": "ceth", "chain_id": "sifchain-1", - "origin_denom": "cyfi", + "origin_denom": "ceth", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "YFI", - "name": "YFI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/yfi.png", + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/eth.png", "decimals": 18, - "coingecko_id": "yearn-finance", - "recommended_symbol": "YFI.sif" + "coingecko_id": "ethereum", + "recommended_symbol": "ETH.sif" }, { - "denom": "czcn", + "denom": "coh", "chain_id": "sifchain-1", - "origin_denom": "czcn", + "origin_denom": "coh", "origin_chain_id": "sifchain-1", "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "ZCN", - "name": "ZCN", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zcn.png", - "decimals": 10, - "coingecko_id": "0chain", - "recommended_symbol": "ZCN.sif" + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OH", + "name": "OH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/oh.png", + "decimals": 18, + "coingecko_id": "oh-finance", + "recommended_symbol": "OH.sif" }, { - "denom": "czrx", + "denom": "cpols", "chain_id": "sifchain-1", - "origin_denom": "czrx", + "origin_denom": "cpols", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ZCX", - "name": "ZCX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zrx.png", + "is_svm": false, + "symbol": "POLS", + "name": "POLS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/pols.png", "decimals": 18, - "coingecko_id": "0x", - "recommended_symbol": "ZCX.sif" + "coingecko_id": "polkastarter", + "recommended_symbol": "POLS.sif" }, { "denom": "cbat", @@ -33960,6 +41006,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "BAT", "name": "BAT", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bat.png", @@ -33968,395 +41015,421 @@ "recommended_symbol": "BAT.sif" }, { - "denom": "cmetis", + "denom": "ckeep", "chain_id": "sifchain-1", - "origin_denom": "cmetis", + "origin_denom": "ckeep", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "METIS", - "name": "METIS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/metis.png", + "is_svm": false, + "symbol": "KEEP", + "name": "KEEP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/keep.png", "decimals": 18, - "coingecko_id": "metis-token", - "recommended_symbol": "METIS.sif" + "coingecko_id": "keep-network", + "recommended_symbol": "KEEP.sif" }, { - "denom": "cocean", + "denom": "ckft", "chain_id": "sifchain-1", - "origin_denom": "cocean", + "origin_denom": "ckft", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OCEAN", - "name": "OCEAN", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ocean.png", + "is_svm": false, + "symbol": "KFT", + "name": "KFT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/kft.png", "decimals": 18, - "coingecko_id": "ocean-protocol", - "recommended_symbol": "OCEAN.sif" + "coingecko_id": "knit-finance", + "recommended_symbol": "KFT.sif" }, { - "denom": "csnx", + "denom": "cleash", "chain_id": "sifchain-1", - "origin_denom": "csnx", + "origin_denom": "cleash", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SNX", - "name": "SNX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/snx.png", + "is_svm": false, + "symbol": "LEASH", + "name": "LEASH", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/leash.png", "decimals": 18, - "coingecko_id": "havven", - "recommended_symbol": "SNX.sif" + "coingecko_id": "leash", + "recommended_symbol": "LEASH.sif" }, { - "denom": "csrm", + "denom": "cband", "chain_id": "sifchain-1", - "origin_denom": "csrm", + "origin_denom": "cband", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SRM", - "name": "SRM", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/srm.png", - "decimals": 6, - "coingecko_id": "serum", - "recommended_symbol": "SRM.sif" + "is_svm": false, + "symbol": "Band", + "name": "Band", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/band.png", + "decimals": 18, + "coingecko_id": "band-protocol", + "recommended_symbol": "Band.sif" }, { - "denom": "csusd", + "denom": "cesd", "chain_id": "sifchain-1", - "origin_denom": "csusd", + "origin_denom": "cesd", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "sUSD", - "name": "sUSD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/susd.png", + "is_svm": false, + "symbol": "ESD", + "name": "ESD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/esd.png", "decimals": 18, - "coingecko_id": "nusd", - "recommended_symbol": "sUSD.sif" + "coingecko_id": "empty-set-dollar", + "recommended_symbol": "ESD.sif" }, { - "denom": "ibc/B7C7B2708E1A6F7C3F53A6C0998F7098C97C46BB9166F6002B5058D209499C0B", + "denom": "ciotx", "chain_id": "sifchain-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-90", + "origin_denom": "ciotx", + "origin_chain_id": "sifchain-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", - "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "is_svm": false, + "symbol": "IOTX", + "name": "IOTX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/iotx.png", + "decimals": 18, + "coingecko_id": "iotex", + "recommended_symbol": "IOTX.sif" }, { - "denom": "cleash", + "denom": "clink", "chain_id": "sifchain-1", - "origin_denom": "cleash", + "origin_denom": "clink", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LEASH", - "name": "LEASH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/leash.png", + "is_svm": false, + "symbol": "LINK", + "name": "LINK", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/link.png", "decimals": 18, - "coingecko_id": "leash", - "recommended_symbol": "LEASH.sif" + "coingecko_id": "chainlink", + "recommended_symbol": "LINK.sif" }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "denom": "cogn", "chain_id": "sifchain-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0", + "origin_denom": "cogn", + "origin_chain_id": "sifchain-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "is_svm": false, + "symbol": "OGN", + "name": "OGN", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ogn.png", + "decimals": 18, + "coingecko_id": "origin-protocol", + "recommended_symbol": "OGN.sif" }, { - "denom": "cbnt", + "denom": "crail", "chain_id": "sifchain-1", - "origin_denom": "cbnt", + "origin_denom": "crail", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BNT", - "name": "BNT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bnt.png", + "is_svm": false, + "symbol": "RAIL", + "name": "RAIL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rail.png", "decimals": 18, - "coingecko_id": "bancor", - "recommended_symbol": "BNT.sif" + "coingecko_id": "railgun", + "recommended_symbol": "RAIL.sif" }, { - "denom": "cldo", + "denom": "crly", "chain_id": "sifchain-1", - "origin_denom": "cldo", + "origin_denom": "crly", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LDO", - "name": "LDO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ldo.png", + "is_svm": false, + "symbol": "RLY", + "name": "RLY", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rly.png", "decimals": 18, - "coingecko_id": "lido-dao", - "recommended_symbol": "LDO.sif" + "coingecko_id": "rally-2", + "recommended_symbol": "RLY.sif" }, { - "denom": "clrc", + "denom": "cant", "chain_id": "sifchain-1", - "origin_denom": "clrc", + "origin_denom": "cant", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LRC", - "name": "LRC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lrc.png", + "is_svm": false, + "symbol": "ANT", + "name": "ANT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ant.png", "decimals": 18, - "coingecko_id": "loopring", - "recommended_symbol": "LRC.sif" + "coingecko_id": "aragon", + "recommended_symbol": "ANT.sif" }, { - "denom": "cmana", + "denom": "clgcy", "chain_id": "sifchain-1", - "origin_denom": "cmana", + "origin_denom": "clgcy", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MANA", - "name": "MANA", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/mana.png", + "is_svm": false, + "symbol": "LGCY", + "name": "LGCY", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lgcy.png", "decimals": 18, - "coingecko_id": "decentraland", - "recommended_symbol": "MANA.sif" + "coingecko_id": "lgcy-network", + "recommended_symbol": "LGCY.sif" }, { - "denom": "cmatic", + "denom": "cpaid", "chain_id": "sifchain-1", - "origin_denom": "cmatic", + "origin_denom": "cpaid", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "MATIC", - "name": "MATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/matic.png", + "is_svm": false, + "symbol": "PAID", + "name": "PAID", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/paid.png", "decimals": 18, - "coingecko_id": "matic-network", - "recommended_symbol": "MATIC.sif" + "coingecko_id": "paid-network", + "recommended_symbol": "PAID.sif" }, { - "denom": "cogn", + "denom": "csrm", "chain_id": "sifchain-1", - "origin_denom": "cogn", + "origin_denom": "csrm", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "OGN", - "name": "OGN", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ogn.png", - "decimals": 18, - "coingecko_id": "origin-protocol", - "recommended_symbol": "OGN.sif" + "is_svm": false, + "symbol": "SRM", + "name": "SRM", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/srm.png", + "decimals": 6, + "coingecko_id": "serum", + "recommended_symbol": "SRM.sif" }, { - "denom": "cwbtc", + "denom": "ctshp", "chain_id": "sifchain-1", - "origin_denom": "cwbtc", + "origin_denom": "ctshp", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", - "decimals": 8, - "coingecko_id": "wrapped-bitcoin", - "recommended_symbol": "WBTC.sif" + "is_svm": false, + "symbol": "TSHP", + "name": "TSHP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/tshp.png", + "decimals": 18, + "coingecko_id": "12ships", + "recommended_symbol": "TSHP.sif" }, { - "denom": "czcx", + "denom": "cern", "chain_id": "sifchain-1", - "origin_denom": "czcx", + "origin_denom": "cern", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ZCX", - "name": "ZCX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/zcx.png", + "is_svm": false, + "symbol": "ERN", + "name": "ERN", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ern.png", "decimals": 18, - "coingecko_id": "unizen", - "recommended_symbol": "ZCX.sif" + "coingecko_id": "ethernity-chain", + "recommended_symbol": "ERN.sif" }, { - "denom": "cbond", + "denom": "csaito", "chain_id": "sifchain-1", - "origin_denom": "cbond", + "origin_denom": "csaito", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "BOND", - "name": "BOND", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bond.png", + "is_svm": false, + "symbol": "SAITO", + "name": "SAITO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/saito.png", "decimals": 18, - "coingecko_id": "barnbridge", - "recommended_symbol": "BOND.sif" + "coingecko_id": "saito", + "recommended_symbol": "SAITO.sif" }, { - "denom": "cbtsg", + "denom": "ibc/B7C7B2708E1A6F7C3F53A6C0998F7098C97C46BB9166F6002B5058D209499C0B", "chain_id": "sifchain-1", - "origin_denom": "cbtsg", - "origin_chain_id": "sifchain-1", - "trace": "", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-90", "is_cw20": false, "is_evm": false, - "symbol": "BTSG", - "name": "BTSG", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/btsg.png", - "decimals": 18, - "coingecko_id": "bitsong", - "recommended_symbol": "BTSG.sif" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" }, { - "denom": "ccocos", + "denom": "ibc/F279AB967042CAC10BFF70FAECB179DCE37AAAE4CD4C1BC4565C2BBC383BC0FA", "chain_id": "sifchain-1", - "origin_denom": "ccocos", - "origin_chain_id": "sifchain-1", - "trace": "", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-14", "is_cw20": false, "is_evm": false, - "symbol": "COCOS", - "name": "COCOS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cocos.png", - "decimals": 18, - "recommended_symbol": "COCOS.sif" + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "decimals": 6, + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "cdai", + "denom": "creef", "chain_id": "sifchain-1", - "origin_denom": "cdai", + "origin_denom": "creef", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DAI", - "name": "DAI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dai.png", + "is_svm": false, + "symbol": "REEF", + "name": "REEF", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/reef.png", "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.sif" + "coingecko_id": "reef", + "recommended_symbol": "REEF.sif" }, { - "denom": "cconv", + "denom": "crfuel", "chain_id": "sifchain-1", - "origin_denom": "cconv", + "origin_denom": "crfuel", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CONV", - "name": "CONV", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/conv.png", + "is_svm": false, + "symbol": "RFUEL", + "name": "RFUEL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rfuel.png", "decimals": 18, - "coingecko_id": "convergence", - "recommended_symbol": "CONV.sif" + "coingecko_id": "rio-defi", + "recommended_symbol": "RFUEL.sif" }, { - "denom": "ccream", + "denom": "cusdc", "chain_id": "sifchain-1", - "origin_denom": "ccream", + "origin_denom": "cusdc", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CREAM", - "name": "CREAM", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cream.png", - "decimals": 18, - "coingecko_id": "cream-2", - "recommended_symbol": "CREAM.sif" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", + "decimals": 6, + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.sif" }, { - "denom": "ccro", + "denom": "cusdt", "chain_id": "sifchain-1", - "origin_denom": "ccro", + "origin_denom": "cusdt", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/crypto-org/asset/cro.png", - "decimals": 8, - "description": "Cronos", - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO.sif" + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", + "decimals": 6, + "coingecko_id": "tether", + "recommended_symbol": "USDT.sif" }, { - "denom": "cdaofi", + "denom": "cust", "chain_id": "sifchain-1", - "origin_denom": "cdaofi", + "origin_denom": "cust", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DAOFI", - "name": "DAOFI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/daofi.png", + "is_svm": false, + "symbol": "USTC", + "name": "USTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ust.png", "decimals": 18, - "coingecko_id": "xxxxx", - "recommended_symbol": "DAOFI.sif" + "coingecko_id": "wrapped-ust", + "recommended_symbol": "USTC.sif" }, { - "denom": "cdfyn", + "denom": "cwbtc", "chain_id": "sifchain-1", - "origin_denom": "cdfyn", + "origin_denom": "cwbtc", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DFYN", - "name": "DFYN", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dfyn.png", - "decimals": 18, - "coingecko_id": "dfyn-network", - "recommended_symbol": "DFYN.sif" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC.sif" }, { - "denom": "cfrax", + "denom": "cftm", "chain_id": "sifchain-1", - "origin_denom": "cfrax", + "origin_denom": "cftm", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "FRAX", - "name": "FRAX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/frax.png", + "is_svm": false, + "symbol": "FTM", + "name": "FTM", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ftm.png", "decimals": 18, - "coingecko_id": "frax", - "recommended_symbol": "FRAX.sif" + "coingecko_id": "fantom", + "recommended_symbol": "FTM.sif" }, { "denom": "cgrt", @@ -34366,6 +41439,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "GRT", "name": "GRT", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/grt.png", @@ -34374,230 +41448,275 @@ "recommended_symbol": "GRT.sif" }, { - "denom": "ciotx", + "denom": "clina", "chain_id": "sifchain-1", - "origin_denom": "ciotx", + "origin_denom": "clina", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "IOTX", - "name": "IOTX", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/iotx.png", + "is_svm": false, + "symbol": "LINA", + "name": "LINA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lina.png", "decimals": 18, - "coingecko_id": "iotex", - "recommended_symbol": "IOTX.sif" + "coingecko_id": "linear", + "recommended_symbol": "LINA.sif" }, { - "denom": "ckeep", + "denom": "cmana", "chain_id": "sifchain-1", - "origin_denom": "ckeep", + "origin_denom": "cmana", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KEEP", - "name": "KEEP", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/keep.png", + "is_svm": false, + "symbol": "MANA", + "name": "MANA", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/mana.png", "decimals": 18, - "coingecko_id": "keep-network", - "recommended_symbol": "KEEP.sif" + "coingecko_id": "decentraland", + "recommended_symbol": "MANA.sif" }, { - "denom": "ckft", + "denom": "cmetis", "chain_id": "sifchain-1", - "origin_denom": "ckft", + "origin_denom": "cmetis", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "KFT", - "name": "KFT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/kft.png", + "is_svm": false, + "symbol": "METIS", + "name": "METIS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/metis.png", "decimals": 18, - "coingecko_id": "knit-finance", - "recommended_symbol": "KFT.sif" + "coingecko_id": "metis-token", + "recommended_symbol": "METIS.sif" }, { - "denom": "clgcy", + "denom": "cocean", "chain_id": "sifchain-1", - "origin_denom": "clgcy", + "origin_denom": "cocean", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LGCY", - "name": "LGCY", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lgcy.png", + "is_svm": false, + "symbol": "OCEAN", + "name": "OCEAN", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ocean.png", "decimals": 18, - "coingecko_id": "lgcy-network", - "recommended_symbol": "LGCY.sif" + "coingecko_id": "ocean-protocol", + "recommended_symbol": "OCEAN.sif" }, { - "denom": "cuni", + "denom": "cb20", + "chain_id": "sifchain-1", + "origin_denom": "cb20", + "origin_chain_id": "sifchain-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "B20", + "name": "B20", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/b20.png", + "decimals": 18, + "coingecko_id": "b20", + "recommended_symbol": "B20.sif" + }, + { + "denom": "cbal", + "chain_id": "sifchain-1", + "origin_denom": "cbal", + "origin_chain_id": "sifchain-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BAL", + "name": "BAL", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bal.png", + "decimals": 18, + "coingecko_id": "balancer", + "recommended_symbol": "BAL.sif" + }, + { + "denom": "cbond", "chain_id": "sifchain-1", - "origin_denom": "cuni", + "origin_denom": "cbond", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UNI", - "name": "UNI", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/uni.png", + "is_svm": false, + "symbol": "BOND", + "name": "BOND", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bond.png", "decimals": 18, - "coingecko_id": "uniswap", - "recommended_symbol": "UNI.sif" + "coingecko_id": "barnbridge", + "recommended_symbol": "BOND.sif" }, { - "denom": "cusdc", + "denom": "cconv", "chain_id": "sifchain-1", - "origin_denom": "cusdc", + "origin_denom": "cconv", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdc.png", - "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.sif" + "is_svm": false, + "symbol": "CONV", + "name": "CONV", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/conv.png", + "decimals": 18, + "coingecko_id": "convergence", + "recommended_symbol": "CONV.sif" }, { - "denom": "cusdt", + "denom": "cfxs", "chain_id": "sifchain-1", - "origin_denom": "cusdt", + "origin_denom": "cfxs", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/usdt.png", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT.sif" + "is_svm": false, + "symbol": "FXS", + "name": "FXS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/fxs.png", + "decimals": 18, + "coingecko_id": "frax-share", + "recommended_symbol": "FXS.sif" }, { - "denom": "cust", + "denom": "ccomp", "chain_id": "sifchain-1", - "origin_denom": "cust", + "origin_denom": "ccomp", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USTC", - "name": "USTC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ust.png", + "is_svm": false, + "symbol": "COMP", + "name": "COMP", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/comp.png", "decimals": 18, - "coingecko_id": "wrapped-ust", - "recommended_symbol": "USTC.sif" + "coingecko_id": "xxxxx", + "recommended_symbol": "COMP.sif" }, { - "denom": "ibc/8FCD92E4B97E69EC1A334EADDFF903A6C44408A8C9B03A40B3FBCABE575A8359", + "denom": "clon", "chain_id": "sifchain-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-91", + "origin_denom": "clon", + "origin_chain_id": "sifchain-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", - "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "is_svm": false, + "symbol": "LON", + "name": "LON", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lon.png", + "decimals": 18, + "coingecko_id": "tokenlon", + "recommended_symbol": "LON.sif" }, { - "denom": "cpaid", + "denom": "cbnt", "chain_id": "sifchain-1", - "origin_denom": "cpaid", + "origin_denom": "cbnt", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PAID", - "name": "PAID", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/paid.png", + "is_svm": false, + "symbol": "BNT", + "name": "BNT", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/bnt.png", "decimals": 18, - "coingecko_id": "paid-network", - "recommended_symbol": "PAID.sif" + "coingecko_id": "bancor", + "recommended_symbol": "BNT.sif" }, { - "denom": "cquick", + "denom": "ccocos", "chain_id": "sifchain-1", - "origin_denom": "cquick", + "origin_denom": "ccocos", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "QUICK", - "name": "QUICK", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/quick.png", + "is_svm": false, + "symbol": "COCOS", + "name": "COCOS", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/cocos.png", "decimals": 18, - "coingecko_id": "quick", - "recommended_symbol": "QUICK.sif" + "recommended_symbol": "COCOS.sif" }, { - "denom": "crail", + "denom": "cldo", "chain_id": "sifchain-1", - "origin_denom": "crail", + "origin_denom": "cldo", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RAIL", - "name": "RAIL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rail.png", + "is_svm": false, + "symbol": "LDO", + "name": "LDO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ldo.png", "decimals": 18, - "coingecko_id": "railgun", - "recommended_symbol": "RAIL.sif" + "coingecko_id": "lido-dao", + "recommended_symbol": "LDO.sif" }, { - "denom": "cratom", + "denom": "caave", "chain_id": "sifchain-1", - "origin_denom": "cratom", + "origin_denom": "caave", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "RATOM", - "name": "RATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ratom.png", + "is_svm": false, + "symbol": "AAVE", + "name": "AAVE", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/aave.png", "decimals": 18, - "coingecko_id": "stafi-ratom", - "recommended_symbol": "RATOM.sif" + "coingecko_id": "aave", + "recommended_symbol": "AAVE.sif" }, { - "denom": "ibc/5E382AAFA6A1A4CF97780231914F3011B9364F3C173EC278EE09666FA7CE3DB8", + "denom": "cakro", "chain_id": "sifchain-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-90", + "origin_denom": "cakro", + "origin_chain_id": "sifchain-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "is_svm": false, + "symbol": "AKRO", + "name": "AKRO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/akro.png", + "decimals": 18, + "coingecko_id": "akropolis", + "recommended_symbol": "AKRO.sif" }, { - "denom": "ibc/F279AB967042CAC10BFF70FAECB179DCE37AAAE4CD4C1BC4565C2BBC383BC0FA", + "denom": "cpond", "chain_id": "sifchain-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-14", + "origin_denom": "cpond", + "origin_chain_id": "sifchain-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "is_svm": false, + "symbol": "POND", + "name": "POND", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/pond.png", + "decimals": 18, + "coingecko_id": "marlin", + "recommended_symbol": "POND.sif" }, { "denom": "rowan", @@ -34607,6 +41726,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ROWAN", "name": "ROWAN", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", @@ -34623,6 +41743,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "1INCH", "name": "1INCH", "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/1inch.png", @@ -34631,184 +41752,213 @@ "recommended_symbol": "1INCH.sif" }, { - "denom": "caave", + "denom": "ccro", "chain_id": "sifchain-1", - "origin_denom": "caave", + "origin_denom": "ccro", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AAVE", - "name": "AAVE", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/aave.png", - "decimals": 18, - "coingecko_id": "aave", - "recommended_symbol": "AAVE.sif" + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/crypto-org/asset/cro.png", + "decimals": 8, + "description": "Cronos", + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO.sif" }, { - "denom": "cakro", + "denom": "cdai", "chain_id": "sifchain-1", - "origin_denom": "cakro", + "origin_denom": "cdai", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AKRO", - "name": "AKRO", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/akro.png", + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dai.png", "decimals": 18, - "coingecko_id": "akropolis", - "recommended_symbol": "AKRO.sif" + "coingecko_id": "dai", + "recommended_symbol": "DAI.sif" }, { - "denom": "cdnxc", + "denom": "cdaofi", "chain_id": "sifchain-1", - "origin_denom": "cdnxc", + "origin_denom": "cdaofi", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DNXC", - "name": "DNXC", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dnxc.png", + "is_svm": false, + "symbol": "DAOFI", + "name": "DAOFI", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/daofi.png", "decimals": 18, - "coingecko_id": "dinox", - "recommended_symbol": "DNXC.sif" + "coingecko_id": "xxxxx", + "recommended_symbol": "DAOFI.sif" }, { - "denom": "cdon", + "denom": "cdfyn", "chain_id": "sifchain-1", - "origin_denom": "cdon", + "origin_denom": "cdfyn", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "DON", - "name": "DON", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/don.png", + "is_svm": false, + "symbol": "DFYN", + "name": "DFYN", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dfyn.png", "decimals": 18, - "coingecko_id": "donkey-token", - "recommended_symbol": "DON.sif" + "coingecko_id": "dfyn-network", + "recommended_symbol": "DFYN.sif" }, { - "denom": "cenj", + "denom": "cdino", "chain_id": "sifchain-1", - "origin_denom": "cenj", + "origin_denom": "cdino", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ENJ", - "name": "ENJ", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/enj.png", + "is_svm": false, + "symbol": "DINO", + "name": "DINO", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dino.png", "decimals": 18, - "coingecko_id": "enjincoin", - "recommended_symbol": "ENJ.sif" + "recommended_symbol": "DINO.sif" }, { - "denom": "cern", + "denom": "cdnxc", "chain_id": "sifchain-1", - "origin_denom": "cern", + "origin_denom": "cdnxc", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ERN", - "name": "ERN", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/ern.png", + "is_svm": false, + "symbol": "DNXC", + "name": "DNXC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/dnxc.png", "decimals": 18, - "coingecko_id": "ethernity-chain", - "recommended_symbol": "ERN.sif" + "coingecko_id": "dinox", + "recommended_symbol": "DNXC.sif" }, { - "denom": "cesd", + "denom": "clrc", "chain_id": "sifchain-1", - "origin_denom": "cesd", + "origin_denom": "clrc", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ESD", - "name": "ESD", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/esd.png", + "is_svm": false, + "symbol": "LRC", + "name": "LRC", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/lrc.png", "decimals": 18, - "coingecko_id": "empty-set-dollar", - "recommended_symbol": "ESD.sif" + "coingecko_id": "loopring", + "recommended_symbol": "LRC.sif" }, { - "denom": "ceth", + "denom": "crndr", "chain_id": "sifchain-1", - "origin_denom": "ceth", + "origin_denom": "crndr", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/eth.png", + "is_svm": false, + "symbol": "RNDR", + "name": "RNDR", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rndr.png", "decimals": 18, - "coingecko_id": "ethereum", - "recommended_symbol": "ETH.sif" + "coingecko_id": "render-token", + "recommended_symbol": "RNDR.sif" }, { - "denom": "cpols", + "denom": "crune", "chain_id": "sifchain-1", - "origin_denom": "cpols", + "origin_denom": "crune", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "POLS", - "name": "POLS", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/pols.png", + "is_svm": false, + "symbol": "RUNE", + "name": "RUNE", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/rune.png", "decimals": 18, - "coingecko_id": "polkastarter", - "recommended_symbol": "POLS.sif" + "coingecko_id": "thorchain", + "recommended_symbol": "RUNE.sif" }, { - "denom": "cpond", + "denom": "csnx", "chain_id": "sifchain-1", - "origin_denom": "cpond", + "origin_denom": "csnx", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "POND", - "name": "POND", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/pond.png", + "is_svm": false, + "symbol": "SNX", + "name": "SNX", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/snx.png", "decimals": 18, - "coingecko_id": "marlin", - "recommended_symbol": "POND.sif" + "coingecko_id": "havven", + "recommended_symbol": "SNX.sif" }, { - "denom": "cwfil", + "denom": "ctusd", "chain_id": "sifchain-1", - "origin_denom": "cwfil", + "origin_denom": "ctusd", "origin_chain_id": "sifchain-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WFIL", - "name": "WFIL", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wfil.png", + "is_svm": false, + "symbol": "TUSD", + "name": "TUSD", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/tusd.png", "decimals": 18, - "coingecko_id": "wrapped-filecoin", - "recommended_symbol": "WFIL.sif" + "coingecko_id": "true-usd", + "recommended_symbol": "TUSD.sif" }, { - "denom": "cwscrt", + "denom": "ibc/03E798784835B5D86DD9181B8ECFED3A301CFF938409F079CAF6B4A106F46CAF", "chain_id": "sifchain-1", - "origin_denom": "cwscrt", - "origin_chain_id": "sifchain-1", - "trace": "", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-92", "is_cw20": false, "is_evm": false, - "symbol": "WSCRT", - "name": "WSCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/ethereum/asset/wscrt.png", + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" + }, + { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "chain_id": "sifchain-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "secret-erc20", - "recommended_symbol": "WSCRT.sif" + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { "denom": "ibc/B4314D0E670CB43C88A5DCA09F76E5E812BD831CC2FEC6E434C9E5A9D1F57953", @@ -34818,6 +41968,7 @@ "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -34828,8 +41979,45 @@ } ] }, + "solana": { + "assets": [] + }, + "solana-devnet": { + "assets": [] + }, "sommelier-3": { "assets": [ + { + "denom": "ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255", + "chain_id": "sommelier-3", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" + }, + { + "denom": "ibc/FEB78E59D3328D8BAD67893B13DF86786EAF0531482E780D180C2F10DCDD8B9B", + "chain_id": "sommelier-3", + "origin_denom": "factory/kujira17djzq5x5e5zm9q9zlp6dtxdt9p8q2zvj0qtmjs0wrxm5g9e2vf5q9d6y2t/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LP SOMM-MNTA", + "name": "LP SOMM-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "decimals": 6, + "recommended_symbol": "LP SOMM-MNTA" + }, { "denom": "usomm", "chain_id": "sommelier-3", @@ -34838,6 +42026,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SOMM", "name": "SOMM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", @@ -34847,19 +42036,21 @@ "recommended_symbol": "SOMM" }, { - "denom": "ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "sommelier-3", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-5", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { "denom": "ibc/D934516FBE457F3A98AFABD87E0EFF7F95A15325C191EA8CDD7763C702FDDEC2", @@ -34869,6 +42060,7 @@ "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "AXL", "name": "AXL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", @@ -34877,35 +42069,52 @@ "recommended_symbol": "AXL" }, { - "denom": "ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255", + "denom": "ibc/E3AB0DFDE9E782262B770C32DF94AC2A92B93DC4825376D6F6C874D3C877864E", "chain_id": "sommelier-3", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-1", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/4B2535E1A044C8F06DB5BD3AC30DBB35BB1D113A1D7B88AB0395F5026AA36EF4", "chain_id": "sommelier-3", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-64", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" + }, + { + "denom": "ibc/45C87C0C3027BD5E5BBECF6A6BF8570857E555ABCB6689130AC90D391016AD17", + "chain_id": "sommelier-3", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" }, { "denom": "ibc/A5BA3F1C38ADAA11F941D66B19A7CD67B127F25DE2EA581BCD2DC4D8D50BEED9", @@ -34915,6 +42124,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "sqOSMO", "name": "sqOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/sqosmo.svg", @@ -34922,49 +42132,73 @@ "recommended_symbol": "sqOSMO" }, { - "denom": "ibc/4B2535E1A044C8F06DB5BD3AC30DBB35BB1D113A1D7B88AB0395F5026AA36EF4", + "denom": "ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65", "chain_id": "sommelier-3", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-64", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" - }, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + } + ] + }, + "ssc-1": { + "assets": [ { - "denom": "ibc/E3AB0DFDE9E782262B770C32DF94AC2A92B93DC4825376D6F6C874D3C877864E", - "chain_id": "sommelier-3", - "origin_denom": "weth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-5", + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "chain_id": "ssc-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-1", "is_cw20": false, "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", - "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "ibc/FF6C2E86490C1C4FBBD24F55032831D2415B9D7882F85C3CC9C2401D79362BEA", + "chain_id": "ssc-1", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/45C87C0C3027BD5E5BBECF6A6BF8570857E555ABCB6689130AC90D391016AD17", - "chain_id": "sommelier-3", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-5", + "denom": "usaga", + "chain_id": "ssc-1", + "origin_denom": "usaga", + "origin_chain_id": "ssc-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "WBTC", - "name": "WBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "SAGA", + "name": "SAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", + "decimals": 6, + "description": "The native staking and governance token of Saga.", + "coingecko_id": "saga-2", + "recommended_symbol": "SAGA" } ] }, @@ -34978,6 +42212,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "TSAGA", "name": "TSAGA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", @@ -34990,108 +42225,117 @@ "stargaze-1": { "assets": [ { - "denom": "ibc/B0DD091AE8F4DF06E155C0328B5098206A756766466F101CDC2F7D196C3AA572", + "denom": "ustars", "chain_id": "stargaze-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-287", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "description": "The native token of Stargaze", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "ibc/71D1A2823DC0563C5D70CCB64264C0AB5E33F10887FAE3D5889FB31718B2C933", + "denom": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", "chain_id": "stargaze-1", - "origin_denom": "gamm/pool/604", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "gamm/pool/604", - "name": "gamm/pool/604", - "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/osmosis/asset/pool.png", - "decimals": 18, - "recommended_symbol": "gamm/pool/604" + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "decimals": 6, + "recommended_symbol": "WOSMO" }, { - "denom": "ibc/775B130CF8ED9C5FC9C5A14480AA479E091661D72F367AA64D1F5B442FCC52FE", + "denom": "ibc/FED316EA6AA1F52581F61D5D4B38F2A09042D5EA1DABA07B8A23C1EE3C0C4651", "chain_id": "stargaze-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-184", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-106", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "decimals": 6, + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/0AA9207D732AC65D17EF3081AE8EB96CABE26D9E8FBE27EC96BC4E3FEBD255C1", + "denom": "ibc/4A1C18CA7F50544760CF306189B810CE4C1CB156C7FC870143D401FE7280E591", "chain_id": "stargaze-1", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-106", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-204", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/2956439BB6460CB7FCF72F068007FD91AE2AEA8C6B71E6B5B4FD05D0999A9CC5", + "denom": "ibc/9DF365E2C0EF4EA02FA771F638BB9C0C830EFCD354629BDC017F79B348B4E989", "chain_id": "stargaze-1", - "origin_denom": "wavax-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-50", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-239", "is_cw20": false, "is_evm": false, - "symbol": "WAVAX", - "name": "WAVAX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", - "decimals": 18, - "coingecko_id": "wrapped-avax", - "recommended_symbol": "WAVAX.axl" + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/37101BD82084D308D036ABE69D991417F5D2EB0D2C7DC387BB5AE8DAE08ADD0D", + "denom": "ibc/A1F5AED38B17FC8C2009DD6BD70E463C7D3641B35D1676680CF9329D85C28018", "chain_id": "stargaze-1", - "origin_denom": "wmatic-wei", + "origin_denom": "uaxl", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "WMATIC", - "name": "WMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ibc/255D3F30759F44A6885DD2A625F60CA2866AAD7B15DAF40A5525F5ADCF915124", + "denom": "ibc/F9C792DF71F960BB9EF698493B61E29C1EBB8FCD56B1F8BB08C86871F5F497C0", "chain_id": "stargaze-1", - "origin_denom": "wbnb-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-50", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-46", "is_cw20": false, "is_evm": false, - "symbol": "WBNB", - "name": "WBNB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", "decimals": 18, - "coingecko_id": "wbnb", - "recommended_symbol": "WBNB.axl" + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { "denom": "ibc/7A58490427EF0092E2BFFB4BEEBA38E29B09E9B98557DFC78335B43F15CF2676", @@ -35101,6 +42345,7 @@ "trace": "transfer/channel-106", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stSTARS", "name": "stSTARS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", @@ -35109,50 +42354,178 @@ "recommended_symbol": "stSTARS" }, { - "denom": "ibc/F9C792DF71F960BB9EF698493B61E29C1EBB8FCD56B1F8BB08C86871F5F497C0", + "denom": "ibc/7FC1E7E7E74645C70C636BCA925C29849BAD8AE4F3D2FD1B70F9542CB9A854D4", "chain_id": "stargaze-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-46", + "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-191", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "is_svm": false, + "symbol": "BAD", + "name": "BAD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "decimals": 6, + "recommended_symbol": "BAD" + }, + { + "denom": "ibc/AB4585E82FC310A4BDC0EF1406F57F1A68BD914B7C4956BE2415B5A9DAD0C927", + "chain_id": "stargaze-1", + "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-6", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", "decimals": 18, - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "coingecko_id": "weth", + "recommended_symbol": "WETH.grv" }, { - "denom": "ibc/FED316EA6AA1F52581F61D5D4B38F2A09042D5EA1DABA07B8A23C1EE3C0C4651", + "denom": "ibc/B0DD091AE8F4DF06E155C0328B5098206A756766466F101CDC2F7D196C3AA572", "chain_id": "stargaze-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-106", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-287", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ustars", + "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", "chain_id": "stargaze-1", - "origin_denom": "ustars", + "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", "origin_chain_id": "stargaze-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "STRDST", + "name": "STRDST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", "decimals": 6, - "description": "The native token of Stargaze", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "description": "The native token of ohhNFT.", + "recommended_symbol": "STRDST" + }, + { + "denom": "ibc/12F659774A2765A8B9B249698A152C47D24F1CC0992B8609E78CB286CAF98C38", + "chain_id": "stargaze-1", + "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-6", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PAGE", + "name": "PAGE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", + "decimals": 8, + "coingecko_id": "page", + "recommended_symbol": "PAGE.grv" + }, + { + "denom": "ibc/3554989531C7DB295D548F373FE93205215CAC2820A62D748E5A3703044D481E", + "chain_id": "stargaze-1", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-6", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "GRAVITON", + "name": "GRAVITON", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "decimals": 6, + "description": "Gravity-bridge Staking Coin", + "coingecko_id": "graviton", + "recommended_symbol": "GRAVITON" + }, + { + "denom": "ibc/5E6D3B6471F864C3057C4A3319CBE378325DF482FB13B50A8C3646B0B440D667", + "chain_id": "stargaze-1", + "origin_denom": "factory/neutron1qm224945hrkwc5qze40tau499n46ydmulpeagscmsuyxfrds02usf7mnpu/scrap", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-191", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SCRAP", + "name": "SCRAP", + "logo_uri": "https://raw.githubusercontent.com/astroport-fi/astroport-token-lists/main//img/SCRAP.png", + "decimals": 6, + "recommended_symbol": "SCRAP" + }, + { + "denom": "ibc/6B7DB003E63A2A24EE8F333AA711E6B8A2D59D6ECEF544DD0C1749C0E0D314DA", + "chain_id": "stargaze-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-242", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, + { + "denom": "ibc/775B130CF8ED9C5FC9C5A14480AA479E091661D72F367AA64D1F5B442FCC52FE", + "chain_id": "stargaze-1", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-184", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" + }, + { + "denom": "ibc/938CEB62ABCBA6366AA369A8362E310B2A0B1A54835E4F3FF01D69D860959128", + "chain_id": "stargaze-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-49", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" + }, + { + "denom": "ibc/9C40A8368C0E1CAA4144DBDEBBCE2E7A5CC2D128F0A9F785ECB71ECFF575114C", + "chain_id": "stargaze-1", + "origin_denom": "ufrienzies", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-204", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "FRNZ", + "name": "FRNZ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", + "decimals": 6, + "recommended_symbol": "FRNZ" }, { "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/mGAZE", @@ -35162,6 +42535,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "GAZE", "name": "GAZE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/gaze.png", @@ -35177,6 +42551,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "BRNCH", "name": "BRNCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/brnch.png", @@ -35184,21 +42559,6 @@ "description": "ohhNFT LP token.", "recommended_symbol": "BRNCH" }, - { - "denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", - "chain_id": "stargaze-1", - "origin_denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", - "origin_chain_id": "stargaze-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "SNEAKY", - "name": "SNEAKY", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png", - "decimals": 6, - "description": "The native coin of Sneaky Productions.", - "recommended_symbol": "SNEAKY" - }, { "denom": "ibc/08CF01F857C36D3C91C3427AA2EACFAFC07971E7AC40B6C433A9982B333F2567", "chain_id": "stargaze-1", @@ -35207,6 +42567,7 @@ "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WETH", "name": "WETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", @@ -35215,108 +42576,117 @@ "recommended_symbol": "WETH.axl" }, { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "denom": "ibc/0E57658B71E9CC4BB0F6FE3E01712966713B49E6FD292E6B66E3F111B103D361", "chain_id": "stargaze-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/46E27FBBC56A14AD0029678BB34A4164F650AA3711EEDEA0D05E08DB41D13BF0", + "denom": "ibc/3CC81EAD9814B0AA426F4D05D2D7EFF72DBC32D432290586BBADF3CA16BCEA11", "chain_id": "stargaze-1", - "origin_denom": "uqstars", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-124", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-233", "is_cw20": false, "is_evm": false, - "symbol": "qSTARS", - "name": "qSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "recommended_symbol": "qSTARS" + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/55967CD055E19BF374A2556456C5760DAFDCF1D86DD85FAD08DBA806964DB2C4", + "denom": "ibc/CC72D1ABD9FDC68DA3797BE4FD7C7CAEB5BB186AF1D5E072D91FA71F13097FCF", "chain_id": "stargaze-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-106", + "origin_denom": "uqck", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-124", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" }, { - "denom": "ibc/6B7DB003E63A2A24EE8F333AA711E6B8A2D59D6ECEF544DD0C1749C0E0D314DA", + "denom": "ibc/14D1406D84227FDF4B055EA5CB2298095BBCA3F3BC3EF583AE6DF36F0FB179C8", "chain_id": "stargaze-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-242", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-291", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "decimals": 6, + "description": "Celestia Staking Coin", + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { - "denom": "ibc/7C6220A768862B54B717F6AF9E29D398B16747B79D509E777D7F2259578E3D47", + "denom": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", "chain_id": "stargaze-1", - "origin_denom": "uaura", - "origin_chain_id": "xstaxy-1", - "trace": "transfer/channel-270", + "origin_denom": "ujuno", + "origin_chain_id": "juno-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "AURA", - "name": "AURA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", + "is_svm": false, + "symbol": "JUNO", + "name": "JUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", "decimals": 6, - "coingecko_id": "aura-network", - "recommended_symbol": "AURA" + "description": "JUNO Staking Coin", + "coingecko_id": "juno-network", + "recommended_symbol": "JUNO" }, { - "denom": "ibc/7FC1E7E7E74645C70C636BCA925C29849BAD8AE4F3D2FD1B70F9542CB9A854D4", + "denom": "ibc/46E27FBBC56A14AD0029678BB34A4164F650AA3711EEDEA0D05E08DB41D13BF0", "chain_id": "stargaze-1", - "origin_denom": "factory/neutron143wp6g8paqasnuuey6zyapucknwy9rhnld8hkr/bad", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-191", + "origin_denom": "uqstars", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-124", "is_cw20": false, "is_evm": false, - "symbol": "BAD", - "name": "BAD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/bad.png", + "is_svm": false, + "symbol": "qSTARS", + "name": "qSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", "decimals": 6, - "recommended_symbol": "BAD" + "recommended_symbol": "qSTARS" }, { - "denom": "ibc/938CEB62ABCBA6366AA369A8362E310B2A0B1A54835E4F3FF01D69D860959128", + "denom": "ibc/7C6220A768862B54B717F6AF9E29D398B16747B79D509E777D7F2259578E3D47", "chain_id": "stargaze-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-49", + "origin_denom": "uaura", + "origin_chain_id": "xstaxy-1", + "trace": "transfer/channel-270", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "AURA", + "name": "AURA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "coingecko_id": "aura-network", + "recommended_symbol": "AURA" }, { "denom": "ibc/96274E25174EE93314D8B5636D2D2F70963E207C22F643EC41949A3CBEDA4C72", @@ -35326,71 +42696,13 @@ "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", "decimals": 6, "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" - }, - { - "denom": "ibc/9C40A8368C0E1CAA4144DBDEBBCE2E7A5CC2D128F0A9F785ECB71ECFF575114C", - "chain_id": "stargaze-1", - "origin_denom": "ufrienzies", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-204", - "is_cw20": false, - "is_evm": false, - "symbol": "FRNZ", - "name": "FRNZ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/frnz.png", - "decimals": 6, - "recommended_symbol": "FRNZ" - }, - { - "denom": "ibc/9DF365E2C0EF4EA02FA771F638BB9C0C830EFCD354629BDC017F79B348B4E989", - "chain_id": "stargaze-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-239", - "is_cw20": false, - "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" - }, - { - "denom": "ibc/A1F5AED38B17FC8C2009DD6BD70E463C7D3641B35D1676680CF9329D85C28018", - "chain_id": "stargaze-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-50", - "is_cw20": false, - "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", - "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" - }, - { - "denom": "ibc/AB4585E82FC310A4BDC0EF1406F57F1A68BD914B7C4956BE2415B5A9DAD0C927", - "chain_id": "stargaze-1", - "origin_denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-6", - "is_cw20": false, - "is_evm": false, - "symbol": "WETH", - "name": "WETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/weth.svg", - "decimals": 18, - "coingecko_id": "weth", - "recommended_symbol": "WETH.grv" + "recommended_symbol": "USDC.axl" }, { "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", @@ -35400,6 +42712,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -35409,50 +42722,67 @@ "recommended_symbol": "OSMO" }, { - "denom": "ibc/0E57658B71E9CC4BB0F6FE3E01712966713B49E6FD292E6B66E3F111B103D361", + "denom": "ibc/FD3B4530AC2B3504ED3CD9F7A7D19224D4D7CBB4F2A849FE26153E69B2CD260F", "chain_id": "stargaze-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-49", + "origin_denom": "stk/ustars", + "origin_chain_id": "core-1", + "trace": "transfer/channel-287", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "stkSTARS", + "name": "stkSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkstars.png", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "stkstars", + "recommended_symbol": "stkSTARS" }, { - "denom": "ibc/0F181D9F5BB18A8496153C1666E934169515592C135E8E9FCCC355889858EAF9", + "denom": "ibc/33B679C576A22B5D2CA314D8801155881C62037C34DBC3B32537FA5DBAB91080", "chain_id": "stargaze-1", - "origin_denom": "unois", - "origin_chain_id": "nois-1", - "trace": "transfer/channel-137", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-266", "is_cw20": false, "is_evm": false, - "symbol": "NOIS", - "name": "NOIS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "description": "Nois Staking Coin", - "recommended_symbol": "NOIS" + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/3554989531C7DB295D548F373FE93205215CAC2820A62D748E5A3703044D481E", + "denom": "ibc/55967CD055E19BF374A2556456C5760DAFDCF1D86DD85FAD08DBA806964DB2C4", "chain_id": "stargaze-1", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-6", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-106", "is_cw20": false, "is_evm": false, - "symbol": "GRAVITON", - "name": "GRAVITON", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "description": "Gravity-bridge Staking Coin", - "coingecko_id": "graviton", - "recommended_symbol": "GRAVITON" + "coingecko_id": "stride", + "recommended_symbol": "STRD" + }, + { + "denom": "ibc/650F7DC9D0CB4CBFB8C97874F14108CCA95E7BAEB76225EDD34B220F557D0430", + "chain_id": "stargaze-1", + "origin_denom": "factory/kujira1av284rnqh6s0l2lwdqgpgz8wuva3wh9lkmlsupjd9escn5v4fels6kwc7v/ulp", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-49", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "LP STARS-MNTA", + "name": "LP STARS-MNTA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/bow.svg", + "decimals": 6, + "recommended_symbol": "LP STARS-MNTA" }, { "denom": "ibc/68FC3517CCDA3128D6C2AA2486BFD03B3948A78142CB2D778B4DA5C64922DFBD", @@ -35462,6 +42792,7 @@ "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "WINK", "name": "WINK", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/wink.png", @@ -35469,154 +42800,147 @@ "recommended_symbol": "WINK" }, { - "denom": "ibc/33B679C576A22B5D2CA314D8801155881C62037C34DBC3B32537FA5DBAB91080", + "denom": "ibc/255D3F30759F44A6885DD2A625F60CA2866AAD7B15DAF40A5525F5ADCF915124", "chain_id": "stargaze-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-266", + "origin_denom": "wbnb-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "decimals": 6, - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "is_svm": false, + "symbol": "WBNB", + "name": "WBNB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", + "decimals": 18, + "coingecko_id": "wbnb", + "recommended_symbol": "WBNB.axl" }, { - "denom": "ibc/3CC81EAD9814B0AA426F4D05D2D7EFF72DBC32D432290586BBADF3CA16BCEA11", + "denom": "ibc/37101BD82084D308D036ABE69D991417F5D2EB0D2C7DC387BB5AE8DAE08ADD0D", "chain_id": "stargaze-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-233", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", - "decimals": 6, - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "is_svm": false, + "symbol": "WMATIC", + "name": "WMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" }, { - "denom": "ibc/AB7C92666DE8C7A977666B8080CABF0127B652B9D40F7251E6914DE942D9942B", + "denom": "ibc/9AF5D20C6D978F658BA0DC56FFCB336C697642C4E04A37CEBC1C732BFAE80BCC", "chain_id": "stargaze-1", - "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", "origin_chain_id": "osmosis-1", "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "WOSMO", - "name": "WOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", + "is_svm": false, + "symbol": "BADKID", + "name": "BADKID", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", "decimals": 6, - "recommended_symbol": "WOSMO" + "recommended_symbol": "BADKID" }, { - "denom": "ibc/CAD8A9F306CAAC55731C66930D6BEE539856DD12E59061C965E44D82AA26A0E7", + "denom": "ibc/2956439BB6460CB7FCF72F068007FD91AE2AEA8C6B71E6B5B4FD05D0999A9CC5", "chain_id": "stargaze-1", - "origin_denom": "uhuahua", - "origin_chain_id": "chihuahua-1", - "trace": "transfer/channel-251", + "origin_denom": "wavax-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-50", "is_cw20": false, "is_evm": false, - "symbol": "HUAHUA", - "name": "HUAHUA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", - "decimals": 6, - "coingecko_id": "chihuahua-token", - "recommended_symbol": "HUAHUA" + "is_svm": false, + "symbol": "WAVAX", + "name": "WAVAX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/avalanche/images/wavax.svg", + "decimals": 18, + "coingecko_id": "wrapped-avax", + "recommended_symbol": "WAVAX.axl" }, { - "denom": "ibc/CC72D1ABD9FDC68DA3797BE4FD7C7CAEB5BB186AF1D5E072D91FA71F13097FCF", + "denom": "ibc/71D1A2823DC0563C5D70CCB64264C0AB5E33F10887FAE3D5889FB31718B2C933", "chain_id": "stargaze-1", - "origin_denom": "uqck", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-124", + "origin_denom": "gamm/pool/604", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "QCK", - "name": "QCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", - "decimals": 6, - "coingecko_id": "quicksilver", - "recommended_symbol": "QCK" + "is_svm": false, + "symbol": "gamm/pool/604", + "name": "gamm/pool/604", + "logo_uri": "https://raw.githubusercontent.com/cosmostation/chainlist/main/chain/osmosis/asset/pool.png", + "decimals": 18, + "recommended_symbol": "gamm/pool/604" }, { - "denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "chain_id": "stargaze-1", - "origin_denom": "factory/stars16da2uus9zrsy83h23ur42v3lglg5rmyrpqnju4/dust", - "origin_chain_id": "stargaze-1", - "trace": "", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "STRDST", - "name": "STRDST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/dust.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "description": "The native token of ohhNFT.", - "recommended_symbol": "STRDST" - }, - { - "denom": "ibc/12F659774A2765A8B9B249698A152C47D24F1CC0992B8609E78CB286CAF98C38", - "chain_id": "stargaze-1", - "origin_denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-6", - "is_cw20": false, - "is_evm": false, - "symbol": "PAGE", - "name": "PAGE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/page.png", - "decimals": 8, - "coingecko_id": "page", - "recommended_symbol": "PAGE.grv" + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "ibc/448C1061CE97D86CC5E86374CD914870FB8EBA16C58661B5F1D3F46729A2422D", + "denom": "ibc/0AA9207D732AC65D17EF3081AE8EB96CABE26D9E8FBE27EC96BC4E3FEBD255C1", "chain_id": "stargaze-1", - "origin_denom": "ujuno", - "origin_chain_id": "juno-1", - "trace": "transfer/channel-5", + "origin_denom": "stuosmo", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-106", "is_cw20": false, "is_evm": false, - "symbol": "JUNO", - "name": "JUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", "decimals": 6, - "description": "JUNO Staking Coin", - "coingecko_id": "juno-network", - "recommended_symbol": "JUNO" + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "ibc/4A1C18CA7F50544760CF306189B810CE4C1CB156C7FC870143D401FE7280E591", + "denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", "chain_id": "stargaze-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-204", + "origin_denom": "factory/stars1xx5976njvxpl9n4v8huvff6cudhx7yuu8e7rt4/usneaky", + "origin_chain_id": "stargaze-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "SNEAKY", + "name": "SNEAKY", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/sneaky.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" + "description": "The native coin of Sneaky Productions.", + "recommended_symbol": "SNEAKY" }, { - "denom": "ibc/9AF5D20C6D978F658BA0DC56FFCB336C697642C4E04A37CEBC1C732BFAE80BCC", + "denom": "ibc/0F181D9F5BB18A8496153C1666E934169515592C135E8E9FCCC355889858EAF9", "chain_id": "stargaze-1", - "origin_denom": "factory/osmo10n8rv8npx870l69248hnp6djy6pll2yuzzn9x8/BADKID", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "unois", + "origin_chain_id": "nois-1", + "trace": "transfer/channel-137", "is_cw20": false, "is_evm": false, - "symbol": "BADKID", - "name": "BADKID", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/badkid.png", + "is_svm": false, + "symbol": "NOIS", + "name": "NOIS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", "decimals": 6, - "recommended_symbol": "BADKID" + "description": "Nois Staking Coin", + "recommended_symbol": "NOIS" }, { "denom": "ibc/C66DB8E51FB0B561762CA876B8749A561377F2B45870ED99821A5B74DF1C4309", @@ -35626,6 +42950,7 @@ "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", @@ -35638,319 +42963,296 @@ "stride-1": { "assets": [ { - "denom": "ibc/38973850FD27F86A3453C37C11FF0C4A2BC4C0A24E29446EA7D043D014148470", + "denom": "ibc/156AFFB3B97697C6AB8EB63B16110F3136E99D9947525598BB8A604D10E348F7", "chain_id": "stride-1", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-148", + "origin_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", + "is_svm": false, + "symbol": "IBCX", + "name": "IBCX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", "decimals": 6, - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" - }, - { - "denom": "ibc/C50BF43196B699C78D982924B4335F187B1971D05694B32A8C1D3C3661D5A382", - "chain_id": "stride-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-196", - "is_cw20": false, - "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "coingecko_id": "ibc-index", + "recommended_symbol": "IBCX" }, { - "denom": "ibc/561C70B20188A047BFDE6F9946BDDC5D8AC172B9BE04FF868DFABF819E5A9CCE", + "denom": "ibc/1A2271226209D309902AFF4F21BD21237CB514DD24EA2EE0423BF74C6135D8B8", "chain_id": "stride-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-160", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "transfer/channel-29", "is_cw20": false, "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "decimals": 6, + "description": "Umee Staking Coin", + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { - "denom": "ibc/022A6D9857D63A9D9C772B0DDD68A6CC0434211C8D6019B9617532C5FE8BEB85", + "denom": "ibc/520D9C4509027DE66C737A1D6A6021915A3071E30DBA8F758B46532B060D7AA5", "chain_id": "stride-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "origin_denom": "usaga", + "origin_chain_id": "ssc-1", + "trace": "transfer/channel-213", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "is_svm": false, + "symbol": "SAGA", + "name": "SAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/saga/images/saga.png", "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "coingecko_id": "saga-2", + "recommended_symbol": "SAGA" }, { - "denom": "ibc/C2D05DEC08BA1A9153C34ABED5F99818A935E1A2A9E86473301000511C0A75C9", + "denom": "stuumee", "chain_id": "stride-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-134", + "origin_denom": "stuumee", + "origin_chain_id": "stride-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "stUMEE", + "name": "stUMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", + "decimals": 6, + "coingecko_id": "stride-staked-umee", + "recommended_symbol": "stUMEE" }, { - "denom": "ibc/5FA12AB6B23F7FC00BFBA3B26E320C91226BF88CC17DA5E088013252C91AEAD1", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "chain_id": "stride-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-69", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { - "denom": "ibc/7EAE5BEF3A26B64AFBD89828AFDDB1DC7024A0276D22745201632C40E6E634D0", + "denom": "ibc/0800E93C5EE14FF588D3F5C7C25A91E1E7528CB48536A0E5B7232E502CFA66FB", "chain_id": "stride-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-19", + "origin_denom": "eth.1.2.942d87", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "decimals": 6, - "description": "Stargaze Staking Coin", - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "is_svm": false, + "symbol": "ETH", + "name": "ETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", + "decimals": 18, + "recommended_symbol": "ETH.carbon" }, { - "denom": "ibc/E1C22332C083574F3418481359733BA8887D171E76C80AD9237422AEABB66018", + "denom": "ibc/6D1DCA8130B2C0406170DB9FC3B49DCFC62D210557171EA4156ADD028ED637B4", "chain_id": "stride-1", - "origin_denom": "adym", - "origin_chain_id": "dymension_1100-1", - "trace": "transfer/channel-197", + "origin_denom": "acanto", + "origin_chain_id": "canto_7700-1", + "trace": "transfer/channel-74", "is_cw20": false, "is_evm": false, - "symbol": "DYM", - "name": "DYM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", + "is_svm": false, + "symbol": "CANTO", + "name": "CANTO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", "decimals": 18, - "coingecko_id": "dymension", - "recommended_symbol": "DYM" + "coingecko_id": "canto", + "recommended_symbol": "CANTO" }, { - "denom": "stuluna", + "denom": "ibc/022A6D9857D63A9D9C772B0DDD68A6CC0434211C8D6019B9617532C5FE8BEB85", "chain_id": "stride-1", - "origin_denom": "stuluna", - "origin_chain_id": "stride-1", - "trace": "", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "stLUNA", - "name": "stLUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", "decimals": 6, - "coingecko_id": "stride-staked-luna", - "recommended_symbol": "stLUNA" + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "stutia", + "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", "chain_id": "stride-1", - "origin_denom": "stutia", - "origin_chain_id": "stride-1", - "trace": "", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "stTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "description": "Stride's liquid staked TIA", - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { - "denom": "stusomm", + "denom": "stinj", "chain_id": "stride-1", - "origin_denom": "stusomm", + "origin_denom": "stinj", "origin_chain_id": "stride-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stSOMM", - "name": "stSOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", - "decimals": 6, - "coingecko_id": "stride-staked-sommelier", - "recommended_symbol": "stSOMM" - }, - { - "denom": "ibc/A66EAE3A65942EA82C9300E8B70972A0E4282EF3A140BDCB72A778F80580ACAB", - "chain_id": "stride-1", - "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-123", - "is_cw20": false, - "is_evm": false, - "symbol": "APOLLO", - "name": "APOLLO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", - "decimals": 6, - "recommended_symbol": "APOLLO" + "is_svm": false, + "symbol": "stINJ", + "name": "stINJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", + "decimals": 18, + "coingecko_id": "stride-staked-injective", + "recommended_symbol": "stINJ" }, { - "denom": "stustars", + "denom": "stucmdx", "chain_id": "stride-1", - "origin_denom": "stustars", + "origin_denom": "stucmdx", "origin_chain_id": "stride-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "is_svm": false, + "symbol": "stCMDX", + "name": "stCMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" - }, - { - "denom": "ibc/5D9C9AD9C09F2D78F99DE11C7F7A86934A6034E7CA777B954A6FC16F31B0B015", - "chain_id": "stride-1", - "origin_denom": "swth", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-47", - "is_cw20": false, - "is_evm": false, - "symbol": "SWTH", - "name": "SWTH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "decimals": 8, - "coingecko_id": "switcheo", - "recommended_symbol": "SWTH" + "recommended_symbol": "stCMDX" }, { - "denom": "ibc/1A2271226209D309902AFF4F21BD21237CB514DD24EA2EE0423BF74C6135D8B8", + "denom": "stujuno", "chain_id": "stride-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "transfer/channel-29", + "origin_denom": "stujuno", + "origin_chain_id": "stride-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", + "is_svm": false, + "symbol": "stJUNO", + "name": "stJUNO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", "decimals": 6, - "description": "Umee Staking Coin", - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "coingecko_id": "stride-staked-juno", + "recommended_symbol": "stJUNO" }, { - "denom": "stinj", + "denom": "stuluna", "chain_id": "stride-1", - "origin_denom": "stinj", + "origin_denom": "stuluna", "origin_chain_id": "stride-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "stINJ", - "name": "stINJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stinj.png", - "decimals": 18, - "coingecko_id": "stride-staked-injective", - "recommended_symbol": "stINJ" + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stLUNA", + "name": "stLUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", + "decimals": 6, + "coingecko_id": "stride-staked-luna", + "recommended_symbol": "stLUNA" }, { - "denom": "ibc/1E9EFD936CD9A42F297483CC08E79C8080E29558825804424D3928A53D35B57D", + "denom": "ibc/892B184DE49984FEA412E6BB8B9F2FA35E707E29DD5E9ADB515EB99B11E40837", "chain_id": "stride-1", - "origin_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "origin_denom": "ucre", + "origin_chain_id": "crescent-1", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, - "symbol": "stIBCX", - "name": "stIBCX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", + "is_svm": false, + "symbol": "CRE", + "name": "CRE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", "decimals": 6, - "recommended_symbol": "stIBCX" + "coingecko_id": "crescent-network", + "recommended_symbol": "CRE" }, { - "denom": "stucmdx", + "denom": "ibc/EB66980014602E6BD50A1CB9FFB8FA694DC3EC10A48D2C1C649D732954F88D4A", "chain_id": "stride-1", - "origin_denom": "stucmdx", - "origin_chain_id": "stride-1", - "trace": "", + "origin_denom": "ucmdx", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, - "symbol": "stCMDX", - "name": "stCMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stcmdx.png", + "is_svm": false, + "symbol": "CMDX", + "name": "CMDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", "decimals": 6, - "recommended_symbol": "stCMDX" + "description": "Comdex Staking Coin", + "coingecko_id": "comdex", + "recommended_symbol": "CMDX" }, { - "denom": "stuumee", + "denom": "stadydx", "chain_id": "stride-1", - "origin_denom": "stuumee", + "origin_denom": "stadydx", "origin_chain_id": "stride-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stUMEE", - "name": "stUMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", - "decimals": 6, - "coingecko_id": "stride-staked-umee", - "recommended_symbol": "stUMEE" + "is_svm": false, + "symbol": "stDYDX", + "name": "stDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "decimals": 18, + "description": "Stride's liquid staked DYDX", + "coingecko_id": "stride-staked-dydx", + "recommended_symbol": "stDYDX" }, { - "denom": "ibc/156AFFB3B97697C6AB8EB63B16110F3136E99D9947525598BB8A604D10E348F7", + "denom": "ibc/4B322204B4F59D770680FE4D7A565DDC3F37BFF035474B717476C66A4F83DD72", "chain_id": "stride-1", - "origin_denom": "factory/osmo14klwqgkmackvx2tqa0trtg69dmy0nrg4ntq4gjgw2za4734r5seqjqm4gm/uibcx", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "origin_denom": "aevmos", + "origin_chain_id": "evmos_9001-2", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "IBCX", - "name": "IBCX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ibcx.svg", - "decimals": 6, - "coingecko_id": "ibc-index", - "recommended_symbol": "IBCX" + "is_svm": false, + "symbol": "EVMOS", + "name": "EVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", + "decimals": 18, + "description": "Evmos Staking Coin", + "coingecko_id": "evmos", + "recommended_symbol": "EVMOS" }, { - "denom": "ibc/8777F3C6E49CA66F9779ABA1749C12E032C2AC437F151F6DC74AB8C1A240DCFD", + "denom": "ibc/563C6CB7E0423BE8B9FD1DAB9EAC201A6C2413D96F73618240B114CE4896734C", "chain_id": "stride-1", - "origin_denom": "untrn", - "origin_chain_id": "neutron-1", - "trace": "transfer/channel-123", + "origin_denom": "uscrt", + "origin_chain_id": "secret-4", + "trace": "transfer/channel-40", "is_cw20": false, "is_evm": false, - "symbol": "NTRN", - "name": "NTRN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "is_svm": false, + "symbol": "SCRT", + "name": "SCRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", "decimals": 6, - "coingecko_id": "neutron-3", - "recommended_symbol": "NTRN" + "coingecko_id": "secret", + "recommended_symbol": "SCRT" }, { "denom": "ibc/B86EFF6D227E3E33D7E3B5E65D0C1BB5BD79CCB56D35A9D824F0DD5D52CA43BA", @@ -35960,6 +43262,7 @@ "trace": "transfer/channel-150", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SOMM", "name": "SOMM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", @@ -35976,6 +43279,7 @@ "trace": "transfer/channel-162", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "TIA", "name": "TIA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", @@ -35985,189 +43289,228 @@ "recommended_symbol": "TIA" }, { - "denom": "ibc/33B47BAFB13393321709116BB1E0B968D655ABCB68EC8D254EAC957F740C6415", + "denom": "ibc/561C70B20188A047BFDE6F9946BDDC5D8AC172B9BE04FF868DFABF819E5A9CCE", "chain_id": "stride-1", - "origin_denom": "uxprt", - "origin_chain_id": "core-1", - "trace": "transfer/channel-53", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-160", "is_cw20": false, "is_evm": false, - "symbol": "XPRT", - "name": "XPRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", - "decimals": 6, - "coingecko_id": "persistence", - "recommended_symbol": "XPRT" + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "denom": "ibc/7EAE5BEF3A26B64AFBD89828AFDDB1DC7024A0276D22745201632C40E6E634D0", "chain_id": "stride-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-0", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-19", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "description": "Stargaze Staking Coin", + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { - "denom": "stuosmo", + "denom": "ibc/896A939C98D421F2E06EFC46E88E1DBBE10657CB1BE5018BF4D6FAC92FE758DB", "chain_id": "stride-1", - "origin_denom": "stuosmo", - "origin_chain_id": "stride-1", - "trace": "", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-69", "is_cw20": false, "is_evm": false, - "symbol": "stOSMO", - "name": "stOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "coingecko_id": "stride-staked-osmo", - "recommended_symbol": "stOSMO" + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { - "denom": "ustrd", + "denom": "ibc/C2D05DEC08BA1A9153C34ABED5F99818A935E1A2A9E86473301000511C0A75C9", "chain_id": "stride-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-134", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" + }, + { + "denom": "ibc/C50BF43196B699C78D982924B4335F187B1971D05694B32A8C1D3C3661D5A382", + "chain_id": "stride-1", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-196", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" + }, + { + "denom": "ibc/1E9EFD936CD9A42F297483CC08E79C8080E29558825804424D3928A53D35B57D", + "chain_id": "stride-1", + "origin_denom": "factory/osmo1xqw2sl9zk8a6pch0csaw78n4swg5ws8t62wc5qta4gnjxfqg6v2qcs243k/stuibcx", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-5", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stIBCX", + "name": "stIBCX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/stibcx.png", "decimals": 6, - "description": "The native token of Stride", - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "recommended_symbol": "stIBCX" }, { - "denom": "ibc/EB66980014602E6BD50A1CB9FFB8FA694DC3EC10A48D2C1C649D732954F88D4A", + "denom": "stuatom", "chain_id": "stride-1", - "origin_denom": "ucmdx", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-49", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CMDX", - "name": "CMDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", "decimals": 6, - "description": "Comdex Staking Coin", - "coingecko_id": "comdex", - "recommended_symbol": "CMDX" + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "stadydx", + "denom": "stuosmo", "chain_id": "stride-1", - "origin_denom": "stadydx", + "origin_denom": "stuosmo", "origin_chain_id": "stride-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stDYDX", - "name": "stDYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", - "decimals": 18, - "description": "Stride's liquid staked DYDX", - "coingecko_id": "stride-staked-dydx", - "recommended_symbol": "stDYDX" + "is_svm": false, + "symbol": "stOSMO", + "name": "stOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", + "decimals": 6, + "coingecko_id": "stride-staked-osmo", + "recommended_symbol": "stOSMO" }, { - "denom": "stujuno", + "denom": "stusomm", "chain_id": "stride-1", - "origin_denom": "stujuno", + "origin_denom": "stusomm", "origin_chain_id": "stride-1", "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stJUNO", - "name": "stJUNO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", + "is_svm": false, + "symbol": "stSOMM", + "name": "stSOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png", "decimals": 6, - "coingecko_id": "stride-staked-juno", - "recommended_symbol": "stJUNO" + "coingecko_id": "stride-staked-sommelier", + "recommended_symbol": "stSOMM" }, { - "denom": "ibc/4B322204B4F59D770680FE4D7A565DDC3F37BFF035474B717476C66A4F83DD72", + "denom": "ustrd", "chain_id": "stride-1", - "origin_denom": "aevmos", - "origin_chain_id": "evmos_9001-2", - "trace": "transfer/channel-9", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "EVMOS", - "name": "EVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "decimals": 18, - "description": "Evmos Staking Coin", - "coingecko_id": "evmos", - "recommended_symbol": "EVMOS" + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "decimals": 6, + "description": "The native token of Stride", + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { - "denom": "ibc/563C6CB7E0423BE8B9FD1DAB9EAC201A6C2413D96F73618240B114CE4896734C", + "denom": "ibc/33B47BAFB13393321709116BB1E0B968D655ABCB68EC8D254EAC957F740C6415", "chain_id": "stride-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-40", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-53", "is_cw20": false, "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", "decimals": 6, - "coingecko_id": "secret", - "recommended_symbol": "SCRT" + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", + "denom": "ibc/E0C66F1D94163602FF5A3799290350E85BF40F8E2C7A7BA94B9DF694A564158E", "chain_id": "stride-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-5", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-148", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { - "denom": "ibc/0800E93C5EE14FF588D3F5C7C25A91E1E7528CB48536A0E5B7232E502CFA66FB", + "denom": "ibc/8777F3C6E49CA66F9779ABA1749C12E032C2AC437F151F6DC74AB8C1A240DCFD", "chain_id": "stride-1", - "origin_denom": "eth.1.2.942d87", - "origin_chain_id": "carbon-1", - "trace": "transfer/channel-47", + "origin_denom": "untrn", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-123", "is_cw20": false, "is_evm": false, - "symbol": "ETH", - "name": "ETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth.svg", - "decimals": 18, - "recommended_symbol": "ETH.carbon" + "is_svm": false, + "symbol": "NTRN", + "name": "NTRN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png", + "decimals": 6, + "coingecko_id": "neutron-3", + "recommended_symbol": "NTRN" }, { - "denom": "ibc/7E15C9B719E27B9EC2C6049D3A7DC4E4BC3DCE82FC97653ED6163419C3F9EBF8", + "denom": "ibc/A66EAE3A65942EA82C9300E8B70972A0E4282EF3A140BDCB72A778F80580ACAB", "chain_id": "stride-1", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-49", + "origin_denom": "factory/neutron154gg0wtm2v4h9ur8xg32ep64e8ef0g5twlsgvfeajqwghdryvyqsqhgk8e/APOLLO", + "origin_chain_id": "neutron-1", + "trace": "transfer/channel-123", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "APOLLO", + "name": "APOLLO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/apollo.svg", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "recommended_symbol": "APOLLO" }, { "denom": "ibc/A7454562FF29FE068F42F9DE4805ABEF54F599D1720B345D6518D9B5C64EA6D2", @@ -36177,6 +43520,7 @@ "trace": "transfer/channel-6", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "INJ", "name": "INJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", @@ -36186,65 +43530,85 @@ "recommended_symbol": "INJ" }, { - "denom": "ibc/E61BCB1126F42A2ED73B4CEA2221C9635BC2102F0417543C38071779F991942E", + "denom": "stadym", "chain_id": "stride-1", - "origin_denom": "uluna", - "origin_chain_id": "phoenix-1", - "trace": "transfer/channel-52", + "origin_denom": "stadym", + "origin_chain_id": "stride-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "LUNA", - "name": "LUNA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "decimals": 6, - "description": "Terra Staking Coin", - "coingecko_id": "terra-luna-2", - "recommended_symbol": "LUNA" + "is_svm": false, + "symbol": "stDYM", + "name": "stDYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdym.png", + "decimals": 18, + "description": "Stride's liquid staked DYM", + "coingecko_id": "stride-staked-dym", + "recommended_symbol": "stDYM" }, { - "denom": "ibc/E0C66F1D94163602FF5A3799290350E85BF40F8E2C7A7BA94B9DF694A564158E", + "denom": "staevmos", "chain_id": "stride-1", - "origin_denom": "ubld", + "origin_denom": "staevmos", + "origin_chain_id": "stride-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "stEVMOS", + "name": "stEVMOS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "decimals": 18, + "coingecko_id": "stride-staked-evmos", + "recommended_symbol": "stEVMOS" + }, + { + "denom": "ibc/38973850FD27F86A3453C37C11FF0C4A2BC4C0A24E29446EA7D043D014148470", + "chain_id": "stride-1", + "origin_denom": "uist", "origin_chain_id": "agoric-3", "trace": "transfer/channel-148", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" }, { - "denom": "ibc/CF614653FB1F20B4C8E5807B0BA61FDB3299CFF9BFD7EE1E49AE85EDD2962166", + "denom": "ibc/7E15C9B719E27B9EC2C6049D3A7DC4E4BC3DCE82FC97653ED6163419C3F9EBF8", "chain_id": "stride-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-8", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "coingecko_id": "composite", + "recommended_symbol": "CMST" }, { - "denom": "ibc/E20A61488C0F041E78B096BB3BC83571FB41F8614109B7343E63ABE2CC556156", + "denom": "ibc/91AC6268E78DF87CFB9CAB34BD162035D76E1F9E02D2D92EB80915B5D08ECA87", "chain_id": "stride-1", - "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-8", + "origin_denom": "uharbor", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, - "symbol": "NSTK", - "name": "NSTK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", + "is_svm": false, + "symbol": "HARBOR", + "name": "HARBOR", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", "decimals": 6, - "coingecko_id": "unstake-fi", - "recommended_symbol": "NSTK" + "coingecko_id": "harbor-2", + "recommended_symbol": "HARBOR" }, { "denom": "ibc/DA356E369C3E5CF6A9F1DCD99CE8ED55FBD595E676A5CF033CE784C060492D5A", @@ -36254,6 +43618,7 @@ "trace": "transfer/channel-24", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "JUNO", "name": "JUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", @@ -36263,114 +43628,187 @@ "recommended_symbol": "JUNO" }, { - "denom": "ibc/EF4222BF77971A75F4E655E2AD2AFDDC520CE428EF938A1C91157E9DFBFF32A3", + "denom": "ibc/E20A61488C0F041E78B096BB3BC83571FB41F8614109B7343E63ABE2CC556156", "chain_id": "stride-1", - "origin_denom": "ukuji", + "origin_denom": "factory/kujira1aaudpfr9y23lt9d45hrmskphpdfaq9ajxd3ukh/unstk", "origin_chain_id": "kaiyo-1", "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", + "is_svm": false, + "symbol": "NSTK", + "name": "NSTK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/nstk.svg", "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "coingecko_id": "unstake-fi", + "recommended_symbol": "NSTK" }, { - "denom": "staevmos", + "denom": "ibc/5D9C9AD9C09F2D78F99DE11C7F7A86934A6034E7CA777B954A6FC16F31B0B015", "chain_id": "stride-1", - "origin_denom": "staevmos", - "origin_chain_id": "stride-1", - "trace": "", + "origin_denom": "swth", + "origin_chain_id": "carbon-1", + "trace": "transfer/channel-47", "is_cw20": false, "is_evm": false, - "symbol": "stEVMOS", - "name": "stEVMOS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stevmos.png", + "is_svm": false, + "symbol": "SWTH", + "name": "SWTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", + "decimals": 8, + "coingecko_id": "switcheo", + "recommended_symbol": "SWTH" + }, + { + "denom": "ibc/5FA12AB6B23F7FC00BFBA3B26E320C91226BF88CC17DA5E088013252C91AEAD1", + "chain_id": "stride-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-69", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/CF614653FB1F20B4C8E5807B0BA61FDB3299CFF9BFD7EE1E49AE85EDD2962166", + "chain_id": "stride-1", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "decimals": 6, + "coingecko_id": "usk", + "recommended_symbol": "USK" + }, + { + "denom": "ibc/E1C22332C083574F3418481359733BA8887D171E76C80AD9237422AEABB66018", + "chain_id": "stride-1", + "origin_denom": "adym", + "origin_chain_id": "dymension_1100-1", + "trace": "transfer/channel-197", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DYM", + "name": "DYM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", "decimals": 18, - "coingecko_id": "stride-staked-evmos", - "recommended_symbol": "stEVMOS" + "coingecko_id": "dymension", + "recommended_symbol": "DYM" }, { - "denom": "stuatom", + "denom": "ibc/E61BCB1126F42A2ED73B4CEA2221C9635BC2102F0417543C38071779F991942E", "chain_id": "stride-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "", + "origin_denom": "uluna", + "origin_chain_id": "phoenix-1", + "trace": "transfer/channel-52", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "LUNA", + "name": "LUNA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", "decimals": 6, - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "description": "Terra Staking Coin", + "coingecko_id": "terra-luna-2", + "recommended_symbol": "LUNA" }, { - "denom": "ibc/892B184DE49984FEA412E6BB8B9F2FA35E707E29DD5E9ADB515EB99B11E40837", + "denom": "ibc/EF4222BF77971A75F4E655E2AD2AFDDC520CE428EF938A1C91157E9DFBFF32A3", "chain_id": "stride-1", - "origin_denom": "ucre", - "origin_chain_id": "crescent-1", - "trace": "transfer/channel-51", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-8", "is_cw20": false, "is_evm": false, - "symbol": "CRE", - "name": "CRE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "coingecko_id": "crescent-network", - "recommended_symbol": "CRE" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { - "denom": "ibc/896A939C98D421F2E06EFC46E88E1DBBE10657CB1BE5018BF4D6FAC92FE758DB", + "denom": "stusaga", "chain_id": "stride-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-69", + "origin_denom": "stusaga", + "origin_chain_id": "stride-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "stSAGA", + "name": "stSAGA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsaga.png", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "description": "Stride's liquid staked SAGA", + "coingecko_id": "stride-staked-saga", + "recommended_symbol": "stSAGA" }, { - "denom": "ibc/91AC6268E78DF87CFB9CAB34BD162035D76E1F9E02D2D92EB80915B5D08ECA87", + "denom": "stustars", "chain_id": "stride-1", - "origin_denom": "uharbor", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-49", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "HARBOR", - "name": "HARBOR", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/harbor.png", + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", "decimals": 6, - "coingecko_id": "harbor-2", - "recommended_symbol": "HARBOR" + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" }, { - "denom": "ibc/6D1DCA8130B2C0406170DB9FC3B49DCFC62D210557171EA4156ADD028ED637B4", + "denom": "stutia", "chain_id": "stride-1", - "origin_denom": "acanto", - "origin_chain_id": "canto_7700-1", - "trace": "transfer/channel-74", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "CANTO", - "name": "CANTO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", - "decimals": 18, - "coingecko_id": "canto", - "recommended_symbol": "CANTO" + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "decimals": 6, + "description": "Stride's liquid staked TIA", + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" } ] }, "stride-internal-1": { "assets": [ + { + "denom": "ibc/1A7653323C1A9E267FF7BEBF40B3EEA8065E8F069F47F2493ABC3E0B621BF793", + "chain_id": "stride-internal-1", + "origin_denom": "utia", + "origin_chain_id": "mocha-4", + "trace": "transfer/channel-38", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/celestiatestnet/images/celestia.svg", + "decimals": 6, + "recommended_symbol": "TIA" + }, { "denom": "ustrd", "chain_id": "stride-internal-1", @@ -36379,6 +43817,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STRD", "name": "STRD", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", @@ -36391,20 +43830,21 @@ "teritori-1": { "assets": [ { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E", "chain_id": "teritori-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", "decimals": 6, - "description": "The native token of Osmosis", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "description": "The native staking and governance token of the Cosmos Hub.", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" }, { "denom": "ibc/448C3D2C125390A96C47CF11789EC2FA5FFF9D24D842DAB9DD4075A16902E0E7", @@ -36414,6 +43854,7 @@ "trace": "transfer/channel-61", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "AXL", "name": "AXL", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", @@ -36422,20 +43863,21 @@ "recommended_symbol": "AXL" }, { - "denom": "utori", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "teritori-1", - "origin_denom": "utori", - "origin_chain_id": "teritori-1", - "trace": "", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "TORI", - "name": "TORI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", "decimals": 6, - "description": "The native token of Teritori", - "coingecko_id": "teritori", - "recommended_symbol": "TORI" + "description": "The native token of Osmosis", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" }, { "denom": "ibc/FE98AAD68F02F03565E9FA39A5E627946699B2B07115889ED812D8BA639576A9", @@ -36445,46 +43887,15 @@ "trace": "transfer/channel-62", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", "decimals": 6, - "description": "Native Coin", + "description": "USD Coin", "coingecko_id": "usd-coin", "recommended_symbol": "USDC" }, - { - "denom": "ibc/A670D9568B3E399316EEDE40C1181B7AA4BD0695F0B37513CE9B95B977DFC12E", - "chain_id": "teritori-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-10", - "is_cw20": false, - "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "The native staking and governance token of the Cosmos Hub.", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" - }, - { - "denom": "ibc/F3F6BDEE1A79664B169D742651107BF4E03FA67E931452E27380B75F5917B7E9", - "chain_id": "teritori-1", - "origin_denom": "uscrt", - "origin_chain_id": "secret-4", - "trace": "transfer/channel-63", - "is_cw20": false, - "is_evm": false, - "symbol": "SCRT", - "name": "SCRT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "decimals": 6, - "description": "Secret Staking Coin", - "coingecko_id": "secret", - "recommended_symbol": "SCRT" - }, { "denom": "ibc/1FECA3491D88F4AD24DE0948ED96718CA6D93F6730CEE7708E621B953594BB5E", "chain_id": "teritori-1", @@ -36493,47 +43904,52 @@ "trace": "transfer/channel-30", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "KUJI", "name": "KUJI", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, + "description": "The native staking and governance token of the Kujira chain.", "coingecko_id": "kujira", "recommended_symbol": "KUJI" + }, + { + "denom": "utori", + "chain_id": "teritori-1", + "origin_denom": "utori", + "origin_chain_id": "teritori-1", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "TORI", + "name": "TORI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/utori.png", + "decimals": 6, + "description": "The native token of Teritori", + "coingecko_id": "teritori", + "recommended_symbol": "TORI" } ] }, "umee-1": { "assets": [ { - "denom": "ibc/C86651B4D30C1739BF8B061E36F4473A0C9D60380B52D01E56A6874037A5D060", - "chain_id": "umee-1", - "origin_denom": "dai-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-33", - "is_cw20": false, - "is_evm": false, - "symbol": "axlDAI", - "name": "axlDAI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", - "decimals": 18, - "coingecko_id": "dai", - "recommended_symbol": "DAI.axl" - }, - { - "denom": "ibc/C8B3026C2844D204F3A49F91058DC947F01F2FC36AFF17850FFC8701504BDDEE", + "denom": "uumee", "chain_id": "umee-1", - "origin_denom": "stuatom", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-34", + "origin_denom": "uumee", + "origin_chain_id": "umee-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "stATOM", - "name": "stATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "is_svm": false, + "symbol": "UMEE", + "name": "UMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", "decimals": 6, - "description": "Stride Staked Atom", - "coingecko_id": "stride-staked-atom", - "recommended_symbol": "stATOM" + "description": "The native token of Umee", + "coingecko_id": "umee", + "recommended_symbol": "UMEE" }, { "denom": "ibc/49788C29CD84E08D25CA7BE960BC1F61E88FEFC6333F58557D236D693398466A", @@ -36543,6 +43959,7 @@ "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "axlUSDC", "name": "axlUSDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", @@ -36551,126 +43968,131 @@ "recommended_symbol": "USDC.axl" }, { - "denom": "ibc/99977EB64574057069C9F009048FA6DEBD537FF355BDBC7141FA33A33B36B5C2", + "denom": "ibc/F0D60708ACC09F2BDFF531D17477AE5F218220943A4792256DEF3F836E875D27", "chain_id": "umee-1", - "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-9", + "origin_denom": "uqosmo", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-53", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "is_svm": false, + "symbol": "qOSMO", + "name": "qOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC.grv" + "recommended_symbol": "qOSMO" }, { - "denom": "ibc/D1CB2804AA5EB64D503F28E8DF3552F8A4D642802B66EFE50DE432B755F37AE1", + "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", "chain_id": "umee-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-33", + "origin_denom": "uion", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "ION", + "name": "ION", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", "decimals": 6, - "description": "Axelar Staking Coin", - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "description": "Native Coin", + "coingecko_id": "ion", + "recommended_symbol": "ION" }, { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "denom": "ibc/22E87111ECA3808AFA83FC5639C564230EA62A768772C357A70CF687AB55C53A", "chain_id": "umee-1", - "origin_denom": "uosmo", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "stadydx", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "OSMO", - "name": "OSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", - "decimals": 6, - "description": "Osmosis Staking Coin", - "coingecko_id": "osmosis", - "recommended_symbol": "OSMO" + "is_svm": false, + "symbol": "stDYDX", + "name": "stDYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stdydx.png", + "decimals": 18, + "coingecko_id": "stride-staked-dydx", + "recommended_symbol": "stDYDX" }, { - "denom": "ibc/FF8F3D7EDF7581902A75410BC4D151E299D7772E9A9680B01EEA18C28C128D25", + "denom": "ibc/454725EA4029BAA99C293904336DE9A4B84E2BF7D83B9C56EE6B03E8A65FB5A1", "chain_id": "umee-1", - "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-105", + "origin_denom": "uqatom", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-53", "is_cw20": false, "is_evm": false, - "symbol": "USK", - "name": "USK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", + "is_svm": false, + "symbol": "qATOM", + "name": "qATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", "decimals": 6, - "coingecko_id": "usk", - "recommended_symbol": "USK" + "recommended_symbol": "qATOM" }, { - "denom": "ibc/3A5B71F2AA11D24F9688A10D4279CE71560489D7A695364FC361EC6E09D02889", + "denom": "ibc/589CDC453BD6E119A3D4662B943DAEF010D4F543FEA7FC83619D0E630C903488", "chain_id": "umee-1", - "origin_denom": "ugraviton", - "origin_chain_id": "gravity-bridge-3", - "trace": "transfer/channel-9", + "origin_denom": "stutia", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "GRAV", - "name": "GRAV", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", + "is_svm": false, + "symbol": "stTIA", + "name": "stTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", "decimals": 6, - "coingecko_id": "graviton", - "recommended_symbol": "GRAV" + "coingecko_id": "stride-staked-tia", + "recommended_symbol": "stTIA" }, { - "denom": "ibc/6752D9C290CBD308B71B693677245258BBA2C7AC92D8C381829B5DE6F16CC5F2", + "denom": "ibc/CC30F2A979C7D1BB907582C1B4DBDBBA89E82AA8C0EFCA099AE556EB37D83AAB", "chain_id": "umee-1", - "origin_denom": "shib-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-33", + "origin_denom": "uxprt", + "origin_chain_id": "core-1", + "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, - "symbol": "SHIB", - "name": "SHIB", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", - "decimals": 18, - "coingecko_id": "shiba-inu", - "recommended_symbol": "SHIB.axl" + "is_svm": false, + "symbol": "XPRT", + "name": "XPRT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", + "decimals": 6, + "coingecko_id": "persistence", + "recommended_symbol": "XPRT" }, { - "denom": "ibc/16F0C7E49C2FE3A99E92A20DBCF4006B38ABC4E29F7F37829AD40F2C585BE835", + "denom": "ibc/D517FECD3F23C8CC604A532582CE85BE1F2B0F98F542194D4FEE6B721475415F", "chain_id": "umee-1", - "origin_denom": "uqregen", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-53", + "origin_denom": "stuumee", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "qREGEN", - "name": "qREGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "is_svm": false, + "symbol": "stUMEE", + "name": "stUMEE", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", "decimals": 6, - "recommended_symbol": "qREGEN" + "coingecko_id": "stride-staked-umee", + "recommended_symbol": "stUMEE" }, { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "ibc/DB589A0C82618E56E5C90B77578CCBDB921CFEC8E6F6CF46032C43C1B06F92B8", "chain_id": "umee-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-1", + "origin_denom": "inj", + "origin_chain_id": "injective-1", + "trace": "transfer/channel-116", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "decimals": 6, - "description": "Cosmos Staking Coin", - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "is_svm": false, + "symbol": "INJ", + "name": "INJ", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "decimals": 18, + "coingecko_id": "injective-protocol", + "recommended_symbol": "INJ" }, { "denom": "ibc/E3D3CF0E340C1AB643F0294FB50CAAE605E7630B24473CF8CD44F97651472F0B", @@ -36680,6 +44102,7 @@ "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "rETH", "name": "rETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/reth.png", @@ -36688,93 +44111,181 @@ "recommended_symbol": "rETH.axl" }, { - "denom": "ibc/F0D60708ACC09F2BDFF531D17477AE5F218220943A4792256DEF3F836E875D27", + "denom": "ibc/FAEC929814E0D916C019EB4B8BE58360EC3B6AB6A2B3185CB1EA0B54832DEE68", "chain_id": "umee-1", - "origin_denom": "uqosmo", + "origin_denom": "wmatic-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-33", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlWMATIC", + "name": "axlWMATIC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", + "decimals": 18, + "coingecko_id": "wmatic", + "recommended_symbol": "WMATIC.axl" + }, + { + "denom": "ibc/153B97FE395140EAAA2D7CAC537AF1804AEC5F0595CBC5F1603094018D158C0C", + "chain_id": "umee-1", + "origin_denom": "wbtc-satoshi", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-33", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlWBTC", + "name": "axlWBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", + "decimals": 8, + "coingecko_id": "axlwbtc", + "recommended_symbol": "WBTC.axl" + }, + { + "denom": "ibc/223420B0E8CF9CC47BCAB816AB3A20AE162EED27C1177F4B2BC270C83E11AD8D", + "chain_id": "umee-1", + "origin_denom": "uusdt", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-33", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlUSDT", + "name": "axlUSDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "decimals": 6, + "coingecko_id": "axelar-usdt", + "recommended_symbol": "USDT.axl" + }, + { + "denom": "ibc/31FA0BA043524F2EFBC9AB0539C43708B8FC549E4800E02D103DDCECAC5FF40C", + "chain_id": "umee-1", + "origin_denom": "ucmst", + "origin_chain_id": "comdex-1", + "trace": "transfer/channel-91", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "CMST", + "name": "CMST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "decimals": 6, + "coingecko_id": "composite", + "recommended_symbol": "CMST" + }, + { + "denom": "ibc/4C7AA87EAE1FF04B790027ACB9077DF63895F7B780E3F6B050F71B732F44557D", + "chain_id": "umee-1", + "origin_denom": "uqck", "origin_chain_id": "quicksilver-2", "trace": "transfer/channel-53", "is_cw20": false, "is_evm": false, - "symbol": "qOSMO", - "name": "qOSMO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qosmo.png", + "is_svm": false, + "symbol": "QCK", + "name": "QCK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", "decimals": 6, - "recommended_symbol": "qOSMO" + "coingecko_id": "quicksilver", + "recommended_symbol": "QCK" }, { - "denom": "ibc/F21122C4E4E6A0DBAFA273F0A6A13D423E31E731318243D363C2BC638BD7E5B6", + "denom": "ibc/92BC8E5C50E6664B4DA748B62C1FFBE321967E1F8868EE03B005977F9AA7C0B8", "chain_id": "umee-1", - "origin_denom": "ppica", - "origin_chain_id": "centauri-1", - "trace": "transfer/channel-99", + "origin_denom": "uusdc", + "origin_chain_id": "noble-1", + "trace": "transfer/channel-120", "is_cw20": false, "is_evm": false, - "symbol": "PICA", - "name": "PICA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", - "decimals": 12, - "coingecko_id": "picasso", - "recommended_symbol": "PICA" + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "decimals": 6, + "description": "Native Coin", + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC" }, { - "denom": "ibc/FAEC929814E0D916C019EB4B8BE58360EC3B6AB6A2B3185CB1EA0B54832DEE68", + "denom": "ibc/A81D1B9E93070A920F6DC6680FB48F83645F165BB3597D87F1D6DD2EFB6677AF", "chain_id": "umee-1", - "origin_denom": "wmatic-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-33", + "origin_denom": "ukava", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "axlWMATIC", - "name": "axlWMATIC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polygon/images/wmatic.png", - "decimals": 18, - "coingecko_id": "wmatic", - "recommended_symbol": "WMATIC.axl" + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", + "decimals": 6, + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/135E6C9EBDC5C95301037EEB69F69D27219BD1E36ADA1B7CC4E078440DB42F61", + "denom": "ibc/4D0E7F150F4856ADF1FB74D6BC790E04C27C1544712BA62C0816F40159132D47", "chain_id": "umee-1", - "origin_denom": "aarch", - "origin_chain_id": "archway-1", - "trace": "transfer/channel-97", + "origin_denom": "basecro", + "origin_chain_id": "crypto-org-chain-mainnet-1", + "trace": "transfer/channel-100", "is_cw20": false, "is_evm": false, - "symbol": "ARCH", - "name": "ARCH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "decimals": 18, - "coingecko_id": "archway", - "recommended_symbol": "ARCH" + "is_svm": false, + "symbol": "CRO", + "name": "CRO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", + "decimals": 8, + "coingecko_id": "crypto-com-chain", + "recommended_symbol": "CRO" + }, + { + "denom": "ibc/F21122C4E4E6A0DBAFA273F0A6A13D423E31E731318243D363C2BC638BD7E5B6", + "chain_id": "umee-1", + "origin_denom": "ppica", + "origin_chain_id": "centauri-1", + "trace": "transfer/channel-99", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PICA", + "name": "PICA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/composable/images/pica.svg", + "decimals": 12, + "coingecko_id": "picasso", + "recommended_symbol": "PICA" }, { - "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", + "denom": "ibc/6A4CEDCEA40B587A4BCF7FDFB1D5A13D13F8A807A22A4E759EA702640CE086B0", "chain_id": "umee-1", - "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "adydx", + "origin_chain_id": "dydx-mainnet-1", + "trace": "transfer/channel-118", "is_cw20": false, "is_evm": false, - "symbol": "milkTIA", - "name": "milkTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", - "decimals": 6, - "coingecko_id": "milkyway-staked-tia", - "recommended_symbol": "milkTIA" + "is_svm": false, + "symbol": "DYDX", + "name": "DYDX", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", + "decimals": 18, + "coingecko_id": "dydx", + "recommended_symbol": "DYDX" }, { - "denom": "ibc/223420B0E8CF9CC47BCAB816AB3A20AE162EED27C1177F4B2BC270C83E11AD8D", + "denom": "ibc/F7F4D0035FB3F10A244A0B48990D4891793188B5D59297AE2C0293291CB1B340", "chain_id": "umee-1", - "origin_denom": "uusdt", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-33", + "origin_denom": "eco.uC.NCT", + "origin_chain_id": "regen-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "axlUSDT", - "name": "axlUSDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png", + "is_svm": false, + "symbol": "NCT", + "name": "NCT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", "decimals": 6, - "coingecko_id": "axelar-usdt", - "recommended_symbol": "USDT.axl" + "coingecko_id": "toucan-protocol-nature-carbon-tonne", + "recommended_symbol": "NCT" }, { "denom": "ibc/31946162F3E898B9E3A21792DD2AC740F2E82E7B92769BDF239C3DDA1726BB9F", @@ -36784,6 +44295,7 @@ "trace": "transfer/channel-53", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "qSTARS", "name": "qSTARS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qstars.png", @@ -36791,49 +44303,36 @@ "recommended_symbol": "qSTARS" }, { - "denom": "ibc/69860B527570A33015804BD2BF9BBB23B58A87556B108028E25EA9126E60D3D1", + "denom": "ibc/3AEB88073FA7797522985F8188A7742055CDCE532573B62715E85188C8B5856E", "chain_id": "umee-1", - "origin_denom": "utia", - "origin_chain_id": "celestia", - "trace": "transfer/channel-119", + "origin_denom": "uregen", + "origin_chain_id": "regen-1", + "trace": "transfer/channel-107", "is_cw20": false, "is_evm": false, - "symbol": "TIA", - "name": "TIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", + "is_svm": false, + "symbol": "REGEN", + "name": "REGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", "decimals": 6, - "coingecko_id": "celestia", - "recommended_symbol": "TIA" + "coingecko_id": "regen", + "recommended_symbol": "REGEN" }, { - "denom": "ibc/92BC8E5C50E6664B4DA748B62C1FFBE321967E1F8868EE03B005977F9AA7C0B8", + "denom": "ibc/547682EC9794715EAA33D121DD737F40F3E67A7A19A12AEF0C89EA360F44C201", "chain_id": "umee-1", - "origin_denom": "uusdc", - "origin_chain_id": "noble-1", - "trace": "transfer/channel-120", + "origin_denom": "ustrd", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", + "is_svm": false, + "symbol": "STRD", + "name": "STRD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", "decimals": 6, - "coingecko_id": "usd-coin", - "recommended_symbol": "USDC" - }, - { - "denom": "ibc/6A4CEDCEA40B587A4BCF7FDFB1D5A13D13F8A807A22A4E759EA702640CE086B0", - "chain_id": "umee-1", - "origin_denom": "adydx", - "origin_chain_id": "dydx-mainnet-1", - "trace": "transfer/channel-118", - "is_cw20": false, - "is_evm": false, - "symbol": "DYDX", - "name": "DYDX", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "decimals": 18, - "coingecko_id": "dydx", - "recommended_symbol": "DYDX" + "coingecko_id": "stride", + "recommended_symbol": "STRD" }, { "denom": "ibc/6B49A789937D4E50BF01F0F50DDEDF5C1103EDF01306B7021BDF23BDE65D99BA", @@ -36843,6 +44342,7 @@ "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stOSMO", "name": "stOSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stosmo.png", @@ -36851,6 +44351,22 @@ "coingecko_id": "stride-staked-osmo", "recommended_symbol": "stOSMO" }, + { + "denom": "ibc/8B2AA134FCBB2A1A458AB13C02C0CCBC788EB1AB7C0E50F0BF6A6BA95D871653", + "chain_id": "umee-1", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-124", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SEI", + "name": "SEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "decimals": 6, + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" + }, { "denom": "ibc/09C1ACBE292A5DF3DEC77B56DB4B12813263178DD86CDB6AC754036E9578E7B4", "chain_id": "umee-1", @@ -36859,6 +44375,7 @@ "trace": "transfer/channel-106", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "SOMM", "name": "SOMM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", @@ -36867,93 +44384,99 @@ "recommended_symbol": "SOMM" }, { - "denom": "ibc/153B97FE395140EAAA2D7CAC537AF1804AEC5F0595CBC5F1603094018D158C0C", + "denom": "ibc/16065EE5282C5217685C8F084FC44864C25C706AC37356B0D62811D50B96920F", "chain_id": "umee-1", - "origin_denom": "wbtc-satoshi", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-33", + "origin_denom": "factory/osmo1f5vfcph2dvfeqcqkhetwv75fda69z7e5c2dldm3kvgj23crkv6wqcn47a0/umilkTIA", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "axlWBTC", - "name": "axlWBTC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png", - "decimals": 8, - "coingecko_id": "axlwbtc", - "recommended_symbol": "WBTC.axl" + "is_svm": false, + "symbol": "milkTIA", + "name": "milkTIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/milktia.png", + "decimals": 6, + "coingecko_id": "milkyway-staked-tia", + "recommended_symbol": "milkTIA" }, { - "denom": "ibc/4F7A8F699E3B4E17E2B725CE1000557B2E3E5DAF091212EAAAD90ADD0F4F0BA6", + "denom": "ibc/16F0C7E49C2FE3A99E92A20DBCF4006B38ABC4E29F7F37829AD40F2C585BE835", "chain_id": "umee-1", - "origin_denom": "wsteth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-33", + "origin_denom": "uqregen", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-53", "is_cw20": false, "is_evm": false, - "symbol": "wstETH", - "name": "wstETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", - "decimals": 18, - "coingecko_id": "wrapped-steth", - "recommended_symbol": "wstETH.axl" + "is_svm": false, + "symbol": "qREGEN", + "name": "qREGEN", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qregen.png", + "decimals": 6, + "recommended_symbol": "qREGEN" }, { - "denom": "ibc/589CDC453BD6E119A3D4662B943DAEF010D4F543FEA7FC83619D0E630C903488", + "denom": "ibc/3A5B71F2AA11D24F9688A10D4279CE71560489D7A695364FC361EC6E09D02889", "chain_id": "umee-1", - "origin_denom": "stutia", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-34", + "origin_denom": "ugraviton", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "stTIA", - "name": "stTIA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/sttia.png", + "is_svm": false, + "symbol": "GRAV", + "name": "GRAV", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", "decimals": 6, - "coingecko_id": "stride-staked-tia", - "recommended_symbol": "stTIA" + "coingecko_id": "graviton", + "recommended_symbol": "GRAV" }, { - "denom": "ibc/AB2652E28C9961D13CFF2EC5F53C7E2965C8D0CF37A33CC97D8EEF6212F315C8", + "denom": "ibc/4F7A8F699E3B4E17E2B725CE1000557B2E3E5DAF091212EAAAD90ADD0F4F0BA6", "chain_id": "umee-1", - "origin_denom": "dot-planck", + "origin_denom": "wsteth-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "axlDOT", - "name": "axlDOT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", - "decimals": 10, - "coingecko_id": "xcdot", - "recommended_symbol": "DOT.axl" + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 18, + "coingecko_id": "wrapped-steth", + "recommended_symbol": "wstETH.axl" }, { - "denom": "ibc/8BCABEB3A863254EFE3452F3397062ECC0E483AE0615D855C43133EB46E3E1BE", + "denom": "ibc/7BAC848EFAE1492E13881B04DE965C1F577020ECDF897B4D7B8CF8A08220DF6F", "chain_id": "umee-1", - "origin_denom": "cbeth-wei", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-33", + "origin_denom": "stustars", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "cbETH", - "name": "cbETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", - "decimals": 18, - "coingecko_id": "coinbase-wrapped-staked-eth", - "recommended_symbol": "cbETH.axl" + "is_svm": false, + "symbol": "stSTARS", + "name": "stSTARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", + "decimals": 6, + "coingecko_id": "stride-staked-stars", + "recommended_symbol": "stSTARS" }, { - "denom": "ibc/454725EA4029BAA99C293904336DE9A4B84E2BF7D83B9C56EE6B03E8A65FB5A1", + "denom": "ibc/919054ED8A2CBE8182591C2BA56DDDB73D4BBA65711858736CE9880FBC6EADBF", "chain_id": "umee-1", - "origin_denom": "uqatom", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-53", + "origin_denom": "ukuji", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-105", "is_cw20": false, "is_evm": false, - "symbol": "qATOM", - "name": "qATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qatom.png", + "is_svm": false, + "symbol": "KUJI", + "name": "KUJI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", "decimals": 6, - "recommended_symbol": "qATOM" + "coingecko_id": "kujira", + "recommended_symbol": "KUJI" }, { "denom": "ibc/A05909C8EEE180BAECC46D91CB29229204C35100F3BD8F0C1F6FF5D72A741FB6", @@ -36963,6 +44486,7 @@ "trace": "transfer/channel-51", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stkATOM", "name": "stkATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/stkatom.png", @@ -36971,139 +44495,132 @@ "recommended_symbol": "stkATOM" }, { - "denom": "ibc/F7F4D0035FB3F10A244A0B48990D4891793188B5D59297AE2C0293291CB1B340", - "chain_id": "umee-1", - "origin_denom": "eco.uC.NCT", - "origin_chain_id": "regen-1", - "trace": "transfer/channel-107", - "is_cw20": false, - "is_evm": false, - "symbol": "NCT", - "name": "NCT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/nct.png", - "decimals": 6, - "coingecko_id": "toucan-protocol-nature-carbon-tonne", - "recommended_symbol": "NCT" - }, - { - "denom": "uumee", + "denom": "ibc/AB2652E28C9961D13CFF2EC5F53C7E2965C8D0CF37A33CC97D8EEF6212F315C8", "chain_id": "umee-1", - "origin_denom": "uumee", - "origin_chain_id": "umee-1", - "trace": "", + "origin_denom": "dot-planck", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "UMEE", - "name": "UMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", - "decimals": 6, - "description": "The native token of Umee", - "coingecko_id": "umee", - "recommended_symbol": "UMEE" + "is_svm": false, + "symbol": "axlDOT", + "name": "axlDOT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/polkadot/images/dot.png", + "decimals": 10, + "coingecko_id": "xcdot", + "recommended_symbol": "DOT.axl" }, { - "denom": "ibc/0B1D3A663E6D41C7B1CFC78DB41C829A3B8329D396B47737445AFF5E0E9DA125", + "denom": "ibc/99977EB64574057069C9F009048FA6DEBD537FF355BDBC7141FA33A33B36B5C2", "chain_id": "umee-1", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-48", + "origin_denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", + "origin_chain_id": "gravity-bridge-3", + "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" + "coingecko_id": "usd-coin", + "recommended_symbol": "USDC.grv" }, { - "denom": "ibc/3AEB88073FA7797522985F8188A7742055CDCE532573B62715E85188C8B5856E", + "denom": "ibc/ACF9DA139FE5BC8F95AC4A12B0B6D7710274DEDAC57284B881BEE1896F40642D", "chain_id": "umee-1", - "origin_denom": "uregen", - "origin_chain_id": "regen-1", - "trace": "transfer/channel-107", + "origin_denom": "uqsomm", + "origin_chain_id": "quicksilver-2", + "trace": "transfer/channel-53", "is_cw20": false, "is_evm": false, - "symbol": "REGEN", - "name": "REGEN", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "is_svm": false, + "symbol": "qSOMM", + "name": "qSOMM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", "decimals": 6, - "coingecko_id": "regen", - "recommended_symbol": "REGEN" + "recommended_symbol": "qSOMM" }, { - "denom": "ibc/3EFE4B646CE2EFCA3787ED861AFDC5A37BAEDB3B905A64BAE796D2366D1AB473", + "denom": "ibc/BA460328D9ABA27E643A924071FDB3836E4CE8084C6D2380F25EFAB85CF8EB11", "chain_id": "umee-1", - "origin_denom": "factory/migaloo1436kxs0w2es6xlqpp9rd35e3d0cjnw4sv8j3a7483sgks29jqwgshqdky4/ampWHALE", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-57", + "origin_denom": "uist", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-42", "is_cw20": false, "is_evm": false, - "symbol": "ampWHALE", - "name": "ampWHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/ampwhale.svg", + "is_svm": false, + "symbol": "IST", + "name": "IST", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", "decimals": 6, - "recommended_symbol": "ampWHALE" + "coingecko_id": "inter-stable-token", + "recommended_symbol": "IST" }, { - "denom": "ibc/DB589A0C82618E56E5C90B77578CCBDB921CFEC8E6F6CF46032C43C1B06F92B8", + "denom": "ibc/C86651B4D30C1739BF8B061E36F4473A0C9D60380B52D01E56A6874037A5D060", "chain_id": "umee-1", - "origin_denom": "inj", - "origin_chain_id": "injective-1", - "trace": "transfer/channel-116", + "origin_denom": "dai-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "INJ", - "name": "INJ", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", + "is_svm": false, + "symbol": "axlDAI", + "name": "axlDAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/dai.png", "decimals": 18, - "coingecko_id": "injective-protocol", - "recommended_symbol": "INJ" + "coingecko_id": "dai", + "recommended_symbol": "DAI.axl" }, { - "denom": "ibc/4D0E7F150F4856ADF1FB74D6BC790E04C27C1544712BA62C0816F40159132D47", + "denom": "ibc/C8B3026C2844D204F3A49F91058DC947F01F2FC36AFF17850FFC8701504BDDEE", "chain_id": "umee-1", - "origin_denom": "basecro", - "origin_chain_id": "crypto-org-chain-mainnet-1", - "trace": "transfer/channel-100", + "origin_denom": "stuatom", + "origin_chain_id": "stride-1", + "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, - "symbol": "CRO", - "name": "CRO", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg", - "decimals": 8, - "coingecko_id": "crypto-com-chain", - "recommended_symbol": "CRO" + "is_svm": false, + "symbol": "stATOM", + "name": "stATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/statom.png", + "decimals": 6, + "description": "Stride Staked Atom", + "coingecko_id": "stride-staked-atom", + "recommended_symbol": "stATOM" }, { - "denom": "ibc/547682EC9794715EAA33D121DD737F40F3E67A7A19A12AEF0C89EA360F44C201", + "denom": "ibc/84B9BEDF23F4A33A5DCB82C3D3B5348927418DBC6487EF8821DFEAFE06C77DF5", "chain_id": "umee-1", - "origin_denom": "ustrd", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-34", + "origin_denom": "erc20/tether/usdt", + "origin_chain_id": "kava_2222-10", + "trace": "transfer/channel-98", "is_cw20": false, "is_evm": false, - "symbol": "STRD", - "name": "STRD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/strd.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "stride", - "recommended_symbol": "STRD" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { - "denom": "ibc/63AA230956B5ED0E0433DF6714C6DB7D1B91974589A520C205C6436E56DF0A2C", + "denom": "ibc/885F4DFF6EE97AFDF25ECA50C6438003B004B8DA7F29FB3ADBD026BF29E6A5A9", "chain_id": "umee-1", - "origin_denom": "ubld", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-42", + "origin_denom": "ustars", + "origin_chain_id": "stargaze-1", + "trace": "transfer/channel-109", "is_cw20": false, "is_evm": false, - "symbol": "BLD", - "name": "BLD", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "is_svm": false, + "symbol": "STARS", + "name": "STARS", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", "decimals": 6, - "coingecko_id": "agoric", - "recommended_symbol": "BLD" + "coingecko_id": "stargaze", + "recommended_symbol": "STARS" }, { "denom": "ibc/AC1C2A51F65F31032B0FBF87D6D405D62727B3A548F0390B8C727FF8D8193DAD", @@ -37113,6 +44630,7 @@ "trace": "transfer/channel-49", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "CRE", "name": "CRE", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", @@ -37120,6 +44638,40 @@ "coingecko_id": "crescent-network", "recommended_symbol": "CRE" }, + { + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "chain_id": "umee-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-1", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "description": "Cosmos Staking Coin", + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, + { + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "chain_id": "umee-1", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "description": "Osmosis Staking Coin", + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, { "denom": "ibc/AC57F72F0C7666AD0EEC859364F11B77D0CA40C93960FA1499A5561CD32BBBDD", "chain_id": "umee-1", @@ -37128,6 +44680,7 @@ "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stJUNO", "name": "stJUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stjuno.png", @@ -37136,48 +44689,37 @@ "recommended_symbol": "stJUNO" }, { - "denom": "ibc/ACF9DA139FE5BC8F95AC4A12B0B6D7710274DEDAC57284B881BEE1896F40642D", - "chain_id": "umee-1", - "origin_denom": "uqsomm", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-53", - "is_cw20": false, - "is_evm": false, - "symbol": "qSOMM", - "name": "qSOMM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qsomm.png", - "decimals": 6, - "recommended_symbol": "qSOMM" - }, - { - "denom": "ibc/BA460328D9ABA27E643A924071FDB3836E4CE8084C6D2380F25EFAB85CF8EB11", + "denom": "ibc/CE99B4D2A172275C064595B750827855E04D5E068FB7C642C8469CA9B5DB0EE1", "chain_id": "umee-1", - "origin_denom": "uist", - "origin_chain_id": "agoric-3", - "trace": "transfer/channel-42", + "origin_denom": "factory/osmo1z0qrq605sjgcqpylfl4aa6s90x738j7m58wyatt0tdzflg2ha26q67k743/wbtc", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, - "symbol": "IST", - "name": "IST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/ist.png", - "decimals": 6, - "coingecko_id": "inter-stable-token", - "recommended_symbol": "IST" + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "coingecko_id": "wrapped-bitcoin", + "recommended_symbol": "WBTC" }, { - "denom": "ibc/31FA0BA043524F2EFBC9AB0539C43708B8FC549E4800E02D103DDCECAC5FF40C", + "denom": "ibc/D1CB2804AA5EB64D503F28E8DF3552F8A4D642802B66EFE50DE432B755F37AE1", "chain_id": "umee-1", - "origin_denom": "ucmst", - "origin_chain_id": "comdex-1", - "trace": "transfer/channel-91", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "CMST", - "name": "CMST", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmst.png", + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", "decimals": 6, - "coingecko_id": "composite", - "recommended_symbol": "CMST" + "description": "Axelar Staking Coin", + "coingecko_id": "axelar", + "recommended_symbol": "AXL" }, { "denom": "ibc/D5F6DF9E7E77C6B731A63B253C10B9AE636195D984A3A1558DD55759EA0B517F", @@ -37187,6 +44729,7 @@ "trace": "transfer/channel-95", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "MARS", "name": "MARS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-token.png", @@ -37195,49 +44738,84 @@ "recommended_symbol": "MARS" }, { - "denom": "ibc/4C7AA87EAE1FF04B790027ACB9077DF63895F7B780E3F6B050F71B732F44557D", + "denom": "ibc/FF8F3D7EDF7581902A75410BC4D151E299D7772E9A9680B01EEA18C28C128D25", "chain_id": "umee-1", - "origin_denom": "uqck", - "origin_chain_id": "quicksilver-2", - "trace": "transfer/channel-53", + "origin_denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "origin_chain_id": "kaiyo-1", + "trace": "transfer/channel-105", "is_cw20": false, "is_evm": false, - "symbol": "QCK", - "name": "QCK", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", + "is_svm": false, + "symbol": "USK", + "name": "USK", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/usk.png", "decimals": 6, - "coingecko_id": "quicksilver", - "recommended_symbol": "QCK" + "coingecko_id": "usk", + "recommended_symbol": "USK" + }, + { + "denom": "ibc/04CE51E6E02243E565AE676DD60336E48D455F8AAD0611FA0299A22FDAC448D6", + "chain_id": "umee-1", + "origin_denom": "weth-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-33", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "axlWETH", + "name": "axlWETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "decimals": 18, + "coingecko_id": "axlweth", + "recommended_symbol": "WETH.axl" + }, + { + "denom": "ibc/63AA230956B5ED0E0433DF6714C6DB7D1B91974589A520C205C6436E56DF0A2C", + "chain_id": "umee-1", + "origin_denom": "ubld", + "origin_chain_id": "agoric-3", + "trace": "transfer/channel-42", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "BLD", + "name": "BLD", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/bld.png", + "decimals": 6, + "coingecko_id": "agoric", + "recommended_symbol": "BLD" }, { - "denom": "ibc/7BAC848EFAE1492E13881B04DE965C1F577020ECDF897B4D7B8CF8A08220DF6F", + "denom": "ibc/6752D9C290CBD308B71B693677245258BBA2C7AC92D8C381829B5DE6F16CC5F2", "chain_id": "umee-1", - "origin_denom": "stustars", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-34", + "origin_denom": "shib-wei", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "stSTARS", - "name": "stSTARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/ststars.png", - "decimals": 6, - "coingecko_id": "stride-staked-stars", - "recommended_symbol": "stSTARS" + "is_svm": false, + "symbol": "SHIB", + "name": "SHIB", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/shib.svg", + "decimals": 18, + "coingecko_id": "shiba-inu", + "recommended_symbol": "SHIB.axl" }, { - "denom": "ibc/885F4DFF6EE97AFDF25ECA50C6438003B004B8DA7F29FB3ADBD026BF29E6A5A9", + "denom": "ibc/69860B527570A33015804BD2BF9BBB23B58A87556B108028E25EA9126E60D3D1", "chain_id": "umee-1", - "origin_denom": "ustars", - "origin_chain_id": "stargaze-1", - "trace": "transfer/channel-109", + "origin_denom": "utia", + "origin_chain_id": "celestia", + "trace": "transfer/channel-119", "is_cw20": false, "is_evm": false, - "symbol": "STARS", - "name": "STARS", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", + "is_svm": false, + "symbol": "TIA", + "name": "TIA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", "decimals": 6, - "coingecko_id": "stargaze", - "recommended_symbol": "STARS" + "coingecko_id": "celestia", + "recommended_symbol": "TIA" }, { "denom": "ibc/8184469200C5E667794375F5B0EC3B9ABB6FF79082941BF5D0F8FF59FEBA862E", @@ -37247,6 +44825,7 @@ "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "axlWBNB", "name": "axlWBNB", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/binancesmartchain/images/wbnb.png", @@ -37254,21 +44833,6 @@ "coingecko_id": "binancecoin", "recommended_symbol": "WBNB.axl" }, - { - "denom": "ibc/84B9BEDF23F4A33A5DCB82C3D3B5348927418DBC6487EF8821DFEAFE06C77DF5", - "chain_id": "umee-1", - "origin_denom": "erc20/tether/usdt", - "origin_chain_id": "kava_2222-10", - "trace": "transfer/channel-98", - "is_cw20": false, - "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" - }, { "denom": "ibc/88178A7DF538EF97AC4585C949304C3DE4FC04AA91F8F1372281E921D3F44A0D", "chain_id": "umee-1", @@ -37277,6 +44841,7 @@ "trace": "transfer/channel-43", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "JUNO", "name": "JUNO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", @@ -37285,80 +44850,52 @@ "recommended_symbol": "JUNO" }, { - "denom": "ibc/1D5E074747E7E5B67DE2CDD360FD5581640591FAEDB7EEFFF9E4CA5AAE3FEF9E", - "chain_id": "umee-1", - "origin_denom": "uwhale", - "origin_chain_id": "migaloo-1", - "trace": "transfer/channel-57", - "is_cw20": false, - "is_evm": false, - "symbol": "WHALE", - "name": "WHALE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/white-whale.png", - "decimals": 6, - "coingecko_id": "white-whale", - "recommended_symbol": "WHALE" - }, - { - "denom": "ibc/04CE51E6E02243E565AE676DD60336E48D455F8AAD0611FA0299A22FDAC448D6", + "denom": "ibc/8BCABEB3A863254EFE3452F3397062ECC0E483AE0615D855C43133EB46E3E1BE", "chain_id": "umee-1", - "origin_denom": "weth-wei", + "origin_denom": "cbeth-wei", "origin_chain_id": "axelar-dojo-1", "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, - "symbol": "axlWETH", - "name": "axlWETH", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/weth.png", + "is_svm": false, + "symbol": "cbETH", + "name": "cbETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/cbeth.png", "decimals": 18, - "coingecko_id": "axlweth", - "recommended_symbol": "WETH.axl" - }, - { - "denom": "ibc/D517FECD3F23C8CC604A532582CE85BE1F2B0F98F542194D4FEE6B721475415F", - "chain_id": "umee-1", - "origin_denom": "stuumee", - "origin_chain_id": "stride-1", - "trace": "transfer/channel-34", - "is_cw20": false, - "is_evm": false, - "symbol": "stUMEE", - "name": "stUMEE", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stumee.png", - "decimals": 6, - "coingecko_id": "stride-staked-umee", - "recommended_symbol": "stUMEE" + "coingecko_id": "coinbase-wrapped-staked-eth", + "recommended_symbol": "cbETH.axl" }, { - "denom": "ibc/F7E92EE59B5428793F3EF5C1A4CB2494F61A9D0C9A69469D02390714A1372E16", + "denom": "ibc/0B1D3A663E6D41C7B1CFC78DB41C829A3B8329D396B47737445AFF5E0E9DA125", "chain_id": "umee-1", - "origin_denom": "uion", - "origin_chain_id": "osmosis-1", - "trace": "transfer/channel-0", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-48", "is_cw20": false, "is_evm": false, - "symbol": "ION", - "name": "ION", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png", + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", "decimals": 6, - "description": "Native Coin", - "coingecko_id": "ion", - "recommended_symbol": "ION" + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" }, { - "denom": "ibc/919054ED8A2CBE8182591C2BA56DDDB73D4BBA65711858736CE9880FBC6EADBF", + "denom": "ibc/135E6C9EBDC5C95301037EEB69F69D27219BD1E36ADA1B7CC4E078440DB42F61", "chain_id": "umee-1", - "origin_denom": "ukuji", - "origin_chain_id": "kaiyo-1", - "trace": "transfer/channel-105", + "origin_denom": "aarch", + "origin_chain_id": "archway-1", + "trace": "transfer/channel-97", "is_cw20": false, "is_evm": false, - "symbol": "KUJI", - "name": "KUJI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kuji.png", - "decimals": 6, - "coingecko_id": "kujira", - "recommended_symbol": "KUJI" + "is_svm": false, + "symbol": "ARCH", + "name": "ARCH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", + "decimals": 18, + "coingecko_id": "archway", + "recommended_symbol": "ARCH" }, { "denom": "ibc/3F972A6BFE64248AF19C9328FA59A1270CBC57D4545A099860E035C2BA4C79FD", @@ -37368,6 +44905,7 @@ "trace": "transfer/channel-33", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "sfrxETH", "name": "sfrxETH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/sfrxeth.svg", @@ -37383,6 +44921,7 @@ "trace": "transfer/channel-34", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "stLUNA", "name": "stLUNA", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stluna.png", @@ -37402,6 +44941,7 @@ "trace": "", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "GUU", "name": "GUU", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png", @@ -37409,6 +44949,22 @@ "description": "The governance token of UnUniFi protocol.", "recommended_symbol": "GUU" }, + { + "denom": "ibc/25418646C017D377ADF3202FF1E43590D0DAE3346E594E8D78176A139A928F88", + "chain_id": "ununifi-beta-v1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-7", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, { "denom": "ibc/05AC4BBA78C5951339A47DD1BC1E7FC922A9311DF81C85745B1C162F516FF2F1", "chain_id": "ununifi-beta-v1", @@ -37417,6 +44973,7 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -37426,24 +44983,40 @@ "recommended_symbol": "OSMO" }, { - "denom": "ibc/25418646C017D377ADF3202FF1E43590D0DAE3346E594E8D78176A139A928F88", + "denom": "ibc/8F9F22CDD03CA764C41F9476D20B23BF9247C9BB33E2D679762FEF38B6E893F2", "chain_id": "ununifi-beta-v1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-7", + "origin_denom": "factory/osmo1pfyxruwvtwk00y8z06dh2lqjdj82ldvy74wzm3/WOSMO", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-17", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "WOSMO", + "name": "WOSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/wosmo.png", "decimals": 6, - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "recommended_symbol": "WOSMO" } ] }, "vota-ash": { "assets": [ + { + "denom": "ibc/1D0755F60633E1F7E5BA06B12EA2F531F72CD078D0B99C436FBAD79ED3A638D8", + "chain_id": "vota-ash", + "origin_denom": "usei", + "origin_chain_id": "pacific-1", + "trace": "transfer/channel-12", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SEI", + "name": "SEI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "decimals": 6, + "coingecko_id": "sei-network", + "recommended_symbol": "SEI" + }, { "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", "chain_id": "vota-ash", @@ -37452,6 +45025,7 @@ "trace": "transfer/channel-0", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -37459,21 +45033,6 @@ "coingecko_id": "osmosis", "recommended_symbol": "OSMO" }, - { - "denom": "ibc/95762EB27E57BC8916A4EB9C37E20919C8B61025461CED7CA6EF71A38FD51C4E", - "chain_id": "vota-ash", - "origin_denom": "uakt", - "origin_chain_id": "akashnet-2", - "trace": "transfer/channel-7", - "is_cw20": false, - "is_evm": false, - "symbol": "AKT", - "name": "AKT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", - "decimals": 6, - "coingecko_id": "akash-network", - "recommended_symbol": "AKT" - }, { "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", "chain_id": "vota-ash", @@ -37482,6 +45041,7 @@ "trace": "transfer/channel-4", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ATOM", "name": "ATOM", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", @@ -37489,21 +45049,6 @@ "coingecko_id": "cosmos", "recommended_symbol": "ATOM" }, - { - "denom": "peaka", - "chain_id": "vota-ash", - "origin_denom": "peaka", - "origin_chain_id": "vota-ash", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "DORA", - "name": "DORA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", - "decimals": 18, - "description": "The native staking and governance token of the Theta testnet version of the Dora Vota.", - "recommended_symbol": "DORA" - }, { "denom": "ibc/4F9BFE4F1919009E01C5D5960E35D15EFF330B846ADC4B2BECE5170E1AAEC0CE", "chain_id": "vota-ash", @@ -37512,6 +45057,7 @@ "trace": "transfer/channel-5", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "INJ", "name": "INJ", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", @@ -37519,6 +45065,22 @@ "coingecko_id": "injective-protocol", "recommended_symbol": "INJ" }, + { + "denom": "ibc/95762EB27E57BC8916A4EB9C37E20919C8B61025461CED7CA6EF71A38FD51C4E", + "chain_id": "vota-ash", + "origin_denom": "uakt", + "origin_chain_id": "akashnet-2", + "trace": "transfer/channel-7", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AKT", + "name": "AKT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", + "decimals": 6, + "coingecko_id": "akash-network", + "recommended_symbol": "AKT" + }, { "denom": "ibc/C6824D6F41FC8F906D9656AC77B41FCF7CF136DD74A47E11385B021F6D578FE9", "chain_id": "vota-ash", @@ -37527,6 +45089,7 @@ "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NLS", "name": "NLS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", @@ -37542,6 +45105,7 @@ "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "ARCH", "name": "ARCH", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", @@ -37550,24 +45114,317 @@ "recommended_symbol": "ARCH" }, { - "denom": "ibc/1D0755F60633E1F7E5BA06B12EA2F531F72CD078D0B99C436FBAD79ED3A638D8", + "denom": "peaka", "chain_id": "vota-ash", - "origin_denom": "usei", - "origin_chain_id": "pacific-1", - "trace": "transfer/channel-12", + "origin_denom": "peaka", + "origin_chain_id": "vota-ash", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "SEI", - "name": "SEI", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", + "is_svm": false, + "symbol": "DORA", + "name": "DORA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/doravota/images/dora.svg", + "decimals": 18, + "description": "The native staking and governance token of the Theta testnet version of the Dora Vota.", + "recommended_symbol": "DORA" + } + ] + }, + "wormchain": { + "assets": [ + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "avalanche.USDC.wh", + "name": "avalanche.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", "decimals": 6, - "coingecko_id": "sei-network", - "recommended_symbol": "SEI" + "description": "Avalanche USD Coin (Wormhole), Avalanche USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5ZLmAZpcbaP4EGyihSmpfwryzDr84h51tboV392BCjW4", + "recommended_symbol": "avalanche.USDC.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "tBTC", + "name": "tBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/tbtc.svg", + "decimals": 8, + "description": "tBTC v2 (Wormhole), tBTC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BhqTYfQogyt7jX7cx7x8uHEQP1x9fdtdBZtK4Swghgpw", + "recommended_symbol": "tBTC.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "description": "USD Coin (Wormhole), USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/GGh9Ufn1SeDGrhzEkMyRKt5568VbbxZK2yvWNsd6PbXt", + "recommended_symbol": "USDC.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "solana.USDC.wh", + "name": "solana.USDC.wh", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg", + "decimals": 6, + "description": "Solana USD Coin (Wormhole), Solana USDC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/HJk1XMDRNUbRrpKkNZYui7SwWDMjXZAsySzqgyNcQoU3", + "recommended_symbol": "solana.USDC.wh" + }, + { + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "chain_id": "wormchain", + "origin_denom": "uosmo", + "origin_chain_id": "osmosis-1", + "trace": "transfer/channel-3", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "OSMO", + "name": "OSMO", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", + "decimals": 6, + "coingecko_id": "osmosis", + "recommended_symbol": "OSMO" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WETH", + "name": "WETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png", + "decimals": 8, + "description": "Wrapped Ether (Wormhole), WETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5BWqpR48Lubd55szM5i62zK7TFkddckhbT48yy6mNbDp", + "recommended_symbol": "WETH.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SOL", + "name": "SOL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/sol.svg", + "decimals": 8, + "description": "Wrapped SOL (Wormhole), SOL, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8sYgCzLRJC3J7qPn2bNbx6PiGcarhyx8rBhVaNnfvHCA", + "recommended_symbol": "SOL.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "WBTC", + "name": "WBTC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png", + "decimals": 8, + "description": "Wrapped BTC (Wormhole), WBTC, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/BGkuAcga2WArUghF8L6kt6uCAhAzrxmn1QcbQqi5r5bd", + "recommended_symbol": "WBTC.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "wstETH", + "name": "wstETH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wsteth.svg", + "decimals": 8, + "description": "Wrapped liquid staked Ether 2.0 (Wormhole), wstETH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5TSQTEhJ5Q6r1YqCmCxTRSPiV2pGx5rZUQf6g2XH4e1b", + "recommended_symbol": "wstETH.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", + "decimals": 6, + "description": "Tether USD (Wormhole), USDT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/8iuAc6DSeLvi2JDUtwJxLytsZT8R19itXebZsNReLLNi", + "recommended_symbol": "USDT.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "DAI", + "name": "DAI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/dai.svg", + "decimals": 8, + "description": "Dai Stablecoin (Wormhole), DAI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/EKiMEqDnPKokFGcSXDvGMk6Gt1BJ6BC7BDZzTmEpWLH1", + "recommended_symbol": "DAI.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "APT", + "name": "APT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/aptos/images/aptos.svg", + "decimals": 8, + "description": "Aptos Coin (Wormhole), APT, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/5wS2fGojbL9RhGEAeQBdkHPUAciYDxjDTMYvdf9aDn2r", + "recommended_symbol": "APT.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "SUI", + "name": "SUI", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/sui/images/sui.svg", + "decimals": 8, + "description": "Sui (Wormhole), SUI, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/46YEtoSN1AcwgGSRoWruoS6bnVh8XpMp5aQTpKohCJYh", + "recommended_symbol": "SUI.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/2Wb6ueMFc9WLc2eyYVha6qnwHKbwzUXdooXsg6XXVvos", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "W", + "name": "W", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/w.png", + "decimals": 6, + "description": "W is the native token powering the Wormhole interoperability platform.", + "recommended_symbol": "W" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "Bonk", + "name": "Bonk", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/bonk.png", + "decimals": 5, + "description": "Bonk (Wormhole), Bonk, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/95mnwzvJZJ3fKz77xfGN2nR5to9pZmH8YNvaxgLgw5AR", + "recommended_symbol": "Bonk.wh" + }, + { + "denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "chain_id": "wormchain", + "origin_denom": "factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "origin_chain_id": "wormchain", + "trace": "", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "PYTH", + "name": "PYTH", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/pyth.svg", + "decimals": 6, + "description": "Pyth Network (Wormhole), PYTH, factory/wormhole14ejqjyq8um4p3xfqj74yld5waqljf88fz25yxnma0cngspxe3les00fpjx/B8ohBnfisop27exk2gtNABJyYjLwQA7ogrp5uNzvZCoy", + "recommended_symbol": "PYTH.wh" } ] }, "xstaxy-1": { "assets": [ + { + "denom": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", + "chain_id": "xstaxy-1", + "origin_denom": "uusdc", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "USDC", + "name": "USDC", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "decimals": 6, + "coingecko_id": "axlusdc", + "recommended_symbol": "USDC.axl" + }, + { + "denom": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", + "chain_id": "xstaxy-1", + "origin_denom": "uaxl", + "origin_chain_id": "axelar-dojo-1", + "trace": "transfer/channel-4", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "AXL", + "name": "AXL", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "decimals": 6, + "coingecko_id": "axelar", + "recommended_symbol": "AXL" + }, { "denom": "ibc/1FD48481DAA1B05575FE6D3E35929264437B8424A73243B207BCB67401C7F1FD", "chain_id": "xstaxy-1", @@ -37576,12 +45433,29 @@ "trace": "transfer/channel-3", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "NOIS", "name": "NOIS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", "decimals": 6, "recommended_symbol": "NOIS" }, + { + "denom": "ibc/C09A0FFBA11313A32D42A58D820190E71E9D0D5AB3E841C0391EB9A623E07F4B", + "chain_id": "xstaxy-1", + "origin_denom": "uatom", + "origin_chain_id": "cosmoshub-4", + "trace": "transfer/channel-6", + "is_cw20": false, + "is_evm": false, + "is_svm": false, + "symbol": "ATOM", + "name": "ATOM", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "decimals": 6, + "coingecko_id": "cosmos", + "recommended_symbol": "ATOM" + }, { "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", "chain_id": "xstaxy-1", @@ -37590,6 +45464,7 @@ "trace": "transfer/channel-9", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "USDC", "name": "USDC", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png", @@ -37598,50 +45473,20 @@ "recommended_symbol": "USDC" }, { - "denom": "ibc/CC5AF426682C833A9BB0286C3BD32154D5A0009F2D0A1E5EF090283EDAA371E9", + "denom": "ibc/A95EBDF88AC1E3FDECAA1D6E250B07C0C86475A3E2BFA2E7DC94A6CDE23DF6D6", "chain_id": "xstaxy-1", - "origin_denom": "ukava", + "origin_denom": "erc20/tether/usdt", "origin_chain_id": "kava_2222-10", "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "KAVA", - "name": "KAVA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", - "decimals": 6, - "coingecko_id": "kava", - "recommended_symbol": "KAVA" - }, - { - "denom": "uaura", - "chain_id": "xstaxy-1", - "origin_denom": "uaura", - "origin_chain_id": "xstaxy-1", - "trace": "", - "is_cw20": false, - "is_evm": false, - "symbol": "AURA", - "name": "AURA", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", - "decimals": 6, - "description": "The native token of Aura Network", - "coingecko_id": "aura-network", - "recommended_symbol": "AURA" - }, - { - "denom": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", - "chain_id": "xstaxy-1", - "origin_denom": "uaxl", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", - "is_cw20": false, - "is_evm": false, - "symbol": "AXL", - "name": "AXL", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axl.png", + "is_svm": false, + "symbol": "USDT", + "name": "USDT", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", "decimals": 6, - "coingecko_id": "axelar", - "recommended_symbol": "AXL" + "coingecko_id": "tether", + "recommended_symbol": "USDT" }, { "denom": "ibc/376222D6D9DAE23092E29740E56B758580935A6D77C24C2ABD57A6A78A1F3955", @@ -37651,6 +45496,7 @@ "trace": "transfer/channel-10", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "OSMO", "name": "OSMO", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png", @@ -37666,6 +45512,7 @@ "trace": "transfer/channel-23", "is_cw20": false, "is_evm": false, + "is_svm": false, "symbol": "STARS", "name": "STARS", "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", @@ -37674,49 +45521,37 @@ "recommended_symbol": "STARS" }, { - "denom": "ibc/A95EBDF88AC1E3FDECAA1D6E250B07C0C86475A3E2BFA2E7DC94A6CDE23DF6D6", + "denom": "ibc/CC5AF426682C833A9BB0286C3BD32154D5A0009F2D0A1E5EF090283EDAA371E9", "chain_id": "xstaxy-1", - "origin_denom": "erc20/tether/usdt", + "origin_denom": "ukava", "origin_chain_id": "kava_2222-10", "trace": "transfer/channel-7", "is_cw20": false, "is_evm": false, - "symbol": "USDT", - "name": "USDT", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg", - "decimals": 6, - "coingecko_id": "tether", - "recommended_symbol": "USDT" - }, - { - "denom": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", - "chain_id": "xstaxy-1", - "origin_denom": "uusdc", - "origin_chain_id": "axelar-dojo-1", - "trace": "transfer/channel-4", - "is_cw20": false, - "is_evm": false, - "symbol": "USDC", - "name": "USDC", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png", + "is_svm": false, + "symbol": "KAVA", + "name": "KAVA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", "decimals": 6, - "coingecko_id": "axlusdc", - "recommended_symbol": "USDC.axl" + "coingecko_id": "kava", + "recommended_symbol": "KAVA" }, { - "denom": "ibc/C09A0FFBA11313A32D42A58D820190E71E9D0D5AB3E841C0391EB9A623E07F4B", + "denom": "uaura", "chain_id": "xstaxy-1", - "origin_denom": "uatom", - "origin_chain_id": "cosmoshub-4", - "trace": "transfer/channel-6", + "origin_denom": "uaura", + "origin_chain_id": "xstaxy-1", + "trace": "", "is_cw20": false, "is_evm": false, - "symbol": "ATOM", - "name": "ATOM", - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", + "is_svm": false, + "symbol": "AURA", + "name": "AURA", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", "decimals": 6, - "coingecko_id": "cosmos", - "recommended_symbol": "ATOM" + "description": "The native token of Aura Network", + "coingecko_id": "aura-network", + "recommended_symbol": "AURA" } ] } diff --git a/schema/skip_money_chain.json b/schema/skip_money_chain.json index 3d2413d4..0d11eadc 100644 --- a/schema/skip_money_chain.json +++ b/schema/skip_money_chain.json @@ -1,266 +1,84 @@ { "chains": [ { - "chain_name": "mars", - "chain_id": "mars-1", - "pfm_enabled": false, + "chain_name": "injective", + "chain_id": "injective-1", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/mars/images/mars-protocol.png", - "bech32_prefix": "mars", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/injective/chain.png", + "bech32_prefix": "inj", "fee_assets": [ { - "denom": "umars", + "denom": "inj", "gas_price": { - "low": "0", - "average": "0", - "high": "0.01" + "low": "500000000", + "average": "1000000000", + "high": "1500000000" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, + "cosmos_pfm": true, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "planq", - "chain_id": "planq_7070-2", - "pfm_enabled": false, + "chain_name": "teritori", + "chain_id": "teritori-1", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png", - "bech32_prefix": "plq", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/teritori/chain.png", + "bech32_prefix": "tori", "fee_assets": [ { - "denom": "aplanq", + "denom": "utori", "gas_price": { - "low": "30000000000", - "average": "35000000000", - "high": "40000000000" + "low": "0", + "average": "0.025", + "high": "0.04" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, + "cosmos_pfm": true, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "gravitybridge", - "chain_id": "gravity-bridge-3", + "chain_name": "dymension", + "chain_id": "dymension_1100-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, - "feegrant": false + "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gravitybridge/images/grav.png", - "bech32_prefix": "gravity", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dymension_1100/chain.png", + "bech32_prefix": "dym", "fee_assets": [ { - "denom": "gravity0x4f6103BAd230295baCF30f914FDa7D4273B7F585", - "gas_price": null - }, - { - "denom": "ibc/2E5D0AC026AC1AFA65A23023BA4F24BB8DDF94F118EDC0BAD6F625BFC557CDED", - "gas_price": null - }, - { - "denom": "gravity0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be", - "gas_price": null - }, - { - "denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", - "gas_price": { - "low": "0.0002", - "average": "0.0005", - "high": "0.0008" - } - }, - { - "denom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", - "gas_price": null - }, - { - "denom": "ibc/048BE20AE2E6BFD4142C547E04F17E5F94363003A12B7B6C084E08101BFCF7D1", - "gas_price": null - }, - { - "denom": "gravity0x892A6f9dF0147e5f079b0993F486F9acA3c87881", - "gas_price": null - }, - { - "denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", - "gas_price": null - }, - { - "denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", - "gas_price": null - }, - { - "denom": "ibc/00F2B62EB069321A454B708876476AFCD9C23C8C9C4A5A206DDF1CD96B645057", - "gas_price": null - }, - { - "denom": "gravity0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA", - "gas_price": null - }, - { - "denom": "gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", - "gas_price": null - }, - { - "denom": "gravity0x07baC35846e5eD502aA91AdF6A9e7aA210F2DcbE", - "gas_price": null - }, - { - "denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", - "gas_price": null - }, - { - "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", - "gas_price": null - }, - { - "denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", - "gas_price": null - }, - { - "denom": "gravity0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", - "gas_price": null - }, - { - "denom": "gravity0x817bbDbC3e8A1204f3691d14bB44992841e3dB35", - "gas_price": null - }, - { - "denom": "ibc/29A7122D024B5B8FA8A2EFBB4FA47272C25C8926AA005A96807127208082DAB3", - "gas_price": null - }, - { - "denom": "gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b", - "gas_price": null - }, - { - "denom": "gravity0xd8e2F184EedC79A9bdE9Eb7E34B0fF34e98692B7", - "gas_price": null - }, - { - "denom": "ibc/0C273962C274B2C05B22D9474BFE5B84D6A6FCAD198CB9B0ACD35EA521A36606", - "gas_price": null - }, - { - "denom": "gravity0x8a854288a5976036A725879164Ca3e91d30c6A1B", - "gas_price": null - }, - { - "denom": "gravity0x147faF8De9d8D8DAAE129B187F0D02D819126750", - "gas_price": null - }, - { - "denom": "gravity0x93581991f68DBaE1eA105233b67f7FA0D6BDeE7b", - "gas_price": null - }, - { - "denom": "gravity0xa670d7237398238DE01267472C6f13e5B8010FD1", - "gas_price": null - }, - { - "denom": "gravity0xa693B19d2931d498c5B318dF961919BB4aee87a5", - "gas_price": null - }, - { - "denom": "gravity0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", - "gas_price": null - }, - { - "denom": "gravity0x8D983cb9388EaC77af0474fA441C4815500Cb7BB", - "gas_price": null - }, - { - "denom": "gravity0x467719aD09025FcC6cF6F8311755809d45a5E5f3", - "gas_price": null - }, - { - "denom": "gravity0x35a532d376FFd9a705d0Bb319532837337A398E7", - "gas_price": null - }, - { - "denom": "gravity0x2C5Bcad9Ade17428874855913Def0A02D8bE2324", - "gas_price": null - }, - { - "denom": "ibc/5012B1C96F286E8A6604A87037CE51241C6F1CA195B71D1E261FCACB69FB6BC2", - "gas_price": null - }, - { - "denom": "ibc/D157AD8A50DAB0FC4EB95BBE1D9407A590FA2CDEE04C90A76C005089BF76E519", - "gas_price": null - }, - { - "denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", + "denom": "adym", "gas_price": { - "low": "0.0002", - "average": "0.0005", - "high": "0.0008" + "low": "20000000000", + "average": "20000000000", + "high": "20000000000" } - }, - { - "denom": "gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", - "gas_price": null - }, - { - "denom": "ugraviton", - "gas_price": null - }, - { - "denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", - "gas_price": null - }, - { - "denom": "gravity0x01e0E2e61f554eCAaeC0cC933E739Ad90f24a86d", - "gas_price": null - }, - { - "denom": "gravity0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85", - "gas_price": null - }, - { - "denom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", - "gas_price": null - }, - { - "denom": "gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", - "gas_price": null - }, - { - "denom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e", - "gas_price": null - }, - { - "denom": "gravity0x514910771AF9Ca656af840dff83E8264EcF986CA", - "gas_price": null - }, - { - "denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", - "gas_price": null - }, - { - "denom": "gravity0xc0a4Df35568F116C370E6a6A6022Ceb908eedDaC", - "gas_price": null } ], "chain_type": "cosmos", @@ -269,184 +87,230 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "sei", - "chain_id": "pacific-1", - "pfm_enabled": false, + "chain_name": "juno", + "chain_id": "juno-1", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, - "supports_memo": false, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png", - "bech32_prefix": "sei", + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/juno/chain.png", + "bech32_prefix": "juno", "fee_assets": [ { - "denom": "usei", + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", "gas_price": { - "low": "0.1", - "average": "0.2", - "high": "0.3" - } - } + "low": "0.003", + "average": "0.003", + "high": "0.003" + } + }, + { + "denom": "ujuno", + "gas_price": { + "low": "0.075", + "average": "0.075", + "high": "0.075" + } + } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, - "cosmos_memo": false, + "cosmos_pfm": true, + "cosmos_ibc_hooks": true, + "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "passage", - "chain_id": "passage-2", - "pfm_enabled": false, + "chain_name": "terra2", + "chain_id": "phoenix-1", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/passage/images/pasg.png", - "bech32_prefix": "pasg", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/phoenix/chain.png", + "bech32_prefix": "terra", "fee_assets": [ { - "denom": "upasg", - "gas_price": null + "denom": "uluna", + "gas_price": { + "low": "0.015", + "average": "0.02", + "high": "0.04" + } + }, + { + "denom": "ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB", + "gas_price": { + "low": "0.018", + "average": "0.02", + "high": "0.04" + } + }, + { + "denom": "ibc/B3504E092456BA618CC28AC671A71FB08C6CA0FD0BE7C8A5B5A3E2DD933CC9E4", + "gas_price": { + "low": "0.018", + "average": "0.02", + "high": "0.04" + } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, + "cosmos_pfm": true, + "cosmos_ibc_hooks": true, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "injective", - "chain_id": "injective-1", - "pfm_enabled": true, + "chain_name": "nois", + "chain_id": "nois-1", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png", - "bech32_prefix": "inj", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nois/chain.png", + "bech32_prefix": "nois", "fee_assets": [ { - "denom": "inj", + "denom": "unois", "gas_price": { - "low": "500000000", - "average": "1000000000", - "high": "1500000000" + "low": "0.05", + "average": "0.05", + "high": "0.1" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "noble", - "chain_id": "noble-1", - "pfm_enabled": true, + "chain_name": "nibiru", + "chain_id": "cataclysm-1", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/stake.png", - "bech32_prefix": "noble", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cataclysm/chain.png", + "bech32_prefix": "nibi", "fee_assets": [ { - "denom": "uusdc", - "gas_price": { - "low": "0.1", - "average": "0.1", - "high": "0.2" - } - }, - { - "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", + "denom": "unibi", "gas_price": { - "low": "0.01", - "average": "0.01", - "high": "0.02" + "low": "0.025", + "average": "0.05", + "high": "0.1" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "doravota", - "chain_id": "vota-ash", + "chain_name": "dydx", + "chain_id": "dydx-mainnet-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "bech32_prefix": "dora", - "fee_assets": [], + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dydx-mainnet/adydx.png", + "bech32_prefix": "dydx", + "fee_assets": [ + { + "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "gas_price": { + "low": "0.025", + "average": "0.025", + "high": "0.03" + } + }, + { + "denom": "adydx", + "gas_price": { + "low": "12500000000", + "average": "12500000000", + "high": "20000000000" + } + } + ], "chain_type": "cosmos", "ibc_capabilities": { "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "passage", - "chain_id": "passage-1", + "chain_name": "cronos", + "chain_id": "cronosmainnet_25-1", "pfm_enabled": false, "cosmos_module_support": { "authz": false, - "feegrant": false + "feegrant": true }, "supports_memo": false, - "bech32_prefix": "", + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png", + "bech32_prefix": "crc", "fee_assets": [], - "chain_type": "", + "chain_type": "cosmos", "ibc_capabilities": { "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": false, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "andromeda", - "chain_id": "andromeda-1", + "chain_name": "gateway", + "chain_id": "wormchain", "pfm_enabled": false, "cosmos_module_support": { - "authz": true, + "authz": false, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/andromeda/images/andromeda-logo.png", - "bech32_prefix": "andr", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/wormchain/chain.png", + "bech32_prefix": "wormhole", "fee_assets": [ { - "denom": "uandr", + "denom": "utest", "gas_price": { - "low": "0.03", - "average": "0.05", - "high": "0.075" + "low": "1", + "average": "1", + "high": "1" } } ], @@ -456,55 +320,85 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "omniflixhub", - "chain_id": "omniflixhub-1", + "chain_name": "doravota", + "chain_id": "vota-ash", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "bech32_prefix": "dora", + "fee_assets": [], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "stargaze", + "chain_id": "stargaze-1", "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/omniflixhub/images/flix.png", - "bech32_prefix": "omniflix", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stargaze/chain.png", + "bech32_prefix": "stars", "fee_assets": [ { - "denom": "uflix", + "denom": "ustars", "gas_price": { - "low": "0.001", - "average": "0.0025", - "high": "0.025" + "low": "1", + "average": "1.1", + "high": "1.2" } } ], "chain_type": "cosmos", "ibc_capabilities": { "cosmos_pfm": true, - "cosmos_ibc_hooks": false, + "cosmos_ibc_hooks": true, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "umee", - "chain_id": "umee-1", + "chain_name": "agoric", + "chain_id": "agoric-3", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png", - "bech32_prefix": "umee", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/agoric/chain.png", + "bech32_prefix": "agoric", "fee_assets": [ { - "denom": "uumee", + "denom": "ubld", "gas_price": { - "low": "0.06", - "average": "0.1", - "high": "0.14" + "low": "0.03", + "average": "0.05", + "high": "0.07" + } + }, + { + "denom": "uist", + "gas_price": { + "low": "0.0034", + "average": "0.007", + "high": "0.02" } } ], @@ -514,203 +408,331 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "crescent", - "chain_id": "crescent-1", + "chain_name": "evmos", + "chain_id": "evmos_9001-2", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/crescent/images/cre.png", - "bech32_prefix": "cre", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/evmos_9001/chain.png", + "bech32_prefix": "evmos", "fee_assets": [ { - "denom": "ucre", + "denom": "aevmos", "gas_price": { - "low": "0.01", - "average": "0.025", - "high": "0.03" + "low": "80000000000", + "average": "80000000000", + "high": "80000000000" } - }, + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "sentinel", + "chain_id": "sentinelhub-2", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/sentinelhub/chain.png", + "bech32_prefix": "sent", + "fee_assets": [ { - "denom": "ibc/764D1629980B02BAFF3D25BEE4FB1E0C5E350AFA252FDF66E68E10D2179A826A", + "denom": "udvpn", "gas_price": { - "low": "200000000", - "average": "500000000", - "high": "600000000" + "low": "0.1", + "average": "0.25", + "high": "0.4" } - }, - { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", - "gas_price": { - "low": "0.000063", - "average": "0.0001575", - "high": "0.000189" + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "sei", + "chain_id": "pacific-1", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": false, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pacific/chain.png", + "bech32_prefix": "sei", + "fee_assets": [ + { + "denom": "usei", + "gas_price": { + "low": "0.1", + "average": "0.2", + "high": "0.3" + } + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": false, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "cheqd", + "chain_id": "cheqd-mainnet-1", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cheqd-mainnet/chain.png", + "bech32_prefix": "cheqd", + "fee_assets": [ + { + "denom": "ncheq", + "gas_price": { + "low": "25", + "average": "50", + "high": "100" + } + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "stride", + "chain_id": "stride-1", + "pfm_enabled": true, + "cosmos_module_support": { + "authz": false, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/stride/chain.png", + "bech32_prefix": "stride", + "fee_assets": [ + { + "denom": "stuatom", + "gas_price": { + "low": "0.0001", + "average": "0.001", + "high": "0.01" } }, { - "denom": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", + "denom": "stutia", "gas_price": { - "low": "5", - "average": "12.5", - "high": "15" + "low": "0.01", + "average": "0.01", + "high": "0.01" } }, { - "denom": "ibc/D64F87FAE0B35C1954DD7921BA7A2939705DE77CBF72B8002F2E3552EDE4DE52", + "denom": "stinj", "gas_price": { - "low": "0.00006", - "average": "0.00015", - "high": "0.00018" + "low": "500000000", + "average": "500000000", + "high": "500000000" } }, { - "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", + "denom": "stadydx", "gas_price": { - "low": "0.000568", - "average": "0.00142", - "high": "0.001704" + "low": "15000000000", + "average": "15000000000", + "high": "15000000000" } }, { - "denom": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", + "denom": "stuosmo", "gas_price": { - "low": "0.065405", - "average": "0.1635125", - "high": "0.196215" + "low": "0.001", + "average": "0.01", + "high": "0.1" } }, { - "denom": "ibc/11F940BCDFD7CFBFD7EDA13F25DA95D308286D441209D780C9863FD4271514EB", + "denom": "stadym", "gas_price": { - "low": "0.002", - "average": "0.005", - "high": "0.006" + "low": "15000000000", + "average": "15000000000", + "high": "50000000000" } }, { - "denom": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", "gas_price": { - "low": "0.000842", - "average": "0.002105", - "high": "0.002526" + "low": "0.0001", + "average": "0.001", + "high": "0.01" } }, { - "denom": "ubcre", + "denom": "ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801", "gas_price": { - "low": "0.0083", - "average": "0.02075", - "high": "0.0249" + "low": "0.01", + "average": "0.01", + "high": "0.01" } }, { - "denom": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", + "denom": "ibc/561C70B20188A047BFDE6F9946BDDC5D8AC172B9BE04FF868DFABF819E5A9CCE", "gas_price": { - "low": "0.0004", - "average": "0.001", - "high": "0.0012" + "low": "15000000000", + "average": "15000000000", + "high": "15000000000" } }, { - "denom": "ibc/CA1261224952DF089EFD363D8DBB30A8AB6D8CD181E60EE9E68E432F8DE14FE3", + "denom": "ibc/A7454562FF29FE068F42F9DE4805ABEF54F599D1720B345D6518D9B5C64EA6D2", "gas_price": { - "low": "0.000842", - "average": "0.002105", - "high": "0.002526" + "low": "500000000", + "average": "500000000", + "high": "500000000" } }, { - "denom": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", + "denom": "stusaga", "gas_price": { - "low": "0.0014", - "average": "0.0035", - "high": "0.0042" + "low": "0.01", + "average": "0.01", + "high": "0.01" } }, { - "denom": "ibc/CD01034D6749F20AAC5330EF4FD8B8CA7C40F7527AB8C4A302FBD2A070852EE1", + "denom": "ibc/520D9C4509027DE66C737A1D6A6021915A3071E30DBA8F758B46532B060D7AA5", "gas_price": { - "low": "0.000842", - "average": "0.002105", - "high": "0.002526" + "low": "0.01", + "average": "0.01", + "high": "0.01" } }, { - "denom": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", + "denom": "ibc/4B322204B4F59D770680FE4D7A565DDC3F37BFF035474B717476C66A4F83DD72", "gas_price": { - "low": "3350000000", - "average": "8375000000", - "high": "10050000000" + "low": "20000000000", + "average": "20000000000", + "high": "20000000000" } }, { - "denom": "ibc/9EC8A1701813BB7B73BFED2496009ABB2C8BF187E6CDFA788D77F68E08BC05CD", + "denom": "ibc/E1C22332C083574F3418481359733BA8887D171E76C80AD9237422AEABB66018", "gas_price": { - "low": "0.000842", - "average": "0.002105", - "high": "0.002526" + "low": "15000000000", + "average": "15000000000", + "high": "50000000000" } }, { - "denom": "ibc/61DF64ADF65230540C14C63D64897BE08A3DC9A516A91425913F01240E2F432F", + "denom": "ustrd", "gas_price": { - "low": "0.008146", - "average": "0.020365", - "high": "0.024438" + "low": "0.0005", + "average": "0.005", + "high": "0.05" + } + }, + { + "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", + "gas_price": { + "low": "0.001", + "average": "0.01", + "high": "0.1" + } + }, + { + "denom": "staevmos", + "gas_price": { + "low": "20000000000", + "average": "20000000000", + "high": "20000000000" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, + "cosmos_pfm": true, "cosmos_ibc_hooks": false, "cosmos_memo": true, - "cosmos_autopilot": false - } + "cosmos_autopilot": true + }, + "is_testnet": false }, { - "chain_name": "bitsong", - "chain_id": "bitsong-2b", - "pfm_enabled": true, + "chain_name": "akash", + "chain_id": "akashnet-2", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, - "supports_memo": false, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", - "bech32_prefix": "bitsong", - "fee_assets": [], + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/akashnet/chain.png", + "bech32_prefix": "akash", + "fee_assets": [ + { + "denom": "uakt", + "gas_price": null + } + ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": false, - "cosmos_memo": false, + "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "sentinel", - "chain_id": "sentinelhub-2", + "chain_name": "canto", + "chain_id": "canto_7700-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sentinel/images/dvpn.png", - "bech32_prefix": "sent", + "supports_memo": false, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/canto_7700/chain.png", + "bech32_prefix": "canto", "fee_assets": [ { - "denom": "udvpn", + "denom": "acanto", "gas_price": { - "low": "0.1", - "average": "0.25", - "high": "0.4" + "low": "1250000000000", + "average": "2500000000000", + "high": "3750000000000" } } ], @@ -718,58 +740,80 @@ "ibc_capabilities": { "cosmos_pfm": false, "cosmos_ibc_hooks": false, - "cosmos_memo": true, + "cosmos_memo": false, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "stargaze", - "chain_id": "stargaze-1", - "pfm_enabled": true, + "chain_name": "quasar", + "chain_id": "quasar-1", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png", - "bech32_prefix": "stars", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/quasar/chain.png", + "bech32_prefix": "quasar", "fee_assets": [ { - "denom": "ustars", + "denom": "ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5", "gas_price": { - "low": "1", - "average": "1.1", - "high": "1.2" + "low": "0.01", + "average": "0.01", + "high": "0.02" + } + }, + { + "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", + "gas_price": { + "low": "0.01", + "average": "0.01", + "high": "0.02" + } + }, + { + "denom": "uqsr", + "gas_price": { + "low": "0.1", + "average": "0.1", + "high": "0.2" + } + }, + { + "denom": "ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A", + "gas_price": { + "low": "0.01", + "average": "0.01", + "high": "0.02" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": true, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "sifchain", - "chain_id": "sifchain-1", + "chain_name": "sommelier", + "chain_id": "sommelier-3", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sifchain/images/rowan.png", - "bech32_prefix": "sif", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/sommelier/chain.png", + "bech32_prefix": "somm", "fee_assets": [ { - "denom": "rowan", - "gas_price": { - "low": "1000000000000", - "average": "1500000000000", - "high": "2000000000000" - } + "denom": "usomm", + "gas_price": null } ], "chain_type": "cosmos", @@ -778,7 +822,49 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false + }, + { + "chain_name": "shentu", + "chain_id": "shentu-2.2", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", + "bech32_prefix": "shentu", + "fee_assets": [], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "passage", + "chain_id": "passage-1", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": false, + "feegrant": false + }, + "supports_memo": false, + "bech32_prefix": "", + "fee_assets": [], + "chain_type": "", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": false, + "cosmos_autopilot": false + }, + "is_testnet": false }, { "chain_name": "jackal", @@ -789,7 +875,7 @@ "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/jackal/images/jkl.png", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/jackal/chain.png", "bech32_prefix": "jkl", "fee_assets": [ { @@ -807,185 +893,203 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "persistence", - "chain_id": "core-1", - "pfm_enabled": true, + "chain_name": "carbon", + "chain_id": "carbon-1", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/persistence/images/xprt.png", - "bech32_prefix": "persistence", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/carbon/chain.png", + "bech32_prefix": "swth", "fee_assets": [ { - "denom": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", + "denom": "bnb.1.6.773edb", "gas_price": { - "low": "0.0001", - "average": "0.001", - "high": "0.01" + "low": "33333333.3333334", + "average": "33333333.3333334", + "high": "33333333.3333334" } }, { - "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", + "denom": "usdc.1.2.343151", "gas_price": { - "low": "15000000000", - "average": "15000000000", - "high": "15000000000" + "low": "0.00333333333333334", + "average": "0.00333333333333334", + "high": "0.00333333333333334" } }, { - "denom": "stk/uatom", + "denom": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", "gas_price": { - "low": "0.0001", - "average": "0.001", - "high": "0.01" + "low": "0.116666666667", + "average": "0.116666666667", + "high": "0.116666666667" } }, { - "denom": "stk/uosmo", + "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", "gas_price": { - "low": "0.0001", - "average": "0.001", - "high": "0.01" + "low": "0.005", + "average": "0.005", + "high": "0.005" } }, { - "denom": "ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85", + "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", "gas_price": { - "low": "0.0001", - "average": "0.001", - "high": "0.01" + "low": "0.000333333334", + "average": "0.000333333334", + "high": "0.000333333334" } }, { - "denom": "stk/adydx", + "denom": "swth", "gas_price": { - "low": "15000000000", - "average": "15000000000", - "high": "15000000000" + "low": "100", + "average": "100", + "high": "100" } }, { - "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", + "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", "gas_price": { - "low": "0.01", - "average": "0.05", - "high": "0.1" + "low": "0.000333333334", + "average": "0.000333333334", + "high": "0.000333333334" } }, { - "denom": "uxprt", + "denom": "ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118", "gas_price": { - "low": "0", - "average": "0.025", - "high": "0.04" + "low": "0.02", + "average": "0.02", + "high": "0.02" } }, { - "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", - "gas_price": { - "low": "100000000", - "average": "1000000000", - "high": "10000000000" - } - } - ], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": true, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "secret", - "chain_id": "secret-4", - "pfm_enabled": true, - "cosmos_module_support": { - "authz": true, - "feegrant": true - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/scrt.png", - "bech32_prefix": "secret", - "fee_assets": [ - { - "denom": "uscrt", + "denom": "zil.1.18.1a4a06", "gas_price": { - "low": "0.05", - "average": "0.1", - "high": "0.25" + "low": "200000", + "average": "200000", + "high": "200000" } - } - ], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": true, - "cosmos_ibc_hooks": true, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "kava", - "chain_id": "kava_2222-10", - "pfm_enabled": false, - "cosmos_module_support": { - "authz": true, - "feegrant": false - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kava/images/kava.png", - "bech32_prefix": "kava", - "fee_assets": [ + }, { - "denom": "ukava", + "denom": "busd.1.6.754a80", "gas_price": { - "low": "0.05", - "average": "0.1", - "high": "0.25" + "low": "3333333333.33334", + "average": "3333333333.33334", + "high": "3333333333.33334" } - } - ], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "terra", - "chain_id": "columbus-5", - "pfm_enabled": false, - "cosmos_module_support": { - "authz": true, - "feegrant": true - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/luna.png", - "bech32_prefix": "terra", - "fee_assets": [ + }, { - "denom": "uluna", + "denom": "cgt/1", "gas_price": { - "low": "28.325", - "average": "28.325", - "high": "28.325" + "low": "3333333333.33334", + "average": "3333333333.33334", + "high": "3333333333.33334" } }, { - "denom": "uusd", + "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", + "gas_price": { + "low": "0.005", + "average": "0.005", + "high": "0.005" + } + }, + { + "denom": "bneo.1.14.e2e5f6", + "gas_price": { + "low": "0.05", + "average": "0.05", + "high": "0.05" + } + }, + { + "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "gas_price": { + "low": "0.001666666667", + "average": "0.001666666667", + "high": "0.001666666667" + } + }, + { + "denom": "usdc.1.6.53ff75", + "gas_price": { + "low": "3333333333.33334", + "average": "3333333333.33334", + "high": "3333333333.33334" + } + }, + { + "denom": "cglp.1.19.1698d3", + "gas_price": { + "low": "3333333333.33334", + "average": "3333333333.33334", + "high": "3333333333.33334" + } + }, + { + "denom": "usc", + "gas_price": { + "low": "0.003333333334", + "average": "0.003333333334", + "high": "0.003333333334" + } + }, + { + "denom": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", + "gas_price": { + "low": "6666666666.66667", + "average": "6666666666.66667", + "high": "6666666666.66667" + } + }, + { + "denom": "eth.1.2.942d87", + "gas_price": { + "low": "3333333.33333334", + "average": "3333333.33333334", + "high": "3333333.33333334" + } + }, + { + "denom": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", + "gas_price": { + "low": "10000000000", + "average": "10000000000", + "high": "10000000000" + } + }, + { + "denom": "eth.1.19.c3b805", + "gas_price": { + "low": "3333333.33333334", + "average": "3333333.33333334", + "high": "3333333.33333334" + } + }, + { + "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", + "gas_price": { + "low": "0.005", + "average": "0.005", + "high": "0.005" + } + }, + { + "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", "gas_price": { - "low": "0.75", - "average": "0.75", - "high": "0.75" + "low": "0.010666666667", + "average": "0.010666666667", + "high": "0.010666666667" } } ], @@ -995,44 +1099,26 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } - }, - { - "chain_name": "composable", - "chain_id": "centauri-1", - "pfm_enabled": true, - "cosmos_module_support": { - "authz": true, - "feegrant": true }, - "supports_memo": true, - "bech32_prefix": "centauri", - "fee_assets": [], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": true, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } + "is_testnet": false }, { - "chain_name": "cryptoorgchain", - "chain_id": "crypto-org-chain-mainnet-1", + "chain_name": "saga", + "chain_id": "ssc-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/cronos.png", - "bech32_prefix": "cro", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/ssc/chain.png", + "bech32_prefix": "saga", "fee_assets": [ { - "denom": "basecro", + "denom": "usaga", "gas_price": { - "low": "0.025", - "average": "0.03", + "low": "0.01", + "average": "0.025", "high": "0.04" } } @@ -1043,255 +1129,202 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "cosmoshub", - "chain_id": "cosmoshub-4", + "chain_name": "comdex", + "chain_id": "comdex-1", "pfm_enabled": true, "cosmos_module_support": { "authz": true, - "feegrant": true + "feegrant": false }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png", - "bech32_prefix": "cosmos", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/comdex/chain.png", + "bech32_prefix": "comdex", "fee_assets": [ { - "denom": "uatom", + "denom": "ibc/D031367F58DFD5EED54A49ADCB4EFB44AD9ECCAE383708BFDCCACF3CF463B77C", "gas_price": { - "low": "0.005", - "average": "0.025", - "high": "0.03" + "low": "0.0002", + "average": "0.0005", + "high": "0.0008" } - } - ], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": true, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "xpla", - "chain_id": "dimension_37-1", - "pfm_enabled": true, - "cosmos_module_support": { - "authz": true, - "feegrant": true - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/xpla/images/xpla.png", - "bech32_prefix": "xpla", - "fee_assets": [ + }, { - "denom": "axpla", + "denom": "ucmdx", "gas_price": { - "low": "850000000000", - "average": "1147500000000", - "high": "1487500000000" + "low": "2", + "average": "3", + "high": "4" } - } - ], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": true, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "odin", - "chain_id": "odin-mainnet-freya", - "pfm_enabled": false, - "cosmos_module_support": { - "authz": true, - "feegrant": true - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", - "bech32_prefix": "odin", - "fee_assets": [], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "cronos", - "chain_id": "cronosmainnet_25-1", - "pfm_enabled": false, - "cosmos_module_support": { - "authz": true, - "feegrant": true - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png", - "bech32_prefix": "crc", - "fee_assets": [], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "archway", - "chain_id": "archway-1", - "pfm_enabled": false, - "cosmos_module_support": { - "authz": true, - "feegrant": true - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/archway/images/archway.png", - "bech32_prefix": "archway", - "fee_assets": [ + }, { - "denom": "aarch", + "denom": "ibc/961FA3E54F5DCCA639F37A7C45F7BBE41815579EF1513B5AFBEFCFEB8F256352", "gas_price": { - "low": "140000000000", - "average": "196000000000", - "high": "225400000000" + "low": "0.0001", + "average": "0.001", + "high": "0.01" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, + "cosmos_pfm": true, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } - }, - { - "chain_name": "ununifi", - "chain_id": "ununifi-beta-v1", - "pfm_enabled": false, - "cosmos_module_support": { - "authz": true, - "feegrant": true }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png", - "bech32_prefix": "ununifi", - "fee_assets": [], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } + "is_testnet": false }, { - "chain_name": "kujira", - "chain_id": "kaiyo-1", + "chain_name": "crescent", + "chain_id": "crescent-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kujira/images/kujira-chain-logo.png", - "bech32_prefix": "kujira", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/crescent/chain.png", + "bech32_prefix": "cre", "fee_assets": [ { - "denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", - "gas_price": null + "denom": "ibc/9EC8A1701813BB7B73BFED2496009ABB2C8BF187E6CDFA788D77F68E08BC05CD", + "gas_price": { + "low": "0.000842", + "average": "0.002105", + "high": "0.002526" + } }, { - "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", - "gas_price": null + "denom": "ibc/BFF0D3805B50D93E2FA5C0B2DDF7E0B30A631076CD80BC12A48C0E95404B4A41", + "gas_price": { + "low": "0.000842", + "average": "0.002105", + "high": "0.002526" + } }, { - "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", - "gas_price": null + "denom": "ubcre", + "gas_price": { + "low": "0.0083", + "average": "0.02075", + "high": "0.0249" + } }, { - "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", - "gas_price": null + "denom": "ibc/CA1261224952DF089EFD363D8DBB30A8AB6D8CD181E60EE9E68E432F8DE14FE3", + "gas_price": { + "low": "0.000842", + "average": "0.002105", + "high": "0.002526" + } }, { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "gas_price": null + "denom": "ibc/61DF64ADF65230540C14C63D64897BE08A3DC9A516A91425913F01240E2F432F", + "gas_price": { + "low": "0.008146", + "average": "0.020365", + "high": "0.024438" + } }, { - "denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", - "gas_price": null + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "gas_price": { + "low": "0.000063", + "average": "0.0001575", + "high": "0.000189" + } }, { - "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", - "gas_price": null + "denom": "ibc/764D1629980B02BAFF3D25BEE4FB1E0C5E350AFA252FDF66E68E10D2179A826A", + "gas_price": { + "low": "200000000", + "average": "500000000", + "high": "600000000" + } }, { - "denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", - "gas_price": null + "denom": "ibc/D64F87FAE0B35C1954DD7921BA7A2939705DE77CBF72B8002F2E3552EDE4DE52", + "gas_price": { + "low": "0.00006", + "average": "0.00015", + "high": "0.00018" + } }, { - "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", - "gas_price": null + "denom": "ibc/5A76568E079A31FA12165E4559BA9F1E9D4C97F9C2060B538C84DCD503815E30", + "gas_price": { + "low": "3350000000", + "average": "8375000000", + "high": "10050000000" + } }, { - "denom": "ukuji", - "gas_price": null + "denom": "ibc/8F865D9760B482FF6254EDFEC1FF2F1273B9AB6873A7DE484F89639795D73D75", + "gas_price": { + "low": "0.0004", + "average": "0.001", + "high": "0.0012" + } }, { - "denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", - "gas_price": null + "denom": "ibc/CD01034D6749F20AAC5330EF4FD8B8CA7C40F7527AB8C4A302FBD2A070852EE1", + "gas_price": { + "low": "0.000842", + "average": "0.002105", + "high": "0.002526" + } }, { - "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", - "gas_price": null + "denom": "ibc/C814F0B662234E24248AE3B2FE2C1B54BBAF12934B757F6E7BC5AEC119963895", + "gas_price": { + "low": "0.000568", + "average": "0.00142", + "high": "0.001704" + } }, { - "denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", - "gas_price": null - } - ], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "dydx", - "chain_id": "dydx-mainnet-1", - "pfm_enabled": false, - "cosmos_module_support": { - "authz": false, - "feegrant": true - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dydx/images/dydx.png", - "bech32_prefix": "dydx", - "fee_assets": [ + "denom": "ibc/C950356239AD2A205DE09FDF066B1F9FF19A7CA7145EA48A5B19B76EE47E52F7", + "gas_price": { + "low": "0.065405", + "average": "0.1635125", + "high": "0.196215" + } + }, { - "denom": "adydx", + "denom": "ibc/11F940BCDFD7CFBFD7EDA13F25DA95D308286D441209D780C9863FD4271514EB", "gas_price": { - "low": "12500000000", - "average": "12500000000", - "high": "20000000000" + "low": "0.002", + "average": "0.005", + "high": "0.006" } }, { - "denom": "ibc/8E27BA2D5493AF5636760E354E46004562C46AB7EC0CC4C1CA14E9E20E2545B5", + "denom": "ucre", "gas_price": { - "low": "0.025", + "low": "0.01", "average": "0.025", "high": "0.03" } + }, + { + "denom": "ibc/4627AD2524E3E0523047E35BB76CC90E37D9D57ACF14F0FCBCEB2480705F3CB8", + "gas_price": { + "low": "5", + "average": "12.5", + "high": "15" + } + }, + { + "denom": "ibc/0634D0993744740D675AD01E81156EAC945AEAAE17C074918DC7FF52F41B263E", + "gas_price": { + "low": "0.0014", + "average": "0.0035", + "high": "0.0042" + } } ], "chain_type": "cosmos", @@ -1300,53 +1333,55 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "assetmantle", - "chain_id": "mantle-1", - "pfm_enabled": true, + "chain_name": "coreum", + "chain_id": "coreum-mainnet-1", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/assetmantle/images/AM_Logo.png", - "bech32_prefix": "mantle", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/coreum-mainnet/chain.png", + "bech32_prefix": "core", "fee_assets": [ { - "denom": "umntl", + "denom": "ucore", "gas_price": { - "low": "0.01", - "average": "0.025", - "high": "0.04" + "low": "0.0625", + "average": "0.0625", + "high": "0.0625" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "teritori", - "chain_id": "teritori-1", - "pfm_enabled": true, + "chain_name": "lum", + "chain_id": "lum-network-1", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/teritori/images/chain.png", - "bech32_prefix": "tori", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/lum-network/chain.png", + "bech32_prefix": "lum", "fee_assets": [ { - "denom": "utori", + "denom": "ulum", "gas_price": { - "low": "0", + "low": "0.01", "average": "0.025", "high": "0.04" } @@ -1354,72 +1389,62 @@ ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "comdex", - "chain_id": "comdex-1", - "pfm_enabled": true, + "chain_name": "celestia", + "chain_id": "celestia", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, - "feegrant": false + "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/comdex/images/cmdx.png", - "bech32_prefix": "comdex", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/celestia/chain.png", + "bech32_prefix": "celestia", "fee_assets": [ { - "denom": "ucmdx", - "gas_price": { - "low": "2", - "average": "3", - "high": "4" - } - }, - { - "denom": "ibc/D031367F58DFD5EED54A49ADCB4EFB44AD9ECCAE383708BFDCCACF3CF463B77C", - "gas_price": { - "low": "0.0002", - "average": "0.0005", - "high": "0.0008" - } - }, - { - "denom": "ibc/961FA3E54F5DCCA639F37A7C45F7BBE41815579EF1513B5AFBEFCFEB8F256352", + "denom": "utia", "gas_price": { - "low": "0.0001", - "average": "0.001", - "high": "0.01" + "low": "0.01", + "average": "0.02", + "high": "0.1" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "akash", - "chain_id": "akashnet-2", + "chain_name": "xpla", + "chain_id": "dimension_37-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/akash/images/akt.png", - "bech32_prefix": "akash", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/dimension_37/chain.png", + "bech32_prefix": "xpla", "fee_assets": [ { - "denom": "uakt", - "gas_price": null + "denom": "axpla", + "gas_price": { + "low": "850000000000", + "average": "1147500000000", + "high": "1487500000000" + } } ], "chain_type": "cosmos", @@ -1428,104 +1453,179 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "nyx", - "chain_id": "nyx", + "chain_name": "kujira", + "chain_id": "kaiyo-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nyx/images/nym_token_light.png", - "bech32_prefix": "n", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kaiyo/chain.png", + "bech32_prefix": "kujira", "fee_assets": [ { - "denom": "unyx", + "denom": "ibc/A358D7F19237777AF6D8AD0E0F53268F8B18AE8A53ED318095C14D6D7F3B2DB5", "gas_price": null }, { - "denom": "unym", + "denom": "ibc/EFF323CC632EC4F747C61BCE238A758EFDB7699C3226565F7C20DA06509D59A5", "gas_price": null - } - ], - "chain_type": "cosmos", - "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, - "cosmos_memo": true, - "cosmos_autopilot": false - } - }, - { - "chain_name": "shentu", - "chain_id": "shentu-2.2", - "pfm_enabled": false, - "cosmos_module_support": { - "authz": true, - "feegrant": true - }, - "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/shentu/images/ctk.png", - "bech32_prefix": "shentu", - "fee_assets": [], + }, + { + "denom": "factory/kujira1qk00h5atutpsv900x202pxx42npjr9thg58dnqpa72f2p7m2luase444a7/uusk", + "gas_price": null + }, + { + "denom": "ibc/004EBF085BBED1029326D56BE8A2E67C08CECE670A94AC1947DF413EF5130EB2", + "gas_price": null + }, + { + "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", + "gas_price": null + }, + { + "denom": "ibc/3607EB5B5E64DD1C0E12E07F077FF470D5BC4706AFCBC98FE1BA960E5AE4CE07", + "gas_price": null + }, + { + "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "gas_price": null + }, + { + "denom": "ibc/295548A78785A1007F232DE286149A6FF512F180AF5657780FC89C009E2C348F", + "gas_price": null + }, + { + "denom": "ukuji", + "gas_price": null + }, + { + "denom": "ibc/1B38805B1C75352B28169284F96DF56BDEBD9E8FAC005BDCC8CF0378C82AA8E7", + "gas_price": null + }, + { + "denom": "factory/kujira1643jxg8wasy5cfcn7xm8rd742yeazcksqlg4d7/umnta", + "gas_price": null + }, + { + "denom": "ibc/F3AA7EF362EC5E791FE78A0F4CCC69FEE1F9A7485EB1A8CAB3F6601C00522F10", + "gas_price": null + }, + { + "denom": "ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23", + "gas_price": null + } + ], "chain_type": "cosmos", "ibc_capabilities": { "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "kyve", - "chain_id": "kyve-1", - "pfm_enabled": false, + "chain_name": "neutron", + "chain_id": "neutron-1", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/kyve/images/kyve.png", - "bech32_prefix": "kyve", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/neutron/chain.png", + "bech32_prefix": "neutron", "fee_assets": [ { - "denom": "ukyve", + "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", "gas_price": { - "low": "0.02", - "average": "0.03", - "high": "0.06" + "low": "0.008", + "average": "0.008", + "high": "0.008" + } + }, + { + "denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", + "gas_price": { + "low": "2564102564.1026", + "average": "2564102564.1026", + "high": "2564102564.1026" + } + }, + { + "denom": "untrn", + "gas_price": { + "low": "0.0053", + "average": "0.0053", + "high": "0.0053" + } + }, + { + "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", + "gas_price": { + "low": "2903231.6597", + "average": "2903231.6597", + "high": "2903231.6597" + } + }, + { + "denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "gas_price": { + "low": "0.0004", + "average": "0.0004", + "high": "0.0004" + } + }, + { + "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "gas_price": { + "low": "0.0008", + "average": "0.0008", + "high": "0.0008" + } + }, + { + "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "gas_price": { + "low": "0.0006", + "average": "0.0006", + "high": "0.0006" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, + "cosmos_pfm": true, + "cosmos_ibc_hooks": true, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "nolus", - "chain_id": "pirin-1", + "chain_name": "provenance", + "chain_id": "pio-mainnet-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png", - "bech32_prefix": "nolus", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pio-mainnet/chain.png", + "bech32_prefix": "pb", "fee_assets": [ { - "denom": "unls", + "denom": "nhash", "gas_price": { - "low": "0.01", - "average": "0.025", - "high": "0.05" + "low": "1905", + "average": "1905", + "high": "2500" } } ], @@ -1535,55 +1635,48 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "osmosis", - "chain_id": "osmosis-1", - "pfm_enabled": true, + "chain_name": "ununifi", + "chain_id": "ununifi-beta-v1", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, - "feegrant": false + "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png", - "bech32_prefix": "osmo", - "fee_assets": [ - { - "denom": "uosmo", - "gas_price": { - "low": "0.0025", - "average": "0.025", - "high": "0.04" - } - } - ], + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/ununifi/images/ununifi.png", + "bech32_prefix": "ununifi", + "fee_assets": [], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, - "cosmos_ibc_hooks": true, + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "axelar", - "chain_id": "axelar-dojo-1", + "chain_name": "aura", + "chain_id": "xstaxy-1", "pfm_enabled": false, "cosmos_module_support": { - "authz": false, + "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/axelar-chain-logo.png", - "bech32_prefix": "axelar", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/xstaxy/chain.png", + "bech32_prefix": "aura", "fee_assets": [ { - "denom": "uaxl", + "denom": "uaura", "gas_price": { - "low": "0.007", - "average": "0.007", - "high": "0.01" + "low": "0.001", + "average": "0.0025", + "high": "0.004" } } ], @@ -1593,7 +1686,8 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { "chain_name": "fetchhub", @@ -1604,7 +1698,7 @@ "feegrant": true }, "supports_memo": false, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/fetchhub/images/fet.png", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/fetchhub/fet.png", "bech32_prefix": "fetch", "fee_assets": [ { @@ -1622,22 +1716,74 @@ "cosmos_ibc_hooks": false, "cosmos_memo": false, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "sommelier", - "chain_id": "sommelier-3", + "chain_name": "kava", + "chain_id": "kava_2222-10", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": false + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kava_2222/chain.png", + "bech32_prefix": "kava", + "fee_assets": [ + { + "denom": "ukava", + "gas_price": { + "low": "0.05", + "average": "0.1", + "high": "0.25" + } + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "bitsong", + "chain_id": "bitsong-2b", + "pfm_enabled": true, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/bitsong/images/btsg.png", + "bech32_prefix": "bitsong", + "fee_assets": [], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": true, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "passage", + "chain_id": "passage-2", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/sommelier/images/somm.png", - "bech32_prefix": "somm", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/passage/chain.png", + "bech32_prefix": "pasg", "fee_assets": [ { - "denom": "usomm", + "denom": "upasg", "gas_price": null } ], @@ -1647,202 +1793,57 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "carbon", - "chain_id": "carbon-1", - "pfm_enabled": true, + "chain_name": "gitopia", + "chain_id": "gitopia", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/carbon/images/swth.png", - "bech32_prefix": "swth", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gitopia/chain.png", + "bech32_prefix": "gitopia", "fee_assets": [ { - "denom": "busd.1.6.754a80", + "denom": "ulore", "gas_price": { - "low": "3333333333.33334", - "average": "3333333333.33334", - "high": "3333333333.33334" + "low": "0.0012", + "average": "0.0016", + "high": "0.0024" } - }, - { - "denom": "ibc/75249A18DEFBEFE55F83B1C70CAD234DF164F174C6BC51682EE92C2C81C18C93", - "gas_price": { - "low": "0.005", - "average": "0.005", - "high": "0.005" - } - }, - { - "denom": "ibc/662914D0C1CEBCB070C68F061D035E8B10A07C79AB286E7342C85F3BE74612C5", - "gas_price": { - "low": "0.005", - "average": "0.005", - "high": "0.005" - } - }, - { - "denom": "ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518", - "gas_price": { - "low": "0.005", - "average": "0.005", - "high": "0.005" - } - }, - { - "denom": "usdc.1.2.343151", - "gas_price": { - "low": "0.00333333333333334", - "average": "0.00333333333333334", - "high": "0.00333333333333334" - } - }, - { - "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", - "gas_price": { - "low": "0.000333333334", - "average": "0.000333333334", - "high": "0.000333333334" - } - }, - { - "denom": "ibc/4E06CF24FEBFB3F5AF645377DCC0B70AA6183BAF6B918B8B6243FCDEB7D38118", - "gas_price": { - "low": "0.02", - "average": "0.02", - "high": "0.02" - } - }, - { - "denom": "usc", - "gas_price": { - "low": "0.003333333334", - "average": "0.003333333334", - "high": "0.003333333334" - } - }, - { - "denom": "ibc/92E974290AF9E2BC3AEEEC35305C8FD76AC5A22A74CF8D91270FDF5A1C41E861", - "gas_price": { - "low": "6666666666.66667", - "average": "6666666666.66667", - "high": "6666666666.66667" - } - }, - { - "denom": "bnb.1.6.773edb", - "gas_price": { - "low": "33333333.3333334", - "average": "33333333.3333334", - "high": "33333333.3333334" - } - }, - { - "denom": "eth.1.19.c3b805", - "gas_price": { - "low": "3333333.33333334", - "average": "3333333.33333334", - "high": "3333333.33333334" - } - }, - { - "denom": "bneo.1.14.e2e5f6", - "gas_price": { - "low": "0.05", - "average": "0.05", - "high": "0.05" - } - }, - { - "denom": "ibc/07FA7831E1920D0C87C9388F86B0108677F6ED0C9DE7E4063F05ED675192405C", - "gas_price": { - "low": "0.116666666667", - "average": "0.116666666667", - "high": "0.116666666667" - } - }, - { - "denom": "eth.1.2.942d87", - "gas_price": { - "low": "3333333.33333334", - "average": "3333333.33333334", - "high": "3333333.33333334" - } - }, - { - "denom": "usdc.1.6.53ff75", - "gas_price": { - "low": "3333333333.33334", - "average": "3333333333.33334", - "high": "3333333333.33334" - } - }, - { - "denom": "cglp.1.19.1698d3", - "gas_price": { - "low": "3333333333.33334", - "average": "3333333333.33334", - "high": "3333333333.33334" - } - }, - { - "denom": "ibc/A4DB47A9D3CF9A068D454513891B526702455D3EF08FB9EB558C561F9DC2B701", - "gas_price": { - "low": "0.000333333334", - "average": "0.000333333334", - "high": "0.000333333334" - } - }, - { - "denom": "cgt/1", - "gas_price": { - "low": "3333333333.33334", - "average": "3333333333.33334", - "high": "3333333333.33334" - } - }, - { - "denom": "zil.1.18.1a4a06", - "gas_price": { - "low": "200000", - "average": "200000", - "high": "200000" - } - }, - { - "denom": "swth", - "gas_price": { - "low": "100", - "average": "100", - "high": "100" - } - }, - { - "denom": "ibc/3552CECB7BCE1891DB6070D37EC6E954C972B1400141308FCD85FD148BD06DE5", - "gas_price": { - "low": "0.010666666667", - "average": "0.010666666667", - "high": "0.010666666667" - } - }, - { - "denom": "ibc/35E771B8682D828173F4B795F6C307780F96DC64D6F914FAE4CC9B4666F66364", - "gas_price": { - "low": "10000000000", - "average": "10000000000", - "high": "10000000000" - } - }, + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "omniflixhub", + "chain_id": "omniflixhub-1", + "pfm_enabled": true, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/omniflixhub/chain.png", + "bech32_prefix": "omniflix", + "fee_assets": [ { - "denom": "ibc/2B58B8C147E8718EECCB3713271DF46DEE8A3A00A27242628604E31C2F370EF5", + "denom": "uflix", "gas_price": { - "low": "0.001666666667", - "average": "0.001666666667", - "high": "0.001666666667" + "low": "0.001", + "average": "0.0025", + "high": "0.025" } } ], @@ -1852,7 +1853,8 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { "chain_name": "regen", @@ -1863,7 +1865,7 @@ "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/regen/images/regen.png", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/regen/chain.png", "bech32_prefix": "regen", "fee_assets": [ { @@ -1881,103 +1883,168 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "neutron", - "chain_id": "neutron-1", - "pfm_enabled": true, + "chain_name": "archway", + "chain_id": "archway-1", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-black-logo.png", - "bech32_prefix": "neutron", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/archway/chain.png", + "bech32_prefix": "archway", "fee_assets": [ { - "denom": "factory/neutron1ug740qrkquxzrk2hh29qrlx3sktkfml3je7juusc2te7xmvsscns0n2wry/wstETH", - "gas_price": { - "low": "2903231.6597", - "average": "2903231.6597", - "high": "2903231.6597" - } - }, - { - "denom": "ibc/2CB87BCE0937B1D1DFCEE79BE4501AAF3C265E923509AEAC410AD85D27F35130", - "gas_price": { - "low": "2564102564.1026", - "average": "2564102564.1026", - "high": "2564102564.1026" - } - }, - { - "denom": "untrn", - "gas_price": { - "low": "0.0053", - "average": "0.0053", - "high": "0.0053" - } - }, - { - "denom": "ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349", + "denom": "aarch", "gas_price": { - "low": "0.008", - "average": "0.008", - "high": "0.008" + "low": "140000000000", + "average": "196000000000", + "high": "225400000000" } - }, + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "odin", + "chain_id": "odin-mainnet-freya", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/odin/images/odin.png", + "bech32_prefix": "odin", + "fee_assets": [], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "planq", + "chain_id": "planq_7070-2", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/planq_7070/chain.png", + "bech32_prefix": "plq", + "fee_assets": [ { - "denom": "ibc/B7864B03E1B9FD4F049243E92ABD691586F682137037A9F3FCA5222815620B3C", + "denom": "aplanq", "gas_price": { - "low": "0.0006", - "average": "0.0006", - "high": "0.0006" + "low": "30000000000", + "average": "35000000000", + "high": "40000000000" } - }, + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "cryptoorgchain", + "chain_id": "crypto-org-chain-mainnet-1", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/crypto-org-chain-mainnet/chain.png", + "bech32_prefix": "cro", + "fee_assets": [ { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "basecro", "gas_price": { - "low": "0.0008", - "average": "0.0008", - "high": "0.0008" + "low": "0.025", + "average": "0.03", + "high": "0.04" } - }, + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "kyve", + "chain_id": "kyve-1", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/kyve/chain.png", + "bech32_prefix": "kyve", + "fee_assets": [ { - "denom": "ibc/773B4D0A3CD667B2275D5A4A7A2F0909C0BA0F4059C0B9181E680DDF4965DCC7", + "denom": "ukyve", "gas_price": { - "low": "0.0004", - "average": "0.0004", - "high": "0.0004" + "low": "0.02", + "average": "0.03", + "high": "0.06" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, - "cosmos_ibc_hooks": true, + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "quicksilver", - "chain_id": "quicksilver-2", + "chain_name": "cosmoshub", + "chain_id": "cosmoshub-4", "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png", - "bech32_prefix": "quick", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/cosmoshub/chain.png", + "bech32_prefix": "cosmos", "fee_assets": [ { - "denom": "uqck", + "denom": "uatom", "gas_price": { - "low": "0.0001", - "average": "0.0001", - "high": "0.00025" + "low": "0.005", + "average": "0.025", + "high": "0.03" } } ], @@ -1987,24 +2054,33 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "lum", - "chain_id": "lum-network-1", + "chain_name": "nyx", + "chain_id": "nyx", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/lumnetwork/images/lum.png", - "bech32_prefix": "lum", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/nyx/chain.png", + "bech32_prefix": "n", "fee_assets": [ { - "denom": "ulum", + "denom": "unym", "gas_price": { - "low": "0.01", + "low": "0.025", + "average": "0.025", + "high": "0.04" + } + }, + { + "denom": "unyx", + "gas_price": { + "low": "0.025", "average": "0.025", "high": "0.04" } @@ -2016,26 +2092,27 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "aura", - "chain_id": "xstaxy-1", + "chain_name": "andromeda", + "chain_id": "andromeda-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/aura/images/Aura-logo-2.2.png", - "bech32_prefix": "aura", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/andromeda/andromeda.png", + "bech32_prefix": "andr", "fee_assets": [ { - "denom": "uaura", + "denom": "uandr", "gas_price": { - "low": "0.001", - "average": "0.0025", - "high": "0.004" + "low": "0.03", + "average": "0.05", + "high": "0.075" } } ], @@ -2045,55 +2122,47 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "chihuahua", - "chain_id": "chihuahua-1", + "chain_name": "empowerchain", + "chain_id": "empowerchain-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/huahua.png", - "bech32_prefix": "chihuahua", - "fee_assets": [ - { - "denom": "uhuahua", - "gas_price": { - "low": "500", - "average": "1250", - "high": "2000" - } - } - ], + "bech32_prefix": "empower", + "fee_assets": [], "chain_type": "cosmos", "ibc_capabilities": { "cosmos_pfm": false, - "cosmos_ibc_hooks": true, + "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "evmos", - "chain_id": "evmos_9001-2", + "chain_name": "assetmantle", + "chain_id": "mantle-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/evmos.png", - "bech32_prefix": "evmos", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mantle/chain.png", + "bech32_prefix": "mantle", "fee_assets": [ { - "denom": "aevmos", + "denom": "umntl", "gas_price": { - "low": "80000000000", - "average": "80000000000", - "high": "80000000000" + "low": "0.01", + "average": "0.025", + "high": "0.04" } } ], @@ -2103,166 +2172,485 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "cheqd", - "chain_id": "cheqd-mainnet-1", - "pfm_enabled": false, + "chain_name": "composable", + "chain_id": "centauri-1", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/cheqd/images/cheq.png", - "bech32_prefix": "cheqd", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/centauri/chain.png", + "bech32_prefix": "centauri", "fee_assets": [ { - "denom": "ncheq", + "denom": "ppica", "gas_price": { - "low": "25", - "average": "50", - "high": "100" + "low": "0", + "average": "0", + "high": "0" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, + "cosmos_pfm": true, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "terra2", - "chain_id": "phoenix-1", + "chain_name": "persistence", + "chain_id": "core-1", "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png", - "bech32_prefix": "terra", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/core/chain.png", + "bech32_prefix": "persistence", "fee_assets": [ { - "denom": "ibc/2C962DAB9F57FE0921435426AE75196009FAA1981BF86991203C8411F8980FDB", + "denom": "ibc/A6E3AF63B3C906416A9AF7A556C59EA4BD50E617EFFE6299B99700CCB780E444", "gas_price": { - "low": "0.018", - "average": "0.02", - "high": "0.04" + "low": "100000000", + "average": "1000000000", + "high": "10000000000" } }, { - "denom": "uluna", + "denom": "stk/uatom", "gas_price": { - "low": "0.015", - "average": "0.02", + "low": "0.0001", + "average": "0.001", + "high": "0.01" + } + }, + { + "denom": "stk/adydx", + "gas_price": { + "low": "15000000000", + "average": "15000000000", + "high": "15000000000" + } + }, + { + "denom": "uxprt", + "gas_price": { + "low": "0", + "average": "0.025", "high": "0.04" } }, { - "denom": "ibc/B3504E092456BA618CC28AC671A71FB08C6CA0FD0BE7C8A5B5A3E2DD933CC9E4", + "denom": "ibc/646315E3B0461F5FA4C5C8968A88FC45D4D5D04A45B98F1B8294DD82F386DD85", + "gas_price": { + "low": "0.0001", + "average": "0.001", + "high": "0.01" + } + }, + { + "denom": "ibc/B3792E4A62DF4A934EF2DF5968556DB56F5776ED25BDE11188A4F58A7DD406F0", + "gas_price": { + "low": "0.01", + "average": "0.05", + "high": "0.1" + } + }, + { + "denom": "stk/uosmo", + "gas_price": { + "low": "0.0001", + "average": "0.001", + "high": "0.01" + } + }, + { + "denom": "ibc/23DC3FF0E4CBB53A1915E4C62507CB7796956E84C68CA49707787CB8BDE90A1E", + "gas_price": { + "low": "15000000000", + "average": "15000000000", + "high": "15000000000" + } + }, + { + "denom": "ibc/C8A74ABBE2AF892E15680D916A7C22130585CE5704F9B17A10F184A90D53BECA", + "gas_price": { + "low": "0.0001", + "average": "0.001", + "high": "0.01" + } + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": true, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "mars", + "chain_id": "mars-1", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/mars/chain.png", + "bech32_prefix": "mars", + "fee_assets": [ + { + "denom": "umars", + "gas_price": { + "low": "0", + "average": "0", + "high": "0.01" + } + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "oraichain", + "chain_id": "Oraichain", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/Oraichain/chain.png", + "bech32_prefix": "orai", + "fee_assets": [ + { + "denom": "orai", + "gas_price": { + "low": "0.003", + "average": "0.005", + "high": "0.007" + } + } + ], + "chain_type": "cosmos", + "ibc_capabilities": { + "cosmos_pfm": false, + "cosmos_ibc_hooks": true, + "cosmos_memo": true, + "cosmos_autopilot": false + }, + "is_testnet": false + }, + { + "chain_name": "secret", + "chain_id": "secret-4", + "pfm_enabled": false, + "cosmos_module_support": { + "authz": true, + "feegrant": true + }, + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/secret/chain.png", + "bech32_prefix": "secret", + "fee_assets": [ + { + "denom": "uscrt", "gas_price": { - "low": "0.018", - "average": "0.02", - "high": "0.04" + "low": "0.05", + "average": "0.1", + "high": "0.25" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": true, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "juno", - "chain_id": "juno-1", - "pfm_enabled": true, + "chain_name": "gravitybridge", + "chain_id": "gravity-bridge-3", + "pfm_enabled": false, "cosmos_module_support": { "authz": true, - "feegrant": true + "feegrant": false }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png", - "bech32_prefix": "juno", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/gravity-bridge/chain.png", + "bech32_prefix": "gravity", "fee_assets": [ { - "denom": "ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9", + "denom": "gravity0x6B175474E89094C44Da98b954EedeAC495271d0F", + "gas_price": null + }, + { + "denom": "gravity0xc3761EB917CD790B30dAD99f6Cc5b4Ff93C4F9eA", + "gas_price": null + }, + { + "denom": "gravity0x853d955aCEf822Db058eb8505911ED77F175b99e", + "gas_price": null + }, + { + "denom": "gravity0xa47c8bf37f92aBed4A126BDA807A7b7498661acD", + "gas_price": null + }, + { + "denom": "gravity0x01e0E2e61f554eCAaeC0cC933E739Ad90f24a86d", + "gas_price": null + }, + { + "denom": "gravity0x07baC35846e5eD502aA91AdF6A9e7aA210F2DcbE", + "gas_price": null + }, + { + "denom": "gravity0x60e683C6514Edd5F758A55b6f393BeBBAfaA8d5e", + "gas_price": null + }, + { + "denom": "gravity0x514910771AF9Ca656af840dff83E8264EcF986CA", + "gas_price": null + }, + { + "denom": "gravity0xBA11D00c5f74255f56a5E366F4F77f5A186d7f55", + "gas_price": null + }, + { + "denom": "gravity0xc0a4Df35568F116C370E6a6A6022Ceb908eedDaC", + "gas_price": null + }, + { + "denom": "gravity0x30D20208d987713f46DFD34EF128Bb16C404D10f", + "gas_price": null + }, + { + "denom": "ibc/D157AD8A50DAB0FC4EB95BBE1D9407A590FA2CDEE04C90A76C005089BF76E519", + "gas_price": null + }, + { + "denom": "gravity0xa693B19d2931d498c5B318dF961919BB4aee87a5", + "gas_price": null + }, + { + "denom": "gravity0xa670d7237398238DE01267472C6f13e5B8010FD1", + "gas_price": null + }, + { + "denom": "gravity0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84", + "gas_price": null + }, + { + "denom": "gravity0xd8e2F184EedC79A9bdE9Eb7E34B0fF34e98692B7", + "gas_price": null + }, + { + "denom": "gravity0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC", + "gas_price": null + }, + { + "denom": "ibc/048BE20AE2E6BFD4142C547E04F17E5F94363003A12B7B6C084E08101BFCF7D1", + "gas_price": null + }, + { + "denom": "gravity0xaea46A60368A7bD060eec7DF8CBa43b7EF41Ad85", + "gas_price": null + }, + { + "denom": "ibc/00F2B62EB069321A454B708876476AFCD9C23C8C9C4A5A206DDF1CD96B645057", + "gas_price": null + }, + { + "denom": "ibc/29A7122D024B5B8FA8A2EFBB4FA47272C25C8926AA005A96807127208082DAB3", + "gas_price": null + }, + { + "denom": "gravity0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599", + "gas_price": null + }, + { + "denom": "gravity0x467719aD09025FcC6cF6F8311755809d45a5E5f3", + "gas_price": null + }, + { + "denom": "gravity0x147faF8De9d8D8DAAE129B187F0D02D819126750", + "gas_price": null + }, + { + "denom": "gravity0x95aD61b0a150d79219dCF64E1E6Cc01f0B64C4cE", + "gas_price": null + }, + { + "denom": "gravity0x93581991f68DBaE1eA105233b67f7FA0D6BDeE7b", + "gas_price": null + }, + { + "denom": "gravity0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48", "gas_price": { - "low": "0.003", - "average": "0.003", - "high": "0.003" + "low": "0.0002", + "average": "0.0005", + "high": "0.0008" } }, { - "denom": "ujuno", + "denom": "gravity0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "gas_price": null + }, + { + "denom": "gravity0x8D983cb9388EaC77af0474fA441C4815500Cb7BB", + "gas_price": null + }, + { + "denom": "gravity0x2C5Bcad9Ade17428874855913Def0A02D8bE2324", + "gas_price": null + }, + { + "denom": "gravity0x45804880De22913dAFE09f4980848ECE6EcbAf78", + "gas_price": null + }, + { + "denom": "gravity0x817bbDbC3e8A1204f3691d14bB44992841e3dB35", + "gas_price": null + }, + { + "denom": "gravity0x892A6f9dF0147e5f079b0993F486F9acA3c87881", + "gas_price": null + }, + { + "denom": "ibc/5012B1C96F286E8A6604A87037CE51241C6F1CA195B71D1E261FCACB69FB6BC2", + "gas_price": null + }, + { + "denom": "ibc/2E5D0AC026AC1AFA65A23023BA4F24BB8DDF94F118EDC0BAD6F625BFC557CDED", + "gas_price": null + }, + { + "denom": "ugraviton", + "gas_price": null + }, + { + "denom": "gravity0x35a532d376FFd9a705d0Bb319532837337A398E7", + "gas_price": null + }, + { + "denom": "ibc/4F393C3FCA4190C0A6756CE7F6D897D5D1BE57D6CCB80D0BC87393566A7B6602", + "gas_price": null + }, + { + "denom": "gravity0x8a854288a5976036A725879164Ca3e91d30c6A1B", + "gas_price": null + }, + { + "denom": "gravity0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", + "gas_price": null + }, + { + "denom": "gravity0x2B89bF8ba858cd2FCee1faDa378D5cd6936968Be", + "gas_price": null + }, + { + "denom": "gravity0xA0b73E1Ff0B80914AB6fe0444E65848C4C34450b", + "gas_price": null + }, + { + "denom": "gravity0x4f6103BAd230295baCF30f914FDa7D4273B7F585", + "gas_price": null + }, + { + "denom": "gravity0xdAC17F958D2ee523a2206206994597C13D831ec7", "gas_price": { - "low": "0.075", - "average": "0.075", - "high": "0.075" + "low": "0.0002", + "average": "0.0005", + "high": "0.0008" } + }, + { + "denom": "gravity0x7D1AfA7B718fb893dB30A3aBc0Cfc608AaCfeBB0", + "gas_price": null + }, + { + "denom": "ibc/0C273962C274B2C05B22D9474BFE5B84D6A6FCAD198CB9B0ACD35EA521A36606", + "gas_price": null } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, - "cosmos_ibc_hooks": true, + "cosmos_pfm": false, + "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "gitopia", - "chain_id": "gitopia", - "pfm_enabled": false, + "chain_name": "quicksilver", + "chain_id": "quicksilver-2", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/gitopia/images/gitopia.png", - "bech32_prefix": "gitopia", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/quicksilver/chain.png", + "bech32_prefix": "quick", "fee_assets": [ { - "denom": "ulore", + "denom": "uqck", "gas_price": { - "low": "0.0012", - "average": "0.0016", - "high": "0.0024" + "low": "0.0001", + "average": "0.0001", + "high": "0.00025" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, + "cosmos_pfm": true, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "dymension", - "chain_id": "dymension_1100-1", + "chain_name": "umee", + "chain_id": "umee-1", "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/dymension/images/dymension-logo.png", - "bech32_prefix": "dym", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/umee/chain.png", + "bech32_prefix": "umee", "fee_assets": [ { - "denom": "adym", + "denom": "uumee", "gas_price": { - "low": "20000000000", - "average": "20000000000", - "high": "20000000000" + "low": "0.06", + "average": "0.1", + "high": "0.14" } } ], @@ -2272,7 +2660,8 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { "chain_name": "migaloo", @@ -2283,7 +2672,7 @@ "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/migaloo/images/migaloo-light.png", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/migaloo/chain.png", "bech32_prefix": "migaloo", "fee_assets": [ { @@ -2301,204 +2690,87 @@ "cosmos_ibc_hooks": true, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "stride", - "chain_id": "stride-1", - "pfm_enabled": true, + "chain_name": "sifchain", + "chain_id": "sifchain-1", + "pfm_enabled": false, "cosmos_module_support": { - "authz": false, + "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stride-chain-logo.png", - "bech32_prefix": "stride", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/sifchain/chain.png", + "bech32_prefix": "sif", "fee_assets": [ { - "denom": "stinj", - "gas_price": { - "low": "500000000", - "average": "500000000", - "high": "500000000" - } - }, - { - "denom": "ibc/561C70B20188A047BFDE6F9946BDDC5D8AC172B9BE04FF868DFABF819E5A9CCE", - "gas_price": { - "low": "15000000000", - "average": "15000000000", - "high": "15000000000" - } - }, - { - "denom": "ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2", - "gas_price": { - "low": "0.0001", - "average": "0.001", - "high": "0.01" - } - }, - { - "denom": "stutia", - "gas_price": { - "low": "0.01", - "average": "0.01", - "high": "0.01" - } - }, - { - "denom": "stadydx", - "gas_price": { - "low": "15000000000", - "average": "15000000000", - "high": "15000000000" - } - }, - { - "denom": "ibc/A7454562FF29FE068F42F9DE4805ABEF54F599D1720B345D6518D9B5C64EA6D2", - "gas_price": { - "low": "500000000", - "average": "500000000", - "high": "500000000" - } - }, - { - "denom": "ustrd", - "gas_price": { - "low": "0.0005", - "average": "0.005", - "high": "0.05" - } - }, - { - "denom": "stuatom", - "gas_price": { - "low": "0.0001", - "average": "0.001", - "high": "0.01" - } - }, - { - "denom": "ibc/BF3B4F53F3694B66E13C23107C84B6485BD2B96296BB7EC680EA77BBA75B4801", - "gas_price": { - "low": "0.01", - "average": "0.01", - "high": "0.01" - } - }, - { - "denom": "ibc/D24B4564BCD51D3D02D9987D92571EAC5915676A9BD6D9B0C1D0254CB8A5EA34", - "gas_price": { - "low": "0.001", - "average": "0.01", - "high": "0.1" - } - }, - { - "denom": "staevmos", - "gas_price": { - "low": "20000000000", - "average": "20000000000", - "high": "20000000000" - } - }, - { - "denom": "ibc/4B322204B4F59D770680FE4D7A565DDC3F37BFF035474B717476C66A4F83DD72", - "gas_price": { - "low": "20000000000", - "average": "20000000000", - "high": "20000000000" - } - }, - { - "denom": "stuosmo", + "denom": "rowan", "gas_price": { - "low": "0.001", - "average": "0.01", - "high": "0.1" + "low": "1000000000000", + "average": "1500000000000", + "high": "2000000000000" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": true, + "cosmos_pfm": false, "cosmos_ibc_hooks": false, "cosmos_memo": true, - "cosmos_autopilot": true - } + "cosmos_autopilot": false + }, + "is_testnet": false }, { - "chain_name": "celestia", - "chain_id": "celestia", + "chain_name": "axelar", + "chain_id": "axelar-dojo-1", "pfm_enabled": false, "cosmos_module_support": { - "authz": true, + "authz": false, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png", - "bech32_prefix": "celestia", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/axelar-dojo/chain.png", + "bech32_prefix": "axelar", "fee_assets": [ { - "denom": "utia", + "denom": "uaxl", "gas_price": { - "low": "0.01", - "average": "0.02", - "high": "0.1" + "low": "0.007", + "average": "0.007", + "high": "0.01" } } ], "chain_type": "cosmos", "ibc_capabilities": { "cosmos_pfm": false, - "cosmos_ibc_hooks": false, + "cosmos_ibc_hooks": true, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "quasar", - "chain_id": "quasar-1", + "chain_name": "chihuahua", + "chain_id": "chihuahua-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/quasar/images/quasar.png", - "bech32_prefix": "quasar", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/chihuahua/chain.png", + "bech32_prefix": "chihuahua", "fee_assets": [ { - "denom": "ibc/FA0006F056DB6719B8C16C551FC392B62F5729978FC0B125AC9A432DBB2AA1A5", - "gas_price": { - "low": "0.01", - "average": "0.01", - "high": "0.02" - } - }, - { - "denom": "ibc/FA7775734CC73176B7425910DE001A1D2AD9B6D9E93129A5D0750EAD13E4E63A", - "gas_price": { - "low": "0.01", - "average": "0.01", - "high": "0.02" - } - }, - { - "denom": "ibc/0471F1C4E7AFD3F07702BEF6DC365268D64570F7C1FDC98EA6098DD6DE59817B", - "gas_price": { - "low": "0.01", - "average": "0.01", - "high": "0.02" - } - }, - { - "denom": "uqsr", + "denom": "uhuahua", "gas_price": { - "low": "0.1", - "average": "0.1", - "high": "0.2" + "low": "500", + "average": "1250", + "high": "2000" } } ], @@ -2508,63 +2780,65 @@ "cosmos_ibc_hooks": true, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "agoric", - "chain_id": "agoric-3", - "pfm_enabled": false, + "chain_name": "noble", + "chain_id": "noble-1", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/agoric/images/Agoric-logo-color.png", - "bech32_prefix": "agoric", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/noble/chain.png", + "bech32_prefix": "noble", "fee_assets": [ { - "denom": "uist", + "denom": "uusdc", "gas_price": { - "low": "0.0034", - "average": "0.007", - "high": "0.02" + "low": "0.1", + "average": "0.1", + "high": "0.2" } }, { - "denom": "ubld", + "denom": "ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0", "gas_price": { - "low": "0.03", - "average": "0.05", - "high": "0.07" + "low": "0.01", + "average": "0.01", + "high": "0.02" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, + "cosmos_pfm": true, "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "nois", - "chain_id": "nois-1", + "chain_name": "nolus", + "chain_id": "pirin-1", "pfm_enabled": false, "cosmos_module_support": { "authz": true, "feegrant": true }, "supports_memo": true, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/nois/images/nois.png", - "bech32_prefix": "nois", + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/pirin/nolus.png", + "bech32_prefix": "nolus", "fee_assets": [ { - "denom": "unois", + "denom": "unls", "gas_price": { - "low": "0.05", - "average": "0.05", - "high": "0.1" + "low": "0.01", + "average": "0.025", + "high": "0.05" } } ], @@ -2574,36 +2848,38 @@ "cosmos_ibc_hooks": false, "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false }, { - "chain_name": "canto", - "chain_id": "canto_7700-1", - "pfm_enabled": false, + "chain_name": "osmosis", + "chain_id": "osmosis-1", + "pfm_enabled": true, "cosmos_module_support": { "authz": true, - "feegrant": true + "feegrant": false }, - "supports_memo": false, - "logo_uri": "https://raw.githubusercontent.com/cosmos/chain-registry/master/canto/images/canto.png", - "bech32_prefix": "canto", + "supports_memo": true, + "logo_uri": "https://raw.githubusercontent.com/chainapsis/keplr-chain-registry/main/images/osmosis/chain.png", + "bech32_prefix": "osmo", "fee_assets": [ { - "denom": "acanto", + "denom": "uosmo", "gas_price": { - "low": "1250000000000", - "average": "2500000000000", - "high": "3750000000000" + "low": "0.0025", + "average": "0.025", + "high": "0.04" } } ], "chain_type": "cosmos", "ibc_capabilities": { - "cosmos_pfm": false, - "cosmos_ibc_hooks": false, - "cosmos_memo": false, + "cosmos_pfm": true, + "cosmos_ibc_hooks": true, + "cosmos_memo": true, "cosmos_autopilot": false - } + }, + "is_testnet": false } ] }