@chain-registry/assets 1.70.107 → 1.70.109

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (43) hide show
  1. package/README.md +15 -12
  2. package/esm/mainnet/agoric.js +84 -0
  3. package/esm/mainnet/axelar.js +8 -8
  4. package/esm/mainnet/celestia.js +84 -0
  5. package/esm/mainnet/cosmoshub.js +24 -24
  6. package/esm/mainnet/dydx.js +84 -0
  7. package/esm/mainnet/injective.js +108 -24
  8. package/esm/mainnet/int3face.js +306 -0
  9. package/esm/mainnet/jackal.js +8 -8
  10. package/esm/mainnet/migaloo.js +216 -0
  11. package/esm/mainnet/neutron.js +80 -0
  12. package/esm/mainnet/noble.js +24 -24
  13. package/esm/mainnet/omniflixhub.js +84 -0
  14. package/esm/mainnet/osmosis.js +240 -24
  15. package/esm/mainnet/quicksilver.js +1528 -168
  16. package/esm/mainnet/saga.js +84 -0
  17. package/esm/mainnet/sommelier.js +84 -0
  18. package/esm/mainnet/terra2.js +108 -24
  19. package/esm/mainnet/xion.js +84 -0
  20. package/esm/testnet/axelartestnet.js +140 -0
  21. package/esm/testnet/manifesttestnet.js +72 -0
  22. package/index.d.ts +1 -1
  23. package/mainnet/agoric.js +84 -0
  24. package/mainnet/axelar.js +8 -8
  25. package/mainnet/celestia.js +84 -0
  26. package/mainnet/cosmoshub.js +24 -24
  27. package/mainnet/dydx.js +84 -0
  28. package/mainnet/injective.js +108 -24
  29. package/mainnet/int3face.js +306 -0
  30. package/mainnet/jackal.js +8 -8
  31. package/mainnet/migaloo.js +216 -0
  32. package/mainnet/neutron.js +80 -0
  33. package/mainnet/noble.js +24 -24
  34. package/mainnet/omniflixhub.js +84 -0
  35. package/mainnet/osmosis.js +240 -24
  36. package/mainnet/quicksilver.js +1528 -168
  37. package/mainnet/saga.js +84 -0
  38. package/mainnet/sommelier.js +84 -0
  39. package/mainnet/terra2.js +108 -24
  40. package/mainnet/xion.js +84 -0
  41. package/package.json +5 -5
  42. package/testnet/axelartestnet.js +140 -0
  43. package/testnet/manifesttestnet.js +72 -0
package/README.md CHANGED
@@ -61,23 +61,26 @@ console.log(assetList.assets);
61
61
  ]
