chain-registry 1.63.11 → 1.63.13

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 (95) hide show
  1. package/LICENSE +1 -0
  2. package/README.md +6 -2
  3. package/esm/mainnet/akash/assets.js +8 -1
  4. package/esm/mainnet/assets.js +2 -0
  5. package/esm/mainnet/canto/assets.js +8 -1
  6. package/esm/mainnet/celestia/chain.js +18 -0
  7. package/esm/mainnet/chains.js +2 -0
  8. package/esm/mainnet/composable/assets.js +21 -3
  9. package/esm/mainnet/cosmoshub/assets.js +8 -1
  10. package/esm/mainnet/cronos/assets.js +8 -1
  11. package/esm/mainnet/evmos/assets.js +8 -1
  12. package/esm/mainnet/gateway/assets.js +8 -1
  13. package/esm/mainnet/gravitybridge/assets.js +8 -1
  14. package/esm/mainnet/heli/assets.js +24 -0
  15. package/esm/mainnet/heli/chain.js +57 -0
  16. package/esm/mainnet/heli/index.js +4 -0
  17. package/esm/mainnet/injective/assets.js +8 -1
  18. package/esm/mainnet/kava/assets.js +8 -1
  19. package/esm/mainnet/kujira/assets.js +10 -1
  20. package/esm/mainnet/lava/chain.js +2 -10
  21. package/esm/mainnet/loop/chain.js +1 -2
  22. package/esm/mainnet/migaloo/assets.js +13 -2
  23. package/esm/mainnet/named.js +1 -0
  24. package/esm/mainnet/nomic/chain.js +8 -4
  25. package/esm/mainnet/omniflixhub/assets.js +6 -1
  26. package/esm/mainnet/osmosis/assets.js +97 -17
  27. package/esm/mainnet/osmosis/chain.js +6 -10
  28. package/esm/mainnet/osmosis/ibc.js +16 -0
  29. package/esm/mainnet/persistence/assets.js +8 -1
  30. package/esm/mainnet/sunrise/assets.js +34 -8
  31. package/esm/mainnet/sunrise/chain.js +3 -3
  32. package/esm/mainnet/terra/ibc.js +16 -0
  33. package/esm/mainnet/terra2/assets.js +8 -1
  34. package/esm/noncosmos/ethereum/assets.js +18 -3
  35. package/esm/noncosmos/solana/assets.js +7 -1
  36. package/esm/testnet/assets.js +2 -0
  37. package/esm/testnet/celestiatestnet3/chain.js +18 -0
  38. package/esm/testnet/chains.js +2 -0
  39. package/esm/testnet/mantrachaintestnet/chain.js +0 -1
  40. package/esm/testnet/named.js +1 -0
  41. package/esm/testnet/sgetestnet4/assets.js +6 -1
  42. package/esm/testnet/sunrisetestnet/assets.js +58 -0
  43. package/esm/testnet/sunrisetestnet/chain.js +54 -0
  44. package/esm/testnet/sunrisetestnet/index.js +4 -0
  45. package/mainnet/akash/assets.js +8 -1
  46. package/mainnet/assets.js +2 -0
  47. package/mainnet/canto/assets.js +8 -1
  48. package/mainnet/celestia/chain.js +18 -0
  49. package/mainnet/chains.js +2 -0
  50. package/mainnet/composable/assets.js +21 -3
  51. package/mainnet/cosmoshub/assets.js +8 -1
  52. package/mainnet/cronos/assets.js +8 -1
  53. package/mainnet/evmos/assets.js +8 -1
  54. package/mainnet/gateway/assets.js +8 -1
  55. package/mainnet/gravitybridge/assets.js +8 -1
  56. package/mainnet/heli/assets.d.ts +3 -0
  57. package/mainnet/heli/assets.js +26 -0
  58. package/mainnet/heli/chain.d.ts +3 -0
  59. package/mainnet/heli/chain.js +59 -0
  60. package/mainnet/heli/index.d.ts +2 -0
  61. package/mainnet/heli/index.js +10 -0
  62. package/mainnet/injective/assets.js +8 -1
  63. package/mainnet/kava/assets.js +8 -1
  64. package/mainnet/kujira/assets.js +10 -1
  65. package/mainnet/lava/chain.js +2 -10
  66. package/mainnet/loop/chain.js +1 -2
  67. package/mainnet/migaloo/assets.js +13 -2
  68. package/mainnet/named.d.ts +1 -0
  69. package/mainnet/named.js +4 -3
  70. package/mainnet/nomic/chain.js +8 -4
  71. package/mainnet/omniflixhub/assets.js +6 -1
  72. package/mainnet/osmosis/assets.js +97 -17
  73. package/mainnet/osmosis/chain.js +6 -10
  74. package/mainnet/osmosis/ibc.js +16 -0
  75. package/mainnet/persistence/assets.js +8 -1
  76. package/mainnet/sunrise/assets.js +34 -8
  77. package/mainnet/sunrise/chain.js +3 -3
  78. package/mainnet/terra/ibc.js +16 -0
  79. package/mainnet/terra2/assets.js +8 -1
  80. package/noncosmos/ethereum/assets.js +18 -3
  81. package/noncosmos/solana/assets.js +7 -1
  82. package/package.json +4 -4
  83. package/testnet/assets.js +2 -0
  84. package/testnet/celestiatestnet3/chain.js +18 -0
  85. package/testnet/chains.js +2 -0
  86. package/testnet/mantrachaintestnet/chain.js +0 -1
  87. package/testnet/named.d.ts +1 -0
  88. package/testnet/named.js +3 -2
  89. package/testnet/sgetestnet4/assets.js +6 -1
  90. package/testnet/sunrisetestnet/assets.d.ts +3 -0
  91. package/testnet/sunrisetestnet/assets.js +60 -0
  92. package/testnet/sunrisetestnet/chain.d.ts +3 -0
  93. package/testnet/sunrisetestnet/chain.js +56 -0
  94. package/testnet/sunrisetestnet/index.d.ts +2 -0
  95. package/testnet/sunrisetestnet/index.js +10 -0
