chain-registry 2.0.55 → 2.0.57
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/asset-lists.js +2 -0
- package/esm/mainnet/atomone/chain.js +18 -0
- package/esm/mainnet/chain4energy/chain.js +18 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/doravota/chain.js +17 -0
- package/esm/mainnet/gonka/asset-list.js +38 -0
- package/esm/mainnet/gonka/chain.js +154 -0
- package/esm/mainnet/gonka/index.js +4 -0
- package/esm/mainnet/sunrise/asset-list.js +1 -1
- package/esm/mainnet/sunrise/chain.js +36 -0
- package/esm/mainnet/terra/asset-list.js +26 -0
- package/esm/mainnet/terra/chain.js +25 -41
- package/esm/testnet/ibc-data.js +2 -0
- package/esm/testnet/lumeratestnet/asset-list.js +43 -0
- package/esm/testnet/lumeratestnet/chain.js +3 -3
- package/esm/testnet/lumeratestnet/ibc-data.js +31 -0
- package/esm/testnet/lumeratestnet/index.js +2 -0
- package/esm/testnet/osmosistestnet/ibc-data.js +30 -0
- package/esm/testnet/sunrisetestnet/asset-list.js +1 -1
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/atomone/chain.js +18 -0
- package/mainnet/chain4energy/chain.js +18 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/doravota/chain.js +17 -0
- package/mainnet/gonka/asset-list.d.ts +3 -0
- package/mainnet/gonka/asset-list.js +40 -0
- package/mainnet/gonka/chain.d.ts +3 -0
- package/mainnet/gonka/chain.js +156 -0
- package/mainnet/gonka/index.d.ts +2 -0
- package/mainnet/gonka/index.js +10 -0
- package/mainnet/sunrise/asset-list.js +1 -1
- package/mainnet/sunrise/chain.js +36 -0
- package/mainnet/terra/asset-list.js +26 -0
- package/mainnet/terra/chain.js +25 -41
- package/package.json +3 -3
- package/testnet/ibc-data.js +2 -0
- package/testnet/lumeratestnet/asset-list.js +43 -0
- package/testnet/lumeratestnet/chain.js +3 -3
- package/testnet/lumeratestnet/ibc-data.d.ts +3 -0
- package/testnet/lumeratestnet/ibc-data.js +33 -0
- package/testnet/lumeratestnet/index.d.ts +1 -0
- package/testnet/lumeratestnet/index.js +3 -1
- package/testnet/osmosistestnet/ibc-data.js +30 -0
- package/testnet/sunrisetestnet/asset-list.js +1 -1
|
@@ -76,6 +76,7 @@ import * as _gateway from './gateway';
|
|
|
76
76
|
import * as _genesisl1 from './genesisl1';
|
|
77
77
|
import * as _ggezchain from './ggezchain';
|
|
78
78
|
import * as _gitopia from './gitopia';
|
|
79
|
+
import * as _gonka from './gonka';
|
|
79
80
|
import * as _govgen from './govgen';
|
|
80
81
|
import * as _gravitybridge from './gravitybridge';
|
|
81
82
|
import * as _haqq from './haqq';
|
|
@@ -290,6 +291,7 @@ const assetList = [
|
|
|
290
291
|
_genesisl1.assetList,
|
|
291
292
|
_ggezchain.assetList,
|
|
292
293
|
_gitopia.assetList,
|
|
294
|
+
_gonka.assetList,
|
|
293
295
|
_govgen.assetList,
|
|
294
296
|
_gravitybridge.assetList,
|
|
295
297
|
_haqq.assetList,
|
|
@@ -150,6 +150,10 @@ const info = {
|
|
|
150
150
|
{
|
|
151
151
|
address: 'https://rpc-atomone.22node.xyz',
|
|
152
152
|
provider: '22node'
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
address: 'https://m-atomone-rpc.ruangnode.com:443',
|
|
156
|
+
provider: 'ruangnode'
|
|
153
157
|
}
|
|
154
158
|
],
|
|
155
159
|
rest: [
|
|
@@ -240,6 +244,10 @@ const info = {
|
|
|
240
244
|
{
|
|
241
245
|
address: 'https://rest-atomone.22node.xyz',
|
|
242
246
|
provider: '22node'
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
address: 'https://m-atomone-api.ruangnode.com:443',
|
|
250
|
+
provider: 'ruangnode'
|
|
243
251
|
}
|
|
244
252
|
],
|
|
245
253
|
grpc: [
|
|
@@ -302,6 +310,10 @@ const info = {
|
|
|
302
310
|
{
|
|
303
311
|
address: 'grpc-atomone.22node.xyz',
|
|
304
312
|
provider: 'Shazoes'
|
|
313
|
+
},
|
|
314
|
+
{
|
|
315
|
+
address: 'm-atomone-grpc.ruangnode.com:12090',
|
|
316
|
+
provider: 'ruangnode'
|
|
305
317
|
}
|
|
306
318
|
]
|
|
307
319
|
},
|
|
@@ -377,6 +389,12 @@ const info = {
|
|
|
377
389
|
url: 'https://explorer.chainroot.io/atomone',
|
|
378
390
|
txPage: 'https://explorer.chainroot.io/atomone/transactions/${txHash}',
|
|
379
391
|
accountPage: 'https://explorer.chainroot.io/atomone/accounts/${accountAddress}'
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
kind: 'Ruangnode Explorer',
|
|
395
|
+
url: 'https://explorer.ruangnode.com/atomone',
|
|
396
|
+
txPage: 'https://explorer.ruangnode.com/atomone/tx/${txHash}',
|
|
397
|
+
accountPage: 'https://explorer.ruangnode.com/atomone/account/${accountAddress}'
|
|
380
398
|
}
|
|
381
399
|
],
|
|
382
400
|
images: [{
|
|
@@ -158,6 +158,10 @@ const info = {
|
|
|
158
158
|
{
|
|
159
159
|
address: 'https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
160
160
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
address: 'https://rpc.polcrypto.pl:443',
|
|
164
|
+
provider: 'POLCRYPTO.PL'
|
|
161
165
|
}
|
|
162
166
|
],
|
|
163
167
|
rest: [
|
|
@@ -264,6 +268,10 @@ const info = {
|
|
|
264
268
|
{
|
|
265
269
|
address: 'https://chain4energy_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
266
270
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
address: 'https://rest.polcrypto.pl:443',
|
|
274
|
+
provider: 'POLCRYPTO.PL'
|
|
267
275
|
}
|
|
268
276
|
],
|
|
269
277
|
grpc: [
|
|
@@ -366,6 +374,10 @@ const info = {
|
|
|
366
374
|
{
|
|
367
375
|
address: 'http://207.180.208.47:46657',
|
|
368
376
|
provider: 'NakoTurk'
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
address: 'grpc.polcrypto.pl:443',
|
|
380
|
+
provider: 'POLCRYPTO.PL'
|
|
369
381
|
}
|
|
370
382
|
]
|
|
371
383
|
},
|
|
@@ -452,6 +464,12 @@ const info = {
|
|
|
452
464
|
url: 'https://explorer.whenmoonwhenlambo.money/chain4energy',
|
|
453
465
|
txPage: 'https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}',
|
|
454
466
|
accountPage: 'https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}'
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
kind: 'POLCRYPTO.PL',
|
|
470
|
+
url: 'https://explorer.polcrypto.pl',
|
|
471
|
+
txPage: 'https://explorer.polcrypto.pl/tx/${txHash}',
|
|
472
|
+
accountPage: 'https://explorer.polcrypto.pl/account/${accountAddress}'
|
|
455
473
|
}
|
|
456
474
|
],
|
|
457
475
|
images: [{
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -76,6 +76,7 @@ import * as _gateway from './gateway';
|
|
|
76
76
|
import * as _genesisl1 from './genesisl1';
|
|
77
77
|
import * as _ggezchain from './ggezchain';
|
|
78
78
|
import * as _gitopia from './gitopia';
|
|
79
|
+
import * as _gonka from './gonka';
|
|
79
80
|
import * as _govgen from './govgen';
|
|
80
81
|
import * as _gravitybridge from './gravitybridge';
|
|
81
82
|
import * as _haqq from './haqq';
|
|
@@ -290,6 +291,7 @@ const chains = [
|
|
|
290
291
|
_genesisl1.chain,
|
|
291
292
|
_ggezchain.chain,
|
|
292
293
|
_gitopia.chain,
|
|
294
|
+
_gonka.chain,
|
|
293
295
|
_govgen.chain,
|
|
294
296
|
_gravitybridge.chain,
|
|
295
297
|
_haqq.chain,
|
|
@@ -50,6 +50,10 @@ const info = {
|
|
|
50
50
|
{
|
|
51
51
|
address: 'https://doravota-mainnet-rpc.itrocket.net:443',
|
|
52
52
|
provider: 'ITRocket'
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
address: 'https://m-dora-rpc.ruangnode.com:443',
|
|
56
|
+
provider: 'ruangnode'
|
|
53
57
|
}
|
|
54
58
|
],
|
|
55
59
|
rest: [
|
|
@@ -68,6 +72,10 @@ const info = {
|
|
|
68
72
|
{
|
|
69
73
|
address: 'https://doravota-mainnet-api.itrocket.net',
|
|
70
74
|
provider: 'ITRocket'
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
address: 'https://m-dora-api.ruangnode.com',
|
|
78
|
+
provider: 'ruangnode'
|
|
71
79
|
}
|
|
72
80
|
],
|
|
73
81
|
grpc: [
|
|
@@ -82,6 +90,10 @@ const info = {
|
|
|
82
90
|
{
|
|
83
91
|
address: 'doravota-mainnet-grpc.itrocket.net:443',
|
|
84
92
|
provider: 'ITRocket'
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
address: 'm-dora-grpc.ruangnode.com:30090',
|
|
96
|
+
provider: 'ruangnode'
|
|
85
97
|
}
|
|
86
98
|
]
|
|
87
99
|
},
|
|
@@ -123,6 +135,11 @@ const info = {
|
|
|
123
135
|
url: 'https://dora.valopers.com/',
|
|
124
136
|
txPage: 'https://dora.valopers.com/transactions/${txHash}',
|
|
125
137
|
accountPage: 'https://dora.valopers.com/account/${accountAddress}'
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
kind: 'Ruangnode Explorers',
|
|
141
|
+
url: 'https://explorer.ruangnode.com/dora/staking',
|
|
142
|
+
txPage: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
|
|
126
143
|
}
|
|
127
144
|
]
|
|
128
145
|
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'gonka',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'Coins for the Gonka network.',
|
|
6
|
+
denomUnits: [
|
|
7
|
+
{
|
|
8
|
+
denom: 'ngonka',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['nanogonka']
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
denom: 'ugonka',
|
|
14
|
+
exponent: 3,
|
|
15
|
+
aliases: ['microgonka']
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
denom: 'mgonka',
|
|
19
|
+
exponent: 6,
|
|
20
|
+
aliases: ['milligonka']
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
denom: 'gonka',
|
|
24
|
+
exponent: 9
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
base: 'ngonka',
|
|
28
|
+
name: 'Gonka',
|
|
29
|
+
display: 'gonka',
|
|
30
|
+
symbol: 'GNK',
|
|
31
|
+
typeAsset: 'sdk.coin',
|
|
32
|
+
images: [{
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
|
|
34
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg'
|
|
35
|
+
}]
|
|
36
|
+
}]
|
|
37
|
+
};
|
|
38
|
+
export default info;
|
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'gonka',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
prettyName: 'Gonka',
|
|
7
|
+
chainType: 'cosmos',
|
|
8
|
+
chainId: 'gonka-mainnet',
|
|
9
|
+
bech32Prefix: 'gonka',
|
|
10
|
+
daemonName: 'inferenced',
|
|
11
|
+
nodeHome: '$HOME/.inference',
|
|
12
|
+
keyAlgos: ['secp256k1'],
|
|
13
|
+
slip44: 1200,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'ngonka',
|
|
17
|
+
fixedMinGasPrice: 0,
|
|
18
|
+
lowGasPrice: 0,
|
|
19
|
+
averageGasPrice: 0,
|
|
20
|
+
highGasPrice: 0
|
|
21
|
+
}]
|
|
22
|
+
},
|
|
23
|
+
staking: {
|
|
24
|
+
stakingTokens: [{
|
|
25
|
+
denom: 'ngonka'
|
|
26
|
+
}]
|
|
27
|
+
},
|
|
28
|
+
codebase: {
|
|
29
|
+
gitRepo: 'https://github.com/gonka-ai/gonka',
|
|
30
|
+
recommendedVersion: 'v0.2.0',
|
|
31
|
+
genesis: {
|
|
32
|
+
genesisUrl: 'https://github.com/gonka-ai/gonka/blob/main/genesis/genesis.json'
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
images: [{
|
|
36
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
|
|
37
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
|
|
38
|
+
theme: {
|
|
39
|
+
circle: true
|
|
40
|
+
}
|
|
41
|
+
}],
|
|
42
|
+
logoURIs: {
|
|
43
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
|
|
44
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png'
|
|
45
|
+
},
|
|
46
|
+
description: 'Gonka is a decentralized AI infrastructure designed to optimize computational power for AI model training and inference, offering an alternative to monopolistic, high-cost, centralized cloud providers. As AI models become increasingly complex, their computational demands surge, presenting significant challenges for developers and businesses that rely on costly, centralized resources.',
|
|
47
|
+
apis: {
|
|
48
|
+
rpc: [
|
|
49
|
+
{
|
|
50
|
+
address: 'http://47.236.19.22:18000/chain-rpc/',
|
|
51
|
+
provider: '6block'
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
address: 'http://gonka.spv.re:8000/chain-rpc/',
|
|
55
|
+
provider: 'Hyperfusion'
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
address: 'http://185.216.21.98:8000/chain-rpc/',
|
|
59
|
+
provider: 'HardYaka'
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
address: 'http://93.119.168.58:8000/chain-rpc/',
|
|
63
|
+
provider: 'GCore'
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
address: 'http:// :8000/chain-rpc/',
|
|
67
|
+
provider: 'PS on Nebius'
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
rest: [
|
|
71
|
+
{
|
|
72
|
+
address: 'http://47.236.19.22:18000/chain-api/',
|
|
73
|
+
provider: '6block'
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
address: 'http://gonka.spv.re:8000/chain-api/',
|
|
77
|
+
provider: 'Hyperfusion'
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
address: 'http://185.216.21.98:8000/chain-api/',
|
|
81
|
+
provider: 'HardYaka'
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
address: 'http://93.119.168.58:8000/chain-api/',
|
|
85
|
+
provider: 'GCore'
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
address: 'http://node1.gonka.ai:8000/chain-api/',
|
|
89
|
+
provider: 'PS on Nebius'
|
|
90
|
+
}
|
|
91
|
+
],
|
|
92
|
+
grpc: [
|
|
93
|
+
{
|
|
94
|
+
address: 'http://47.236.19.22:18000/chain-grpc/',
|
|
95
|
+
provider: '6block'
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
address: 'http://gonka.spv.re:8000/chain-grpc/',
|
|
99
|
+
provider: 'Hyperfusion'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
address: 'http://185.216.21.98:8000/chain-grpc/',
|
|
103
|
+
provider: 'HardYaka'
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
address: 'http://93.119.168.58:8000/chain-grpc/',
|
|
107
|
+
provider: 'GCore'
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
address: 'http://node1.gonka.ai:8000/chain-grpc/',
|
|
111
|
+
provider: 'PS on Nebius'
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
},
|
|
115
|
+
explorers: [
|
|
116
|
+
{
|
|
117
|
+
kind: 'ping.pub',
|
|
118
|
+
url: 'http://47.236.19.22:18000/dashboard',
|
|
119
|
+
txPage: 'http://47.236.19.22:18000/dashboard/gonka/txs/${txHash}',
|
|
120
|
+
accountPage: 'http://47.236.19.22:18000/dashboard/gonka/account/${accountAddress}'
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
kind: 'ping.pub',
|
|
124
|
+
url: 'http://gonka.spv.re:8000/dashboard',
|
|
125
|
+
txPage: 'http://gonka.spv.re:8000/dashboard/gonka/txs/${txHash}',
|
|
126
|
+
accountPage: 'http://gonka.spv.re:8000/dashboard/gonka/account/${accountAddress}'
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
kind: 'ping.pub',
|
|
130
|
+
url: 'http://185.216.21.98:8000/dashboard',
|
|
131
|
+
txPage: 'http://185.216.21.98:8000/dashboard/gonka/txs/${txHash}',
|
|
132
|
+
accountPage: 'http://185.216.21.98:8000/dashboard/gonka/account/${accountAddress}'
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
kind: 'ping.pub',
|
|
136
|
+
url: 'http://93.119.168.58:8000/dashboard',
|
|
137
|
+
txPage: 'http://93.119.168.58:8000/dashboard/gonka/txs/${txHash}',
|
|
138
|
+
accountPage: 'http://93.119.168.58:8000/dashboard/gonka/account/${accountAddress}'
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
kind: 'ping.pub',
|
|
142
|
+
url: 'http://node1.gonka.ai:8000/dashboard',
|
|
143
|
+
txPage: 'http://node1.gonka.ai:8000/dashboard/gonka/txs/${txHash}',
|
|
144
|
+
accountPage: 'http://node1.gonka.ai:8000/dashboard/gonka/account/${accountAddress}'
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
keywords: [
|
|
148
|
+
'gonka',
|
|
149
|
+
'inference',
|
|
150
|
+
'training',
|
|
151
|
+
'compute'
|
|
152
|
+
]
|
|
153
|
+
};
|
|
154
|
+
export default info;
|
|
@@ -71,7 +71,7 @@ const info = {
|
|
|
71
71
|
base: 'uusdrise',
|
|
72
72
|
name: 'Sunrise USDrise',
|
|
73
73
|
display: 'usdrise',
|
|
74
|
-
symbol: '
|
|
74
|
+
symbol: 'USDrise',
|
|
75
75
|
logoURIs: {
|
|
76
76
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.png',
|
|
77
77
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/usdrise.svg'
|
|
@@ -106,6 +106,14 @@ const info = {
|
|
|
106
106
|
{
|
|
107
107
|
address: 'https://sunrise-rpc.stakeandrelax.net',
|
|
108
108
|
provider: 'Stake&Relax 🦥'
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
address: 'https://sunrise.blocksync.me/rpc',
|
|
112
|
+
provider: 'BlockSync'
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
address: 'https://rpc-sunrise.winnode.xyz',
|
|
116
|
+
provider: 'Winnode'
|
|
109
117
|
}
|
|
110
118
|
],
|
|
111
119
|
rest: [
|
|
@@ -160,6 +168,14 @@ const info = {
|
|
|
160
168
|
{
|
|
161
169
|
address: 'https://sunrise-api.stakeandrelax.net',
|
|
162
170
|
provider: 'Stake&Relax 🦥'
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
address: 'https://sunrise.blocksync.me/api',
|
|
174
|
+
provider: 'BlockSync'
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
address: 'https://api-sunrise.winnode.xyz',
|
|
178
|
+
provider: 'Winnode'
|
|
163
179
|
}
|
|
164
180
|
],
|
|
165
181
|
grpc: [
|
|
@@ -198,6 +214,14 @@ const info = {
|
|
|
198
214
|
{
|
|
199
215
|
address: 'http://sunrise-grpc.stakeandrelax.net:28390',
|
|
200
216
|
provider: 'Stake&Relax 🦥'
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
address: 'http://sunrise.blocksync.me:22090',
|
|
220
|
+
provider: 'BlockSync'
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
address: 'https://grpc-sunrise.winnode.xyz:443',
|
|
224
|
+
provider: 'Winnode'
|
|
201
225
|
}
|
|
202
226
|
]
|
|
203
227
|
},
|
|
@@ -260,6 +284,18 @@ const info = {
|
|
|
260
284
|
url: 'https://explorer.stakeandrelax.net/sunrise',
|
|
261
285
|
txPage: 'https://explorer.stakeandrelax.net/sunrise/tx/${txHash}',
|
|
262
286
|
accountPage: 'https://explorer.stakeandrelax.net/sunrise/account/${accountAddress}'
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
kind: 'BlockSync Explorer',
|
|
290
|
+
url: 'https://dashboard.blocksync.me/sunrise',
|
|
291
|
+
txPage: 'https://dashboard.blocksync.me/sunrise/tx/${txHash}',
|
|
292
|
+
accountPage: 'https://dashboard.blocksync.me/sunrise/account/${accountAddress}'
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
kind: 'Winnode explorer',
|
|
296
|
+
url: 'https://explorer.winnode.xyz/Sunrise-Mainnet',
|
|
297
|
+
txPage: 'https://explorer.winnode.xyz/Sunrise-Mainnet/tx/${txHash}',
|
|
298
|
+
accountPage: 'https://explorer.winnode.xyz/Sunrise-Mainnet/account/${accountAddress}'
|
|
263
299
|
}
|
|
264
300
|
],
|
|
265
301
|
images: [{
|
|
@@ -4845,6 +4845,32 @@ const info = {
|
|
|
4845
4845
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
|
|
4846
4846
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
|
|
4847
4847
|
}]
|
|
4848
|
+
},
|
|
4849
|
+
{
|
|
4850
|
+
description: 'An eco-friendly token for sustainable projects and green initiatives on Terra Luna Classic',
|
|
4851
|
+
socials: {
|
|
4852
|
+
website: 'https://www.greenfriendlylabs.com/',
|
|
4853
|
+
twitter: 'https://x.com/GreenFrndLabs'
|
|
4854
|
+
},
|
|
4855
|
+
typeAsset: 'cw20',
|
|
4856
|
+
address: 'terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
|
|
4857
|
+
denomUnits: [{
|
|
4858
|
+
denom: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
|
|
4859
|
+
exponent: 0
|
|
4860
|
+
}, {
|
|
4861
|
+
denom: 'gft',
|
|
4862
|
+
exponent: 6
|
|
4863
|
+
}],
|
|
4864
|
+
base: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
|
|
4865
|
+
name: 'Greenfriendly Token',
|
|
4866
|
+
display: 'gft',
|
|
4867
|
+
symbol: 'GFT',
|
|
4868
|
+
logoURIs: {
|
|
4869
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
|
|
4870
|
+
},
|
|
4871
|
+
images: [{
|
|
4872
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
|
|
4873
|
+
}]
|
|
4848
4874
|
}
|
|
4849
4875
|
]
|
|
4850
4876
|
};
|
|
@@ -160,11 +160,11 @@ const info = {
|
|
|
160
160
|
},
|
|
161
161
|
codebase: {
|
|
162
162
|
gitRepo: 'https://github.com/classic-terra/core',
|
|
163
|
-
recommendedVersion: '
|
|
164
|
-
compatibleVersions: ['
|
|
163
|
+
recommendedVersion: 'v3.5.0',
|
|
164
|
+
compatibleVersions: ['v3.5.0'],
|
|
165
165
|
genesis: {
|
|
166
166
|
name: '1.0.5',
|
|
167
|
-
genesisUrl: 'https://
|
|
167
|
+
genesisUrl: 'https://snapshots.hexxagon.io/cosmos/terra-classic/columbus-5/genesis.json'
|
|
168
168
|
}
|
|
169
169
|
},
|
|
170
170
|
logoURIs: {
|
|
@@ -178,20 +178,16 @@ const info = {
|
|
|
178
178
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
179
179
|
},
|
|
180
180
|
{
|
|
181
|
-
address: 'https://rpc
|
|
182
|
-
provider: '
|
|
181
|
+
address: 'https://rpc.terra-classic.hexxagon.io/',
|
|
182
|
+
provider: 'Hexxagon'
|
|
183
183
|
},
|
|
184
184
|
{
|
|
185
|
-
address: 'https://
|
|
186
|
-
provider: '
|
|
185
|
+
address: 'https://api-lunc-rpc.binodes.com',
|
|
186
|
+
provider: 'BInodes'
|
|
187
187
|
},
|
|
188
188
|
{
|
|
189
189
|
address: 'https://terraclassic-rpc-server-01.stakely.io',
|
|
190
190
|
provider: 'Stakely'
|
|
191
|
-
},
|
|
192
|
-
{
|
|
193
|
-
address: 'https://api-lunc-rpc.binodes.com',
|
|
194
|
-
provider: 'BInodes'
|
|
195
191
|
}
|
|
196
192
|
],
|
|
197
193
|
rest: [
|
|
@@ -200,17 +196,13 @@ const info = {
|
|
|
200
196
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
201
197
|
},
|
|
202
198
|
{
|
|
203
|
-
address: 'https://
|
|
204
|
-
provider: '
|
|
199
|
+
address: 'https://lcd.terra-classic.hexxagon.io/',
|
|
200
|
+
provider: 'Hexxagon'
|
|
205
201
|
},
|
|
206
202
|
{
|
|
207
203
|
address: 'https://terraclassic-mainnet-lcd.autostake.com:443',
|
|
208
204
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
209
205
|
},
|
|
210
|
-
{
|
|
211
|
-
address: 'https://terraclassic-lcd-server-01.stakely.io',
|
|
212
|
-
provider: 'Stakely'
|
|
213
|
-
},
|
|
214
206
|
{
|
|
215
207
|
address: 'https://api-lunc-lcd.binodes.com',
|
|
216
208
|
provider: 'BInodes'
|
|
@@ -218,21 +210,13 @@ const info = {
|
|
|
218
210
|
],
|
|
219
211
|
grpc: [
|
|
220
212
|
{
|
|
221
|
-
address: 'grpc.
|
|
222
|
-
provider: '
|
|
213
|
+
address: 'grpc.terra-classic.hexxagon.io/',
|
|
214
|
+
provider: 'Hexxagon'
|
|
223
215
|
},
|
|
224
216
|
{
|
|
225
217
|
address: 'terra-classic-grpc.publicnode.com:443',
|
|
226
218
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
227
219
|
},
|
|
228
|
-
{
|
|
229
|
-
address: 'grpc-terra-ia.cosmosia.notional.ventures:443',
|
|
230
|
-
provider: 'Notional'
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
address: 'terraclassic-mainnet-grpc.autostake.com:443',
|
|
234
|
-
provider: 'AutoStake 🛡️ Slash Protected'
|
|
235
|
-
},
|
|
236
220
|
{
|
|
237
221
|
address: 'api-lunc-grpc.binodes.com:443',
|
|
238
222
|
provider: 'BInodes'
|
|
@@ -241,10 +225,16 @@ const info = {
|
|
|
241
225
|
},
|
|
242
226
|
explorers: [
|
|
243
227
|
{
|
|
244
|
-
kind: '
|
|
245
|
-
url: 'https://
|
|
246
|
-
txPage: 'https://
|
|
247
|
-
accountPage: 'https://
|
|
228
|
+
kind: 'hexxagon-finder',
|
|
229
|
+
url: 'https://finder.terra-classic.hexxagon.io/',
|
|
230
|
+
txPage: 'https://finder.terra-classic.hexxagon.io/mainnet/tx/${txHash}',
|
|
231
|
+
accountPage: 'https://finder.terra-classic.hexxagon.io/mainnet/address/${accountAddress}'
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
kind: 'hexxagon2-finder',
|
|
235
|
+
url: 'https://finder.terraclassic.community/',
|
|
236
|
+
txPage: 'https://finder.terraclassic.community/mainnet/tx/${txHash}',
|
|
237
|
+
accountPage: 'https://finder.terraclassic.community/mainnet/address/${accountAddress}'
|
|
248
238
|
},
|
|
249
239
|
{
|
|
250
240
|
kind: 'ping.pub',
|
|
@@ -264,16 +254,10 @@ const info = {
|
|
|
264
254
|
accountPage: 'https://staking-explorer.com/account.php?chain=terra&addr=${accountAddress}'
|
|
265
255
|
},
|
|
266
256
|
{
|
|
267
|
-
kind: 'finder',
|
|
268
|
-
url: 'https://finder.
|
|
269
|
-
txPage: 'https://finder.
|
|
270
|
-
accountPage: 'https://finder.
|
|
271
|
-
},
|
|
272
|
-
{
|
|
273
|
-
kind: 'finder',
|
|
274
|
-
url: 'https://finder.terrarebels.net/classic',
|
|
275
|
-
txPage: 'https://finder.terrarebels.net/classic/tx/${txHash}',
|
|
276
|
-
accountPage: 'https://finder.terrarebels.net/classic/address/${accountAddress}'
|
|
257
|
+
kind: 'terraport-finder',
|
|
258
|
+
url: 'https://finder.terraport.finance/',
|
|
259
|
+
txPage: 'https://finder.terraport.finance/mainnet/tx/${txHash}',
|
|
260
|
+
accountPage: 'https://finder.terraport.finance/mainnet/address/${accountAddress}'
|
|
277
261
|
}
|
|
278
262
|
],
|
|
279
263
|
images: [{
|
package/esm/testnet/ibc-data.js
CHANGED
|
@@ -23,6 +23,7 @@ import * as _kujiratestnet from './kujiratestnet';
|
|
|
23
23
|
import * as _kyvetestnet from './kyvetestnet';
|
|
24
24
|
import * as _lavatestnet from './lavatestnet';
|
|
25
25
|
import * as _likecointestnet from './likecointestnet';
|
|
26
|
+
import * as _lumeratestnet from './lumeratestnet';
|
|
26
27
|
import * as _manifesttestnet from './manifesttestnet';
|
|
27
28
|
import * as _mantrachaintestnet from './mantrachaintestnet';
|
|
28
29
|
import * as _mantrachaintestnet2 from './mantrachaintestnet2';
|
|
@@ -73,6 +74,7 @@ const ibcData = [
|
|
|
73
74
|
..._kyvetestnet.ibcData,
|
|
74
75
|
..._lavatestnet.ibcData,
|
|
75
76
|
..._likecointestnet.ibcData,
|
|
77
|
+
..._lumeratestnet.ibcData,
|
|
76
78
|
..._manifesttestnet.ibcData,
|
|
77
79
|
..._mantrachaintestnet.ibcData,
|
|
78
80
|
..._mantrachaintestnet2.ibcData,
|
|
@@ -28,6 +28,49 @@ const info = {
|
|
|
28
28
|
telegram: 'https://t.me/lumeraprotocol',
|
|
29
29
|
website: 'https://lumera.io'
|
|
30
30
|
}
|
|
31
|
+
}, {
|
|
32
|
+
denomUnits: [{
|
|
33
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
34
|
+
exponent: 0,
|
|
35
|
+
aliases: ['uosmo']
|
|
36
|
+
}, {
|
|
37
|
+
denom: 'osmo',
|
|
38
|
+
exponent: 6
|
|
39
|
+
}],
|
|
40
|
+
typeAsset: 'ics20',
|
|
41
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
42
|
+
name: 'Osmosis OSMO Token',
|
|
43
|
+
display: 'osmo',
|
|
44
|
+
symbol: 'OSMO',
|
|
45
|
+
traces: [{
|
|
46
|
+
type: 'ibc',
|
|
47
|
+
counterparty: {
|
|
48
|
+
chainName: 'osmosistestnet',
|
|
49
|
+
baseDenom: 'uosmo',
|
|
50
|
+
channelId: 'channel-10884'
|
|
51
|
+
},
|
|
52
|
+
chain: {
|
|
53
|
+
channelId: 'channel-0',
|
|
54
|
+
path: 'transfer/channel-0/uosmo'
|
|
55
|
+
}
|
|
56
|
+
}],
|
|
57
|
+
images: [{
|
|
58
|
+
imageSync: {
|
|
59
|
+
chainName: 'osmosistestnet',
|
|
60
|
+
baseDenom: 'uosmo'
|
|
61
|
+
},
|
|
62
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
63
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
64
|
+
}],
|
|
65
|
+
logoURIs: {
|
|
66
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
67
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
68
|
+
},
|
|
69
|
+
keywords: [
|
|
70
|
+
'dex',
|
|
71
|
+
'ibc',
|
|
72
|
+
'osmosis'
|
|
73
|
+
]
|
|
31
74
|
}]
|
|
32
75
|
};
|
|
33
76
|
export default info;
|