62
62
  ```
63
63
 
64
- ## Related
65
-
66
- Checkout these related projects:
67
-
68
- * [telescope](https://github.com/hyperweb-io/telescope) Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules.
69
- * [@cosmwasm/ts-codegen](https://github.com/CosmWasm/ts-codegen) Convert your CosmWasm smart contracts into dev-friendly TypeScript classes.
70
- * [chain-registry](https://github.com/hyperweb-io/chain-registry) Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application.
71
- * [cosmos-kit](https://github.com/hyperweb-io/cosmos-kit) Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface.
72
- * [create-cosmos-app](https://github.com/hyperweb-io/create-cosmos-app) Set up a modern Cosmos app by running one command.
73
- * [interchain-ui](https://github.com/hyperweb-io/interchain-ui) The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit.
74
- * [starship](https://github.com/hyperweb-io/starship) Unified Testing and Development for the Interchain.
64
+ ## Interchain JavaScript Stack ⚛️
65
+
66
+ A unified toolkit for building applications and smart contracts in the Interchain ecosystem
67
+
68
+ | Category | Tools | Description |
69
+ |----------------------|------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------|
70
+ | **Chain Information** | [**Chain Registry**](https://github.com/hyperweb-io/chain-registry), [**Utils**](https://www.npmjs.com/package/@chain-registry/utils), [**Client**](https://www.npmjs.com/package/@chain-registry/client) | Everything from token symbols, logos, and IBC denominations for all assets you want to support in your application. |
71
+ | **Wallet Connectors**| [**Interchain Kit**](https://github.com/hyperweb-io/interchain-kit)<sup>beta</sup>, [**Cosmos Kit**](https://github.com/hyperweb-io/cosmos-kit) | Experience the convenience of connecting with a variety of web3 wallets through a single, streamlined interface. |
72
+ | **Signing Clients** | [**InterchainJS**](https://github.com/hyperweb-io/interchainjs)<sup>beta</sup>, [**CosmJS**](https://github.com/cosmos/cosmjs) | A single, universal signing interface for any network |
73
+ | **SDK Clients** | [**Telescope**](https://github.com/hyperweb-io/telescope) | Your Frontend Companion for Building with TypeScript with Cosmos SDK Modules. |
74
+ | **Starter Kits** | [**Create Interchain App**](https://github.com/hyperweb-io/create-interchain-app)<sup>beta</sup>, [**Create Cosmos App**](https://github.com/hyperweb-io/create-cosmos-app) | Set up a modern Interchain app by running one command. |
75
+ | **UI Kits** | [**Interchain UI**](https://github.com/hyperweb-io/interchain-ui) | The Interchain Design System, empowering developers with a flexible, easy-to-use UI kit. |
76
+ | **Testing Frameworks** | [**Starship**](https://github.com/hyperweb-io/starship) | Unified Testing and Development for the Interchain. |
77
+ | **TypeScript Smart Contracts** | [**Create Hyperweb App**](https://github.com/hyperweb-io/create-hyperweb-app) | Build and deploy full-stack blockchain applications with TypeScript |
78
+ | **CosmWasm Contracts** | [**CosmWasm TS Codegen**](https://github.com/CosmWasm/ts-codegen) | Convert your CosmWasm smart contracts into dev-friendly TypeScript classes. |
75
79
 
76
80
  ## Credits
77
81
 
78
82
  🛠 Built by Hyperweb (formerly Cosmology) — if you like our tools, please checkout and contribute to [our github ⚛️](https://github.com/hyperweb-io)
79
83
 
80
-
81
84
  ## Disclaimer
82
85
 
83
86
  AS DESCRIBED IN THE LICENSES, THE SOFTWARE IS PROVIDED “AS IS”, AT YOUR OWN RISK, AND WITHOUT WARRANTIES OF ANY KIND.
@@ -1149,6 +1149,48 @@ const assets = {
1149
1149
  }
1150
1150
  }]
1151
1151
  },
1152
+ {
1153
+ description: 'QCK - native token of Quicksilver',
1154
+ denom_units: [{
1155
+ denom: 'ibc/BBEFCA0C55CF6FE326385725904DD817F7229B82332E8B947F0B15AE1CD66092',
1156
+ exponent: 0,
1157
+ aliases: ['uqck']
1158
+ }, {
1159
+ denom: 'qck',
1160
+ exponent: 6,
1161
+ aliases: []
1162
+ }],
1163
+ base: 'ibc/BBEFCA0C55CF6FE326385725904DD817F7229B82332E8B947F0B15AE1CD66092',
1164
+ name: 'Quicksilver',
1165
+ display: 'qck',
1166
+ symbol: 'QCK',
1167
+ logo_URIs: {
1168
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png'
1169
+ },
1170
+ coingecko_id: 'quicksilver',
1171
+ images: [{
1172
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png',
1173
+ theme: {
1174
+ primary_color_hex: '#b2b2b2'
1175
+ }
1176
+ }],
1177
+ socials: {
1178
+ website: 'https://quicksilver.zone/',
1179
+ twitter: 'https://twitter.com/quicksilverzone'
1180
+ },
1181
+ type_asset: 'sdk.coin',
1182
+ traces: [{
1183
+ type: 'ibc',
1184
+ counterparty: {
1185
+ channel_id: 'channel-125',
1186
+ base_denom: 'uqck',
1187
+ chain_name: 'quicksilver'
1188
+ },
1189
+ chain: {
1190
+ channel_id: 'channel-68'
1191
+ }
1192
+ }]
1193
+ },
1152
1194
  {
1153
1195
  description: 'Secret Network is a privacy-focused blockchain that enables private and secure smart contracts, protecting sensitive data.',
1154
1196
  denom_units: [{
@@ -2419,6 +2461,48 @@ const assets = {
2419
2461
  }
2420
2462
  }]
2421
2463
  },
2464
+ {
2465
+ description: 'QCK - native token of Quicksilver',
2466
+ denom_units: [{
2467
+ denom: 'ibc/BBEFCA0C55CF6FE326385725904DD817F7229B82332E8B947F0B15AE1CD66092',
2468
+ exponent: 0,
2469
+ aliases: ['uqck']
2470
+ }, {
2471
+ denom: 'qck',
2472
+ exponent: 6,
2473
+ aliases: []
2474
+ }],
2475
+ base: 'ibc/BBEFCA0C55CF6FE326385725904DD817F7229B82332E8B947F0B15AE1CD66092',
2476
+ name: 'Quicksilver',
2477
+ display: 'qck',
2478
+ symbol: 'QCK',
2479
+ logo_URIs: {
2480
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png'
2481
+ },
2482
+ coingecko_id: 'quicksilver',
2483
+ images: [{
2484
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png',
2485
+ theme: {
2486
+ primary_color_hex: '#b2b2b2'
2487
+ }
2488
+ }],
2489
+ socials: {
2490
+ website: 'https://quicksilver.zone/',
2491
+ twitter: 'https://twitter.com/quicksilverzone'
2492
+ },
2493
+ type_asset: 'sdk.coin',
2494
+ traces: [{
2495
+ type: 'ibc',
2496
+ counterparty: {
2497
+ channel_id: 'channel-125',
2498
+ base_denom: 'uqck',
2499
+ chain_name: 'quicksilver'
2500
+ },
2501
+ chain: {
2502
+ channel_id: 'channel-68'
2503
+ }
2504
+ }]
2505
+ },
2422
2506
  {
2423
2507
  description: 'Secret Network is a privacy-focused blockchain that enables private and secure smart contracts, protecting sensitive data.',
2424
2508
  denom_units: [{
@@ -1840,14 +1840,14 @@ const assets = {
1840
1840
  {
1841
1841
  description: 'Jackal Network is a decentralized storage platform that aims to provide secure, private, and efficient data storage solutions on the blockchain.',
1842
1842
  denom_units: [{
1843
- denom: 'ibc/2027EC8CD73EB3F0E7E46FFFD71F5A06F91067BE188ADC9D5F512CD8F2145226',
1843
+ denom: 'ibc/A510E27678EF927ABF6781D9A96D3AE1FCA083ACE89EBFF3CC55D343C5192444',
1844
1844
  exponent: 0,
1845
1845
  aliases: ['ujkl']
1846
1846
  }, {
1847
1847
  denom: 'jkl',
1848
1848
  exponent: 6
1849
1849
  }],
1850
- base: 'ibc/2027EC8CD73EB3F0E7E46FFFD71F5A06F91067BE188ADC9D5F512CD8F2145226',
1850
+ base: 'ibc/A510E27678EF927ABF6781D9A96D3AE1FCA083ACE89EBFF3CC55D343C5192444',
1851
1851
  name: 'Jackal',
1852
1852
  display: 'jkl',
1853
1853
  symbol: 'JKL',
@@ -1867,12 +1867,12 @@ const assets = {
1867
1867
  traces: [{
1868
1868
  type: 'ibc',
1869
1869
  counterparty: {
1870
- channel_id: 'channel-49',
1870
+ channel_id: 'channel-153',
1871
1871
  base_denom: 'ujkl',
1872
1872
  chain_name: 'jackal'
1873
1873
  },
1874
1874
  chain: {
1875
- channel_id: 'channel-137'
1875
+ channel_id: 'channel-168'
1876
1876
  }
1877
1877
  }]
1878
1878
  },
@@ -8522,14 +8522,14 @@ const assets = {
8522
8522
  {
8523
8523
  description: 'Jackal Network is a decentralized storage platform that aims to provide secure, private, and efficient data storage solutions on the blockchain.',
8524
8524
  denom_units: [{
8525
- denom: 'ibc/2027EC8CD73EB3F0E7E46FFFD71F5A06F91067BE188ADC9D5F512CD8F2145226',
8525
+ denom: 'ibc/A510E27678EF927ABF6781D9A96D3AE1FCA083ACE89EBFF3CC55D343C5192444',
8526
8526
  exponent: 0,
8527
8527
  aliases: ['ujkl']
8528
8528
  }, {
8529
8529
  denom: 'jkl',
8530
8530
  exponent: 6
8531
8531
  }],
8532
- base: 'ibc/2027EC8CD73EB3F0E7E46FFFD71F5A06F91067BE188ADC9D5F512CD8F2145226',
8532
+ base: 'ibc/A510E27678EF927ABF6781D9A96D3AE1FCA083ACE89EBFF3CC55D343C5192444',
8533
8533
  name: 'Jackal',
8534
8534
  display: 'jkl',
8535
8535
  symbol: 'JKL',
@@ -8549,12 +8549,12 @@ const assets = {
8549
8549
  traces: [{
8550
8550
  type: 'ibc',
8551
8551
  counterparty: {
8552
- channel_id: 'channel-49',
8552
+ channel_id: 'channel-153',
8553
8553
  base_denom: 'ujkl',
8554
8554
  chain_name: 'jackal'
8555
8555
  },
8556
8556
  chain: {
8557
- channel_id: 'channel-137'
8557
+ channel_id: 'channel-168'
8558
8558
  }
8559
8559
  }]
8560
8560
  },
@@ -5104,6 +5104,48 @@ const assets = {
5104
5104
  }
5105
5105
  }]
5106
5106
  },
5107
+ {
5108
+ description: 'QCK - native token of Quicksilver',
5109
+ denom_units: [{
5110
+ denom: 'ibc/BA9C8B4709FA149BEF4C86656BCE54A6AC78176110D5A7122CDE3D5435F51A15',
5111
+ exponent: 0,
5112
+ aliases: ['uqck']
5113
+ }, {
5114
+ denom: 'qck',
5115
+ exponent: 6,
5116
+ aliases: []
5117
+ }],
5118
+ base: 'ibc/BA9C8B4709FA149BEF4C86656BCE54A6AC78176110D5A7122CDE3D5435F51A15',
5119
+ name: 'Quicksilver',
5120
+ display: 'qck',
5121
+ symbol: 'QCK',
5122
+ logo_URIs: {
5123
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png'
5124
+ },
5125
+ coingecko_id: 'quicksilver',
5126
+ images: [{
5127
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png',
5128
+ theme: {
5129
+ primary_color_hex: '#b2b2b2'
5130
+ }
5131
+ }],
5132
+ socials: {
5133
+ website: 'https://quicksilver.zone/',
5134
+ twitter: 'https://twitter.com/quicksilverzone'
5135
+ },
5136
+ type_asset: 'sdk.coin',
5137
+ traces: [{
5138
+ type: 'ibc',
5139
+ counterparty: {
5140
+ channel_id: 'channel-207',
5141
+ base_denom: 'uqck',
5142
+ chain_name: 'quicksilver'
5143
+ },
5144
+ chain: {
5145
+ channel_id: 'channel-36'
5146
+ }
5147
+ }]
5148
+ },
5107
5149
  {
5108
5150
  description: 'Secret Network is a privacy-focused blockchain that enables private and secure smart contracts, protecting sensitive data.',
5109
5151
  denom_units: [{
@@ -10329,6 +10371,48 @@ const assets = {
10329
10371
  }
10330
10372
  }]
10331
10373
  },
10374
+ {
10375
+ description: 'QCK - native token of Quicksilver',
10376
+ denom_units: [{
10377
+ denom: 'ibc/BA9C8B4709FA149BEF4C86656BCE54A6AC78176110D5A7122CDE3D5435F51A15',
10378
+ exponent: 0,
10379
+ aliases: ['uqck']
10380
+ }, {
10381
+ denom: 'qck',
10382
+ exponent: 6,
10383
+ aliases: []
10384
+ }],
10385
+ base: 'ibc/BA9C8B4709FA149BEF4C86656BCE54A6AC78176110D5A7122CDE3D5435F51A15',
10386
+ name: 'Quicksilver',
10387
+ display: 'qck',
10388
+ symbol: 'QCK',
10389
+ logo_URIs: {
10390
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png'
10391
+ },
10392
+ coingecko_id: 'quicksilver',
10393
+ images: [{
10394
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png',
10395
+ theme: {
10396
+ primary_color_hex: '#b2b2b2'
10397
+ }
10398
+ }],
10399
+ socials: {
10400
+ website: 'https://quicksilver.zone/',
10401
+ twitter: 'https://twitter.com/quicksilverzone'
10402
+ },
10403
+ type_asset: 'sdk.coin',
10404
+ traces: [{
10405
+ type: 'ibc',
10406
+ counterparty: {
10407
+ channel_id: 'channel-207',
10408
+ base_denom: 'uqck',
10409
+ chain_name: 'quicksilver'
10410
+ },
10411
+ chain: {
10412
+ channel_id: 'channel-36'
10413
+ }
10414
+ }]
10415
+ },
10332
10416
  {
10333
10417
  description: 'Secret Network is a privacy-focused blockchain that enables private and secure smart contracts, protecting sensitive data.',
10334
10418
  denom_units: [{
@@ -3809,10 +3809,10 @@ const assets = {
3809
3809
  display: 'ckUSD',
3810
3810
  symbol: 'CKUSD',
3811
3811
  logo_URIs: {
3812
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kusd.svg'
3812
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/ckusd.svg'
3813
3813
  },
3814
3814
  images: [{
3815
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kusd.svg'
3815
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/ckusd.svg'
3816
3816
  }],
3817
3817
  keywords: ['dex', 'mm'],
3818
3818
  socials: {
@@ -3847,10 +3847,10 @@ const assets = {
3847
3847
  display: 'cUSDC',
3848
3848
  symbol: 'CUSDC',
3849
3849
  logo_URIs: {
3850
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
3850
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdc.svg'
3851
3851
  },
3852
3852
  images: [{
3853
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
3853
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdc.svg'
3854
3854
  }],
3855
3855
  keywords: ['dex', 'mm'],
3856
3856
  type_asset: 'sdk.coin',
@@ -3879,12 +3879,12 @@ const assets = {
3879
3879
  base: 'ibc/7C786F32F74F43D6B529B23500B4447925AA8E9161979607988D8C4D89AB7334',
3880
3880
  name: 'cUSDT.inj',
3881
3881
  display: 'cUSDT.inj',
3882
- symbol: 'CUSDT.inj',
3882
+ symbol: 'cUSDT.inj',
3883
3883
  logo_URIs: {
3884
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
3884
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdt.svg'
3885
3885
  },
3886
3886
  images: [{
3887
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
3887
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdt.svg'
3888
3888
  }],
3889
3889
  keywords: ['dex', 'mm'],
3890
3890
  type_asset: 'sdk.coin',
@@ -3913,12 +3913,12 @@ const assets = {
3913
3913
  base: 'ibc/6D6CF93232AE8B235853C4C1ED98580F66606D0B2C6A1101C08BC961CAF36044',
3914
3914
  name: 'asUSDT.inj',
3915
3915
  display: 'asusdtinj',
3916
- symbol: 'ASUSDT.inj',
3916
+ symbol: 'asUSDT.inj',
3917
3917
  logo_URIs: {
3918
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
3918
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdt.svg'
3919
3919
  },
3920
3920
  images: [{
3921
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
3921
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdt.svg'
3922
3922
  }],
3923
3923
  keywords: ['dex', 'mm'],
3924
3924
  type_asset: 'sdk.coin',
@@ -3949,10 +3949,10 @@ const assets = {
3949
3949
  display: 'asUSDC',
3950
3950
  symbol: 'ASUSDC',
3951
3951
  logo_URIs: {
3952
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
3952
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdc.svg'
3953
3953
  },
3954
3954
  images: [{
3955
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
3955
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdc.svg'
3956
3956
  }],
3957
3957
  keywords: ['dex', 'mm'],
3958
3958
  type_asset: 'sdk.coin',
@@ -11206,10 +11206,10 @@ const assets = {
11206
11206
  display: 'ckUSD',
11207
11207
  symbol: 'CKUSD',
11208
11208
  logo_URIs: {
11209
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kusd.svg'
11209
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/ckusd.svg'
11210
11210
  },
11211
11211
  images: [{
11212
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/kusd.svg'
11212
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/ckusd.svg'
11213
11213
  }],
11214
11214
  keywords: ['dex', 'mm'],
11215
11215
  socials: {
@@ -11244,10 +11244,10 @@ const assets = {
11244
11244
  display: 'cUSDC',
11245
11245
  symbol: 'CUSDC',
11246
11246
  logo_URIs: {
11247
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
11247
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdc.svg'
11248
11248
  },
11249
11249
  images: [{
11250
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
11250
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdc.svg'
11251
11251
  }],
11252
11252
  keywords: ['dex', 'mm'],
11253
11253
  type_asset: 'sdk.coin',
@@ -11276,12 +11276,12 @@ const assets = {
11276
11276
  base: 'ibc/7C786F32F74F43D6B529B23500B4447925AA8E9161979607988D8C4D89AB7334',
11277
11277
  name: 'cUSDT.inj',
11278
11278
  display: 'cUSDT.inj',
11279
- symbol: 'CUSDT.inj',
11279
+ symbol: 'cUSDT.inj',
11280
11280
  logo_URIs: {
11281
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
11281
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdt.svg'
11282
11282
  },
11283
11283
  images: [{
11284
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
11284
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/cusdt.svg'
11285
11285
  }],
11286
11286
  keywords: ['dex', 'mm'],
11287
11287
  type_asset: 'sdk.coin',
@@ -11310,12 +11310,12 @@ const assets = {
11310
11310
  base: 'ibc/6D6CF93232AE8B235853C4C1ED98580F66606D0B2C6A1101C08BC961CAF36044',
11311
11311
  name: 'asUSDT.inj',
11312
11312
  display: 'asusdtinj',
11313
- symbol: 'ASUSDT.inj',
11313
+ symbol: 'asUSDT.inj',
11314
11314
  logo_URIs: {
11315
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
11315
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdt.svg'
11316
11316
  },
11317
11317
  images: [{
11318
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
11318
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdt.svg'
11319
11319
  }],
11320
11320
  keywords: ['dex', 'mm'],
11321
11321
  type_asset: 'sdk.coin',
@@ -11346,10 +11346,10 @@ const assets = {
11346
11346
  display: 'asUSDC',
11347
11347
  symbol: 'ASUSDC',
11348
11348
  logo_URIs: {
11349
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
11349
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdc.svg'
11350
11350
  },
11351
11351
  images: [{
11352
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
11352
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kopi/images/asusdc.svg'
11353
11353
  }],
11354
11354
  keywords: ['dex', 'mm'],
11355
11355
  type_asset: 'sdk.coin',
@@ -5144,6 +5144,48 @@ const assets = {
5144
5144
  }
5145
5145
  }]
5146
5146
  },
5147
+ {
5148
+ description: 'QCK - native token of Quicksilver',
5149
+ denom_units: [{
5150
+ denom: 'ibc/67307289B5B1642758DDF16AE21928594B2C82B3B8BEA13B2F6C28F3F161353D',
5151
+ exponent: 0,
5152
+ aliases: ['uqck']
5153
+ }, {
5154
+ denom: 'qck',
5155
+ exponent: 6,
5156
+ aliases: []
5157
+ }],
5158
+ base: 'ibc/67307289B5B1642758DDF16AE21928594B2C82B3B8BEA13B2F6C28F3F161353D',
5159
+ name: 'Quicksilver',
5160
+ display: 'qck',
5161
+ symbol: 'QCK',
5162
+ logo_URIs: {
5163
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png'
5164
+ },
5165
+ coingecko_id: 'quicksilver',
5166
+ images: [{
5167
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png',
5168
+ theme: {
5169
+ primary_color_hex: '#b2b2b2'
5170
+ }
5171
+ }],
5172
+ socials: {
5173
+ website: 'https://quicksilver.zone/',
5174
+ twitter: 'https://twitter.com/quicksilverzone'
5175
+ },
5176
+ type_asset: 'sdk.coin',
5177
+ traces: [{
5178
+ type: 'ibc',
5179
+ counterparty: {
5180
+ channel_id: 'channel-164',
5181
+ base_denom: 'uqck',
5182
+ chain_name: 'quicksilver'
5183
+ },
5184
+ chain: {
5185
+ channel_id: 'channel-32'
5186
+ }
5187
+ }]
5188
+ },
5147
5189
  {
5148
5190
  description: 'Stride is a liquid staking blockchain in the Cosmos ecosystem that allows users to stake any IBC-compatible tokens and receive stTokens in return, providing liquidity while earning staking rewards.',
5149
5191
  denom_units: [{
@@ -10042,6 +10084,48 @@ const assets = {
10042
10084
  }
10043
10085
  }]
10044
10086
  },
10087
+ {
10088
+ description: 'QCK - native token of Quicksilver',
10089
+ denom_units: [{
10090
+ denom: 'ibc/67307289B5B1642758DDF16AE21928594B2C82B3B8BEA13B2F6C28F3F161353D',
10091
+ exponent: 0,
10092
+ aliases: ['uqck']
10093
+ }, {
10094
+ denom: 'qck',
10095
+ exponent: 6,
10096
+ aliases: []
10097
+ }],
10098
+ base: 'ibc/67307289B5B1642758DDF16AE21928594B2C82B3B8BEA13B2F6C28F3F161353D',
10099
+ name: 'Quicksilver',
10100
+ display: 'qck',
10101
+ symbol: 'QCK',
10102
+ logo_URIs: {
10103
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png'
10104
+ },
10105
+ coingecko_id: 'quicksilver',
10106
+ images: [{
10107
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/quicksilver/images/qck.png',
10108
+ theme: {
10109
+ primary_color_hex: '#b2b2b2'
10110
+ }
10111
+ }],
10112
+ socials: {
10113
+ website: 'https://quicksilver.zone/',
10114
+ twitter: 'https://twitter.com/quicksilverzone'
10115
+ },
10116
+ type_asset: 'sdk.coin',
10117
+ traces: [{
10118
+ type: 'ibc',
10119
+ counterparty: {
10120
+ channel_id: 'channel-164',
10121
+ base_denom: 'uqck',
10122
+ chain_name: 'quicksilver'
10123
+ },
10124
+ chain: {
10125
+ channel_id: 'channel-32'
10126
+ }
10127
+ }]
10128
+ },
10045
10129
  {
10046
10130
  description: 'Stride is a liquid staking blockchain in the Cosmos ecosystem that allows users to stake any IBC-compatible tokens and receive stTokens in return, providing liquidity while earning staking rewards.',
10047
10131
  denom_units: [{