chain-registry 2.0.106 → 2.0.108
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 +29 -11
- package/esm/mainnet/axone/chain.js +36 -3
- package/esm/mainnet/bostrom/chain.js +6 -0
- package/esm/mainnet/chihuahua/chain.js +0 -8
- package/esm/mainnet/cosmoshub/chain.js +15 -1
- package/esm/mainnet/dydx/chain.js +0 -8
- package/esm/mainnet/dymension/chain.js +6 -0
- package/esm/mainnet/empowerchain/chain.js +0 -8
- package/esm/mainnet/gravitybridge/chain.js +18 -0
- package/esm/mainnet/injective/chain.js +0 -8
- 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/teritori/chain.js +0 -8
- package/esm/mainnet/union/chain.js +12 -3
- package/esm/mainnet/uptick/chain.js +18 -0
- package/esm/testnet/kyvetestnet/chain.js +6 -20
- package/mainnet/althea/chain.js +34 -2
- package/mainnet/atomone/chain.js +29 -11
- package/mainnet/axone/chain.js +36 -3
- package/mainnet/bostrom/chain.js +6 -0
- package/mainnet/chihuahua/chain.js +0 -8
- package/mainnet/cosmoshub/chain.js +15 -1
- package/mainnet/dydx/chain.js +0 -8
- package/mainnet/dymension/chain.js +6 -0
- package/mainnet/empowerchain/chain.js +0 -8
- package/mainnet/gravitybridge/chain.js +18 -0
- package/mainnet/injective/chain.js +0 -8
- 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/teritori/chain.js +0 -8
- package/mainnet/union/chain.js +12 -3
- package/mainnet/uptick/chain.js +18 -0
- package/package.json +3 -3
- package/testnet/kyvetestnet/chain.js +6 -20
|
@@ -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: [{
|
package/mainnet/seda/chain.js
CHANGED
|
@@ -80,10 +80,6 @@ const info = {
|
|
|
80
80
|
address: 'https://seda.rpc.kjnodes.com',
|
|
81
81
|
provider: 'kjnodes'
|
|
82
82
|
},
|
|
83
|
-
{
|
|
84
|
-
address: 'https://seda-rpc.synergynodes.com/',
|
|
85
|
-
provider: 'Synergy Nodes'
|
|
86
|
-
},
|
|
87
83
|
{
|
|
88
84
|
address: 'https://rpc.lavenderfive.com:443/seda',
|
|
89
85
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -96,34 +92,14 @@ const info = {
|
|
|
96
92
|
address: 'https://seda.ibs.team:443/rpc',
|
|
97
93
|
provider: 'Inter Blockchain Services'
|
|
98
94
|
},
|
|
99
|
-
{
|
|
100
|
-
address: 'https://seda-mainnet-rpc.autostake.com:443',
|
|
101
|
-
provider: 'AutoStake 🛡️ Slash Protected'
|
|
102
|
-
},
|
|
103
95
|
{
|
|
104
96
|
address: 'https://rpc.seda.bronbro.io:443',
|
|
105
97
|
provider: 'Bro_n_Bro'
|
|
106
98
|
},
|
|
107
|
-
{
|
|
108
|
-
address: 'https://rpc-seda.whispernode.com:443',
|
|
109
|
-
provider: 'WhisperNode 🤐'
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
address: 'https://seda-rpc.applejuice.256x25.tech:443',
|
|
113
|
-
provider: 'Apple juice 🧃'
|
|
114
|
-
},
|
|
115
|
-
{
|
|
116
|
-
address: 'https://seda-rpc.bluestake.net:443',
|
|
117
|
-
provider: 'BlueStake 🚀'
|
|
118
|
-
},
|
|
119
99
|
{
|
|
120
100
|
address: 'https://seda_mainnet_rpc.chain.whenmoonwhenlambo.money:443',
|
|
121
101
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
122
102
|
},
|
|
123
|
-
{
|
|
124
|
-
address: 'https://rpc-seda-mainnet.keepitstaked.com:443',
|
|
125
|
-
provider: 'KeepItStaked.com'
|
|
126
|
-
},
|
|
127
103
|
{
|
|
128
104
|
address: 'https://seda-rpc.node39.top:443',
|
|
129
105
|
provider: 'Node39.TOP'
|
|
@@ -132,10 +108,6 @@ const info = {
|
|
|
132
108
|
address: 'https://seda-rpc.cosmos-apis.com:443',
|
|
133
109
|
provider: 'RHINO 🦏'
|
|
134
110
|
},
|
|
135
|
-
{
|
|
136
|
-
address: 'https://seda-mainnet-rpc.shazoes.xyz',
|
|
137
|
-
provider: 'Shazoes'
|
|
138
|
-
},
|
|
139
111
|
{
|
|
140
112
|
address: 'https://seda.rpc.cumulo.org.es',
|
|
141
113
|
provider: 'Cumulo'
|
|
@@ -147,6 +119,10 @@ const info = {
|
|
|
147
119
|
{
|
|
148
120
|
address: 'https://seda-rpc.stakeandrelax.net',
|
|
149
121
|
provider: 'Stake&Relax 🦥'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
address: 'https://rpc.cros-nest.com/seda',
|
|
125
|
+
provider: 'Crosnest'
|
|
150
126
|
}
|
|
151
127
|
],
|
|
152
128
|
rest: [
|
|
@@ -162,10 +138,6 @@ const info = {
|
|
|
162
138
|
address: 'https://seda.api.kjnodes.com',
|
|
163
139
|
provider: 'kjnodes'
|
|
164
140
|
},
|
|
165
|
-
{
|
|
166
|
-
address: 'https://seda-api.synergynodes.com/',
|
|
167
|
-
provider: 'Synergy Nodes'
|
|
168
|
-
},
|
|
169
141
|
{
|
|
170
142
|
address: 'https://rest.lavenderfive.com:443/seda',
|
|
171
143
|
provider: 'Lavender.Five Nodes 🐝'
|
|
@@ -178,34 +150,14 @@ const info = {
|
|
|
178
150
|
address: 'https://seda.ibs.team:443/api',
|
|
179
151
|
provider: 'Inter Blockchain Services'
|
|
180
152
|
},
|
|
181
|
-
{
|
|
182
|
-
address: 'https://seda-mainnet-lcd.autostake.com:443',
|
|
183
|
-
provider: 'AutoStake 🛡️ Slash Protected'
|
|
184
|
-
},
|
|
185
153
|
{
|
|
186
154
|
address: 'https://lcd.seda.bronbro.io:443',
|
|
187
155
|
provider: 'Bro_n_Bro'
|
|
188
156
|
},
|
|
189
|
-
{
|
|
190
|
-
address: 'https://api-seda.whispernode.com:443',
|
|
191
|
-
provider: 'WhisperNode 🤐'
|
|
192
|
-
},
|
|
193
|
-
{
|
|
194
|
-
address: 'https://seda-api.applejuice.256x25.tech:443',
|
|
195
|
-
provider: 'Apple juice 🧃'
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
address: 'https://seda-api.bluestake.net',
|
|
199
|
-
provider: 'BlueStake 🚀'
|
|
200
|
-
},
|
|
201
157
|
{
|
|
202
158
|
address: 'https://seda_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
203
159
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
204
160
|
},
|
|
205
|
-
{
|
|
206
|
-
address: 'https://api-seda-mainnet.keepitstaked.com:443',
|
|
207
|
-
provider: 'KeepItStaked.com'
|
|
208
|
-
},
|
|
209
161
|
{
|
|
210
162
|
address: 'https://seda-api.node39.top:443',
|
|
211
163
|
provider: 'Node39.TOP'
|
|
@@ -214,10 +166,6 @@ const info = {
|
|
|
214
166
|
address: 'https://seda-rest.cosmos-apis.com:443',
|
|
215
167
|
provider: 'RHINO 🦏'
|
|
216
168
|
},
|
|
217
|
-
{
|
|
218
|
-
address: 'https://seda-mainnet-api.shazoes.xyz',
|
|
219
|
-
provider: 'Shazoes'
|
|
220
|
-
},
|
|
221
169
|
{
|
|
222
170
|
address: 'https://seda.api.cumulo.org.es',
|
|
223
171
|
provider: 'Cumulo'
|
|
@@ -229,6 +177,10 @@ const info = {
|
|
|
229
177
|
{
|
|
230
178
|
address: 'https://seda-api.stakeandrelax.net',
|
|
231
179
|
provider: 'Stake&Relax 🦥'
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
address: 'https://rest.cros-nest.com/seda',
|
|
183
|
+
provider: 'Crosnest'
|
|
232
184
|
}
|
|
233
185
|
],
|
|
234
186
|
grpc: [
|
|
@@ -236,10 +188,6 @@ const info = {
|
|
|
236
188
|
address: 'seda-grpc.polkachu.com:25890',
|
|
237
189
|
provider: 'Polkachu'
|
|
238
190
|
},
|
|
239
|
-
{
|
|
240
|
-
address: 'https://seda-grpc.synergynodes.com/',
|
|
241
|
-
provider: 'Synergy Nodes'
|
|
242
|
-
},
|
|
243
191
|
{
|
|
244
192
|
address: 'seda.grpc.kjnodes.com:443',
|
|
245
193
|
provider: 'kjnodes'
|
|
@@ -248,30 +196,14 @@ const info = {
|
|
|
248
196
|
address: 'seda.lavenderfive.com:443',
|
|
249
197
|
provider: 'Lavender.Five Nodes 🐝'
|
|
250
198
|
},
|
|
251
|
-
{
|
|
252
|
-
address: 'seda-mainnet-grpc.autostake.com:443',
|
|
253
|
-
provider: 'AutoStake 🛡️ Slash Protected'
|
|
254
|
-
},
|
|
255
199
|
{
|
|
256
200
|
address: 'https://grpc.seda.bronbro.io:443',
|
|
257
201
|
provider: 'Bro_n_Bro'
|
|
258
202
|
},
|
|
259
|
-
{
|
|
260
|
-
address: 'grpc-seda.whispernode.com:443',
|
|
261
|
-
provider: 'WhisperNode 🤐'
|
|
262
|
-
},
|
|
263
|
-
{
|
|
264
|
-
address: 'seda-grpc.node39.top:13090',
|
|
265
|
-
provider: 'Node39.TOP'
|
|
266
|
-
},
|
|
267
203
|
{
|
|
268
204
|
address: 'seda-grpc.cosmos-apis.com:443',
|
|
269
205
|
provider: 'RHINO 🦏'
|
|
270
206
|
},
|
|
271
|
-
{
|
|
272
|
-
address: 'seda-mainnet-grpc.shazoes.xyz:6090',
|
|
273
|
-
provider: 'Shazoes'
|
|
274
|
-
},
|
|
275
207
|
{
|
|
276
208
|
address: 'seda.grpc.cumulo.org.es:443',
|
|
277
209
|
provider: 'Cumulo'
|
|
@@ -312,12 +244,6 @@ const info = {
|
|
|
312
244
|
txPage: 'https://staking-explorer.com/transaction.php?chain=seda&tx=${txHash}',
|
|
313
245
|
accountPage: 'https://staking-explorer.com/account.php?chain=seda&addr=${accountAddress}'
|
|
314
246
|
},
|
|
315
|
-
{
|
|
316
|
-
kind: 'WhisperNode 🤐',
|
|
317
|
-
url: 'https://mainnet.whispernode.com/seda',
|
|
318
|
-
txPage: 'https://mainnet.whispernode.com/seda/tx/${txHash}',
|
|
319
|
-
accountPage: 'https://mainnet.whispernode.com/seda/account/${accountAddress}'
|
|
320
|
-
},
|
|
321
247
|
{
|
|
322
248
|
kind: 'Apple juice 🧃',
|
|
323
249
|
url: 'https://explorer.256x25.tech/seda-mainnet',
|
package/mainnet/stride/chain.js
CHANGED
|
@@ -226,6 +226,10 @@ const info = {
|
|
|
226
226
|
{
|
|
227
227
|
address: 'https://stride.rpc.quasarstaking.ai:443',
|
|
228
228
|
provider: 'Quasar'
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
address: 'https://rpc.stride.citizenweb3.com',
|
|
232
|
+
provider: 'Citizen Web3'
|
|
229
233
|
}
|
|
230
234
|
],
|
|
231
235
|
rest: [
|
|
@@ -296,6 +300,10 @@ const info = {
|
|
|
296
300
|
{
|
|
297
301
|
address: 'https://stride.api.quasarstaking.ai:443',
|
|
298
302
|
provider: 'Quasar'
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
address: 'https://api.stride.citizenweb3.com',
|
|
306
|
+
provider: 'Citizen Web3'
|
|
299
307
|
}
|
|
300
308
|
],
|
|
301
309
|
grpc: [
|
|
@@ -350,6 +358,10 @@ const info = {
|
|
|
350
358
|
{
|
|
351
359
|
address: 'stride.grpc.quasarstaking.ai:80',
|
|
352
360
|
provider: 'Quasar'
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
address: 'grpc.stride.citizenweb3.com:443',
|
|
364
|
+
provider: 'Citizen Web3'
|
|
353
365
|
}
|
|
354
366
|
]
|
|
355
367
|
},
|
|
@@ -418,6 +430,12 @@ const info = {
|
|
|
418
430
|
url: 'https://mainnet.whispernode.com/stride',
|
|
419
431
|
txPage: 'https://mainnet.whispernode.com/stride/tx/${txHash}',
|
|
420
432
|
accountPage: 'https://mainnet.whispernode.com/stride/account/${accountAddress}'
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
kind: 'Validatorinfo',
|
|
436
|
+
url: 'https://validatorinfo.com/networks/stride/overview',
|
|
437
|
+
validatorPage: 'https://validatorinfo.com/networks/stride/validators',
|
|
438
|
+
proposalPage: 'https://validatorinfo.com/networks/stride/governance'
|
|
421
439
|
}
|
|
422
440
|
],
|
|
423
441
|
logoURIs: {
|
|
@@ -69,6 +69,10 @@ const info = {
|
|
|
69
69
|
{
|
|
70
70
|
address: 'https://rpc-symphony.sr20de.xyz',
|
|
71
71
|
provider: 'Sr20de'
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
address: 'https://rpc.symphony.citizenweb3.com',
|
|
75
|
+
provider: 'Citizen Web3'
|
|
72
76
|
}
|
|
73
77
|
],
|
|
74
78
|
rest: [
|
|
@@ -87,6 +91,10 @@ const info = {
|
|
|
87
91
|
{
|
|
88
92
|
address: 'https://api-symphony.sr20de.xyz',
|
|
89
93
|
provider: 'Sr20de'
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
address: 'https://api.symphony.citizenweb3.com',
|
|
97
|
+
provider: 'Citizen Web3'
|
|
90
98
|
}
|
|
91
99
|
],
|
|
92
100
|
grpc: [
|
|
@@ -105,20 +113,33 @@ const info = {
|
|
|
105
113
|
{
|
|
106
114
|
address: 'https://grpc-symphony.sr20de.xyz',
|
|
107
115
|
provider: 'Sr20de'
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
address: 'grpc.symphony.citizenweb3.com:443',
|
|
119
|
+
provider: 'Citizen Web3'
|
|
108
120
|
}
|
|
109
121
|
]
|
|
110
122
|
},
|
|
111
|
-
explorers: [
|
|
123
|
+
explorers: [
|
|
124
|
+
{
|
|
112
125
|
kind: 'VinjanXplorer',
|
|
113
126
|
url: 'https://xplorer.vinjan.xyz/symphony',
|
|
114
127
|
txPage: 'https://xplorer.vinjan.xyz/symphony/tx/${txHash}',
|
|
115
128
|
accountPage: 'https://xplorer.vinjan.xyz/symphony/account/${accountAddress}'
|
|
116
|
-
},
|
|
129
|
+
},
|
|
130
|
+
{
|
|
117
131
|
kind: 'Sr20de Explorer',
|
|
118
132
|
url: 'https://explorer.sr20de.xyz/symphony',
|
|
119
133
|
txPage: 'https://explorer.sr20de.xyz/symphony/tx/${txHash}',
|
|
120
134
|
accountPage: 'https://explorer.sr20de.xyz/symphony/account/${accountAddress}'
|
|
121
|
-
}
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
kind: 'Validatorinfo',
|
|
138
|
+
url: 'https://validatorinfo.com/networks/symphony/overview',
|
|
139
|
+
validatorPage: 'https://validatorinfo.com/networks/symphony/validators',
|
|
140
|
+
proposalPage: 'https://validatorinfo.com/networks/symphony/governance'
|
|
141
|
+
}
|
|
142
|
+
],
|
|
122
143
|
logoURIs: {
|
|
123
144
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/symphony/images/symphony_logo.png'
|
|
124
145
|
},
|
|
@@ -93,10 +93,6 @@ const info = {
|
|
|
93
93
|
address: 'https://teritori-mainnet-rpc.autostake.com:443',
|
|
94
94
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
95
95
|
},
|
|
96
|
-
{
|
|
97
|
-
address: 'https://rpc-teritori.ecostake.com',
|
|
98
|
-
provider: 'ecostake'
|
|
99
|
-
},
|
|
100
96
|
{
|
|
101
97
|
address: 'https://teritori-rpc.publicnode.com:443',
|
|
102
98
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
@@ -151,10 +147,6 @@ const info = {
|
|
|
151
147
|
address: 'https://teritori-mainnet-lcd.autostake.com:443',
|
|
152
148
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
153
149
|
},
|
|
154
|
-
{
|
|
155
|
-
address: 'https://rest-teritori.ecostake.com',
|
|
156
|
-
provider: 'ecostake'
|
|
157
|
-
},
|
|
158
150
|
{
|
|
159
151
|
address: 'https://teritori-rest.publicnode.com',
|
|
160
152
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
package/mainnet/union/chain.js
CHANGED
|
@@ -157,16 +157,25 @@ const info = {
|
|
|
157
157
|
}
|
|
158
158
|
]
|
|
159
159
|
},
|
|
160
|
-
explorers: [
|
|
160
|
+
explorers: [
|
|
161
|
+
{
|
|
161
162
|
kind: 'Ping.Pub',
|
|
162
163
|
url: 'https://explorer.union.build/union',
|
|
163
164
|
txPage: 'https://explorer.union.build/union/tx/${txHash}',
|
|
164
165
|
accountPage: 'https://explorer.union.build/union/account/${accountAddress}'
|
|
165
|
-
},
|
|
166
|
+
},
|
|
167
|
+
{
|
|
166
168
|
kind: 'Ruangnode Explorer',
|
|
167
169
|
url: 'https://explorer.ruangnode.com/dashboard/union',
|
|
168
170
|
txPage: 'https://explorer.ruangnode.com/transactions/union?hash=${txHash}'
|
|
169
|
-
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
kind: 'Validatorinfo',
|
|
174
|
+
url: 'https://validatorinfo.com/networks/union/overview',
|
|
175
|
+
validatorPage: 'https://validatorinfo.com/networks/union/validators',
|
|
176
|
+
proposalPage: 'https://validatorinfo.com/networks/union/governance'
|
|
177
|
+
}
|
|
178
|
+
],
|
|
170
179
|
images: [{
|
|
171
180
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.png',
|
|
172
181
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/union/images/u.svg'
|
package/mainnet/uptick/chain.js
CHANGED
|
@@ -93,6 +93,10 @@ const info = {
|
|
|
93
93
|
{
|
|
94
94
|
address: 'https://uptick-rpc.noders.services',
|
|
95
95
|
provider: '[NODERS]TEAM'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
address: 'https://rpc.uptick.citizenweb3.com',
|
|
99
|
+
provider: 'Citizen Web3'
|
|
96
100
|
}
|
|
97
101
|
],
|
|
98
102
|
rest: [
|
|
@@ -127,6 +131,10 @@ const info = {
|
|
|
127
131
|
{
|
|
128
132
|
address: 'https://uptick-api.noders.services',
|
|
129
133
|
provider: '[NODERS]TEAM'
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
address: 'https://api.uptick.citizenweb3.com',
|
|
137
|
+
provider: 'Citizen Web3'
|
|
130
138
|
}
|
|
131
139
|
],
|
|
132
140
|
grpc: [
|
|
@@ -161,6 +169,10 @@ const info = {
|
|
|
161
169
|
{
|
|
162
170
|
address: 'uptick-grpc.noders.services:24090',
|
|
163
171
|
provider: '[NODERS]TEAM'
|
|
172
|
+
},
|
|
173
|
+
{
|
|
174
|
+
address: 'grpc.uptick.citizenweb3.com:443',
|
|
175
|
+
provider: 'Citizen Web3'
|
|
164
176
|
}
|
|
165
177
|
],
|
|
166
178
|
evmHttpJsonrpc: [
|
|
@@ -218,6 +230,12 @@ const info = {
|
|
|
218
230
|
kind: 'Sr20de',
|
|
219
231
|
url: 'https://explorer.sr20de.xyz/uptick',
|
|
220
232
|
txPage: 'https://explorer.sr20de.xyz/uptick/tx/${txHash}'
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
kind: 'Validatorinfo',
|
|
236
|
+
url: 'https://validatorinfo.com/networks/uptick/overview',
|
|
237
|
+
validatorPage: 'https://validatorinfo.com/networks/uptick/validators',
|
|
238
|
+
proposalPage: 'https://validatorinfo.com/networks/uptick/governance'
|
|
221
239
|
}
|
|
222
240
|
],
|
|
223
241
|
images: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.108",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.108"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "38a938a80414429a6f4e6a0a7d59e1cbeec3a089"
|
|
43
43
|
}
|
|
@@ -42,34 +42,20 @@ const info = {
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
apis: {
|
|
45
|
-
rpc: [
|
|
46
|
-
{
|
|
45
|
+
rpc: [{
|
|
47
46
|
address: 'https://rpc.kaon.kyve.network',
|
|
48
47
|
provider: 'kyve'
|
|
49
|
-
},
|
|
50
|
-
{
|
|
51
|
-
address: 'https://rpc-kyve-test.ecostake.com',
|
|
52
|
-
provider: 'ecostake'
|
|
53
|
-
},
|
|
54
|
-
{
|
|
48
|
+
}, {
|
|
55
49
|
address: 'https://kyve-testnet-rpc.ibs.team:443',
|
|
56
50
|
provider: 'Inter Blockchain Services'
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
rest: [
|
|
60
|
-
{
|
|
51
|
+
}],
|
|
52
|
+
rest: [{
|
|
61
53
|
address: 'https://api.kaon.kyve.network',
|
|
62
54
|
provider: 'kyve'
|
|
63
|
-
},
|
|
64
|
-
{
|
|
65
|
-
address: 'https://rest-kyve-test.ecostake.com',
|
|
66
|
-
provider: 'ecostake'
|
|
67
|
-
},
|
|
68
|
-
{
|
|
55
|
+
}, {
|
|
69
56
|
address: 'https://kyve-testnet-api.ibs.team:443',
|
|
70
57
|
provider: 'Inter Blockchain Services'
|
|
71
|
-
}
|
|
72
|
-
]
|
|
58
|
+
}]
|
|
73
59
|
},
|
|
74
60
|
explorers: [{
|
|
75
61
|
kind: 'mintscan',
|