@@ -287,14 +287,15 @@ const info = {
287
287
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg'
288
288
  },
289
289
  images: [{
290
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg',
291
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.png'
292
+ }, {
290
293
  image_sync: {
291
294
  chain_name: 'axelar',
292
295
  base_denom: 'uusdt'
293
296
  },
294
297
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.png',
295
298
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdt.svg'
296
- }, {
297
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.axl.svg'
298
299
  }]
299
300
  },
300
301
  {
@@ -3084,16 +3085,24 @@ const info = {
3084
3085
  }
3085
3086
  ],
3086
3087
  logo_URIs: {
3088
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
3087
3089
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
3088
3090
  },
3089
3091
  images: [{
3092
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg',
3093
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.png'
3094
+ }, {
3090
3095
  image_sync: {
3091
3096
  chain_name: 'gravitybridge',
3092
3097
  base_denom: 'gravity0xdAC17F958D2ee523a2206206994597C13D831ec7'
3093
3098
  },
3094
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
3095
- }, {
3096
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.grv.svg'
3099
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
3100
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
3101
+ theme: {
3102
+ circle: true,
3103
+ primary_color_hex: '#009393',
3104
+ background_color_hex: '#009393'
3105
+ }
3097
3106
  }]
3098
3107
  },
3099
3108
  {
@@ -9190,14 +9199,24 @@ const info = {
9190
9199
  }
9191
9200
  ],
9192
9201
  logo_URIs: {
9202
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
9193
9203
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
9194
9204
  },
9195
9205
  images: [{
9206
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.svg',
9207
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.kava.png'
9208
+ }, {
9196
9209
  image_sync: {
9197
9210
  chain_name: 'kava',
9198
9211
  base_denom: 'erc20/tether/usdt'
9199
9212
  },
9200
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
9213
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
9214
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
9215
+ theme: {
9216
+ circle: true,
9217
+ primary_color_hex: '#009393',
9218
+ background_color_hex: '#009393'
9219
+ }
9201
9220
  }]
9202
9221
  },
9203
9222
  {
@@ -9548,16 +9567,24 @@ const info = {
9548
9567
  }
9549
9568
  ],
9550
9569
  logo_URIs: {
9570
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
9551
9571
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
9552
9572
  },
9553
9573
  images: [{
9574
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.svg',
9575
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.wh.png'
9576
+ }, {
9554
9577
  image_sync: {
9555
9578
  chain_name: 'ethereum',
9556
9579
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
9557
9580
  },
9558
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
9559
- }, {
9560
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.hole.svg'
9581
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
9582
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
9583
+ theme: {
9584
+ circle: true,
9585
+ primary_color_hex: '#009393',
9586
+ background_color_hex: '#009393'
9587
+ }
9561
9588
  }]
