chain-registry 1.63.29 → 1.63.31

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 (41) hide show
  1. package/esm/mainnet/cosmoshub/ibc.js +52 -2
  2. package/esm/mainnet/firmachain/chain.js +4 -1
  3. package/esm/mainnet/injective/ibc.js +52 -2
  4. package/esm/mainnet/nibiru/chain.js +14 -0
  5. package/esm/mainnet/noble/assets.js +6 -1
  6. package/esm/mainnet/noble/chain.js +1 -1
  7. package/esm/mainnet/osmosis/assets.js +61 -0
  8. package/esm/mainnet/osmosis/ibc.js +52 -2
  9. package/esm/mainnet/pryzm/assets.js +295 -4
  10. package/esm/mainnet/pryzm/chain.js +66 -9
  11. package/esm/mainnet/pryzm/ibc.js +208 -8
  12. package/esm/mainnet/seda/chain.js +14 -0
  13. package/esm/mainnet/sifchain/chain.js +14 -0
  14. package/esm/mainnet/terra2/ibc.js +52 -2
  15. package/esm/noncosmos/arbitrum/assets.js +72 -0
  16. package/esm/noncosmos/avalanche/assets.js +42 -3
  17. package/esm/noncosmos/base/assets.js +79 -2
  18. package/esm/noncosmos/ethereum/assets.js +4 -1
  19. package/esm/noncosmos/optimism/assets.js +78 -3
  20. package/esm/noncosmos/polygon/assets.js +45 -9
  21. package/mainnet/cosmoshub/ibc.js +52 -2
  22. package/mainnet/firmachain/chain.js +4 -1
  23. package/mainnet/injective/ibc.js +52 -2
  24. package/mainnet/nibiru/chain.js +14 -0
  25. package/mainnet/noble/assets.js +6 -1
  26. package/mainnet/noble/chain.js +1 -1
  27. package/mainnet/osmosis/assets.js +61 -0
  28. package/mainnet/osmosis/ibc.js +52 -2
  29. package/mainnet/pryzm/assets.js +295 -4
  30. package/mainnet/pryzm/chain.js +66 -9
  31. package/mainnet/pryzm/ibc.js +208 -8
  32. package/mainnet/seda/chain.js +14 -0
  33. package/mainnet/sifchain/chain.js +14 -0
  34. package/mainnet/terra2/ibc.js +52 -2
  35. package/noncosmos/arbitrum/assets.js +72 -0
  36. package/noncosmos/avalanche/assets.js +42 -3
  37. package/noncosmos/base/assets.js +79 -2
  38. package/noncosmos/ethereum/assets.js +4 -1
  39. package/noncosmos/optimism/assets.js +78 -3
  40. package/noncosmos/polygon/assets.js +45 -9
  41. package/package.json +4 -4
@@ -1155,7 +1155,8 @@ const info = [
1155
1155
  client_id: '07-tendermint-0',
1156
1156
  connection_id: 'connection-0'
1157
1157
  },
1158
- channels: [{
1158
+ channels: [
1159
+ {
1159
1160
  chain_1: {
1160
1161
  channel_id: 'channel-859',
1161
1162
  port_id: 'transfer'
@@ -1170,7 +1171,56 @@ const info = [
1170
1171
  status: 'live',
1171
1172
  preferred: true
1172
1173
  }
1173
- }]
1174
+ },
1175
+ {
1176
+ chain_1: {
1177
+ channel_id: 'channel-863',
1178
+ port_id: 'icahost'
1179
+ },
1180
+ chain_2: {
1181
+ channel_id: 'channel-8',
1182
+ port_id: 'icacontroller-reward-uatom'
1183
+ },
1184
+ ordering: 'ordered',
1185
+ version: 'ics27-1',
1186
+ tags: {
1187
+ status: 'live',
1188
+ preferred: true
1189
+ }
1190
+ },
1191
+ {
1192
+ chain_1: {
1193
+ channel_id: 'channel-861',
1194
+ port_id: 'icahost'
1195
+ },
1196
+ chain_2: {
1197
+ channel_id: 'channel-9',
1198
+ port_id: 'icacontroller-sweep-uatom'
1199
+ },
1200
+ ordering: 'ordered',
1201
+ version: 'ics27-1',
1202
+ tags: {
1203
+ status: 'live',
1204
+ preferred: true
1205
+ }
1206
+ },
1207
+ {
1208
+ chain_1: {
1209
+ channel_id: 'channel-891',
1210
+ port_id: 'icahost'
1211
+ },
1212
+ chain_2: {
1213
+ channel_id: 'channel-20',
1214
+ port_id: 'icacontroller-delegation-uatom'
1215
+ },
1216
+ ordering: 'ordered',
1217
+ version: 'ics27-1',
1218
+ tags: {
1219
+ status: 'live',
1220
+ preferred: true
1221
+ }
1222
+ }
1223
+ ]
1174
1224
  },
