chain-registry 2.0.238 β 2.0.240
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/bandchain/chain.js +4 -12
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/chihuahua/chain.js +0 -60
- package/esm/mainnet/comdex/chain.js +0 -12
- package/esm/mainnet/composable/chain.js +0 -4
- package/esm/mainnet/cosmoshub/asset-list.js +4 -1
- package/esm/mainnet/cosmoshub/chain.js +4 -0
- package/esm/mainnet/crescent/chain.js +0 -12
- package/esm/mainnet/cryptoorgchain/chain.js +0 -12
- package/esm/mainnet/fetchhub/chain.js +4 -0
- package/esm/mainnet/humans/chain.js +0 -4
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/injective/asset-list.js +4 -1
- package/esm/mainnet/injective/chain.js +4 -0
- package/esm/mainnet/migaloo/chain.js +0 -12
- 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/nolus/chain.js +0 -12
- package/esm/mainnet/osmosis/ibc-data.js +31 -0
- package/esm/mainnet/passage/chain.js +0 -12
- package/esm/mainnet/persistence/chain.js +4 -12
- package/esm/mainnet/provenance/chain.js +4 -0
- package/esm/mainnet/quasar/chain.js +0 -12
- package/esm/mainnet/terra2/chain.js +8 -8
- package/esm/mainnet/union/chain.js +4 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/bandchain/chain.js +4 -12
- package/mainnet/chains.js +2 -0
- package/mainnet/chihuahua/chain.js +0 -60
- package/mainnet/comdex/chain.js +0 -12
- package/mainnet/composable/chain.js +0 -4
- package/mainnet/cosmoshub/asset-list.js +4 -1
- package/mainnet/cosmoshub/chain.js +4 -0
- package/mainnet/crescent/chain.js +0 -12
- package/mainnet/cryptoorgchain/chain.js +0 -12
- package/mainnet/fetchhub/chain.js +4 -0
- package/mainnet/humans/chain.js +0 -4
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/injective/asset-list.js +4 -1
- package/mainnet/injective/chain.js +4 -0
- package/mainnet/migaloo/chain.js +0 -12
- 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/nolus/chain.js +0 -12
- package/mainnet/osmosis/ibc-data.js +31 -0
- package/mainnet/passage/chain.js +0 -12
- package/mainnet/persistence/chain.js +4 -12
- package/mainnet/provenance/chain.js +4 -0
- package/mainnet/quasar/chain.js +0 -12
- package/mainnet/terra2/chain.js +8 -8
- package/mainnet/union/chain.js +4 -0
- package/package.json +3 -3
|
@@ -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;
|
package/mainnet/nolus/chain.js
CHANGED
|
@@ -135,10 +135,6 @@ const info = {
|
|
|
135
135
|
address: 'https://nolus-rpc.w3coins.io',
|
|
136
136
|
provider: 'w3coins'
|
|
137
137
|
},
|
|
138
|
-
{
|
|
139
|
-
address: 'https://rpc-nolus.cosmos-spaces.cloud',
|
|
140
|
-
provider: 'Cosmos Spaces'
|
|
141
|
-
},
|
|
142
138
|
{
|
|
143
139
|
address: 'https://nolus-rpc.publicnode.com:443',
|
|
144
140
|
provider: 'Allnodes β‘οΈ Nodes & Staking'
|
|
@@ -161,10 +157,6 @@ const info = {
|
|
|
161
157
|
address: 'https://rest.lavenderfive.com:443/nolus',
|
|
162
158
|
provider: 'Lavender.Five Nodes π'
|
|
163
159
|
},
|
|
164
|
-
{
|
|
165
|
-
address: 'https://api-nolus.cosmos-spaces.cloud',
|
|
166
|
-
provider: 'Cosmos Spaces'
|
|
167
|
-
},
|
|
168
160
|
{
|
|
169
161
|
address: 'https://nolus.api.liveraven.net',
|
|
170
162
|
provider: 'LiveRaveN'
|
|
@@ -215,10 +207,6 @@ const info = {
|
|
|
215
207
|
address: 'grpc-nolus.architectnodes.com:1443',
|
|
216
208
|
provider: 'Architect Nodes'
|
|
217
209
|
},
|
|
218
|
-
{
|
|
219
|
-
address: 'grpc-nolus.cosmos-spaces.cloud:1190',
|
|
220
|
-
provider: 'Cosmos Spaces'
|
|
221
|
-
},
|
|
222
210
|
{
|
|
223
211
|
address: 'nolus.grpc.kjnodes.com:14390',
|
|
224
212
|
provider: 'kjnodes'
|
|
@@ -3380,6 +3380,37 @@ const info = [
|
|
|
3380
3380
|
}
|
|
3381
3381
|
}]
|
|
3382
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
|
+
},
|
|
3383
3414
|
{
|
|
3384
3415
|
$schema: '../ibc_data.schema.json',
|
|
3385
3416
|
chain1: {
|
package/mainnet/passage/chain.js
CHANGED
|
@@ -66,10 +66,6 @@ const info = {
|
|
|
66
66
|
address: 'https://rpc.lavenderfive.com:443/passage',
|
|
67
67
|
provider: 'Lavender.Five Nodes π'
|
|
68
68
|
},
|
|
69
|
-
{
|
|
70
|
-
address: 'https://rpc-passage.cosmos-spaces.cloud',
|
|
71
|
-
provider: 'Cosmos Spaces'
|
|
72
|
-
},
|
|
73
69
|
{
|
|
74
70
|
address: 'https://rpc-passage.d-stake.xyz',
|
|
75
71
|
provider: 'D-stake'
|
|
@@ -120,10 +116,6 @@ const info = {
|
|
|
120
116
|
address: 'https://rest.lavenderfive.com:443/passage',
|
|
121
117
|
provider: 'Lavender.Five Nodes π'
|
|
122
118
|
},
|
|
123
|
-
{
|
|
124
|
-
address: 'https://api-passage.cosmos-spaces.cloud',
|
|
125
|
-
provider: 'Cosmos Spaces'
|
|
126
|
-
},
|
|
127
119
|
{
|
|
128
120
|
address: 'https://passage-api.polkachu.com',
|
|
129
121
|
provider: 'Polkachu'
|
|
@@ -170,10 +162,6 @@ const info = {
|
|
|
170
162
|
address: 'passage-grpc.polkachu.com:15690',
|
|
171
163
|
provider: 'Polkachu'
|
|
172
164
|
},
|
|
173
|
-
{
|
|
174
|
-
address: 'grpc-passage.cosmos-spaces.cloud:2320',
|
|
175
|
-
provider: 'Cosmos Spaces'
|
|
176
|
-
},
|
|
177
165
|
{
|
|
178
166
|
address: 'passage-mainnet-grpc.autostake.com:443',
|
|
179
167
|
provider: 'AutoStake π‘οΈ Slash Protected'
|
|
@@ -87,10 +87,6 @@ const info = {
|
|
|
87
87
|
address: 'https://rpc-persistence.architectnodes.com',
|
|
88
88
|
provider: 'Architect Nodes'
|
|
89
89
|
},
|
|
90
|
-
{
|
|
91
|
-
address: 'https://rpc-persistence.cosmos-spaces.cloud',
|
|
92
|
-
provider: 'Cosmos Spaces'
|
|
93
|
-
},
|
|
94
90
|
{
|
|
95
91
|
address: 'https://persistence-mainnet-rpc.cosmonautstakes.com',
|
|
96
92
|
provider: 'Cosmonaut Stakes'
|
|
@@ -169,10 +165,6 @@ const info = {
|
|
|
169
165
|
address: 'https://persistence-api.polkachu.com',
|
|
170
166
|
provider: 'Polkachu'
|
|
171
167
|
},
|
|
172
|
-
{
|
|
173
|
-
address: 'https://api-persistence.cosmos-spaces.cloud',
|
|
174
|
-
provider: 'Cosmos Spaces'
|
|
175
|
-
},
|
|
176
168
|
{
|
|
177
169
|
address: 'https://persistence-api.kleomedes.network',
|
|
178
170
|
provider: 'Kleomedes'
|
|
@@ -263,10 +255,6 @@ const info = {
|
|
|
263
255
|
address: 'grpc.persistence.posthuman.digital:80',
|
|
264
256
|
provider: 'POSTHUMANβDVS'
|
|
265
257
|
},
|
|
266
|
-
{
|
|
267
|
-
address: 'grpc-persistence.cosmos-spaces.cloud:1180',
|
|
268
|
-
provider: 'Cosmos Spaces'
|
|
269
|
-
},
|
|
270
258
|
{
|
|
271
259
|
address: '141.95.33.97:9090',
|
|
272
260
|
provider: 'Stakewolle.com | Auto-compound'
|
|
@@ -302,6 +290,10 @@ const info = {
|
|
|
302
290
|
{
|
|
303
291
|
address: 'persistence.grpc.quantnode.xyz:22990',
|
|
304
292
|
provider: 'QuantNode'
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
address: 'https://persistence-grpc.highstakes.ch',
|
|
296
|
+
provider: 'High Stakes π¨π'
|
|
305
297
|
}
|
|
306
298
|
]
|
|
307
299
|
},
|
package/mainnet/quasar/chain.js
CHANGED
|
@@ -89,10 +89,6 @@ const info = {
|
|
|
89
89
|
address: 'https://quasar-rpc.enigma-validator.com',
|
|
90
90
|
provider: 'Enigma'
|
|
91
91
|
},
|
|
92
|
-
{
|
|
93
|
-
address: 'https://rpc-quasar.cosmos-spaces.cloud',
|
|
94
|
-
provider: 'Cosmos Spaces'
|
|
95
|
-
},
|
|
96
92
|
{
|
|
97
93
|
address: 'https://quasar-mainnet-rpc.autostake.com:443',
|
|
98
94
|
provider: 'AutoStake π‘οΈ Slash Protected'
|
|
@@ -135,10 +131,6 @@ const info = {
|
|
|
135
131
|
address: 'https://quasar-api.polkachu.com',
|
|
136
132
|
provider: 'Polkachu'
|
|
137
133
|
},
|
|
138
|
-
{
|
|
139
|
-
address: 'https://api-quasar.cosmos-spaces.cloud',
|
|
140
|
-
provider: 'Cosmos Spaces'
|
|
141
|
-
},
|
|
142
134
|
{
|
|
143
135
|
address: 'https://quasar-lcd.enigma-validator.com',
|
|
144
136
|
provider: 'Enigma'
|
|
@@ -185,10 +177,6 @@ const info = {
|
|
|
185
177
|
address: 'quasar-grpc.polkachu.com:18290',
|
|
186
178
|
provider: 'Polkachu'
|
|
187
179
|
},
|
|
188
|
-
{
|
|
189
|
-
address: 'grpc-quasar.cosmos-spaces.cloud:12890',
|
|
190
|
-
provider: 'Cosmos Spaces'
|
|
191
|
-
},
|
|
192
180
|
{
|
|
193
181
|
address: 'quasar-mainnet-grpc.autostake.com:443',
|
|
194
182
|
provider: 'AutoStake π‘οΈ Slash Protected'
|
package/mainnet/terra2/chain.js
CHANGED
|
@@ -84,10 +84,6 @@ const info = {
|
|
|
84
84
|
address: 'https://rpc-terra-01.stakeflow.io',
|
|
85
85
|
provider: 'Stakeflow'
|
|
86
86
|
},
|
|
87
|
-
{
|
|
88
|
-
address: 'https://rpc-terra.cosmos-spaces.cloud',
|
|
89
|
-
provider: 'Cosmos Spaces'
|
|
90
|
-
},
|
|
91
87
|
{
|
|
92
88
|
address: 'https://terra-phoenix-rpc.highstakes.ch',
|
|
93
89
|
provider: 'High Stakes π¨π'
|
|
@@ -149,6 +145,10 @@ const info = {
|
|
|
149
145
|
{
|
|
150
146
|
address: 'https://terra-api.polkachu.com',
|
|
151
147
|
provider: 'Polkachu'
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
address: 'https://terra-phoenix-api.highstakes.ch',
|
|
151
|
+
provider: 'High Stakes π¨π'
|
|
152
152
|
}
|
|
153
153
|
],
|
|
154
154
|
grpc: [
|
|
@@ -172,10 +172,6 @@ const info = {
|
|
|
172
172
|
address: 'grpc-archive-terra.r93axnodes.cloud:443',
|
|
173
173
|
provider: 'r93AX Nodes'
|
|
174
174
|
},
|
|
175
|
-
{
|
|
176
|
-
address: 'grpc-terra.cosmos-spaces.cloud:2690',
|
|
177
|
-
provider: 'Cosmos Spaces'
|
|
178
|
-
},
|
|
179
175
|
{
|
|
180
176
|
address: 'grpc-terra-01.stakeflow.io:1102',
|
|
181
177
|
provider: 'Stakeflow'
|
|
@@ -191,6 +187,10 @@ const info = {
|
|
|
191
187
|
{
|
|
192
188
|
address: 'terra-grpc.node39.top:443',
|
|
193
189
|
provider: 'Node39'
|
|
190
|
+
},
|
|
191
|
+
{
|
|
192
|
+
address: 'https://terra-phoenix-grpc.highstakes.ch',
|
|
193
|
+
provider: 'High Stakes π¨π'
|
|
194
194
|
}
|
|
195
195
|
]
|
|
196
196
|
},
|
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.240",
|
|
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.240"
|
|
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": "f34b1369b6b8159fc2d1da1b126de9a611fbc704"
|
|
43
43
|
}
|