9562
9589
  },
9563
9590
  {
@@ -10127,7 +10154,12 @@ const info = {
10127
10154
  base_denom: 'ario'
10128
10155
  },
10129
10156
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.png',
10130
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg'
10157
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/realio/images/rio.svg',
10158
+ theme: {
10159
+ primary_color_hex: '#000000',
10160
+ background_color_hex: '#000000',
10161
+ circle: true
10162
+ }
10131
10163
  }]
10132
10164
  },
10133
10165
  {
@@ -10211,7 +10243,12 @@ const info = {
10211
10243
  base_denom: 'usge'
10212
10244
  },
10213
10245
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png',
10214
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg'
10246
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg',
10247
+ theme: {
10248
+ primary_color_hex: '#C0A15B',
10249
+ background_color_hex: '#00000000',
10250
+ circle: false
10251
+ }
10215
10252
  }]
10216
10253
  },
10217
10254
  {
@@ -11637,7 +11674,12 @@ const info = {
11637
11674
  chain_name: 'injective',
11638
11675
  base_denom: 'factory/inj1xtel2knkt8hmc9dnzpjz6kdmacgcfmlv5f308w/ninja'
11639
11676
  },
11640
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png'
11677
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/ninja.png',
11678
+ theme: {
11679
+ primary_color_hex: '#00468E',
11680
+ background_color_hex: '#00468E',
11681
+ circle: true
11682
+ }
11641
11683
  }]
11642
11684
  },
11643
11685
  {
@@ -11788,7 +11830,12 @@ const info = {
11788
11830
  chain_name: 'chihuahua',
11789
11831
  base_denom: 'factory/chihuahua1x4q2vkrz4dfgd9hcw0p5m2f2nuv2uqmt9xr8k2/achihuahuawifhat'
11790
11832
  },
11791
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png'
11833
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/chihuahua/images/baddog.png',
11834
+ theme: {
11835
+ primary_color_hex: '#F7E3C0',
11836
+ background_color_hex: '#F7E3C0',
11837
+ circle: true
11838
+ }
11792
11839
  }]
11793
11840
  },
11794
11841
  {
@@ -13682,6 +13729,10 @@ const info = {
13682
13729
  }
13683
13730
  }],
13684
13731
  images: [{
13732
+ image_sync: {
13733
+ chain_name: 'furya',
13734
+ base_denom: 'ufury'
13735
+ },
13685
13736
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.png',
13686
13737
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/furya/images/fury.svg'
13687
13738
  }],
@@ -14422,11 +14473,20 @@ const info = {
14422
14473
  }
14423
14474
  ],
14424
14475
  images: [{
14476
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.svg',
14477
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.pica.png'
14478
+ }, {
14425
14479
  image_sync: {
14426
14480
  chain_name: 'ethereum',
14427
14481
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
14428
14482
  },
14429
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
14483
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
14484
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
14485
+ theme: {
14486
+ circle: true,
14487
+ primary_color_hex: '#009393',
14488
+ background_color_hex: '#009393'
14489
+ }
14430
14490
  }]
14431
14491
  },
14432
14492
  {
@@ -15747,11 +15807,20 @@ const info = {
15747
15807
  }
15748
15808
  ],
15749
15809
  images: [{
15810
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.svg',
15811
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/usdt.solana.pica.png'
15812
+ }, {
15750
15813
  image_sync: {
15751
15814
  chain_name: 'solana',
15752
15815
  base_denom: 'Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB'
15753
15816
  },
15754
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
15817
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
15818
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
15819
+ theme: {
15820
+ circle: true,
15821
+ primary_color_hex: '#009393',
15822
+ background_color_hex: '#009393'
15823
+ }
15755
15824
  }],
15756
15825
  keywords: ['osmosis_unlisted']
15757
15826
  },
@@ -16025,7 +16094,13 @@ const info = {
16025
16094
  chain_name: 'ethereum',
16026
16095
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
16027
16096
  },
16028
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
16097
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
16098
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
16099
+ theme: {
16100
+ circle: true,
16101
+ primary_color_hex: '#009393',
16102
+ background_color_hex: '#009393'
16103
+ }
16029
16104
  }],
16030
16105
  keywords: ['osmosis_unlisted']
16031
16106
  },
