chain-registry 2.0.237 → 2.0.239
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/axone/chain.js +3 -3
- package/esm/mainnet/bandchain/chain.js +4 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/cosmoshub/chain.js +4 -0
- package/esm/mainnet/fetchhub/chain.js +4 -0
- package/esm/mainnet/gonka/asset-list.js +6 -1
- package/esm/mainnet/gonka/chain.js +27 -15
- package/esm/mainnet/gonka/ibc-data.js +32 -0
- package/esm/mainnet/gonka/index.js +2 -0
- package/esm/mainnet/ibc-data.js +4 -0
- package/esm/mainnet/injective/chain.js +4 -0
- package/esm/mainnet/mucoin/asset-list.js +26 -0
- package/esm/mainnet/mucoin/chain.js +79 -0
- package/esm/mainnet/mucoin/ibc-data.js +32 -0
- package/esm/mainnet/mucoin/index.js +6 -0
- package/esm/mainnet/osmosis/ibc-data.js +62 -0
- package/esm/mainnet/persistence/chain.js +4 -0
- package/esm/mainnet/provenance/chain.js +4 -0
- package/esm/mainnet/tail/chain.js +5 -5
- package/esm/mainnet/terra2/chain.js +8 -0
- package/esm/mainnet/union/chain.js +4 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/axone/chain.js +3 -3
- package/mainnet/bandchain/chain.js +4 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/chain.js +4 -0
- package/mainnet/fetchhub/chain.js +4 -0
- package/mainnet/gonka/asset-list.js +6 -1
- package/mainnet/gonka/chain.js +27 -15
- package/mainnet/gonka/ibc-data.d.ts +3 -0
- package/mainnet/gonka/ibc-data.js +34 -0
- package/mainnet/gonka/index.d.ts +1 -0
- package/mainnet/gonka/index.js +3 -1
- package/mainnet/ibc-data.js +4 -0
- package/mainnet/injective/chain.js +4 -0
- package/mainnet/mucoin/asset-list.d.ts +3 -0
- package/mainnet/mucoin/asset-list.js +28 -0
- package/mainnet/mucoin/chain.d.ts +3 -0
- package/mainnet/mucoin/chain.js +81 -0
- package/mainnet/mucoin/ibc-data.d.ts +3 -0
- package/mainnet/mucoin/ibc-data.js +34 -0
- package/mainnet/mucoin/index.d.ts +3 -0
- package/mainnet/mucoin/index.js +12 -0
- package/mainnet/osmosis/ibc-data.js +62 -0
- package/mainnet/persistence/chain.js +4 -0
- package/mainnet/provenance/chain.js +4 -0
- package/mainnet/tail/chain.js +5 -5
- package/mainnet/terra2/chain.js +8 -0
- package/mainnet/union/chain.js +4 -0
- package/package.json +3 -3
package/mainnet/chains.js
CHANGED
|
@@ -156,6 +156,7 @@ const _migaloo = __importStar(require("./migaloo"));
|
|
|
156
156
|
const _mirage = __importStar(require("./mirage"));
|
|
157
157
|
const _mises = __importStar(require("./mises"));
|
|
158
158
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
159
|
+
const _mucoin = __importStar(require("./mucoin"));
|
|
159
160
|
const _mun = __importStar(require("./mun"));
|
|
160
161
|
const _mythos = __importStar(require("./mythos"));
|
|
161
162
|
const _neura = __importStar(require("./neura"));
|
|
@@ -382,6 +383,7 @@ const chains = [
|
|
|
382
383
|
_mirage.chain,
|
|
383
384
|
_mises.chain,
|
|
384
385
|
_mtgbp.chain,
|
|
386
|
+
_mucoin.chain,
|
|
385
387
|
_mun.chain,
|
|
386
388
|
_mythos.chain,
|
|
387
389
|
_neura.chain,
|
|
@@ -5,6 +5,7 @@ const info = {
|
|
|
5
5
|
chainName: 'gonka',
|
|
6
6
|
assets: [{
|
|
7
7
|
description: 'Coins for the Gonka network.',
|
|
8
|
+
extendedDescription: 'Gonka is a decentralized AI infrastructure designed to optimize computational power specifically for AI model training and inference, offering a competitive alternative to traditional centralized cloud providers. Centralized systems are often expensive, monopolistic, and carry risks of censorship, whereas existing decentralized networks frequently waste resources on non-productive tasks, such as network security.\n\nWe introduce an innovative consensus mechanism that ensures nearly 100% of computational resources are used for meaningful AI tasks, maximizing efficiency and minimizing operational costs.',
|
|
8
9
|
denomUnits: [
|
|
9
10
|
{
|
|
10
11
|
denom: 'ngonka',
|
|
@@ -34,7 +35,11 @@ const info = {
|
|
|
34
35
|
images: [{
|
|
35
36
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
|
|
36
37
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg'
|
|
37
|
-
}]
|
|
38
|
+
}],
|
|
39
|
+
socials: {
|
|
40
|
+
x: 'https://x.com/gonka_ai',
|
|
41
|
+
discord: 'https://discord.com/invite/RADwCT2U6R'
|
|
42
|
+
}
|
|
38
43
|
}]
|
|
39
44
|
};
|
|
40
45
|
exports.default = info;
|
package/mainnet/gonka/chain.js
CHANGED
|
@@ -83,8 +83,8 @@ const info = {
|
|
|
83
83
|
apis: {
|
|
84
84
|
rpc: [
|
|
85
85
|
{
|
|
86
|
-
address: 'https://
|
|
87
|
-
provider: '
|
|
86
|
+
address: 'https://gonka.hyperfusion.io/chain-rpc/',
|
|
87
|
+
provider: 'Hyperfusion'
|
|
88
88
|
},
|
|
89
89
|
{
|
|
90
90
|
address: 'https://gonka03.6block.com:8443/chain-rpc/',
|
|
@@ -92,17 +92,21 @@ const info = {
|
|
|
92
92
|
},
|
|
93
93
|
{
|
|
94
94
|
address: 'https://node1.gonka.ai:8443/chain-rpc/',
|
|
95
|
-
provider: 'PS
|
|
95
|
+
provider: 'PS'
|
|
96
96
|
},
|
|
97
97
|
{
|
|
98
98
|
address: 'https://node2.gonka.ai:8443/chain-rpc/',
|
|
99
|
-
provider: 'PS
|
|
99
|
+
provider: 'PS'
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
address: 'https://rpc.gonka.gg/key/keplr/chain-rpc/',
|
|
103
|
+
provider: 'GonkaLabs'
|
|
100
104
|
}
|
|
101
105
|
],
|
|
102
106
|
rest: [
|
|
103
107
|
{
|
|
104
|
-
address: 'https://
|
|
105
|
-
provider: '
|
|
108
|
+
address: 'https://gonka.hyperfusion.io/chain-api/',
|
|
109
|
+
provider: 'Hyperfusion'
|
|
106
110
|
},
|
|
107
111
|
{
|
|
108
112
|
address: 'https://gonka03.6block.com:8443/chain-api/',
|
|
@@ -110,17 +114,21 @@ const info = {
|
|
|
110
114
|
},
|
|
111
115
|
{
|
|
112
116
|
address: 'https://node1.gonka.ai:8443/chain-api/',
|
|
113
|
-
provider: 'PS
|
|
117
|
+
provider: 'PS'
|
|
114
118
|
},
|
|
115
119
|
{
|
|
116
120
|
address: 'https://node2.gonka.ai:8443/chain-api/',
|
|
117
|
-
provider: 'PS
|
|
121
|
+
provider: 'PS'
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
address: 'https://rpc.gonka.gg/key/keplr/chain-api/',
|
|
125
|
+
provider: 'GonkaLabs'
|
|
118
126
|
}
|
|
119
127
|
],
|
|
120
128
|
grpc: [
|
|
121
129
|
{
|
|
122
|
-
address: 'https://
|
|
123
|
-
provider: '
|
|
130
|
+
address: 'https://gonka.hyperfusion.io/chain-grpc/',
|
|
131
|
+
provider: 'Hyperfusion'
|
|
124
132
|
},
|
|
125
133
|
{
|
|
126
134
|
address: 'https://gonka03.6block.com:8443/chain-grpc/',
|
|
@@ -128,20 +136,24 @@ const info = {
|
|
|
128
136
|
},
|
|
129
137
|
{
|
|
130
138
|
address: 'https://node1.gonka.ai:8443/chain-grpc/',
|
|
131
|
-
provider: 'PS
|
|
139
|
+
provider: 'PS'
|
|
132
140
|
},
|
|
133
141
|
{
|
|
134
142
|
address: 'https://node2.gonka.ai:8443/chain-grpc/',
|
|
135
|
-
provider: 'PS
|
|
143
|
+
provider: 'PS'
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
address: 'https://rpc.gonka.gg/key/keplr/chain-grpc/',
|
|
147
|
+
provider: 'GonkaLabs'
|
|
136
148
|
}
|
|
137
149
|
]
|
|
138
150
|
},
|
|
139
151
|
explorers: [
|
|
140
152
|
{
|
|
141
153
|
kind: 'ping.pub',
|
|
142
|
-
url: 'https://
|
|
143
|
-
txPage: 'https://
|
|
144
|
-
accountPage: 'https://
|
|
154
|
+
url: 'https://gonka.hyperfusion.io/dashboard',
|
|
155
|
+
txPage: 'https://gonka.hyperfusion.io/dashboard/gonka/txs/${txHash}',
|
|
156
|
+
accountPage: 'https://gonka.hyperfusion.io/dashboard/gonka/account/${accountAddress}'
|
|
145
157
|
},
|
|
146
158
|
{
|
|
147
159
|
kind: 'ping.pub',
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'gonka',
|
|
7
|
+
chainId: 'gonka-mainnet',
|
|
8
|
+
clientId: '07-tendermint-1',
|
|
9
|
+
connectionId: 'connection-1'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'osmosis',
|
|
13
|
+
chainId: 'osmosis-1',
|
|
14
|
+
clientId: '07-tendermint-3637',
|
|
15
|
+
connectionId: 'connection-10981'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-1',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-108157',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}];
|
|
34
|
+
exports.default = info;
|
package/mainnet/gonka/index.d.ts
CHANGED
package/mainnet/gonka/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;
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -87,6 +87,7 @@ const _gateway = __importStar(require("./gateway"));
|
|
|
87
87
|
const _genesisl1 = __importStar(require("./genesisl1"));
|
|
88
88
|
const _gitopia = __importStar(require("./gitopia"));
|
|
89
89
|
const _gnodi = __importStar(require("./gnodi"));
|
|
90
|
+
const _gonka = __importStar(require("./gonka"));
|
|
90
91
|
const _gravitybridge = __importStar(require("./gravitybridge"));
|
|
91
92
|
const _haqq = __importStar(require("./haqq"));
|
|
92
93
|
const _hazinachain = __importStar(require("./hazinachain"));
|
|
@@ -124,6 +125,7 @@ const _meme = __importStar(require("./meme"));
|
|
|
124
125
|
const _migaloo = __importStar(require("./migaloo"));
|
|
125
126
|
const _mirage = __importStar(require("./mirage"));
|
|
126
127
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
128
|
+
const _mucoin = __importStar(require("./mucoin"));
|
|
127
129
|
const _neutaro = __importStar(require("./neutaro"));
|
|
128
130
|
const _neutron = __importStar(require("./neutron"));
|
|
129
131
|
const _nibiru = __importStar(require("./nibiru"));
|
|
@@ -257,6 +259,7 @@ const ibcData = [
|
|
|
257
259
|
..._genesisl1.ibcData,
|
|
258
260
|
..._gitopia.ibcData,
|
|
259
261
|
..._gnodi.ibcData,
|
|
262
|
+
..._gonka.ibcData,
|
|
260
263
|
..._gravitybridge.ibcData,
|
|
261
264
|
..._haqq.ibcData,
|
|
262
265
|
..._hazinachain.ibcData,
|
|
@@ -294,6 +297,7 @@ const ibcData = [
|
|
|
294
297
|
..._migaloo.ibcData,
|
|
295
298
|
..._mirage.ibcData,
|
|
296
299
|
..._mtgbp.ibcData,
|
|
300
|
+
..._mucoin.ibcData,
|
|
297
301
|
..._neutaro.ibcData,
|
|
298
302
|
..._neutron.ibcData,
|
|
299
303
|
..._nibiru.ibcData,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'mucoin',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'MUC is the native staking, governance and transaction fee token of the MuCoin blockchain.',
|
|
8
|
+
denomUnits: [{
|
|
9
|
+
denom: 'umuc',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'MUC',
|
|
13
|
+
exponent: 6
|
|
14
|
+
}],
|
|
15
|
+
typeAsset: 'sdk.coin',
|
|
16
|
+
base: 'umuc',
|
|
17
|
+
name: 'MuCoin',
|
|
18
|
+
display: 'MUC',
|
|
19
|
+
symbol: 'MUC',
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mucoin/images/mucoin.png'
|
|
22
|
+
}],
|
|
23
|
+
socials: {
|
|
24
|
+
website: 'https://mucoin.org'
|
|
25
|
+
}
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
exports.default = info;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'mucoin',
|
|
6
|
+
status: 'live',
|
|
7
|
+
website: 'https://mucoin.org',
|
|
8
|
+
networkType: 'mainnet',
|
|
9
|
+
prettyName: 'MuCoin',
|
|
10
|
+
chainType: 'cosmos',
|
|
11
|
+
chainId: 'mucoin-1',
|
|
12
|
+
bech32Prefix: 'muc',
|
|
13
|
+
daemonName: 'mucoind',
|
|
14
|
+
nodeHome: '$HOME/.mucoin',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
description: 'MuCoin is a Cosmos SDK blockchain created for the MuCoin ecosystem and inspired by the world of MU Online.',
|
|
18
|
+
keywords: [
|
|
19
|
+
'mucoin',
|
|
20
|
+
'muc',
|
|
21
|
+
'cosmos',
|
|
22
|
+
'ibc',
|
|
23
|
+
'gaming',
|
|
24
|
+
'mu-online'
|
|
25
|
+
],
|
|
26
|
+
fees: {
|
|
27
|
+
feeTokens: [{
|
|
28
|
+
denom: 'umuc',
|
|
29
|
+
fixedMinGasPrice: 0.0025,
|
|
30
|
+
lowGasPrice: 0.0025,
|
|
31
|
+
averageGasPrice: 0.005,
|
|
32
|
+
highGasPrice: 0.01
|
|
33
|
+
}]
|
|
34
|
+
},
|
|
35
|
+
staking: {
|
|
36
|
+
stakingTokens: [{
|
|
37
|
+
denom: 'umuc'
|
|
38
|
+
}]
|
|
39
|
+
},
|
|
40
|
+
codebase: {
|
|
41
|
+
gitRepo: 'https://github.com/dasgrid/mucoin',
|
|
42
|
+
recommendedVersion: 'rewards-v0.7.0',
|
|
43
|
+
compatibleVersions: ['rewards-v0.7.0'],
|
|
44
|
+
consensus: {
|
|
45
|
+
type: 'cometbft',
|
|
46
|
+
version: 'v0.38.21'
|
|
47
|
+
},
|
|
48
|
+
language: {
|
|
49
|
+
type: 'go',
|
|
50
|
+
version: '1.26.5'
|
|
51
|
+
},
|
|
52
|
+
sdk: {
|
|
53
|
+
type: 'cosmos',
|
|
54
|
+
repo: 'https://github.com/cosmos/cosmos-sdk',
|
|
55
|
+
version: 'v0.53.6'
|
|
56
|
+
},
|
|
57
|
+
ibc: {
|
|
58
|
+
type: 'go',
|
|
59
|
+
version: 'v10.4.0',
|
|
60
|
+
icsEnabled: ['ics20-1']
|
|
61
|
+
},
|
|
62
|
+
genesis: {
|
|
63
|
+
name: 'mucoin-1',
|
|
64
|
+
genesisUrl: 'https://raw.githubusercontent.com/dasgrid/mucoin/main/networks/mucoin-1/genesis.json'
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
images: [{
|
|
68
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mucoin/images/mucoin.png'
|
|
69
|
+
}],
|
|
70
|
+
apis: {
|
|
71
|
+
rpc: [{
|
|
72
|
+
address: 'https://rpc.mucoin.org',
|
|
73
|
+
provider: 'MuCoin'
|
|
74
|
+
}],
|
|
75
|
+
rest: [{
|
|
76
|
+
address: 'https://rest.mucoin.org',
|
|
77
|
+
provider: 'MuCoin'
|
|
78
|
+
}]
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
exports.default = info;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'mucoin',
|
|
7
|
+
chainId: 'mucoin-1',
|
|
8
|
+
clientId: '07-tendermint-0',
|
|
9
|
+
connectionId: 'connection-0'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'osmosis',
|
|
13
|
+
chainId: 'osmosis-1',
|
|
14
|
+
clientId: '07-tendermint-3729',
|
|
15
|
+
connectionId: 'connection-11080'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-0',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-110556',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}];
|
|
34
|
+
exports.default = info;
|
|
@@ -0,0 +1,12 @@
|
|
|
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.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
10
|
+
exports.assetList = asset_list_1.default;
|
|
11
|
+
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
|
@@ -2106,6 +2106,37 @@ const info = [
|
|
|
2106
2106
|
}
|
|
2107
2107
|
}]
|
|
2108
2108
|
},
|
|
2109
|
+
{
|
|
2110
|
+
$schema: '../ibc_data.schema.json',
|
|
2111
|
+
chain1: {
|
|
2112
|
+
chainName: 'gonka',
|
|
2113
|
+
chainId: 'gonka-mainnet',
|
|
2114
|
+
clientId: '07-tendermint-1',
|
|
2115
|
+
connectionId: 'connection-1'
|
|
2116
|
+
},
|
|
2117
|
+
chain2: {
|
|
2118
|
+
chainName: 'osmosis',
|
|
2119
|
+
chainId: 'osmosis-1',
|
|
2120
|
+
clientId: '07-tendermint-3637',
|
|
2121
|
+
connectionId: 'connection-10981'
|
|
2122
|
+
},
|
|
2123
|
+
channels: [{
|
|
2124
|
+
chain1: {
|
|
2125
|
+
channelId: 'channel-1',
|
|
2126
|
+
portId: 'transfer'
|
|
2127
|
+
},
|
|
2128
|
+
chain2: {
|
|
2129
|
+
channelId: 'channel-108157',
|
|
2130
|
+
portId: 'transfer'
|
|
2131
|
+
},
|
|
2132
|
+
ordering: 'unordered',
|
|
2133
|
+
version: 'ics20-1',
|
|
2134
|
+
tags: {
|
|
2135
|
+
preferred: true,
|
|
2136
|
+
status: 'ACTIVE'
|
|
2137
|
+
}
|
|
2138
|
+
}]
|
|
2139
|
+
},
|
|
2109
2140
|
{
|
|
2110
2141
|
$schema: '../ibc_data.schema.json',
|
|
2111
2142
|
chain1: {
|
|
@@ -3349,6 +3380,37 @@ const info = [
|
|
|
3349
3380
|
}
|
|
3350
3381
|
}]
|
|
3351
3382
|
},
|
|
3383
|
+
{
|
|
3384
|
+
$schema: '../ibc_data.schema.json',
|
|
3385
|
+
chain1: {
|
|
3386
|
+
chainName: 'mucoin',
|
|
3387
|
+
chainId: 'mucoin-1',
|
|
3388
|
+
clientId: '07-tendermint-0',
|
|
3389
|
+
connectionId: 'connection-0'
|
|
3390
|
+
},
|
|
3391
|
+
chain2: {
|
|
3392
|
+
chainName: 'osmosis',
|
|
3393
|
+
chainId: 'osmosis-1',
|
|
3394
|
+
clientId: '07-tendermint-3729',
|
|
3395
|
+
connectionId: 'connection-11080'
|
|
3396
|
+
},
|
|
3397
|
+
channels: [{
|
|
3398
|
+
chain1: {
|
|
3399
|
+
channelId: 'channel-0',
|
|
3400
|
+
portId: 'transfer'
|
|
3401
|
+
},
|
|
3402
|
+
chain2: {
|
|
3403
|
+
channelId: 'channel-110556',
|
|
3404
|
+
portId: 'transfer'
|
|
3405
|
+
},
|
|
3406
|
+
ordering: 'unordered',
|
|
3407
|
+
version: 'ics20-1',
|
|
3408
|
+
tags: {
|
|
3409
|
+
preferred: true,
|
|
3410
|
+
status: 'ACTIVE'
|
|
3411
|
+
}
|
|
3412
|
+
}]
|
|
3413
|
+
},
|
|
3352
3414
|
{
|
|
3353
3415
|
$schema: '../ibc_data.schema.json',
|
|
3354
3416
|
chain1: {
|
package/mainnet/tail/chain.js
CHANGED
|
@@ -7,7 +7,7 @@ const info = {
|
|
|
7
7
|
networkType: 'mainnet',
|
|
8
8
|
prettyName: 'TAIL Network',
|
|
9
9
|
chainType: 'cosmos',
|
|
10
|
-
chainId: 'tail',
|
|
10
|
+
chainId: 'tail-1',
|
|
11
11
|
bech32Prefix: 'tail',
|
|
12
12
|
daemonName: 'taild',
|
|
13
13
|
nodeHome: '$HOME/.tail',
|
|
@@ -29,17 +29,17 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
apis: {
|
|
31
31
|
rpc: [{
|
|
32
|
-
address: '
|
|
32
|
+
address: 'https://rpc.trusttails.io',
|
|
33
33
|
provider: 'TrustTails'
|
|
34
34
|
}],
|
|
35
35
|
rest: [{
|
|
36
|
-
address: '
|
|
36
|
+
address: 'https://api.trusttails.io',
|
|
37
37
|
provider: 'TrustTails'
|
|
38
38
|
}]
|
|
39
39
|
},
|
|
40
40
|
explorers: [{
|
|
41
|
-
url: '
|
|
42
|
-
txPage: '
|
|
41
|
+
url: 'https://explorer.trusttails.io',
|
|
42
|
+
txPage: 'https://explorer.trusttails.io/tail/tx/${txHash}'
|
|
43
43
|
}],
|
|
44
44
|
website: 'https://trusttails.io'
|
|
45
45
|
};
|
package/mainnet/terra2/chain.js
CHANGED
|
@@ -149,6 +149,10 @@ const info = {
|
|
|
149
149
|
{
|
|
150
150
|
address: 'https://terra-api.polkachu.com',
|
|
151
151
|
provider: 'Polkachu'
|
|
152
|
+
},
|
|
153
|
+
{
|
|
154
|
+
address: 'https://terra-phoenix-api.highstakes.ch',
|
|
155
|
+
provider: 'High Stakes 🇨🇭'
|
|
152
156
|
}
|
|
153
157
|
],
|
|
154
158
|
grpc: [
|
|
@@ -191,6 +195,10 @@ const info = {
|
|
|
191
195
|
{
|
|
192
196
|
address: 'terra-grpc.node39.top:443',
|
|
193
197
|
provider: 'Node39'
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
address: 'https://terra-phoenix-grpc.highstakes.ch',
|
|
201
|
+
provider: 'High Stakes 🇨🇭'
|
|
194
202
|
}
|
|
195
203
|
]
|
|
196
204
|
},
|
package/mainnet/union/chain.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.239",
|
|
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.239"
|
|
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": "d015f5adf507c0947bdc4888856044ee220cea9f"
|
|
43
43
|
}
|