chain-registry 2.0.106 → 2.0.107
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.
- package/esm/mainnet/althea/chain.js +34 -2
- package/esm/mainnet/atomone/chain.js +19 -1
- package/esm/mainnet/axone/chain.js +36 -3
- package/esm/mainnet/bostrom/chain.js +6 -0
- package/esm/mainnet/cosmoshub/chain.js +15 -1
- package/esm/mainnet/dymension/chain.js +6 -0
- package/esm/mainnet/gravitybridge/chain.js +18 -0
- package/esm/mainnet/lava/chain.js +32 -0
- package/esm/mainnet/likecoin/chain.js +6 -0
- package/esm/mainnet/namada/asset-list.js +42 -0
- package/esm/mainnet/neutron/chain.js +6 -0
- package/esm/mainnet/nillion/chain.js +6 -0
- package/esm/mainnet/nomic/chain.js +5 -0
- package/esm/mainnet/nyx/chain.js +6 -0
- package/esm/mainnet/osmosis/chain.js +18 -0
- package/esm/mainnet/paxi/asset-list.js +126 -8
- package/esm/mainnet/quicksilver/chain.js +18 -0
- package/esm/mainnet/seda/chain.js +8 -82
- package/esm/mainnet/stride/chain.js +18 -0
- package/esm/mainnet/symphony/chain.js +24 -3
- package/esm/mainnet/union/chain.js +12 -3
- package/esm/mainnet/uptick/chain.js +18 -0
- package/mainnet/althea/chain.js +34 -2
- package/mainnet/atomone/chain.js +19 -1
- package/mainnet/axone/chain.js +36 -3
- package/mainnet/bostrom/chain.js +6 -0
- package/mainnet/cosmoshub/chain.js +15 -1
- package/mainnet/dymension/chain.js +6 -0
- package/mainnet/gravitybridge/chain.js +18 -0
- package/mainnet/lava/chain.js +32 -0
- package/mainnet/likecoin/chain.js +6 -0
- package/mainnet/namada/asset-list.js +42 -0
- package/mainnet/neutron/chain.js +6 -0
- package/mainnet/nillion/chain.js +6 -0
- package/mainnet/nomic/chain.js +5 -0
- package/mainnet/nyx/chain.js +6 -0
- package/mainnet/osmosis/chain.js +18 -0
- package/mainnet/paxi/asset-list.js +126 -8
- package/mainnet/quicksilver/chain.js +18 -0
- package/mainnet/seda/chain.js +8 -82
- package/mainnet/stride/chain.js +18 -0
- package/mainnet/symphony/chain.js +24 -3
- package/mainnet/union/chain.js +12 -3
- package/mainnet/uptick/chain.js +18 -0
- package/package.json +3 -3
package/mainnet/axone/chain.js
CHANGED
|
@@ -81,6 +81,14 @@ const info = {
|
|
|
81
81
|
{
|
|
82
82
|
address: 'https://rpc.cros-nest.com:443/axone',
|
|
83
83
|
provider: 'crosnest'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
address: 'https://rpc.axone.citizenweb3.com',
|
|
87
|
+
provider: 'Citizen Web3'
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
address: 'https://rpc.axone-archive.citizenweb3.com',
|
|
91
|
+
provider: 'Citizen Web3'
|
|
84
92
|
}
|
|
85
93
|
],
|
|
86
94
|
rest: [
|
|
@@ -103,6 +111,14 @@ const info = {
|
|
|
103
111
|
{
|
|
104
112
|
address: 'https://rest.cros-nest.com:443/axone',
|
|
105
113
|
provider: 'crosnest'
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
address: 'https://api.axone.citizenweb3.com',
|
|
117
|
+
provider: 'Citizen Web3'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
address: 'https://api.axone-archive.citizenweb3.com',
|
|
121
|
+
provider: 'Citizen Web3'
|
|
106
122
|
}
|
|
107
123
|
],
|
|
108
124
|
grpc: [
|
|
@@ -121,20 +137,37 @@ const info = {
|
|
|
121
137
|
{
|
|
122
138
|
address: 'grpc.axone.nodestake.org:443',
|
|
123
139
|
provider: 'NodeStake'
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
address: 'grpc.axone.citizenweb3.com:443',
|
|
143
|
+
provider: 'Citizen Web3'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
address: 'grpc.axone-archive.citizenweb3.com:443',
|
|
147
|
+
provider: 'Citizen Web3'
|
|
124
148
|
}
|
|
125
149
|
]
|
|
126
150
|
},
|
|
127
|
-
explorers: [
|
|
151
|
+
explorers: [
|
|
152
|
+
{
|
|
128
153
|
kind: 'valopers',
|
|
129
154
|
url: 'https://axone.valopers.com/',
|
|
130
155
|
txPage: 'https://axone.valopers.com/transactions/${txHash}',
|
|
131
156
|
accountPage: 'https://axone.valopers.com/account/${accountAddress}'
|
|
132
|
-
},
|
|
157
|
+
},
|
|
158
|
+
{
|
|
133
159
|
kind: 'NodeStake',
|
|
134
160
|
url: 'https://explorer.nodestake.org/axone',
|
|
135
161
|
txPage: 'https://explorer.nodestake.org/axone/tx/${txHash}',
|
|
136
162
|
accountPage: 'https://explorer.nodestake.org/axone/account/${accountAddress}'
|
|
137
|
-
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
kind: 'Validatorinfo',
|
|
166
|
+
url: 'https://validatorinfo.com/networks/axone/overview',
|
|
167
|
+
validatorPage: 'https://validatorinfo.com/networks/axone/validators',
|
|
168
|
+
proposalPage: 'https://validatorinfo.com/networks/axone/governance'
|
|
169
|
+
}
|
|
170
|
+
],
|
|
138
171
|
images: [{
|
|
139
172
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axone/images/chain.png'
|
|
140
173
|
}],
|
package/mainnet/bostrom/chain.js
CHANGED
|
@@ -109,6 +109,12 @@ const info = {
|
|
|
109
109
|
url: 'https://atomscan.com/bostrom',
|
|
110
110
|
txPage: 'https://atomscan.com/bostrom/transactions/${txHash}',
|
|
111
111
|
accountPage: 'https://atomscan.com/bostrom/accounts/${accountAddress}'
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
kind: 'Validatorinfo',
|
|
115
|
+
url: 'https://validatorinfo.com/networks/bostrom/overview',
|
|
116
|
+
validatorPage: 'https://validatorinfo.com/networks/bostrom/validators',
|
|
117
|
+
proposalPage: 'https://validatorinfo.com/networks/bostrom/governance'
|
|
112
118
|
}
|
|
113
119
|
],
|
|
114
120
|
images: [{
|
|
@@ -356,6 +356,10 @@ const info = {
|
|
|
356
356
|
{
|
|
357
357
|
address: 'https://api.cosmoshub-4-archive.citizenweb3.com:443',
|
|
358
358
|
provider: 'Citizen Web3'
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
address: 'https://api.cosmoshub-4.citizenweb3.com:443',
|
|
362
|
+
provider: 'Citizen Web3'
|
|
359
363
|
}
|
|
360
364
|
],
|
|
361
365
|
grpc: [
|
|
@@ -444,7 +448,11 @@ const info = {
|
|
|
444
448
|
provider: 'Quasar'
|
|
445
449
|
},
|
|
446
450
|
{
|
|
447
|
-
address: 'grpc.cosmoshub-4-archive.citizenweb3.com',
|
|
451
|
+
address: 'grpc.cosmoshub-4-archive.citizenweb3.com:443',
|
|
452
|
+
provider: 'Citizen Web3'
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
address: 'grpc.cosmoshub-4.citizenweb3.com:443',
|
|
448
456
|
provider: 'Citizen Web3'
|
|
449
457
|
}
|
|
450
458
|
]
|
|
@@ -563,6 +571,12 @@ const info = {
|
|
|
563
571
|
url: 'https://cosmos.valopers.com/',
|
|
564
572
|
txPage: 'https://cosmos.valopers.com/transactions/${txHash}',
|
|
565
573
|
accountPage: 'https://cosmos.valopers.com/account/${accountAddress}'
|
|
574
|
+
},
|
|
575
|
+
{
|
|
576
|
+
kind: 'Validatorinfo',
|
|
577
|
+
url: 'https://validatorinfo.com/networks/cosmoshub/overview',
|
|
578
|
+
validatorPage: 'https://validatorinfo.com/networks/cosmoshub/validators',
|
|
579
|
+
proposalPage: 'https://validatorinfo.com/networks/cosmoshub/governance'
|
|
566
580
|
}
|
|
567
581
|
],
|
|
568
582
|
images: [{
|
|
@@ -511,6 +511,12 @@ const info = {
|
|
|
511
511
|
url: 'https://dymension.valopers.com/',
|
|
512
512
|
txPage: 'https://dymension.valopers.com/transactions/${txHash}',
|
|
513
513
|
accountPage: 'https://dymension.valopers.com/account/${accountAddress}'
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
kind: 'Validatorinfo',
|
|
517
|
+
url: 'https://validatorinfo.com/networks/dymension/overview',
|
|
518
|
+
validatorPage: 'https://validatorinfo.com/networks/dymension/validators',
|
|
519
|
+
proposalPage: 'https://validatorinfo.com/networks/dymension/governance'
|
|
514
520
|
}
|
|
515
521
|
]
|
|
516
522
|
};
|
|
@@ -106,6 +106,10 @@ const info = {
|
|
|
106
106
|
{
|
|
107
107
|
address: 'https://rpc.gravity-bridge-3.gravity.aviaone.com:443',
|
|
108
108
|
provider: 'AviaOne 🟢'
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
address: 'https://rpc.gravity.citizenweb3.com',
|
|
112
|
+
provider: 'Citizen Web3'
|
|
109
113
|
}
|
|
110
114
|
],
|
|
111
115
|
rest: [
|
|
@@ -152,6 +156,10 @@ const info = {
|
|
|
152
156
|
{
|
|
153
157
|
address: 'https://api.gravity-bridge-3.gravity.aviaone.com',
|
|
154
158
|
provider: 'AviaOne 🟢'
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
address: 'https://api.gravity.citizenweb3.com',
|
|
162
|
+
provider: 'Citizen Web3'
|
|
155
163
|
}
|
|
156
164
|
],
|
|
157
165
|
grpc: [
|
|
@@ -194,6 +202,10 @@ const info = {
|
|
|
194
202
|
{
|
|
195
203
|
address: 'grpc.gravity-bridge-3.gravity.aviaone.com:9200',
|
|
196
204
|
provider: 'AviaOne 🟢'
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
address: 'grpc.gravity.citizenweb3.com:443',
|
|
208
|
+
provider: 'Citizen Web3'
|
|
197
209
|
}
|
|
198
210
|
]
|
|
199
211
|
},
|
|
@@ -253,6 +265,12 @@ const info = {
|
|
|
253
265
|
url: 'https://mainnet.explorer.aviaone.com/gravity-bridge',
|
|
254
266
|
txPage: 'https://mainnet.explorer.aviaone.com/gravity-bridge/tx/${txHash}',
|
|
255
267
|
accountPage: 'https://mainnet.explorer.aviaone.com/gravity-bridge/accounts/${accountAddress}'
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
kind: 'Validatorinfo',
|
|
271
|
+
url: 'https://validatorinfo.com/networks/gravitybridge/overview',
|
|
272
|
+
validatorPage: 'https://validatorinfo.com/networks/gravitybridge/validators',
|
|
273
|
+
proposalPage: 'https://validatorinfo.com/networks/gravitybridge/governance'
|
|
256
274
|
}
|
|
257
275
|
],
|
|
258
276
|
images: [{
|
package/mainnet/lava/chain.js
CHANGED
|
@@ -74,6 +74,10 @@ const info = {
|
|
|
74
74
|
description: 'Lava (LAVA) is the data access layer of the modular stack. developers and ecosystems permissionlessly add services to be served or accessed through lava. featuring a fully decentralized open source sdk integrable in frontends and a battle tested fully scalable open source server kit and can be used locally or through managed endpoints. Lava features rpc data access, indexing services, debug apis, archive access and more. Service providers can join the network, earn rewards either in the native token of the chain via token bought subscriptions on chain or through any ibc transferred token via incentive pools created and funded by ecosystems and DAOs. Developers can use the abstraction and go multi chain in seconds, not needing to choose what tools to use, having the access aggregated for them. Build whatever, wherever.',
|
|
75
75
|
apis: {
|
|
76
76
|
rpc: [
|
|
77
|
+
{
|
|
78
|
+
address: 'https://rpc-lava.onenov.xyz',
|
|
79
|
+
provider: 'OneNov'
|
|
80
|
+
},
|
|
77
81
|
{
|
|
78
82
|
address: 'https://lava.tendermintrpc.lava.build',
|
|
79
83
|
provider: 'Lava Over Lava'
|
|
@@ -137,9 +141,17 @@ const info = {
|
|
|
137
141
|
{
|
|
138
142
|
address: 'https://rpc-lava.maouam.xyz:443',
|
|
139
143
|
provider: 'MaouamNodelab'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
address: 'https://rpc-lava.winnode.xyz',
|
|
147
|
+
provider: 'Winnode'
|
|
140
148
|
}
|
|
141
149
|
],
|
|
142
150
|
rest: [
|
|
151
|
+
{
|
|
152
|
+
address: 'https://api-lava.onenov.xyz',
|
|
153
|
+
provider: 'OneNov'
|
|
154
|
+
},
|
|
143
155
|
{
|
|
144
156
|
address: 'https://lava-api.finteh.org:443',
|
|
145
157
|
provider: 'finteh'
|
|
@@ -199,6 +211,10 @@ const info = {
|
|
|
199
211
|
{
|
|
200
212
|
address: 'https://api-lava.maouam.xyz:443',
|
|
201
213
|
provider: 'MaouamNodelab'
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
address: 'https://api-lava.winnode.xyz',
|
|
217
|
+
provider: 'Winnode'
|
|
202
218
|
}
|
|
203
219
|
],
|
|
204
220
|
grpc: [
|
|
@@ -245,10 +261,20 @@ const info = {
|
|
|
245
261
|
{
|
|
246
262
|
address: 'grpc-lava.maouam.xyz:443',
|
|
247
263
|
provider: 'MaouamNodelab'
|
|
264
|
+
},
|
|
265
|
+
{
|
|
266
|
+
address: 'grpc-lava.winnode.xyz:443',
|
|
267
|
+
provider: 'Winnode'
|
|
248
268
|
}
|
|
249
269
|
]
|
|
250
270
|
},
|
|
251
271
|
explorers: [
|
|
272
|
+
{
|
|
273
|
+
kind: 'OneNov',
|
|
274
|
+
url: 'https://explorer.onenov.xyz/lava',
|
|
275
|
+
txPage: 'https://explorer.onenov.xyz/lava/transactions/${txHash}',
|
|
276
|
+
accountPage: 'https://explorer.onenov.xyz/lava/accounts/${accountAddress}'
|
|
277
|
+
},
|
|
252
278
|
{
|
|
253
279
|
kind: 'Chainroot',
|
|
254
280
|
url: 'https://explorer.chainroot.io/lava',
|
|
@@ -302,6 +328,12 @@ const info = {
|
|
|
302
328
|
url: 'https://explorer.maouam.xyz/lava-mainnet',
|
|
303
329
|
txPage: 'https://explorer.maouam.xyz/lava-mainnet/tx/${txHash}',
|
|
304
330
|
accountPage: 'https://explorer.maouam.xyz/lava-mainnet/account/${accountAddress}'
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
kind: 'Winnode',
|
|
334
|
+
url: 'https://winnode.xyz/explorer/lava',
|
|
335
|
+
txPage: 'https://winnode.xyz/explorer/lava/tx/${txHash}',
|
|
336
|
+
accountPage: 'https://winnode.xyz/explorer/lava/account/${accountAddress}'
|
|
305
337
|
}
|
|
306
338
|
],
|
|
307
339
|
keywords: [
|
|
@@ -168,6 +168,12 @@ const info = {
|
|
|
168
168
|
url: 'https://atomscan.com/likecoin',
|
|
169
169
|
txPage: 'https://atomscan.com/likecoin/transactions/${txHash}',
|
|
170
170
|
accountPage: 'https://atomscan.com/likecoin/accounts/${accountAddress}'
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
kind: 'Validatorinfo',
|
|
174
|
+
url: 'https://validatorinfo.com/networks/likecoin/overview',
|
|
175
|
+
validatorPage: 'https://validatorinfo.com/networks/likecoin/validators',
|
|
176
|
+
proposalPage: 'https://validatorinfo.com/networks/likecoin/governance'
|
|
171
177
|
}
|
|
172
178
|
],
|
|
173
179
|
logoURIs: {
|
|
@@ -366,6 +366,48 @@ const info = {
|
|
|
366
366
|
}
|
|
367
367
|
}]
|
|
368
368
|
},
|
|
369
|
+
{
|
|
370
|
+
description: 'USDN token',
|
|
371
|
+
extendedDescription: 'USDN is a yielding stablecoin collateral-backed by short-duration U.S. Treasury Bills.',
|
|
372
|
+
denomUnits: [{
|
|
373
|
+
denom: 'ibc/FF4DCB799014F4648230C356EA3CCE3B8C7D328EA3A3A4F77C2849219678CB12',
|
|
374
|
+
exponent: 0,
|
|
375
|
+
aliases: ['microusdn']
|
|
376
|
+
}, {
|
|
377
|
+
denom: 'usdn',
|
|
378
|
+
exponent: 6
|
|
379
|
+
}],
|
|
380
|
+
typeAsset: 'ics20',
|
|
381
|
+
base: 'ibc/FF4DCB799014F4648230C356EA3CCE3B8C7D328EA3A3A4F77C2849219678CB12',
|
|
382
|
+
name: 'Noble Dollar',
|
|
383
|
+
display: 'usdn',
|
|
384
|
+
symbol: 'USDN',
|
|
385
|
+
address: 'tnam1phl5mjmejq20geyzxrp4d63uecacclfj3crmrdat',
|
|
386
|
+
traces: [{
|
|
387
|
+
type: 'ibc',
|
|
388
|
+
counterparty: {
|
|
389
|
+
chainName: 'noble',
|
|
390
|
+
baseDenom: 'uusdn',
|
|
391
|
+
channelId: 'channel-136'
|
|
392
|
+
},
|
|
393
|
+
chain: {
|
|
394
|
+
channelId: 'channel-5',
|
|
395
|
+
path: 'transfer/channel-5/uusdn'
|
|
396
|
+
}
|
|
397
|
+
}],
|
|
398
|
+
logoURIs: {
|
|
399
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDN.png',
|
|
400
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDN.svg'
|
|
401
|
+
},
|
|
402
|
+
images: [{
|
|
403
|
+
imageSync: {
|
|
404
|
+
chainName: 'noble',
|
|
405
|
+
baseDenom: 'uusdn'
|
|
406
|
+
},
|
|
407
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDN.png',
|
|
408
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDN.svg'
|
|
409
|
+
}]
|
|
410
|
+
},
|
|
369
411
|
{
|
|
370
412
|
description: 'NYM Token (NYM) is the Nym Network\'s native utility token, used as the primary means to incentivize mixnet node operators.',
|
|
371
413
|
denomUnits: [{
|
package/mainnet/neutron/chain.js
CHANGED
|
@@ -256,6 +256,12 @@ const info = {
|
|
|
256
256
|
url: 'https://mainnet.whispernode.com/neutron',
|
|
257
257
|
txPage: 'https://mainnet.whispernode.com/neutron/tx/${txHash}',
|
|
258
258
|
accountPage: 'https://mainnet.whispernode.com/neutron/account/${accountAddress}'
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
kind: 'Validatorinfo',
|
|
262
|
+
url: 'https://validatorinfo.com/networks/neutron/overview',
|
|
263
|
+
validatorPage: 'https://validatorinfo.com/networks/neutron/validators',
|
|
264
|
+
proposalPage: 'https://validatorinfo.com/networks/neutron/governance'
|
|
259
265
|
}
|
|
260
266
|
],
|
|
261
267
|
images: [{
|
package/mainnet/nillion/chain.js
CHANGED
|
@@ -121,6 +121,12 @@ const info = {
|
|
|
121
121
|
url: 'https://explorer.nodestake.org/nillion/',
|
|
122
122
|
txPage: 'https://explorer.nodestake.org/nillion/txs/${txHash}',
|
|
123
123
|
accountPage: 'https://explorer.nodestake.org/nillion/account/${accountAddress}'
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
kind: 'Validatorinfo',
|
|
127
|
+
url: 'https://validatorinfo.com/networks/nillion/overview',
|
|
128
|
+
validatorPage: 'https://validatorinfo.com/networks/nillion/validators',
|
|
129
|
+
proposalPage: 'https://validatorinfo.com/networks/nillion/governance'
|
|
124
130
|
}
|
|
125
131
|
],
|
|
126
132
|
images: [{
|
package/mainnet/nomic/chain.js
CHANGED
|
@@ -93,6 +93,11 @@ const info = {
|
|
|
93
93
|
url: 'https://mainnet.whispernode.com/nomic',
|
|
94
94
|
txPage: 'https://mainnet.whispernode.com/nomic/tx/${txHash}',
|
|
95
95
|
accountPage: 'https://mainnet.whispernode.com/nomic/account/${accountAddress}'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
kind: 'Validatorinfo',
|
|
99
|
+
url: 'https://validatorinfo.com/networks/nomic/overview',
|
|
100
|
+
validatorPage: 'https://validatorinfo.com/networks/nomic/validators'
|
|
96
101
|
}
|
|
97
102
|
],
|
|
98
103
|
images: [{
|
package/mainnet/nyx/chain.js
CHANGED
|
@@ -135,6 +135,12 @@ const info = {
|
|
|
135
135
|
kind: 'ping.pub',
|
|
136
136
|
url: 'https://ping.pub/nyx',
|
|
137
137
|
txPage: 'https://ping.pub/nyx/tx/${txHash}'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
kind: 'Validatorinfo',
|
|
141
|
+
url: 'https://validatorinfo.com/networks/nym/overview',
|
|
142
|
+
validatorPage: 'https://validatorinfo.com/networks/nym/validators',
|
|
143
|
+
proposalPage: 'https://validatorinfo.com/networks/nym/governance'
|
|
138
144
|
}
|
|
139
145
|
],
|
|
140
146
|
images: [
|
package/mainnet/osmosis/chain.js
CHANGED
|
@@ -636,6 +636,10 @@ const info = {
|
|
|
636
636
|
{
|
|
637
637
|
address: 'https://osmosis-rpc.highstakes.ch',
|
|
638
638
|
provider: 'High Stakes 🇨🇭'
|
|
639
|
+
},
|
|
640
|
+
{
|
|
641
|
+
address: 'https://rpc.osmosis.citizenweb3.com/',
|
|
642
|
+
provider: 'Citizen Web3'
|
|
639
643
|
}
|
|
640
644
|
],
|
|
641
645
|
rest: [
|
|
@@ -694,6 +698,10 @@ const info = {
|
|
|
694
698
|
{
|
|
695
699
|
address: 'https://osmosis-api.highstakes.ch',
|
|
696
700
|
provider: 'High Stakes 🇨🇭'
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
address: 'https://api.osmosis.citizenweb3.com/',
|
|
704
|
+
provider: 'Citizen Web3'
|
|
697
705
|
}
|
|
698
706
|
],
|
|
699
707
|
grpc: [
|
|
@@ -720,6 +728,10 @@ const info = {
|
|
|
720
728
|
{
|
|
721
729
|
address: 'grpc.osmosis.validatus.com:443',
|
|
722
730
|
provider: 'Validatus'
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
address: 'grpc.osmosis.citizenweb3.com:443',
|
|
734
|
+
provider: 'Citizen Web3'
|
|
723
735
|
}
|
|
724
736
|
]
|
|
725
737
|
},
|
|
@@ -802,6 +814,12 @@ const info = {
|
|
|
802
814
|
url: 'https://osmosis.valopers.com/',
|
|
803
815
|
txPage: 'https://osmosis.valopers.com/transactions/${txHash}',
|
|
804
816
|
accountPage: 'https://osmosis.valopers.com/account/${accountAddress}'
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
kind: 'Validatorinfo',
|
|
820
|
+
url: 'https://validatorinfo.com/networks/osmosis/overview',
|
|
821
|
+
validatorPage: 'https://validatorinfo.com/networks/osmosis/validators',
|
|
822
|
+
proposalPage: 'https://validatorinfo.com/networks/osmosis/governance'
|
|
805
823
|
}
|
|
806
824
|
],
|
|
807
825
|
keywords: ['dex']
|
|
@@ -3,19 +3,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const info = {
|
|
4
4
|
$schema: '../assetlist.schema.json',
|
|
5
5
|
chainName: 'paxi',
|
|
6
|
-
assets: [
|
|
7
|
-
|
|
6
|
+
assets: [
|
|
7
|
+
{
|
|
8
|
+
description: 'Paxi Network is a Layer 1, general-purpose decentralized blockchain designed for everyone.Built for speed, security, and scalability, it empowers individuals and communities to participate freely — anyone can become a validator and help secure the network.With native support for DeFi, DAOs, cross-chain interoperability, and dApps, Paxi makes blockchain simple, inclusive, and truly decentralized.Ultimately, Paxi aims to become a universal blockchain — hosting a vast ecosystem of dApps that seamlessly integrate into everyday life.',
|
|
8
9
|
denomUnits: [{
|
|
9
10
|
denom: 'upaxi',
|
|
10
11
|
exponent: 0
|
|
11
12
|
}, {
|
|
12
|
-
denom: '
|
|
13
|
+
denom: 'paxi',
|
|
13
14
|
exponent: 6
|
|
14
15
|
}],
|
|
15
16
|
typeAsset: 'sdk.coin',
|
|
16
17
|
base: 'upaxi',
|
|
17
|
-
name: 'Paxi',
|
|
18
|
-
display: '
|
|
18
|
+
name: 'Paxi Network',
|
|
19
|
+
display: 'paxi',
|
|
19
20
|
symbol: 'PAXI',
|
|
20
21
|
images: [{
|
|
21
22
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
|
|
@@ -23,10 +24,127 @@ const info = {
|
|
|
23
24
|
circle: false
|
|
24
25
|
}
|
|
25
26
|
}],
|
|
26
|
-
keywords: [
|
|
27
|
+
keywords: [
|
|
28
|
+
'staking',
|
|
29
|
+
'layer1',
|
|
30
|
+
'DAO'
|
|
31
|
+
],
|
|
32
|
+
coingeckoId: 'paxi-network',
|
|
27
33
|
socials: {
|
|
28
|
-
website: 'https://paxinet.io'
|
|
34
|
+
website: 'https://paxinet.io',
|
|
35
|
+
x: 'https://x.com/paxiweb3',
|
|
36
|
+
telegram: 'https://t.me/paxi_network',
|
|
37
|
+
discord: 'https://discord.gg/yxZRnxvrr5'
|
|
29
38
|
}
|
|
30
|
-
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
description: 'Circle\'s stablecoin on Paxi Network',
|
|
42
|
+
denomUnits: [{
|
|
43
|
+
denom: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349',
|
|
44
|
+
exponent: 0,
|
|
45
|
+
aliases: ['uusdc']
|
|
46
|
+
}, {
|
|
47
|
+
denom: 'usdc',
|
|
48
|
+
exponent: 6
|
|
49
|
+
}],
|
|
50
|
+
typeAsset: 'ics20',
|
|
51
|
+
base: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349',
|
|
52
|
+
name: 'USD Coin',
|
|
53
|
+
display: 'usdc',
|
|
54
|
+
symbol: 'USDC',
|
|
55
|
+
traces: [{
|
|
56
|
+
type: 'ibc',
|
|
57
|
+
counterparty: {
|
|
58
|
+
chainName: 'noble',
|
|
59
|
+
baseDenom: 'uusdc',
|
|
60
|
+
channelId: 'channel-205'
|
|
61
|
+
},
|
|
62
|
+
chain: {
|
|
63
|
+
channelId: 'channel-2',
|
|
64
|
+
path: 'transfer/channel-2/uusdc'
|
|
65
|
+
}
|
|
66
|
+
}],
|
|
67
|
+
images: [{
|
|
68
|
+
imageSync: {
|
|
69
|
+
chainName: 'noble',
|
|
70
|
+
baseDenom: 'uusdc'
|
|
71
|
+
},
|
|
72
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
|
|
73
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
|
|
74
|
+
}]
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
description: 'The native staking and governance token of the Cosmos Hub on Paxi Network.',
|
|
78
|
+
denomUnits: [{
|
|
79
|
+
denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
|
|
80
|
+
exponent: 0,
|
|
81
|
+
aliases: ['uatom']
|
|
82
|
+
}, {
|
|
83
|
+
denom: 'atom',
|
|
84
|
+
exponent: 6
|
|
85
|
+
}],
|
|
86
|
+
typeAsset: 'ics20',
|
|
87
|
+
base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
|
|
88
|
+
name: 'Cosmos Hub',
|
|
89
|
+
display: 'atom',
|
|
90
|
+
symbol: 'ATOM',
|
|
91
|
+
traces: [{
|
|
92
|
+
type: 'ibc',
|
|
93
|
+
counterparty: {
|
|
94
|
+
chainName: 'cosmoshub',
|
|
95
|
+
baseDenom: 'uatom',
|
|
96
|
+
channelId: 'channel-1566'
|
|
97
|
+
},
|
|
98
|
+
chain: {
|
|
99
|
+
channelId: 'channel-1',
|
|
100
|
+
path: 'transfer/channel-1/uatom'
|
|
101
|
+
}
|
|
102
|
+
}],
|
|
103
|
+
images: [{
|
|
104
|
+
imageSync: {
|
|
105
|
+
chainName: 'cosmoshub',
|
|
106
|
+
baseDenom: 'uatom'
|
|
107
|
+
},
|
|
108
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
|
|
109
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
|
|
110
|
+
}]
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
description: 'The native token of Osmosis on Paxi Network.',
|
|
114
|
+
denomUnits: [{
|
|
115
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
116
|
+
exponent: 0,
|
|
117
|
+
aliases: ['uosmo']
|
|
118
|
+
}, {
|
|
119
|
+
denom: 'osmo',
|
|
120
|
+
exponent: 6
|
|
121
|
+
}],
|
|
122
|
+
typeAsset: 'ics20',
|
|
123
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
124
|
+
name: 'Osmosis',
|
|
125
|
+
display: 'osmo',
|
|
126
|
+
symbol: 'OSMO',
|
|
127
|
+
traces: [{
|
|
128
|
+
type: 'ibc',
|
|
129
|
+
counterparty: {
|
|
130
|
+
chainName: 'osmosis',
|
|
131
|
+
baseDenom: 'uosmo',
|
|
132
|
+
channelId: 'channel-107354'
|
|
133
|
+
},
|
|
134
|
+
chain: {
|
|
135
|
+
channelId: 'channel-0',
|
|
136
|
+
path: 'transfer/channel-0/uosmo'
|
|
137
|
+
}
|
|
138
|
+
}],
|
|
139
|
+
images: [{
|
|
140
|
+
imageSync: {
|
|
141
|
+
chainName: 'osmosis',
|
|
142
|
+
baseDenom: 'uosmo'
|
|
143
|
+
},
|
|
144
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
145
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
146
|
+
}]
|
|
147
|
+
}
|
|
148
|
+
]
|
|
31
149
|
};
|
|
32
150
|
exports.default = info;
|
|
@@ -115,6 +115,10 @@ const info = {
|
|
|
115
115
|
{
|
|
116
116
|
address: 'https://quicksilver-rpc.noders.services',
|
|
117
117
|
provider: '[NODERS]TEAM'
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
address: 'https://rpc.quicksilver.citizenweb3.com',
|
|
121
|
+
provider: 'Citizen Web3'
|
|
118
122
|
}
|
|
119
123
|
],
|
|
120
124
|
rest: [
|
|
@@ -165,6 +169,10 @@ const info = {
|
|
|
165
169
|
{
|
|
166
170
|
address: 'https://quicksilver-api.noders.services',
|
|
167
171
|
provider: '[NODERS]TEAM'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
address: 'https://api.quicksilver.citizenweb3.com',
|
|
175
|
+
provider: 'Citizen Web3'
|
|
168
176
|
}
|
|
169
177
|
],
|
|
170
178
|
grpc: [
|
|
@@ -195,6 +203,10 @@ const info = {
|
|
|
195
203
|
{
|
|
196
204
|
address: 'quicksilver.tdrsys.com:2083',
|
|
197
205
|
provider: 'TdrSys'
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
address: 'grpc.quicksilver.citizenweb3.com:443',
|
|
209
|
+
provider: 'Citizen Web3'
|
|
198
210
|
}
|
|
199
211
|
]
|
|
200
212
|
},
|
|
@@ -231,6 +243,12 @@ const info = {
|
|
|
231
243
|
kind: 'KonsorTech',
|
|
232
244
|
url: 'https://explorer.konsortech.xyz/quicksilver/staking',
|
|
233
245
|
txPage: 'https://explorer.konsortech.xyz/quicksilver/tx/${txHash}'
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
kind: 'Validatorinfo',
|
|
249
|
+
url: 'https://validatorinfo.com/networks/quicksilver/overview',
|
|
250
|
+
validatorPage: 'https://validatorinfo.com/networks/quicksilver/validators',
|
|
251
|
+
proposalPage: 'https://validatorinfo.com/networks/quicksilver/governance'
|
|
234
252
|
}
|
|
235
253
|
],
|
|
236
254
|
images: [{
|