@@ -16072,7 +16147,12 @@ const info = {
16072
16147
  chain_name: 'solana',
16073
16148
  base_denom: 'ATeTQcUkWGs7AZ15mCiFUWCW9EUL7KpDZEHCN1Y8pump'
16074
16149
  },
16075
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png'
16150
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/solana/images/whine.png',
16151
+ theme: {
16152
+ primary_color_hex: '#FFFFFF',
16153
+ background_color_hex: '#FFFFFF',
16154
+ circle: false
16155
+ }
16076
16156
  }]
16077
16157
  },
16078
16158
  {
@@ -35,18 +35,14 @@ const info = {
35
35
  cosmwasm_version: 'osmosis-labs/wasmd v0.45.0-osmo'
36
36
  },
37
37
  images: [{
38
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png',
39
- theme: {
40
- primary_color_hex: '#231D4B'
41
- },
42
- layout: 'logo',
43
- text_position: 'right'
44
- }, {
45
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
46
- layout: 'logomark'
38
+ image_sync: {
39
+ chain_name: 'osmosis',
40
+ base_denom: 'uosmo'
41
+ },
42
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
47
43
  }],
48
44
  logo_URIs: {
49
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png'
45
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
50
46
  },
51
47
  description: 'Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.',
52
48
  apis: {
@@ -3706,6 +3706,22 @@ const info = [
3706
3706
  preferred: true,
3707
3707
  dex: 'osmosis'
3708
3708
  }
3709
+ }, {
3710
+ chain_1: {
3711
+ channel_id: 'channel-78488',
3712
+ port_id: 'transfer'
3713
+ },
3714
+ chain_2: {
3715
+ channel_id: 'channel-108',
3716
+ port_id: 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc'
3717
+ },
3718
+ ordering: 'unordered',
3719
+ version: 'ics20-1',
3720
+ tags: {
3721
+ status: 'live',
3722
+ preferred: false,
3723
+ dex: 'osmosis'
3724
+ }
3709
3725
  }]
3710
3726
  },
3711
3727
  {
@@ -191,9 +191,16 @@ const info = {
191
191
  chain_name: 'kava',
192
192
  base_denom: 'erc20/tether/usdt'
193
193
  },
194
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
194
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
195
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
196
+ theme: {
197
+ circle: true,
198
+ primary_color_hex: '#009393',
199
+ background_color_hex: '#009393'
200
+ }
195
201
  }],
196
202
  logo_URIs: {
203
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
197
204
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
198
205
  }
199
206
  },
