chain-registry 2.0.56 → 2.0.58
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/{testnet/mantrachaintestnet → mainnet/gonka}/index.js +0 -2
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/lumera/asset-list.js +43 -0
- package/esm/mainnet/lumera/chain.js +4 -4
- package/esm/mainnet/lumera/ibc-data.js +31 -0
- package/esm/mainnet/lumera/index.js +2 -0
- package/esm/mainnet/neutron/asset-list.js +22 -0
- package/esm/mainnet/osmosis/ibc-data.js +30 -0
- package/esm/mainnet/terra/asset-list.js +26 -0
- package/esm/mainnet/terra/chain.js +25 -41
- package/esm/mainnet/umee/chain.js +4 -9
- package/esm/testnet/asset-lists.js +0 -2
- package/esm/testnet/chains.js +0 -2
- package/esm/testnet/ibc-data.js +2 -2
- 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/mantrachaintestnet2/chain.js +20 -4
- package/esm/testnet/osmosistestnet/ibc-data.js +30 -0
- package/esm/testnet/xplatestnet/chain.js +2 -2
- 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.js +40 -0
- package/mainnet/gonka/chain.js +156 -0
- package/{testnet/mantrachaintestnet → mainnet/gonka}/index.d.ts +0 -1
- package/{testnet/mantrachaintestnet → mainnet/gonka}/index.js +1 -3
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/lumera/asset-list.js +43 -0
- package/mainnet/lumera/chain.js +4 -4
- package/mainnet/lumera/ibc-data.js +33 -0
- package/mainnet/lumera/index.d.ts +1 -0
- package/mainnet/lumera/index.js +3 -1
- package/mainnet/neutron/asset-list.js +22 -0
- package/mainnet/osmosis/ibc-data.js +30 -0
- package/mainnet/terra/asset-list.js +26 -0
- package/mainnet/terra/chain.js +25 -41
- package/mainnet/umee/chain.js +4 -9
- package/package.json +3 -3
- package/testnet/asset-lists.js +0 -2
- package/testnet/chains.js +0 -2
- package/testnet/ibc-data.js +2 -2
- 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/mantrachaintestnet2/chain.js +20 -4
- package/testnet/osmosistestnet/ibc-data.js +30 -0
- package/testnet/xplatestnet/chain.js +2 -2
- package/esm/testnet/mantrachaintestnet/asset-list.js +0 -48
- package/esm/testnet/mantrachaintestnet/chain.js +0 -81
- package/esm/testnet/mantrachaintestnet/ibc-data.js +0 -90
- package/testnet/mantrachaintestnet/asset-list.js +0 -50
- package/testnet/mantrachaintestnet/chain.js +0 -83
- package/testnet/mantrachaintestnet/ibc-data.js +0 -92
- /package/{testnet/mantrachaintestnet → mainnet/gonka}/asset-list.d.ts +0 -0
- /package/{testnet/mantrachaintestnet → mainnet/gonka}/chain.d.ts +0 -0
- /package/{testnet/mantrachaintestnet → mainnet/lumera}/ibc-data.d.ts +0 -0
|
@@ -0,0 +1,156 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'gonka',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
prettyName: 'Gonka',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
chainId: 'gonka-mainnet',
|
|
11
|
+
bech32Prefix: 'gonka',
|
|
12
|
+
daemonName: 'inferenced',
|
|
13
|
+
nodeHome: '$HOME/.inference',
|
|
14
|
+
keyAlgos: ['secp256k1'],
|
|
15
|
+
slip44: 1200,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'ngonka',
|
|
19
|
+
fixedMinGasPrice: 0,
|
|
20
|
+
lowGasPrice: 0,
|
|
21
|
+
averageGasPrice: 0,
|
|
22
|
+
highGasPrice: 0
|
|
23
|
+
}]
|
|
24
|
+
},
|
|
25
|
+
staking: {
|
|
26
|
+
stakingTokens: [{
|
|
27
|
+
denom: 'ngonka'
|
|
28
|
+
}]
|
|
29
|
+
},
|
|
30
|
+
codebase: {
|
|
31
|
+
gitRepo: 'https://github.com/gonka-ai/gonka',
|
|
32
|
+
recommendedVersion: 'v0.2.0',
|
|
33
|
+
genesis: {
|
|
34
|
+
genesisUrl: '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
|
+
logoURIs: {
|
|
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
|
+
txPage: 'http://47.236.19.22:18000/dashboard/gonka/txs/${txHash}',
|
|
122
|
+
accountPage: '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
|
+
txPage: 'http://gonka.spv.re:8000/dashboard/gonka/txs/${txHash}',
|
|
128
|
+
accountPage: '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
|
+
txPage: 'http://185.216.21.98:8000/dashboard/gonka/txs/${txHash}',
|
|
134
|
+
accountPage: '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
|
+
txPage: 'http://93.119.168.58:8000/dashboard/gonka/txs/${txHash}',
|
|
140
|
+
accountPage: '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
|
+
txPage: 'http://node1.gonka.ai:8000/dashboard/gonka/txs/${txHash}',
|
|
146
|
+
accountPage: '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;
|
|
@@ -3,10 +3,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.
|
|
6
|
+
exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
-
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
10
9
|
exports.assetList = asset_list_1.default;
|
|
11
10
|
exports.chain = chain_1.default;
|
|
12
|
-
exports.ibcData = ibc_data_1.default;
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -110,6 +110,7 @@ const _lava = __importStar(require("./lava"));
|
|
|
110
110
|
const _likecoin = __importStar(require("./likecoin"));
|
|
111
111
|
const _lombardledger = __importStar(require("./lombardledger"));
|
|
112
112
|
const _lorenzo = __importStar(require("./lorenzo"));
|
|
113
|
+
const _lumera = __importStar(require("./lumera"));
|
|
113
114
|
const _lumnetwork = __importStar(require("./lumnetwork"));
|
|
114
115
|
const _mande = __importStar(require("./mande"));
|
|
115
116
|
const _manifest = __importStar(require("./manifest"));
|
|
@@ -277,6 +278,7 @@ const ibcData = [
|
|
|
277
278
|
..._likecoin.ibcData,
|
|
278
279
|
..._lombardledger.ibcData,
|
|
279
280
|
..._lorenzo.ibcData,
|
|
281
|
+
..._lumera.ibcData,
|
|
280
282
|
..._lumnetwork.ibcData,
|
|
281
283
|
..._mande.ibcData,
|
|
282
284
|
..._manifest.ibcData,
|
|
@@ -30,6 +30,49 @@ const info = {
|
|
|
30
30
|
telegram: 'https://t.me/lumeraprotocol',
|
|
31
31
|
website: 'https://lumera.io'
|
|
32
32
|
}
|
|
33
|
+
}, {
|
|
34
|
+
denomUnits: [{
|
|
35
|
+
denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
36
|
+
exponent: 0,
|
|
37
|
+
aliases: ['uosmo']
|
|
38
|
+
}, {
|
|
39
|
+
denom: 'osmo',
|
|
40
|
+
exponent: 6
|
|
41
|
+
}],
|
|
42
|
+
typeAsset: 'ics20',
|
|
43
|
+
base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
|
|
44
|
+
name: 'Osmosis OSMO Token',
|
|
45
|
+
display: 'osmo',
|
|
46
|
+
symbol: 'OSMO',
|
|
47
|
+
traces: [{
|
|
48
|
+
type: 'ibc',
|
|
49
|
+
counterparty: {
|
|
50
|
+
chainName: 'osmosis',
|
|
51
|
+
baseDenom: 'uosmo',
|
|
52
|
+
channelId: 'channel-106313'
|
|
53
|
+
},
|
|
54
|
+
chain: {
|
|
55
|
+
channelId: 'channel-0',
|
|
56
|
+
path: 'transfer/channel-0/uosmo'
|
|
57
|
+
}
|
|
58
|
+
}],
|
|
59
|
+
images: [{
|
|
60
|
+
imageSync: {
|
|
61
|
+
chainName: 'osmosis',
|
|
62
|
+
baseDenom: 'uosmo'
|
|
63
|
+
},
|
|
64
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
65
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
66
|
+
}],
|
|
67
|
+
logoURIs: {
|
|
68
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
|
|
69
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
|
|
70
|
+
},
|
|
71
|
+
keywords: [
|
|
72
|
+
'dex',
|
|
73
|
+
'ibc',
|
|
74
|
+
'osmosis'
|
|
75
|
+
]
|
|
33
76
|
}]
|
|
34
77
|
};
|
|
35
78
|
exports.default = info;
|
package/mainnet/lumera/chain.js
CHANGED
|
@@ -38,18 +38,18 @@ const info = {
|
|
|
38
38
|
},
|
|
39
39
|
codebase: {
|
|
40
40
|
gitRepo: 'https://github.com/LumeraProtocol/lumera',
|
|
41
|
-
tag: 'v1.
|
|
42
|
-
recommendedVersion: 'v1.
|
|
41
|
+
tag: 'v1.6.1',
|
|
42
|
+
recommendedVersion: 'v1.6.1',
|
|
43
43
|
language: {
|
|
44
44
|
type: 'go',
|
|
45
45
|
version: 'v1.24'
|
|
46
46
|
},
|
|
47
47
|
binaries: {
|
|
48
|
-
"linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v1.
|
|
48
|
+
"linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v1.6.1/lumera_v1.6.1_linux_amd64.tar.gz?checksum=sha256:3d33c600ad35b94c72acf4ce81247f6171b79169f5b84a6e415df1ec30d690dc'
|
|
49
49
|
},
|
|
50
50
|
sdk: {
|
|
51
51
|
type: 'cosmos',
|
|
52
|
-
version: 'v0.50.
|
|
52
|
+
version: 'v0.50.12'
|
|
53
53
|
},
|
|
54
54
|
consensus: {
|
|
55
55
|
type: 'cometbft',
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'lumera',
|
|
7
|
+
clientId: '07-tendermint-1',
|
|
8
|
+
connectionId: 'connection-0'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'osmosis',
|
|
12
|
+
clientId: '07-tendermint-3589',
|
|
13
|
+
connectionId: 'connection-10931'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-0',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-106313',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
status: 'live',
|
|
28
|
+
preferred: true,
|
|
29
|
+
dex: 'osmosis'
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
}];
|
|
33
|
+
exports.default = info;
|
package/mainnet/lumera/index.js
CHANGED
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assetList = void 0;
|
|
6
|
+
exports.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
9
10
|
exports.assetList = asset_list_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
|
@@ -1642,6 +1642,28 @@ const info = {
|
|
|
1642
1642
|
website: 'https://TabCo.in'
|
|
1643
1643
|
},
|
|
1644
1644
|
typeAsset: 'sdk.coin'
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
description: 'EHO is the native token powering Cognitive Echo — a VR + AI ecosystem where thoughts become visual, insights resonate, and cognitive echo transforms ideas into reality. The infinity symbol (∞) represents infinite resonance and community-driven growth.',
|
|
1648
|
+
denomUnits: [{
|
|
1649
|
+
denom: 'cw20:neutron15e56mauwr8n2cma56f78cvtnd9c2pr0y7f4mffdwda7z49sksyvqh2hke2',
|
|
1650
|
+
exponent: 0
|
|
1651
|
+
}, {
|
|
1652
|
+
denom: 'eho',
|
|
1653
|
+
exponent: 6
|
|
1654
|
+
}],
|
|
1655
|
+
typeAsset: 'cw20',
|
|
1656
|
+
address: 'neutron15e56mauwr8n2cma56f78cvtnd9c2pr0y7f4mffdwda7z49sksyvqh2hke2',
|
|
1657
|
+
base: 'cw20:neutron15e56mauwr8n2cma56f78cvtnd9c2pr0y7f4mffdwda7z49sksyvqh2hke2',
|
|
1658
|
+
name: 'Cognitive Echo',
|
|
1659
|
+
display: 'eho',
|
|
1660
|
+
symbol: 'EHO',
|
|
1661
|
+
logoURIs: {
|
|
1662
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/eho.svg'
|
|
1663
|
+
},
|
|
1664
|
+
images: [{
|
|
1665
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/eho.svg'
|
|
1666
|
+
}]
|
|
1645
1667
|
}
|
|
1646
1668
|
]
|
|
1647
1669
|
};
|
|
@@ -2650,6 +2650,36 @@ const info = [
|
|
|
2650
2650
|
}
|
|
2651
2651
|
}]
|
|
2652
2652
|
},
|
|
2653
|
+
{
|
|
2654
|
+
$schema: '../ibc_data.schema.json',
|
|
2655
|
+
chain1: {
|
|
2656
|
+
chainName: 'lumera',
|
|
2657
|
+
clientId: '07-tendermint-1',
|
|
2658
|
+
connectionId: 'connection-0'
|
|
2659
|
+
},
|
|
2660
|
+
chain2: {
|
|
2661
|
+
chainName: 'osmosis',
|
|
2662
|
+
clientId: '07-tendermint-3589',
|
|
2663
|
+
connectionId: 'connection-10931'
|
|
2664
|
+
},
|
|
2665
|
+
channels: [{
|
|
2666
|
+
chain1: {
|
|
2667
|
+
channelId: 'channel-0',
|
|
2668
|
+
portId: 'transfer'
|
|
2669
|
+
},
|
|
2670
|
+
chain2: {
|
|
2671
|
+
channelId: 'channel-106313',
|
|
2672
|
+
portId: 'transfer'
|
|
2673
|
+
},
|
|
2674
|
+
ordering: 'unordered',
|
|
2675
|
+
version: 'ics20-1',
|
|
2676
|
+
tags: {
|
|
2677
|
+
status: 'live',
|
|
2678
|
+
preferred: true,
|
|
2679
|
+
dex: 'osmosis'
|
|
2680
|
+
}
|
|
2681
|
+
}]
|
|
2682
|
+
},
|
|
2653
2683
|
{
|
|
2654
2684
|
$schema: '../ibc_data.schema.json',
|
|
2655
2685
|
chain1: {
|
|
@@ -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
|
+
typeAsset: 'cw20',
|
|
4858
|
+
address: 'terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
|
|
4859
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
gitRepo: 'https://github.com/classic-terra/core',
|
|
165
|
-
recommendedVersion: '
|
|
166
|
-
compatibleVersions: ['
|
|
165
|
+
recommendedVersion: 'v3.5.0',
|
|
166
|
+
compatibleVersions: ['v3.5.0'],
|
|
167
167
|
genesis: {
|
|
168
168
|
name: '1.0.5',
|
|
169
|
-
genesisUrl: 'https://
|
|
169
|
+
genesisUrl: 'https://snapshots.hexxagon.io/cosmos/terra-classic/columbus-5/genesis.json'
|
|
170
170
|
}
|
|
171
171
|
},
|
|
172
172
|
logoURIs: {
|
|
@@ -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
|
-
txPage: 'https://
|
|
249
|
-
accountPage: 'https://
|
|
230
|
+
kind: 'hexxagon-finder',
|
|
231
|
+
url: 'https://finder.terra-classic.hexxagon.io/',
|
|
232
|
+
txPage: 'https://finder.terra-classic.hexxagon.io/mainnet/tx/${txHash}',
|
|
233
|
+
accountPage: 'https://finder.terra-classic.hexxagon.io/mainnet/address/${accountAddress}'
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
kind: 'hexxagon2-finder',
|
|
237
|
+
url: 'https://finder.terraclassic.community/',
|
|
238
|
+
txPage: 'https://finder.terraclassic.community/mainnet/tx/${txHash}',
|
|
239
|
+
accountPage: 'https://finder.terraclassic.community/mainnet/address/${accountAddress}'
|
|
250
240
|
},
|
|
251
241
|
{
|
|
252
242
|
kind: 'ping.pub',
|
|
@@ -266,16 +256,10 @@ const info = {
|
|
|
266
256
|
accountPage: 'https://staking-explorer.com/account.php?chain=terra&addr=${accountAddress}'
|
|
267
257
|
},
|
|
268
258
|
{
|
|
269
|
-
kind: 'finder',
|
|
270
|
-
url: 'https://finder.
|
|
271
|
-
txPage: 'https://finder.
|
|
272
|
-
accountPage: 'https://finder.
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
kind: 'finder',
|
|
276
|
-
url: 'https://finder.terrarebels.net/classic',
|
|
277
|
-
txPage: 'https://finder.terrarebels.net/classic/tx/${txHash}',
|
|
278
|
-
accountPage: 'https://finder.terrarebels.net/classic/address/${accountAddress}'
|
|
259
|
+
kind: 'terraport-finder',
|
|
260
|
+
url: 'https://finder.terraport.finance/',
|
|
261
|
+
txPage: 'https://finder.terraport.finance/mainnet/tx/${txHash}',
|
|
262
|
+
accountPage: 'https://finder.terraport.finance/mainnet/address/${accountAddress}'
|
|
279
263
|
}
|
|
280
264
|
],
|
|
281
265
|
images: [{
|
package/mainnet/umee/chain.js
CHANGED
|
@@ -265,9 +265,10 @@ const info = {
|
|
|
265
265
|
},
|
|
266
266
|
explorers: [
|
|
267
267
|
{
|
|
268
|
-
kind: '
|
|
269
|
-
url: 'https://
|
|
270
|
-
txPage: 'https://
|
|
268
|
+
kind: 'Chainroot',
|
|
269
|
+
url: 'https://explorer.chainroot.io/ux',
|
|
270
|
+
txPage: 'https://explorer.chainroot.io/ux/transactions/${txHash}',
|
|
271
|
+
accountPage: 'https://explorer.chainroot.io/ux/accounts/${accountAddress}'
|
|
271
272
|
},
|
|
272
273
|
{
|
|
273
274
|
kind: '🔥STAVR🔥 Explorer',
|
|
@@ -320,12 +321,6 @@ const info = {
|
|
|
320
321
|
txPage: 'https://explorer.whenmoonwhenlambo.money/umee/tx/${txHash}',
|
|
321
322
|
accountPage: 'https://explorer.whenmoonwhenlambo.money/umee/account/${accountAddress}'
|
|
322
323
|
},
|
|
323
|
-
{
|
|
324
|
-
kind: 'Chainroot',
|
|
325
|
-
url: 'https://explorer.chainroot.io/ux',
|
|
326
|
-
txPage: 'https://explorer.chainroot.io/ux/transactions/${txHash}',
|
|
327
|
-
accountPage: 'https://explorer.chainroot.io/ux/accounts/${accountAddress}'
|
|
328
|
-
},
|
|
329
324
|
{
|
|
330
325
|
kind: 'Valopers',
|
|
331
326
|
url: 'https://ux.valopers.com/',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.58",
|
|
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.58"
|
|
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": "4eef675aa54e1748271fd377cef2afc5ac0311e0"
|
|
43
43
|
}
|
package/testnet/asset-lists.js
CHANGED
|
@@ -91,7 +91,6 @@ const _lombardledgertestnet = __importStar(require("./lombardledgertestnet"));
|
|
|
91
91
|
const _lumenxtestnet = __importStar(require("./lumenxtestnet"));
|
|
92
92
|
const _lumeratestnet = __importStar(require("./lumeratestnet"));
|
|
93
93
|
const _manifesttestnet = __importStar(require("./manifesttestnet"));
|
|
94
|
-
const _mantrachaintestnet = __importStar(require("./mantrachaintestnet"));
|
|
95
94
|
const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
|
|
96
95
|
const _marstestnet = __importStar(require("./marstestnet"));
|
|
97
96
|
const _metanovaversetestnet = __importStar(require("./metanovaversetestnet"));
|
|
@@ -228,7 +227,6 @@ const assetList = [
|
|
|
228
227
|
_lumenxtestnet.assetList,
|
|
229
228
|
_lumeratestnet.assetList,
|
|
230
229
|
_manifesttestnet.assetList,
|
|
231
|
-
_mantrachaintestnet.assetList,
|
|
232
230
|
_mantrachaintestnet2.assetList,
|
|
233
231
|
_marstestnet.assetList,
|
|
234
232
|
_metanovaversetestnet.assetList,
|
package/testnet/chains.js
CHANGED
|
@@ -91,7 +91,6 @@ const _lombardledgertestnet = __importStar(require("./lombardledgertestnet"));
|
|
|
91
91
|
const _lumenxtestnet = __importStar(require("./lumenxtestnet"));
|
|
92
92
|
const _lumeratestnet = __importStar(require("./lumeratestnet"));
|
|
93
93
|
const _manifesttestnet = __importStar(require("./manifesttestnet"));
|
|
94
|
-
const _mantrachaintestnet = __importStar(require("./mantrachaintestnet"));
|
|
95
94
|
const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
|
|
96
95
|
const _marstestnet = __importStar(require("./marstestnet"));
|
|
97
96
|
const _metanovaversetestnet = __importStar(require("./metanovaversetestnet"));
|
|
@@ -228,7 +227,6 @@ const chains = [
|
|
|
228
227
|
_lumenxtestnet.chain,
|
|
229
228
|
_lumeratestnet.chain,
|
|
230
229
|
_manifesttestnet.chain,
|
|
231
|
-
_mantrachaintestnet.chain,
|
|
232
230
|
_mantrachaintestnet2.chain,
|
|
233
231
|
_marstestnet.chain,
|
|
234
232
|
_metanovaversetestnet.chain,
|
package/testnet/ibc-data.js
CHANGED
|
@@ -48,8 +48,8 @@ const _kujiratestnet = __importStar(require("./kujiratestnet"));
|
|
|
48
48
|
const _kyvetestnet = __importStar(require("./kyvetestnet"));
|
|
49
49
|
const _lavatestnet = __importStar(require("./lavatestnet"));
|
|
50
50
|
const _likecointestnet = __importStar(require("./likecointestnet"));
|
|
51
|
+
const _lumeratestnet = __importStar(require("./lumeratestnet"));
|
|
51
52
|
const _manifesttestnet = __importStar(require("./manifesttestnet"));
|
|
52
|
-
const _mantrachaintestnet = __importStar(require("./mantrachaintestnet"));
|
|
53
53
|
const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
|
|
54
54
|
const _marstestnet = __importStar(require("./marstestnet"));
|
|
55
55
|
const _neutrontestnet = __importStar(require("./neutrontestnet"));
|
|
@@ -98,8 +98,8 @@ const ibcData = [
|
|
|
98
98
|
..._kyvetestnet.ibcData,
|
|
99
99
|
..._lavatestnet.ibcData,
|
|
100
100
|
..._likecointestnet.ibcData,
|
|
101
|
+
..._lumeratestnet.ibcData,
|
|
101
102
|
..._manifesttestnet.ibcData,
|
|
102
|
-
..._mantrachaintestnet.ibcData,
|
|
103
103
|
..._mantrachaintestnet2.ibcData,
|
|
104
104
|
..._marstestnet.ibcData,
|
|
105
105
|
..._neutrontestnet.ibcData,
|