1175
1225
  {
1176
1226
  $schema: '../ibc_data.schema.json',
@@ -14,7 +14,10 @@ const info = {
14
14
  fees: {
15
15
  fee_tokens: [{
16
16
  denom: 'ufct',
17
- fixed_min_gas_price: 0.1
17
+ fixed_min_gas_price: 0.1,
18
+ low_gas_price: 0.1,
19
+ average_gas_price: 0.15,
20
+ high_gas_price: 0.2
18
21
  }]
19
22
  },
20
23
  staking: {
@@ -584,7 +584,8 @@ const info = [
584
584
  client_id: '07-tendermint-1',
585
585
  connection_id: 'connection-1'
586
586
  },
587
- channels: [{
587
+ channels: [
588
+ {
588
589
  chain_1: {
589
590
  channel_id: 'channel-284',
590
591
  port_id: 'transfer'
@@ -599,7 +600,56 @@ const info = [
599
600
  status: 'live',
600
601
  preferred: true
601
602
  }
602
- }]
603
+ },
604
+ {
605
+ chain_1: {
606
+ channel_id: 'channel-285',
607
+ port_id: 'icahost'
608
+ },
609
+ chain_2: {
610
+ channel_id: 'channel-10',
611
+ port_id: 'icacontroller-delegation-inj'
612
+ },
613
+ ordering: 'ordered',
614
+ version: 'ics27-1',
615
+ tags: {
616
+ status: 'live',
617
+ preferred: true
618
+ }
619
+ },
620
+ {
621
+ chain_1: {
622
+ channel_id: 'channel-286',
623
+ port_id: 'icahost'
624
+ },
625
+ chain_2: {
626
+ channel_id: 'channel-11',
627
+ port_id: 'icacontroller-reward-inj'
628
+ },
629
+ ordering: 'ordered',
630
+ version: 'ics27-1',
631
+ tags: {
632
+ status: 'live',
633
+ preferred: true
634
+ }
635
+ },
636
+ {
637
+ chain_1: {
638
+ channel_id: 'channel-287',
639
+ port_id: 'icahost'
640
+ },
641
+ chain_2: {
642
+ channel_id: 'channel-12',
643
+ port_id: 'icacontroller-sweep-inj'
644
+ },
645
+ ordering: 'ordered',
646
+ version: 'ics27-1',
647
+ tags: {
648
+ status: 'live',
649
+ preferred: true
650
+ }
651
+ }
652
+ ]
603
653
  },
604
654
  {
605
655
  $schema: '../ibc_data.schema.json',
@@ -95,6 +95,10 @@ const info = {
95
95
  {
96
96
  address: 'https://rpc.nibiru.roomit.xyz',
97
97
  provider: 'Roomit'
98
+ },
99
+ {
100
+ address: 'https://nibiru_mainnet_rpc.chain.whenmoonwhenlambo.money',
101
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
98
102
  }
99
103
  ],
100
104
  rest: [
@@ -153,6 +157,10 @@ const info = {
153
157
  {
154
158
  address: 'https://api.nibiru.roomit.xyz',
155
159
  provider: 'Roomit'
160
+ },
161
+ {
162
+ address: 'https://nibiru_mainnet_api.chain.whenmoonwhenlambo.money',
163
+ provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
156
164
  }
157
165
  ],
158
166
  grpc: [
@@ -252,6 +260,12 @@ const info = {
252
260
  url: 'https://explorer.tendermint.roomit.xyz/nibiru-mainnet',
253
261
  tx_page: 'https://explorer.tendermint.roomit.xyz/nibiru-mainnet/tx/${txHash}',
254
262
  account_page: 'https://explorer.tendermint.roomit.xyz/nibiru-mainnet/accounts/${accountAddress}'
263
+ },
264
+ {
265
+ kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
266
+ url: 'https://explorer.whenmoonwhenlambo.money/nibiru',
267
+ tx_page: 'https://explorer.whenmoonwhenlambo.money/nibiru/tx/${txHash}',
268
+ account_page: 'https://explorer.whenmoonwhenlambo.money/nibiru/account/${accountAddress}'
255
269
  }
256
270
  ],
257
271
  images: [{
@@ -134,6 +134,7 @@ const info = {
134
134
  },
135
135
  {
136
136
  description: 'Ondo US Dollar Yield',
137
+ extended_description: 'USDY is a tokenized note secured by short-term US Treasuries and bank demand deposits. USDY is accessible to non-US individual and institutional investors and is transferable onchain 40-50 days after purchase.',
137
138
  denom_units: [{
138
139
  denom: 'ausdy',
139
140
  exponent: 0,
@@ -156,7 +157,11 @@ const info = {
156
157
  theme: {
157
158
  primary_color_hex: '#142c5c'
158
159
  }
159
- }]
160
+ }],
161
+ socials: {
162
+ website: 'https://ondo.finance/usdy',
163
+ twitter: 'https://x.com/OndoFinance'
164
+ }
160
165
  }
161
166
  ]
162
167
  };
@@ -35,7 +35,7 @@ const info = {
35
35
  }
36
36
  },
37
37
  codebase: {
38
- cosmos_sdk_version: 'v0.45.16',
38
+ cosmos_sdk_version: 'noble-assets/cosmos-sdk v0.45.16-send-restrictions',
39
39
  cosmwasm_enabled: false
40
40
  },
41
41
  logo_URIs: {
@@ -17703,6 +17703,67 @@ const info = {
17703
17703
  website: 'https://mande.network/',
17704
17704
  twitter: 'https://twitter.com/MandeNetwork'
17705
17705
  }
17706
+ },
17707
+ {
17708
+ description: 'Jacob Haertnellez Turtle. Launched by Jake\'s Personally appointed TURD Cult Leader..."NotSeanO\'Riley." TURD is going to lead the shitcoins of Cosmos! Or Rug You. It will be Jake\'s Fault. ',
17709
+ denom_units: [{
17710
+ denom: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd',
17711
+ exponent: 0
17712
+ }, {
17713
+ denom: 'TURD',
17714
+ exponent: 6
17715
+ }],
17716
+ type_asset: 'sdk.coin',
17717
+ address: 'osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8',
17718
+ base: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/turd',
17719
+ name: 'TURDLE',
17720
+ display: 'TURD',
17721
+ symbol: 'TURD',
17722
+ logo_URIs: {
17723
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/TURD.png'
17724
+ },
17725
+ images: [{
17726
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/TURD.png'
17727
+ }]
17728
+ },
17729
+ {
17730
+ description: 'An alloy of ETH asset variants on Osmosis.',
17731
+ extended_description: 'Multiple Ethereum variants on Osmosis comprise the liquidity backing of a tokenized transmuter pool to create an alloy of ETH.',
17732
+ denom_units: [{
17733
+ denom: 'factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH',
17734
+ exponent: 0
17735
+ }, {
17736
+ denom: 'allETH',
17737
+ exponent: 18
17738
+ }],
17739
+ type_asset: 'sdk.coin',
17740
+ address: 'osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm',
17741
+ base: 'factory/osmo1k6c8jln7ejuqwtqmay3yvzrg3kueaczl96pk067ldg8u835w0yhsw27twm/alloyed/allETH',
17742
+ name: 'Alloyed ETH',
17743
+ display: 'allETH',
17744
+ symbol: 'allETH',
17745
+ traces: [{
17746
+ type: 'synthetic',
17747
+ counterparty: {
17748
+ chain_name: 'ethereum',
17749
+ base_denom: 'wei'
17750
+ },
17751
+ provider: 'Osmosis'
17752
+ }],
17753
+ images: [{
17754
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.svg',
17755
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allETH.png'
17756
+ }, {
17757
+ image_sync: {
17758
+ chain_name: 'ethereum',
17759
+ base_denom: 'wei'
17760
+ },
17761
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.png',
17762
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/eth-white.svg',
17763
+ theme: {
17764
+ primary_color_hex: '#303030'
17765
+ }
17766
+ }]
17706
17767
  }
17707
17768
  ]
17708
17769
  };
@@ -2857,7 +2857,8 @@ const info = [
2857
2857
  client_id: '07-tendermint-2',
2858
2858
  connection_id: 'connection-2'
2859
2859
  },
2860
- channels: [{
2860
+ channels: [
2861
+ {
2861
2862
  chain_1: {
2862
2863
  channel_id: 'channel-75755',
2863
2864
  port_id: 'transfer'
@@ -2872,7 +2873,56 @@ const info = [
2872
2873
  status: 'live',
2873
2874
  preferred: true
2874
2875
  }
2875
- }]
2876
+ },
2877
+ {
2878
+ chain_1: {
2879
+ channel_id: 'channel-76804',
2880
+ port_id: 'icahost'
2881
+ },
2882
+ chain_2: {
2883
+ channel_id: 'channel-15',
2884
+ port_id: 'icacontroller-reward-uosmo'
2885
+ },
2886
+ ordering: 'ordered',
2887
+ version: 'ics27-1',
2888
+ tags: {
2889
+ status: 'live',
2890
+ preferred: true
2891
+ }
2892
+ },
2893
+ {
2894
+ chain_1: {
2895
+ channel_id: 'channel-76805',
2896
+ port_id: 'icahost'
2897
+ },
2898
+ chain_2: {
2899
+ channel_id: 'channel-16',
2900
+ port_id: 'icacontroller-sweep-uosmo'
2901
+ },
2902
+ ordering: 'ordered',
2903
+ version: 'ics27-1',
2904
+ tags: {
2905
+ status: 'live',
2906
+ preferred: true
2907
+ }
2908
+ },
2909
+ {
2910
+ chain_1: {
2911
+ channel_id: 'channel-79080',
2912
+ port_id: 'icahost'
2913
+ },
2914
+ chain_2: {
2915
+ channel_id: 'channel-22',
2916
+ port_id: 'icacontroller-delegation-uosmo'
2917
+ },
2918
+ ordering: 'ordered',
2919
+ version: 'ics27-1',
2920
+ tags: {
2921
+ status: 'live',
2922
+ preferred: true
2923
+ }
2924
+ }
2925
+ ]
2876
2926
  },
2877
2927
  {
2878
2928
  $schema: '../ibc_data.schema.json',
@@ -1,7 +1,8 @@
1
1
  const info = {
2
2
  $schema: '../assetlist.schema.json',
3
3
  chain_name: 'pryzm',
4
- assets: [{
4
+ assets: [
5
+ {
5
6
  description: 'The native token of PRYZM',
6
7
  denom_units: [{
7
8
  denom: 'upryzm',
@@ -25,11 +26,13 @@ const info = {
25
26
  primary_color_hex: '#c6ddf5'
26
27
  }
27
28
  }]
28
- }, {
29
+ },
30
+ {
29
31
  description: 'The meme token of PRYZM',
30
32
  denom_units: [{
31
33
  denom: 'factory/pryzm1jnhcsa5ddjsjq2t97v6a82z542rduxvtw6wd9h/uauuu',
32
- exponent: 0
34
+ exponent: 0,
35
+ aliases: ['uauuu']
33
36
  }, {
34
37
  denom: 'auuu',
35
38
  exponent: 6
@@ -49,6 +52,294 @@ const info = {
49
52
  primary_color_hex: '#eb536c'
50
53
  }
51
54
  }]
52
- }]
55
+ },
56
+ {
57
+ description: 'The native staking and governance token of the Cosmos Hub',
58
+ denom_units: [{
59
+ denom: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
60
+ exponent: 0,
61
+ aliases: ['uatom']
62
+ }, {
63
+ denom: 'atom',
64
+ exponent: 6
65
+ }],
66
+ type_asset: 'ics20',
67
+ base: 'ibc/27394FB092D2ECCD56123C74F36E4C1F926001CEADA9CA97EA622B25F41E5EB2',
68
+ name: 'Atom',
69
+ display: 'atom',
70
+ symbol: 'ATOM',
71
+ coingecko_id: 'cosmos',
72
+ traces: [{
73
+ type: 'ibc',
74
+ counterparty: {
75
+ chain_name: 'cosmoshub',
76
+ base_denom: 'uatom',
77
+ channel_id: 'channel-859'
78
+ },
79
+ chain: {
80
+ channel_id: 'channel-0',
81
+ path: 'transfer/channel-0/uatom'
82
+ }
83
+ }],
84
+ logo_URIs: {
85
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
86
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
87
+ },
88
+ images: [{
89
+ image_sync: {
90
+ chain_name: 'cosmoshub',
91
+ base_denom: 'uatom'
92
+ },
93
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
94
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
95
+ }]
96
+ },
97
+ {
98
+ description: 'The native staking and governance token of the Injective chain',
99
+ denom_units: [{
100
+ denom: 'ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255',
101
+ exponent: 0,
102
+ aliases: ['inj']
103
+ }, {
104
+ denom: 'INJ',
105
+ exponent: 18
106
+ }],
107
+ type_asset: 'ics20',
108
+ base: 'ibc/DE63D8AC34B752FB7D4CAA7594145EDE1C9FC256AC6D4043D0F12310EB8FC255',
109
+ name: 'Injective',
110
+ display: 'INJ',
111
+ symbol: 'INJ',
112
+ coingecko_id: 'injective-protocol',
113
+ traces: [{
114
+ type: 'ibc',
115
+ counterparty: {
116
+ chain_name: 'injective',
117
+ base_denom: 'inj',
118
+ channel_id: 'channel-284'
119
+ },
120
+ chain: {
121
+ channel_id: 'channel-1',
122
+ path: 'transfer/channel-1/inj'
123
+ }
124
+ }],
125
+ logo_URIs: {
126
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png',
127
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg'
128
+ },
129
+ images: [{
130
+ image_sync: {
131
+ chain_name: 'injective',
132
+ base_denom: 'inj'
133
+ },
134
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.png',
135
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/injective/images/inj.svg'
136
+ }]
137
+ },
138
+ {
139
+ description: 'The native staking and governance token of the Osmosis chain',
140
+ denom_units: [{
141
+ denom: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B',
142
+ exponent: 0,
143
+ aliases: ['uosmo']
144
+ }, {
145
+ denom: 'osmo',
146
+ exponent: 6
147
+ }],
148
+ type_asset: 'ics20',
149
+ base: 'ibc/13B2C536BB057AC79D5616B8EA1B9540EC1F2170718CAFF6F0083C966FFFED0B',
150
+ name: 'Osmo',
151
+ display: 'osmo',
152
+ symbol: 'OSMO',
153
+ coingecko_id: 'osmosis',
154
+ traces: [{
155
+ type: 'ibc',
156
+ counterparty: {
157
+ chain_name: 'osmosis',
158
+ base_denom: 'uosmo',
159
+ channel_id: 'channel-75755'
160
+ },
161
+ chain: {
162
+ channel_id: 'channel-2',
163
+ path: 'transfer/channel-2/uosmo'
164
+ }
165
+ }],
166
+ logo_URIs: {
167
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
168
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
169
+ },
170
+ images: [{
171
+ image_sync: {
172
+ chain_name: 'osmosis',
173
+ base_denom: 'uosmo'
174
+ },
175
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
176
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
177
+ }]
178
+ },
179
+ {
180
+ description: 'The native staking and governance token of the Celestia chain',
181
+ denom_units: [{
182
+ denom: 'ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676',
183
+ exponent: 0,
184
+ aliases: ['utia']
185
+ }, {
186
+ denom: 'tia',
187
+ exponent: 6
188
+ }],
189
+ type_asset: 'ics20',
190
+ base: 'ibc/BF28D9C17E0306B194D50F51C3B2590BEAD15E04E03ADD34C3A26E62D85C9676',
191
+ name: 'Tia',
192
+ display: 'tia',
193
+ symbol: 'TIA',
194
+ coingecko_id: 'celestia',
195
+ traces: [{
196
+ type: 'ibc',
197
+ counterparty: {
198
+ chain_name: 'celestia',
199
+ base_denom: 'utia',
200
+ channel_id: 'channel-34'
201
+ },
202
+ chain: {
203
+ channel_id: 'channel-3',
204
+ path: 'transfer/channel-3/utia'
205
+ }
206
+ }],
207
+ logo_URIs: {
208
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
209
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
210
+ },
211
+ images: [{
212
+ image_sync: {
213
+ chain_name: 'celestia',
214
+ base_denom: 'utia'
215
+ },
216
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.png',
217
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/celestia/images/celestia.svg'
218
+ }]
219
+ },
220
+ {
221
+ description: 'The native staking and governance token of the Terra chain',
222
+ denom_units: [{
223
+ denom: 'ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395',
224
+ exponent: 0,
225
+ aliases: ['uluna']
226
+ }, {
227
+ denom: 'luna',
228
+ exponent: 6
229
+ }],
230
+ type_asset: 'ics20',
231
+ base: 'ibc/B8AF5D92165F35AB31F3FC7C7B444B9D240760FA5D406C49D24862BD0284E395',
232
+ name: 'Luna',
233
+ display: 'luna',
234
+ symbol: 'LUNA',
235
+ coingecko_id: 'terra-luna-2',
236
+ traces: [{
237
+ type: 'ibc',
238
+ counterparty: {
239
+ chain_name: 'terra2',
240
+ base_denom: 'uluna',
241
+ channel_id: 'channel-473'
242
+ },
243
+ chain: {
244
+ channel_id: 'channel-4',
245
+ path: 'transfer/channel-4/uluna'
246
+ }
247
+ }],
248
+ logo_URIs: {
249
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png',
250
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg'
251
+ },
252
+ images: [{
253
+ image_sync: {
254
+ chain_name: 'terra2',
255
+ base_denom: 'uluna'
256
+ },
257
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.png',
258
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/luna.svg'
259
+ }]
260
+ },
261
+ {
262
+ description: 'Circle\'s USDC on Noble',
263
+ denom_units: [{
264
+ denom: 'ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65',
265
+ exponent: 0,
266
+ aliases: ['uusdc']
267
+ }, {
268
+ denom: 'usdc',
269
+ exponent: 6
270
+ }],
271
+ type_asset: 'ics20',
272
+ base: 'ibc/BFAAB7870A9AAABF64A7366DAAA0B8E5065EAA1FCE762F45677DC24BE796EF65',
273
+ name: 'USDC',
274
+ display: 'usdc',
275
+ symbol: 'USDC',
276
+ coingecko_id: 'usd-coin',
277
+ traces: [{
278
+ type: 'ibc',
279
+ counterparty: {
280
+ chain_name: 'noble',
281
+ base_denom: 'uusdc',
282
+ channel_id: 'channel-79'
283
+ },
284
+ chain: {
285
+ channel_id: 'channel-5',
286
+ path: 'transfer/channel-5/uusdc'
287
+ }
288
+ }],
289
+ logo_URIs: {
290
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
291
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
292
+ },
293
+ images: [{
294
+ image_sync: {
295
+ chain_name: 'noble',
296
+ base_denom: 'uusdc'
297
+ },
298
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
299
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
300
+ }]
301
+ },
302
+ {
303
+ description: 'Circle\'s USDC on Axelar',
304
+ denom_units: [{
305
+ denom: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
306
+ exponent: 0,
307
+ aliases: ['uusdc']
308
+ }, {
309
+ denom: 'usdc',
310
+ exponent: 6
311
+ }],
312
+ type_asset: 'ics20',
313
+ base: 'ibc/B9E4FD154C92D3A23BEA029906C4C5FF2FE74CB7E3A058290B77197A263CF88B',
314
+ name: 'USDC (Axelar)',
315
+ display: 'usdc',
316
+ symbol: 'USDC.axl',
317
+ coingecko_id: 'axlusdc',
318
+ traces: [{
319
+ type: 'ibc',
320
+ counterparty: {
321
+ chain_name: 'axelar',
322
+ base_denom: 'uusdc',
323
+ channel_id: 'channel-155'
324
+ },
325
+ chain: {
326
+ channel_id: 'channel-13',
327
+ path: 'transfer/channel-13/uusdc'
328
+ }
329
+ }],
330
+ logo_URIs: {
331
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png',
332
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg'
333
+ },
334
+ images: [{
335
+ image_sync: {
336
+ chain_name: 'axelar',
337
+ base_denom: 'uusdc'
338
+ },
339
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.png',
340
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/usdc.svg'
341
+ }]
342
+ }
343
+ ]
53
344
  };
54
345
  export default info;