chain-registry 1.69.333 → 1.69.334
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/assets.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/assets.js +38 -0
- package/esm/mainnet/gonka/chain.js +154 -0
- package/esm/mainnet/gonka/index.js +4 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/terra/assets.js +26 -0
- package/esm/mainnet/terra/chain.js +25 -41
- package/esm/testnet/ibc.js +2 -0
- package/esm/testnet/lumeratestnet/assets.js +43 -0
- package/esm/testnet/lumeratestnet/chain.js +3 -3
- package/esm/testnet/lumeratestnet/ibc.js +31 -0
- package/esm/testnet/lumeratestnet/index.js +2 -0
- package/esm/testnet/osmosistestnet/ibc.js +30 -0
- package/mainnet/assets.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/assets.d.ts +3 -0
- package/mainnet/gonka/assets.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/named.d.ts +1 -0
- package/mainnet/named.js +5 -4
- package/mainnet/terra/assets.js +26 -0
- package/mainnet/terra/chain.js +25 -41
- package/package.json +3 -3
- package/testnet/ibc.js +2 -0
- package/testnet/lumeratestnet/assets.js +43 -0
- package/testnet/lumeratestnet/chain.js +3 -3
- package/testnet/lumeratestnet/ibc.d.ts +3 -0
- package/testnet/lumeratestnet/ibc.js +33 -0
- package/testnet/lumeratestnet/index.d.ts +1 -0
- package/testnet/lumeratestnet/index.js +3 -1
- package/testnet/osmosistestnet/ibc.js +30 -0
|
@@ -698,6 +698,36 @@ const info = [
|
|
|
698
698
|
}
|
|
699
699
|
}]
|
|
700
700
|
},
|
|
701
|
+
{
|
|
702
|
+
$schema: '../../ibc_data.schema.json',
|
|
703
|
+
chain_1: {
|
|
704
|
+
chain_name: 'lumeratestnet',
|
|
705
|
+
client_id: '07-tendermint-2',
|
|
706
|
+
connection_id: 'connection-1'
|
|
707
|
+
},
|
|
708
|
+
chain_2: {
|
|
709
|
+
chain_name: 'osmosistestnet',
|
|
710
|
+
client_id: '07-tendermint-4899',
|
|
711
|
+
connection_id: 'connection-4268'
|
|
712
|
+
},
|
|
713
|
+
channels: [{
|
|
714
|
+
chain_1: {
|
|
715
|
+
channel_id: 'channel-0',
|
|
716
|
+
port_id: 'transfer'
|
|
717
|
+
},
|
|
718
|
+
chain_2: {
|
|
719
|
+
channel_id: 'channel-10884',
|
|
720
|
+
port_id: 'transfer'
|
|
721
|
+
},
|
|
722
|
+
ordering: 'unordered',
|
|
723
|
+
version: 'ics20-1',
|
|
724
|
+
tags: {
|
|
725
|
+
status: 'live',
|
|
726
|
+
preferred: true,
|
|
727
|
+
dex: 'osmosis'
|
|
728
|
+
}
|
|
729
|
+
}]
|
|
730
|
+
},
|
|
701
731
|
{
|
|
702
732
|
$schema: '../../ibc_data.schema.json',
|
|
703
733
|
chain_1: {
|
package/mainnet/assets.js
CHANGED
|
@@ -101,6 +101,7 @@ const _gateway = __importStar(require("./gateway"));
|
|
|
101
101
|
const _genesisl1 = __importStar(require("./genesisl1"));
|
|
102
102
|
const _ggezchain = __importStar(require("./ggezchain"));
|
|
103
103
|
const _gitopia = __importStar(require("./gitopia"));
|
|
104
|
+
const _gonka = __importStar(require("./gonka"));
|
|
104
105
|
const _govgen = __importStar(require("./govgen"));
|
|
105
106
|
const _gravitybridge = __importStar(require("./gravitybridge"));
|
|
106
107
|
const _haqq = __importStar(require("./haqq"));
|
|
@@ -315,6 +316,7 @@ const assets = [
|
|
|
315
316
|
_genesisl1.assets,
|
|
316
317
|
_ggezchain.assets,
|
|
317
318
|
_gitopia.assets,
|
|
319
|
+
_gonka.assets,
|
|
318
320
|
_govgen.assets,
|
|
319
321
|
_gravitybridge.assets,
|
|
320
322
|
_haqq.assets,
|
package/mainnet/atomone/chain.js
CHANGED
|
@@ -152,6 +152,10 @@ const info = {
|
|
|
152
152
|
{
|
|
153
153
|
address: 'https://rpc-atomone.22node.xyz',
|
|
154
154
|
provider: '22node'
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
address: 'https://m-atomone-rpc.ruangnode.com:443',
|
|
158
|
+
provider: 'ruangnode'
|
|
155
159
|
}
|
|
156
160
|
],
|
|
157
161
|
rest: [
|
|
@@ -242,6 +246,10 @@ const info = {
|
|
|
242
246
|
{
|
|
243
247
|
address: 'https://rest-atomone.22node.xyz',
|
|
244
248
|
provider: '22node'
|
|
249
|
+
},
|
|
250
|
+
{
|
|
251
|
+
address: 'https://m-atomone-api.ruangnode.com:443',
|
|
252
|
+
provider: 'ruangnode'
|
|
245
253
|
}
|
|
246
254
|
],
|
|
247
255
|
grpc: [
|
|
@@ -304,6 +312,10 @@ const info = {
|
|
|
304
312
|
{
|
|
305
313
|
address: 'grpc-atomone.22node.xyz',
|
|
306
314
|
provider: 'Shazoes'
|
|
315
|
+
},
|
|
316
|
+
{
|
|
317
|
+
address: 'm-atomone-grpc.ruangnode.com:12090',
|
|
318
|
+
provider: 'ruangnode'
|
|
307
319
|
}
|
|
308
320
|
]
|
|
309
321
|
},
|
|
@@ -379,6 +391,12 @@ const info = {
|
|
|
379
391
|
url: 'https://explorer.chainroot.io/atomone',
|
|
380
392
|
tx_page: 'https://explorer.chainroot.io/atomone/transactions/${txHash}',
|
|
381
393
|
account_page: 'https://explorer.chainroot.io/atomone/accounts/${accountAddress}'
|
|
394
|
+
},
|
|
395
|
+
{
|
|
396
|
+
kind: 'Ruangnode Explorer',
|
|
397
|
+
url: 'https://explorer.ruangnode.com/atomone',
|
|
398
|
+
tx_page: 'https://explorer.ruangnode.com/atomone/tx/${txHash}',
|
|
399
|
+
account_page: 'https://explorer.ruangnode.com/atomone/account/${accountAddress}'
|
|
382
400
|
}
|
|
383
401
|
],
|
|
384
402
|
images: [{
|
|
@@ -160,6 +160,10 @@ const info = {
|
|
|
160
160
|
{
|
|
161
161
|
address: 'https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money',
|
|
162
162
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
address: 'https://rpc.polcrypto.pl:443',
|
|
166
|
+
provider: 'POLCRYPTO.PL'
|
|
163
167
|
}
|
|
164
168
|
],
|
|
165
169
|
rest: [
|
|
@@ -266,6 +270,10 @@ const info = {
|
|
|
266
270
|
{
|
|
267
271
|
address: 'https://chain4energy_mainnet_api.chain.whenmoonwhenlambo.money',
|
|
268
272
|
provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
|
|
273
|
+
},
|
|
274
|
+
{
|
|
275
|
+
address: 'https://rest.polcrypto.pl:443',
|
|
276
|
+
provider: 'POLCRYPTO.PL'
|
|
269
277
|
}
|
|
270
278
|
],
|
|
271
279
|
grpc: [
|
|
@@ -368,6 +376,10 @@ const info = {
|
|
|
368
376
|
{
|
|
369
377
|
address: 'http://207.180.208.47:46657',
|
|
370
378
|
provider: 'NakoTurk'
|
|
379
|
+
},
|
|
380
|
+
{
|
|
381
|
+
address: 'grpc.polcrypto.pl:443',
|
|
382
|
+
provider: 'POLCRYPTO.PL'
|
|
371
383
|
}
|
|
372
384
|
]
|
|
373
385
|
},
|
|
@@ -454,6 +466,12 @@ const info = {
|
|
|
454
466
|
url: 'https://explorer.whenmoonwhenlambo.money/chain4energy',
|
|
455
467
|
tx_page: 'https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}',
|
|
456
468
|
account_page: 'https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}'
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
kind: 'POLCRYPTO.PL',
|
|
472
|
+
url: 'https://explorer.polcrypto.pl',
|
|
473
|
+
tx_page: 'https://explorer.polcrypto.pl/tx/${txHash}',
|
|
474
|
+
account_page: 'https://explorer.polcrypto.pl/account/${accountAddress}'
|
|
457
475
|
}
|
|
458
476
|
],
|
|
459
477
|
images: [{
|
package/mainnet/chains.js
CHANGED
|
@@ -101,6 +101,7 @@ const _gateway = __importStar(require("./gateway"));
|
|
|
101
101
|
const _genesisl1 = __importStar(require("./genesisl1"));
|
|
102
102
|
const _ggezchain = __importStar(require("./ggezchain"));
|
|
103
103
|
const _gitopia = __importStar(require("./gitopia"));
|
|
104
|
+
const _gonka = __importStar(require("./gonka"));
|
|
104
105
|
const _govgen = __importStar(require("./govgen"));
|
|
105
106
|
const _gravitybridge = __importStar(require("./gravitybridge"));
|
|
106
107
|
const _haqq = __importStar(require("./haqq"));
|
|
@@ -315,6 +316,7 @@ const chains = [
|
|
|
315
316
|
_genesisl1.chain,
|
|
316
317
|
_ggezchain.chain,
|
|
317
318
|
_gitopia.chain,
|
|
319
|
+
_gonka.chain,
|
|
318
320
|
_govgen.chain,
|
|
319
321
|
_gravitybridge.chain,
|
|
320
322
|
_haqq.chain,
|
|
@@ -52,6 +52,10 @@ const info = {
|
|
|
52
52
|
{
|
|
53
53
|
address: 'https://doravota-mainnet-rpc.itrocket.net:443',
|
|
54
54
|
provider: 'ITRocket'
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
address: 'https://m-dora-rpc.ruangnode.com:443',
|
|
58
|
+
provider: 'ruangnode'
|
|
55
59
|
}
|
|
56
60
|
],
|
|
57
61
|
rest: [
|
|
@@ -70,6 +74,10 @@ const info = {
|
|
|
70
74
|
{
|
|
71
75
|
address: 'https://doravota-mainnet-api.itrocket.net',
|
|
72
76
|
provider: 'ITRocket'
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
address: 'https://m-dora-api.ruangnode.com',
|
|
80
|
+
provider: 'ruangnode'
|
|
73
81
|
}
|
|
74
82
|
],
|
|
75
83
|
grpc: [
|
|
@@ -84,6 +92,10 @@ const info = {
|
|
|
84
92
|
{
|
|
85
93
|
address: 'doravota-mainnet-grpc.itrocket.net:443',
|
|
86
94
|
provider: 'ITRocket'
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
address: 'm-dora-grpc.ruangnode.com:30090',
|
|
98
|
+
provider: 'ruangnode'
|
|
87
99
|
}
|
|
88
100
|
]
|
|
89
101
|
},
|
|
@@ -125,6 +137,11 @@ const info = {
|
|
|
125
137
|
url: 'https://dora.valopers.com/',
|
|
126
138
|
tx_page: 'https://dora.valopers.com/transactions/${txHash}',
|
|
127
139
|
account_page: 'https://dora.valopers.com/account/${accountAddress}'
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
kind: 'Ruangnode Explorers',
|
|
143
|
+
url: 'https://explorer.ruangnode.com/dora/staking',
|
|
144
|
+
tx_page: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
|
|
128
145
|
}
|
|
129
146
|
]
|
|
130
147
|
};
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'gonka',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'Coins for the Gonka network.',
|
|
8
|
+
denom_units: [
|
|
9
|
+
{
|
|
10
|
+
denom: 'ngonka',
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['nanogonka']
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
denom: 'ugonka',
|
|
16
|
+
exponent: 3,
|
|
17
|
+
aliases: ['microgonka']
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
denom: 'mgonka',
|
|
21
|
+
exponent: 6,
|
|
22
|
+
aliases: ['milligonka']
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
denom: 'gonka',
|
|
26
|
+
exponent: 9
|
|
27
|
+
}
|
|
28
|
+
],
|
|
29
|
+
base: 'ngonka',
|
|
30
|
+
name: 'Gonka',
|
|
31
|
+
display: 'gonka',
|
|
32
|
+
symbol: 'GNK',
|
|
33
|
+
type_asset: 'sdk.coin',
|
|
34
|
+
images: [{
|
|
35
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
|
|
36
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg'
|
|
37
|
+
}]
|
|
38
|
+
}]
|
|
39
|
+
};
|
|
40
|
+
exports.default = info;
|
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'gonka',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
pretty_name: 'Gonka',
|
|
9
|
+
chain_type: 'cosmos',
|
|
10
|
+
chain_id: 'gonka-mainnet',
|
|
11
|
+
bech32_prefix: 'gonka',
|
|
12
|
+
daemon_name: 'inferenced',
|
|
13
|
+
node_home: '$HOME/.inference',
|
|
14
|
+
key_algos: ['secp256k1'],
|
|
15
|
+
slip44: 1200,
|
|
16
|
+
fees: {
|
|
17
|
+
fee_tokens: [{
|
|
18
|
+
denom: 'ngonka',
|
|
19
|
+
fixed_min_gas_price: 0,
|
|
20
|
+
low_gas_price: 0,
|
|
21
|
+
average_gas_price: 0,
|
|
22
|
+
high_gas_price: 0
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
staking_tokens: [{
|
|
27
|
+
denom: 'ngonka'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
git_repo: 'https://github.com/gonka-ai/gonka',
|
|
32
|
+
recommended_version: 'v0.2.0',
|
|
33
|
+
genesis: {
|
|
34
|
+
genesis_url: 'https://github.com/gonka-ai/gonka/blob/main/genesis/genesis.json'
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
images: [{
|
|
38
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
|
|
39
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
|
|
40
|
+
theme: {
|
|
41
|
+
circle: true
|
|
42
|
+
}
|
|
43
|
+
}],
|
|
44
|
+
logo_URIs: {
|
|
45
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
|
|
46
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png'
|
|
47
|
+
},
|
|
48
|
+
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.',
|
|
49
|
+
apis: {
|
|
50
|
+
rpc: [
|
|
51
|
+
{
|
|
52
|
+
address: 'http://47.236.19.22:18000/chain-rpc/',
|
|
53
|
+
provider: '6block'
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
address: 'http://gonka.spv.re:8000/chain-rpc/',
|
|
57
|
+
provider: 'Hyperfusion'
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
address: 'http://185.216.21.98:8000/chain-rpc/',
|
|
61
|
+
provider: 'HardYaka'
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
address: 'http://93.119.168.58:8000/chain-rpc/',
|
|
65
|
+
provider: 'GCore'
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
address: 'http:// :8000/chain-rpc/',
|
|
69
|
+
provider: 'PS on Nebius'
|
|
70
|
+
}
|
|
71
|
+
],
|
|
72
|
+
rest: [
|
|
73
|
+
{
|
|
74
|
+
address: 'http://47.236.19.22:18000/chain-api/',
|
|
75
|
+
provider: '6block'
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
address: 'http://gonka.spv.re:8000/chain-api/',
|
|
79
|
+
provider: 'Hyperfusion'
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
address: 'http://185.216.21.98:8000/chain-api/',
|
|
83
|
+
provider: 'HardYaka'
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
address: 'http://93.119.168.58:8000/chain-api/',
|
|
87
|
+
provider: 'GCore'
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
address: 'http://node1.gonka.ai:8000/chain-api/',
|
|
91
|
+
provider: 'PS on Nebius'
|
|
92
|
+
}
|
|
93
|
+
],
|
|
94
|
+
grpc: [
|
|
95
|
+
{
|
|
96
|
+
address: 'http://47.236.19.22:18000/chain-grpc/',
|
|
97
|
+
provider: '6block'
|
|
98
|
+
},
|
|
99
|
+
{
|
|
100
|
+
address: 'http://gonka.spv.re:8000/chain-grpc/',
|
|
101
|
+
provider: 'Hyperfusion'
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
address: 'http://185.216.21.98:8000/chain-grpc/',
|
|
105
|
+
provider: 'HardYaka'
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
address: 'http://93.119.168.58:8000/chain-grpc/',
|
|
109
|
+
provider: 'GCore'
|
|
110
|
+
},
|
|
111
|
+
{
|
|
112
|
+
address: 'http://node1.gonka.ai:8000/chain-grpc/',
|
|
113
|
+
provider: 'PS on Nebius'
|
|
114
|
+
}
|
|
115
|
+
]
|
|
116
|
+
},
|
|
117
|
+
explorers: [
|
|
118
|
+
{
|
|
119
|
+
kind: 'ping.pub',
|
|
120
|
+
url: 'http://47.236.19.22:18000/dashboard',
|
|
121
|
+
tx_page: 'http://47.236.19.22:18000/dashboard/gonka/txs/${txHash}',
|
|
122
|
+
account_page: 'http://47.236.19.22:18000/dashboard/gonka/account/${accountAddress}'
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
kind: 'ping.pub',
|
|
126
|
+
url: 'http://gonka.spv.re:8000/dashboard',
|
|
127
|
+
tx_page: 'http://gonka.spv.re:8000/dashboard/gonka/txs/${txHash}',
|
|
128
|
+
account_page: 'http://gonka.spv.re:8000/dashboard/gonka/account/${accountAddress}'
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
kind: 'ping.pub',
|
|
132
|
+
url: 'http://185.216.21.98:8000/dashboard',
|
|
133
|
+
tx_page: 'http://185.216.21.98:8000/dashboard/gonka/txs/${txHash}',
|
|
134
|
+
account_page: 'http://185.216.21.98:8000/dashboard/gonka/account/${accountAddress}'
|
|
135
|
+
},
|
|
136
|
+
{
|
|
137
|
+
kind: 'ping.pub',
|
|
138
|
+
url: 'http://93.119.168.58:8000/dashboard',
|
|
139
|
+
tx_page: 'http://93.119.168.58:8000/dashboard/gonka/txs/${txHash}',
|
|
140
|
+
account_page: 'http://93.119.168.58:8000/dashboard/gonka/account/${accountAddress}'
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
kind: 'ping.pub',
|
|
144
|
+
url: 'http://node1.gonka.ai:8000/dashboard',
|
|
145
|
+
tx_page: 'http://node1.gonka.ai:8000/dashboard/gonka/txs/${txHash}',
|
|
146
|
+
account_page: 'http://node1.gonka.ai:8000/dashboard/gonka/account/${accountAddress}'
|
|
147
|
+
}
|
|
148
|
+
],
|
|
149
|
+
keywords: [
|
|
150
|
+
'gonka',
|
|
151
|
+
'inference',
|
|
152
|
+
'training',
|
|
153
|
+
'compute'
|
|
154
|
+
]
|
|
155
|
+
};
|
|
156
|
+
exports.default = info;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.chain = exports.assets = void 0;
|
|
7
|
+
const assets_1 = __importDefault(require("./assets"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assets = assets_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/mainnet/named.d.ts
CHANGED
|
@@ -76,6 +76,7 @@ export * as gateway from './gateway';
|
|
|
76
76
|
export * as genesisl1 from './genesisl1';
|
|
77
77
|
export * as ggezchain from './ggezchain';
|
|
78
78
|
export * as gitopia from './gitopia';
|
|
79
|
+
export * as gonka from './gonka';
|
|
79
80
|
export * as govgen from './govgen';
|
|
80
81
|
export * as gravitybridge from './gravitybridge';
|
|
81
82
|
export * as haqq from './haqq';
|
package/mainnet/named.js
CHANGED
|
@@ -24,10 +24,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.buycex = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.babylon = exports.axone = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.arkeo = exports.archway = exports.andromeda = exports.althea = exports.allora = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.namada = exports.ethereum = void 0;
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = void 0;
|
|
27
|
+
exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.intento = exports.int3face = exports.injective = exports.initia = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.hippoprotocol = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gonka = exports.gitopia = exports.ggezchain = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = void 0;
|
|
28
|
+
exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.opct = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nillion = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mantrachain = exports.manifest = exports.mande = exports.lumnetwork = exports.lumera = exports.loyal = exports.lorenzo = exports.loop = exports.lombardledger = exports.logos = exports.likecoin = exports.lefeef = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kudora = exports.kopi = exports.konstellation = void 0;
|
|
29
|
+
exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.symphony = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.sidechain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.qubetics = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.pocket = exports.planq = exports.persistence = exports.paxi = void 0;
|
|
30
|
+
exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.vector = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = void 0;
|
|
31
31
|
exports.ethereum = __importStar(require("./ethereum"));
|
|
32
32
|
exports.namada = __importStar(require("./namada"));
|
|
33
33
|
exports.rootstock = __importStar(require("./rootstock"));
|
|
@@ -106,6 +106,7 @@ exports.gateway = __importStar(require("./gateway"));
|
|
|
106
106
|
exports.genesisl1 = __importStar(require("./genesisl1"));
|
|
107
107
|
exports.ggezchain = __importStar(require("./ggezchain"));
|
|
108
108
|
exports.gitopia = __importStar(require("./gitopia"));
|
|
109
|
+
exports.gonka = __importStar(require("./gonka"));
|
|
109
110
|
exports.govgen = __importStar(require("./govgen"));
|
|
110
111
|
exports.gravitybridge = __importStar(require("./gravitybridge"));
|
|
111
112
|
exports.haqq = __importStar(require("./haqq"));
|
package/mainnet/terra/assets.js
CHANGED
|
@@ -4847,6 +4847,32 @@ const info = {
|
|
|
4847
4847
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
|
|
4848
4848
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
|
|
4849
4849
|
}]
|
|
4850
|
+
},
|
|
4851
|
+
{
|
|
4852
|
+
description: 'An eco-friendly token for sustainable projects and green initiatives on Terra Luna Classic',
|
|
4853
|
+
socials: {
|
|
4854
|
+
website: 'https://www.greenfriendlylabs.com/',
|
|
4855
|
+
twitter: 'https://x.com/GreenFrndLabs'
|
|
4856
|
+
},
|
|
4857
|
+
type_asset: 'cw20',
|
|
4858
|
+
address: 'terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
|
|
4859
|
+
denom_units: [{
|
|
4860
|
+
denom: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
|
|
4861
|
+
exponent: 0
|
|
4862
|
+
}, {
|
|
4863
|
+
denom: 'gft',
|
|
4864
|
+
exponent: 6
|
|
4865
|
+
}],
|
|
4866
|
+
base: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
|
|
4867
|
+
name: 'Greenfriendly Token',
|
|
4868
|
+
display: 'gft',
|
|
4869
|
+
symbol: 'GFT',
|
|
4870
|
+
logo_URIs: {
|
|
4871
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
|
|
4872
|
+
},
|
|
4873
|
+
images: [{
|
|
4874
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
|
|
4875
|
+
}]
|
|
4850
4876
|
}
|
|
4851
4877
|
]
|
|
4852
4878
|
};
|
package/mainnet/terra/chain.js
CHANGED
|
@@ -162,11 +162,11 @@ const info = {
|
|
|
162
162
|
},
|
|
163
163
|
codebase: {
|
|
164
164
|
git_repo: 'https://github.com/classic-terra/core',
|
|
165
|
-
recommended_version: '
|
|
166
|
-
compatible_versions: ['
|
|
165
|
+
recommended_version: 'v3.5.0',
|
|
166
|
+
compatible_versions: ['v3.5.0'],
|
|
167
167
|
genesis: {
|
|
168
168
|
name: '1.0.5',
|
|
169
|
-
genesis_url: 'https://
|
|
169
|
+
genesis_url: 'https://snapshots.hexxagon.io/cosmos/terra-classic/columbus-5/genesis.json'
|
|
170
170
|
}
|
|
171
171
|
},
|
|
172
172
|
logo_URIs: {
|
|
@@ -180,20 +180,16 @@ const info = {
|
|
|
180
180
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
181
181
|
},
|
|
182
182
|
{
|
|
183
|
-
address: 'https://rpc
|
|
184
|
-
provider: '
|
|
183
|
+
address: 'https://rpc.terra-classic.hexxagon.io/',
|
|
184
|
+
provider: 'Hexxagon'
|
|
185
185
|
},
|
|
186
186
|
{
|
|
187
|
-
address: 'https://
|
|
188
|
-
provider: '
|
|
187
|
+
address: 'https://api-lunc-rpc.binodes.com',
|
|
188
|
+
provider: 'BInodes'
|
|
189
189
|
},
|
|
190
190
|
{
|
|
191
191
|
address: 'https://terraclassic-rpc-server-01.stakely.io',
|
|
192
192
|
provider: 'Stakely'
|
|
193
|
-
},
|
|
194
|
-
{
|
|
195
|
-
address: 'https://api-lunc-rpc.binodes.com',
|
|
196
|
-
provider: 'BInodes'
|
|
197
193
|
}
|
|
198
194
|
],
|
|
199
195
|
rest: [
|
|
@@ -202,17 +198,13 @@ const info = {
|
|
|
202
198
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
203
199
|
},
|
|
204
200
|
{
|
|
205
|
-
address: 'https://
|
|
206
|
-
provider: '
|
|
201
|
+
address: 'https://lcd.terra-classic.hexxagon.io/',
|
|
202
|
+
provider: 'Hexxagon'
|
|
207
203
|
},
|
|
208
204
|
{
|
|
209
205
|
address: 'https://terraclassic-mainnet-lcd.autostake.com:443',
|
|
210
206
|
provider: 'AutoStake 🛡️ Slash Protected'
|
|
211
207
|
},
|
|
212
|
-
{
|
|
213
|
-
address: 'https://terraclassic-lcd-server-01.stakely.io',
|
|
214
|
-
provider: 'Stakely'
|
|
215
|
-
},
|
|
216
208
|
{
|
|
217
209
|
address: 'https://api-lunc-lcd.binodes.com',
|
|
218
210
|
provider: 'BInodes'
|
|
@@ -220,21 +212,13 @@ const info = {
|
|
|
220
212
|
],
|
|
221
213
|
grpc: [
|
|
222
214
|
{
|
|
223
|
-
address: 'grpc.
|
|
224
|
-
provider: '
|
|
215
|
+
address: 'grpc.terra-classic.hexxagon.io/',
|
|
216
|
+
provider: 'Hexxagon'
|
|
225
217
|
},
|
|
226
218
|
{
|
|
227
219
|
address: 'terra-classic-grpc.publicnode.com:443',
|
|
228
220
|
provider: 'Allnodes ⚡️ Nodes & Staking'
|
|
229
221
|
},
|
|
230
|
-
{
|
|
231
|
-
address: 'grpc-terra-ia.cosmosia.notional.ventures:443',
|
|
232
|
-
provider: 'Notional'
|
|
233
|
-
},
|
|
234
|
-
{
|
|
235
|
-
address: 'terraclassic-mainnet-grpc.autostake.com:443',
|
|
236
|
-
provider: 'AutoStake 🛡️ Slash Protected'
|
|
237
|
-
},
|
|
238
222
|
{
|
|
239
223
|
address: 'api-lunc-grpc.binodes.com:443',
|
|
240
224
|
provider: 'BInodes'
|
|
@@ -243,10 +227,16 @@ const info = {
|
|
|
243
227
|
},
|
|
244
228
|
explorers: [
|
|
245
229
|
{
|
|
246
|
-
kind: '
|
|
247
|
-
url: 'https://
|
|
248
|
-
tx_page: 'https://
|
|
249
|
-
account_page: 'https://
|
|
230
|
+
kind: 'hexxagon-finder',
|
|
231
|
+
url: 'https://finder.terra-classic.hexxagon.io/',
|
|
232
|
+
tx_page: 'https://finder.terra-classic.hexxagon.io/mainnet/tx/${txHash}',
|
|
233
|
+
account_page: 'https://finder.terra-classic.hexxagon.io/mainnet/address/${accountAddress}'
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
kind: 'hexxagon2-finder',
|
|
237
|
+
url: 'https://finder.terraclassic.community/',
|
|
238
|
+
tx_page: 'https://finder.terraclassic.community/mainnet/tx/${txHash}',
|
|
239
|
+
account_page: 'https://finder.terraclassic.community/mainnet/address/${accountAddress}'
|
|
250
240
|
},
|
|
251
241
|
{
|
|
252
242
|
kind: 'ping.pub',
|
|
@@ -266,16 +256,10 @@ const info = {
|
|
|
266
256
|
account_page: 'https://staking-explorer.com/account.php?chain=terra&addr=${accountAddress}'
|
|
267
257
|
},
|
|
268
258
|
{
|
|
269
|
-
kind: 'finder',
|
|
270
|
-
url: 'https://finder.
|
|
271
|
-
tx_page: 'https://finder.
|
|
272
|
-
account_page: 'https://finder.
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
kind: 'finder',
|
|
276
|
-
url: 'https://finder.terrarebels.net/classic',
|
|
277
|
-
tx_page: 'https://finder.terrarebels.net/classic/tx/${txHash}',
|
|
278
|
-
account_page: 'https://finder.terrarebels.net/classic/address/${accountAddress}'
|
|
259
|
+
kind: 'terraport-finder',
|
|
260
|
+
url: 'https://finder.terraport.finance/',
|
|
261
|
+
tx_page: 'https://finder.terraport.finance/mainnet/tx/${txHash}',
|
|
262
|
+
account_page: 'https://finder.terraport.finance/mainnet/address/${accountAddress}'
|
|
279
263
|
}
|
|
280
264
|
],
|
|
281
265
|
images: [{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.334",
|
|
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": "^0.50.
|
|
32
|
+
"@chain-registry/types": "^0.50.207"
|
|
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": "99b62e4890ad4e1df73da0fd4eb80ca24cf5f3e9"
|
|
43
43
|
}
|