@@ -2,19 +2,45 @@ const info = {
2
2
  $schema: '../assetlist.schema.json',
3
3
  chain_name: 'sunrise',
4
4
  assets: [{
5
- description: 'The native token of the Sunrise blockchain.',
5
+ description: 'The native token of the Sunrise network for staking. This token is non transferrable. This token can be retrieved by providing liquidity.',
6
6
  denom_units: [{
7
- denom: 'usr',
7
+ denom: 'uvrise',
8
8
  exponent: 0,
9
- aliases: ['microsr']
9
+ aliases: ['microvRISE', 'microvrise']
10
10
  }, {
11
- denom: 'sr',
11
+ denom: 'vrise',
12
12
  exponent: 6
13
13
  }],
14
- base: 'usr',
15
- name: 'Sunrise',
16
- display: 'sr',
17
- symbol: 'SR',
14
+ base: 'uvrise',
15
+ name: 'Sunrise vRISE',
16
+ display: 'vrise',
17
+ symbol: 'vRISE',
18
+ logo_URIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.png',
20
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.svg'
21
+ },
22
+ images: [{
23
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.svg',
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/vrise.png'
25
+ }],
26
+ socials: {
27
+ website: 'https://sunriselayer.io/',
28
+ twitter: 'https://twitter.com/SunriseLayer'
29
+ }
30
+ }, {
31
+ description: 'The native token of the Sunrise network for fees.',
32
+ denom_units: [{
33
+ denom: 'urise',
34
+ exponent: 0,
35
+ aliases: ['microRISE', 'microrise']
36
+ }, {
37
+ denom: 'rise',
38
+ exponent: 6
39
+ }],
40
+ base: 'urise',
41
+ name: 'Sunrise RISE',
42
+ display: 'rise',
43
+ symbol: 'RISE',
18
44
  logo_URIs: {
19
45
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png',
20
46
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
@@ -1,7 +1,7 @@
1
1
  const info = {
2
2
  $schema: '../chain.schema.json',
3
3
  chain_name: 'sunrise',
4
- status: 'live',
4
+ status: 'upcoming',
5
5
  network_type: 'mainnet',
6
6
  website: 'https://sunriselayer.io/',
7
7
  pretty_name: 'Sunrise',
@@ -13,7 +13,7 @@ const info = {
13
13
  slip44: 118,
14
14
  fees: {
15
15
  fee_tokens: [{
16
- denom: 'usr',
16
+ denom: 'urise',
17
17
  fixed_min_gas_price: 0.002,
18
18
  low_gas_price: 0.01,
19
19
  average_gas_price: 0.02,
@@ -22,7 +22,7 @@ const info = {
22
22
  },
23
23
  staking: {
24
24
  staking_tokens: [{
25
- denom: 'usr'
25
+ denom: 'uvrise'
26
26
  }],
27
27
  lock_duration: {
28
28
  time: '1209600s'
@@ -144,6 +144,22 @@ const info = [
144
144
  preferred: true,
145
145
  dex: 'osmosis'
146
146
  }
147
+ }, {
148
+ chain_1: {
149
+ channel_id: 'channel-78488',
150
+ port_id: 'transfer'
151
+ },
152
+ chain_2: {
153
+ channel_id: 'channel-108',
154
+ port_id: 'wasm.terra19pfxzj9580h7rjd6z6sn5x2se76vgrc0etltr79g9z3t82jzp4hq63qguc'
155
+ },
156
+ ordering: 'unordered',
157
+ version: 'ics20-1',
158
+ tags: {
159
+ status: 'live',
160
+ preferred: false,
161
+ dex: 'osmosis'
162
+ }
147
163
  }]
148
164
  },
149
165
  {
@@ -893,9 +893,16 @@ const info = {
893
893
  chain_name: 'kava',
894
894
  base_denom: 'erc20/tether/usdt'
895
895
  },
896
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
896
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
897
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
898
+ theme: {
899
+ circle: true,
900
+ primary_color_hex: '#009393',
901
+ background_color_hex: '#009393'
902
+ }
897
903
  }],
898
904
  logo_URIs: {
905
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
899
906
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
900
907
  }
901
908
  },
@@ -1,5 +1,5 @@
1
1
  const info = {
2
- $schema: '../assetlist.schema.json',
2
+ $schema: '../../assetlist.schema.json',
3
3
  chain_name: 'ethereum',
4
4
  assets: [
5
5
  {
@@ -584,12 +584,27 @@ const info = {
584
584
  },
585
585
  provider: 'Tether'
586
586
  }],
587
+ coingecko_id: 'tether',
587
588
  logo_URIs: {
589
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
588
590
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
589
591
  },
590
- coingecko_id: 'tether',
591
592
  images: [{
592
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
593
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
594
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
595
+ theme: {
596
+ circle: true,
597
+ primary_color_hex: '#009393',
598
+ background_color_hex: '#009393'
599
+ }
600
+ }, {
601
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.png',
602
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt_logomark.svg',
603
+ theme: {
604
+ circle: false,
605
+ primary_color_hex: '#50AF95',
606
+ background_color_hex: '#00000000'
607
+ }
593
608
  }],
594
609
  socials: {
595
610
  website: 'https://tether.to/',
@@ -477,7 +477,13 @@ const info = {
477
477
  chain_name: 'ethereum',
478
478
  base_denom: '0xdac17f958d2ee523a2206206994597c13d831ec7'
479
479
  },
480
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg'
480
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.svg',
481
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdt.png',
482
+ theme: {
483
+ circle: true,
484
+ primary_color_hex: '#009393',
485
+ background_color_hex: '#009393'
486
+ }
481
487
  }],
482
488
  coingecko_id: 'tether',
483
489
  socials: {
@@ -87,6 +87,7 @@ import * as _sourcetestnet from './sourcetestnet';
87
87
  import * as _stargazetestnet from './stargazetestnet';
88
88
  import * as _statesettestnet from './statesettestnet';
89
89
  import * as _stridetestnet from './stridetestnet';
90
+ import * as _sunrisetestnet from './sunrisetestnet';
90
91
  import * as _swisstroniktestnet from './swisstroniktestnet';
91
92
  import * as _symphonytestnet from './symphonytestnet';
92
93
  import * as _temporaltestnet from './temporaltestnet';
@@ -192,6 +193,7 @@ const assets = [
192
193
  _stargazetestnet.assets,
193
194
  _statesettestnet.assets,
194
195
  _stridetestnet.assets,
196
+ _sunrisetestnet.assets,
195
197
  _swisstroniktestnet.assets,
196
198
  _symphonytestnet.assets,
197
199
  _temporaltestnet.assets,
@@ -41,6 +41,10 @@ const info = {
41
41
  {
42
42
  address: 'https://rpc-celestia-testnet.cryptech.com.ua',
43
43
  provider: 'CrypTech'
44
+ },
45
+ {
46
+ address: 'https://rpc.celestia.testnet.dteam.tech:443',
47
+ provider: 'DTEAM'
44
48
  }
45
49
  ],
46
50
  rest: [
@@ -63,6 +67,10 @@ const info = {
63
67
  {
64
68
  address: 'https://api-celestia-testnet.cryptech.com.ua',
65
69
  provider: 'CrypTech'
70
+ },
71
+ {
72
+ address: 'https://api.celestia.testnet.dteam.tech:443',
73
+ provider: 'DTEAM'
66
74
  }
67
75
  ],
68
76
  grpc: [
@@ -81,6 +89,10 @@ const info = {
81
89
  {
82
90
  address: 'https://grpc-celestia-testnet.cryptech.com.ua',
83
91
  provider: 'CrypTech'
92
+ },
93
+ {
94
+ address: 'grpc.celestia.testnet.dteam.tech:27090',
95
+ provider: 'DTEAM'
84
96
  }
85
97
  ]
86
98
  },
@@ -101,6 +113,12 @@ const info = {
101
113
  url: 'https://explorers.cryptech.com.ua/Celestia-Testnet',
102
114
  tx_page: 'https://explorers.cryptech.com.ua/Celestia-Testnet/tx/${txHash}',
103
115
  account_page: 'https://explorers.cryptech.com.ua/Celestia-Testnet/account/${accountAddress}'
116
+ },
117
+ {
118
+ kind: 'DTEAM | Explorer',
119
+ url: 'https://explorer.testnet.dteam.tech/celestia',
120
+ tx_page: 'https://explorer.testnet.dteam.tech/celestia/tx/${txHash}',
121
+ account_page: 'https://explorer.testnet.dteam.tech/celestia/account/${accountAddress}'
104
122
  }
105
123
  ]
106
124
  };
@@ -87,6 +87,7 @@ import * as _sourcetestnet from './sourcetestnet';
87
87
  import * as _stargazetestnet from './stargazetestnet';
88
88
  import * as _statesettestnet from './statesettestnet';
89
89
  import * as _stridetestnet from './stridetestnet';
90
+ import * as _sunrisetestnet from './sunrisetestnet';
90
91
  import * as _swisstroniktestnet from './swisstroniktestnet';
91
92
  import * as _symphonytestnet from './symphonytestnet';
92
93
  import * as _temporaltestnet from './temporaltestnet';
@@ -192,6 +193,7 @@ const chains = [
192
193
  _stargazetestnet.chain,
193
194
  _statesettestnet.chain,
194
195
  _stridetestnet.chain,
196
+ _sunrisetestnet.chain,
195
197
  _swisstroniktestnet.chain,
196
198
  _symphonytestnet.chain,
197
199
  _temporaltestnet.chain,
@@ -60,7 +60,6 @@ const info = {
60
60
  },
61
61
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.png',
62
62
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mantrachain/images/OM-Prim-Col.svg',
63
- layout: 'logomark',
64
63
  theme: {
65
64
  circle: true
66
65
  }
@@ -87,6 +87,7 @@ export * as sourcetestnet from './sourcetestnet';
87
87
  export * as stargazetestnet from './stargazetestnet';
88
88
  export * as statesettestnet from './statesettestnet';
89
89
  export * as stridetestnet from './stridetestnet';
90
+ export * as sunrisetestnet from './sunrisetestnet';
90
91
  export * as swisstroniktestnet from './swisstroniktestnet';
91
92
  export * as symphonytestnet from './symphonytestnet';
92
93
  export * as temporaltestnet from './temporaltestnet';
@@ -32,7 +32,12 @@ const info = {
32
32
  base_denom: 'usge'
33
33
  },
34
34
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png',
35
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg'
35
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg',
36
+ theme: {
37
+ primary_color_hex: '#C0A15B',
38
+ background_color_hex: '#00000000',
39
+ circle: false
40
+ }
36
41
  }]
37
42
  }]
38
43
  };