chain-registry 1.69.115 → 1.69.117
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/mantrachain/assets.js +43 -0
- package/esm/mainnet/mantrachain/chain.js +18 -5
- package/esm/mainnet/pryzm/assets.js +273 -0
- package/esm/mainnet/pryzm/chain.js +6 -6
- package/esm/mainnet/terra/chain.js +12 -0
- package/esm/mainnet/umee/chain.js +0 -16
- package/esm/noncosmos/ethereumtestnet/assets.js +4 -4
- package/esm/testnet/assets.js +4 -0
- package/esm/testnet/autheotestnet/assets.js +26 -0
- package/esm/testnet/autheotestnet/chain.js +76 -0
- package/esm/testnet/autheotestnet/index.js +4 -0
- package/esm/testnet/chains.js +4 -0
- package/esm/testnet/desmostestnet/assets.js +8 -0
- package/esm/testnet/iopntestnet/assets.js +26 -0
- package/esm/testnet/iopntestnet/chain.js +76 -0
- package/esm/testnet/iopntestnet/index.js +4 -0
- package/esm/testnet/junotestnet/assets.js +8 -0
- package/esm/testnet/kichaintestnet/assets.js +8 -0
- package/esm/testnet/manifesttestnet/chain.js +14 -0
- package/esm/testnet/mantrachaintestnet2/assets.js +4 -4
- package/esm/testnet/mantrachaintestnet2/chain.js +14 -5
- package/esm/testnet/named.js +2 -0
- package/mainnet/mantrachain/assets.js +43 -0
- package/mainnet/mantrachain/chain.js +18 -5
- package/mainnet/pryzm/assets.js +273 -0
- package/mainnet/pryzm/chain.js +6 -6
- package/mainnet/terra/chain.js +12 -0
- package/mainnet/umee/chain.js +0 -16
- package/noncosmos/ethereumtestnet/assets.js +4 -4
- package/package.json +4 -4
- package/testnet/assets.js +4 -0
- package/testnet/autheotestnet/assets.d.ts +3 -0
- package/testnet/autheotestnet/assets.js +28 -0
- package/testnet/autheotestnet/chain.d.ts +3 -0
- package/testnet/autheotestnet/chain.js +78 -0
- package/testnet/autheotestnet/index.d.ts +2 -0
- package/testnet/autheotestnet/index.js +10 -0
- package/testnet/chains.js +4 -0
- package/testnet/desmostestnet/assets.js +8 -0
- package/testnet/iopntestnet/assets.d.ts +3 -0
- package/testnet/iopntestnet/assets.js +28 -0
- package/testnet/iopntestnet/chain.d.ts +3 -0
- package/testnet/iopntestnet/chain.js +78 -0
- package/testnet/iopntestnet/index.d.ts +2 -0
- package/testnet/iopntestnet/index.js +10 -0
- package/testnet/junotestnet/assets.js +8 -0
- package/testnet/kichaintestnet/assets.js +8 -0
- package/testnet/manifesttestnet/chain.js +14 -0
- package/testnet/mantrachaintestnet2/assets.js +4 -4
- package/testnet/mantrachaintestnet2/chain.js +14 -5
- package/testnet/named.d.ts +2 -0
- package/testnet/named.js +5 -3
package/esm/testnet/chains.js
CHANGED
|
@@ -6,6 +6,7 @@ import * as _arkeonetworktestnet from './arkeonetworktestnet';
|
|
|
6
6
|
import * as _artelatestnet from './artelatestnet';
|
|
7
7
|
import * as _atomonetestnet from './atomonetestnet';
|
|
8
8
|
import * as _auratestnet from './auratestnet';
|
|
9
|
+
import * as _autheotestnet from './autheotestnet';
|
|
9
10
|
import * as _axelartestnet from './axelartestnet';
|
|
10
11
|
import * as _babylontestnet from './babylontestnet';
|
|
11
12
|
import * as _bitcannadevnet from './bitcannadevnet';
|
|
@@ -45,6 +46,7 @@ import * as _hypersigntestnet from './hypersigntestnet';
|
|
|
45
46
|
import * as _impacthubtestnet from './impacthubtestnet';
|
|
46
47
|
import * as _imversedtestnet from './imversedtestnet';
|
|
47
48
|
import * as _injectivetestnet from './injectivetestnet';
|
|
49
|
+
import * as _iopntestnet from './iopntestnet';
|
|
48
50
|
import * as _jackaltestnet from './jackaltestnet';
|
|
49
51
|
import * as _jackaltestnet2 from './jackaltestnet2';
|
|
50
52
|
import * as _junotestnet from './junotestnet';
|
|
@@ -128,6 +130,7 @@ const chains = [
|
|
|
128
130
|
_artelatestnet.chain,
|
|
129
131
|
_atomonetestnet.chain,
|
|
130
132
|
_auratestnet.chain,
|
|
133
|
+
_autheotestnet.chain,
|
|
131
134
|
_axelartestnet.chain,
|
|
132
135
|
_babylontestnet.chain,
|
|
133
136
|
_bitcannadevnet.chain,
|
|
@@ -167,6 +170,7 @@ const chains = [
|
|
|
167
170
|
_impacthubtestnet.chain,
|
|
168
171
|
_imversedtestnet.chain,
|
|
169
172
|
_injectivetestnet.chain,
|
|
173
|
+
_iopntestnet.chain,
|
|
170
174
|
_jackaltestnet.chain,
|
|
171
175
|
_jackaltestnet2.chain,
|
|
172
176
|
_junotestnet.chain,
|
|
@@ -14,6 +14,14 @@ const info = {
|
|
|
14
14
|
name: 'Desmos Testnet',
|
|
15
15
|
display: 'daric',
|
|
16
16
|
symbol: 'DARIC',
|
|
17
|
+
traces: [{
|
|
18
|
+
type: 'test-mintage',
|
|
19
|
+
counterparty: {
|
|
20
|
+
chain_name: 'desmos',
|
|
21
|
+
base_denom: 'udsm'
|
|
22
|
+
},
|
|
23
|
+
provider: 'Desmos'
|
|
24
|
+
}],
|
|
17
25
|
logo_URIs: {
|
|
18
26
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.png',
|
|
19
27
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/desmos/images/dsm.svg'
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../assetlist.schema.json',
|
|
3
|
+
chain_name: 'iopntestnet',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'Native token of Iopn Chain',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'gwei',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'opn',
|
|
11
|
+
exponent: 9
|
|
12
|
+
}],
|
|
13
|
+
base: 'gwei',
|
|
14
|
+
name: 'Iopn Chain',
|
|
15
|
+
display: 'opn',
|
|
16
|
+
symbol: 'OPN',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/iopntestnet/images/iopn_Dark.png'
|
|
19
|
+
},
|
|
20
|
+
socials: {
|
|
21
|
+
website: 'https://iopn.tech'
|
|
22
|
+
},
|
|
23
|
+
type_asset: 'sdk.coin'
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
export default info;
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../../chain.schema.json',
|
|
3
|
+
chain_name: 'iopntestnet',
|
|
4
|
+
status: 'live',
|
|
5
|
+
website: 'https://iopn.tech/',
|
|
6
|
+
network_type: 'testnet',
|
|
7
|
+
chain_type: 'cosmos',
|
|
8
|
+
pretty_name: 'Iopn',
|
|
9
|
+
chain_id: 'iopn_984-1',
|
|
10
|
+
bech32_prefix: 'gwei',
|
|
11
|
+
daemon_name: 'iopnd',
|
|
12
|
+
node_home: '$HOME/.iopnd',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'gwei',
|
|
18
|
+
fixed_min_gas_price: 0,
|
|
19
|
+
low_gas_price: 0,
|
|
20
|
+
average_gas_price: 0.025,
|
|
21
|
+
high_gas_price: 0.04
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'gwei'
|
|
27
|
+
}],
|
|
28
|
+
lock_duration: {
|
|
29
|
+
time: '1209600s'
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
codebase: {
|
|
33
|
+
git_repo: 'https://code.zeeve.net/client-projects/iopn',
|
|
34
|
+
genesis: {
|
|
35
|
+
name: 'v3',
|
|
36
|
+
genesis_url: 'https://code.zeeve.net/client-projects/iopn/-/blob/iopn-node1/iopn-node1/config/genesis.json'
|
|
37
|
+
},
|
|
38
|
+
recommended_version: 'v0.0.1-8-g66e7c51',
|
|
39
|
+
compatible_versions: ['v0.0.1-8-g66e7c51'],
|
|
40
|
+
binaries: {
|
|
41
|
+
"linux/amd64": 'https://code.zeeve.net/client-projects/iopn/-/archive/v0.0.1-8-g66e7c51/iopn-v0.0.1-8-g66e7c51.zip'
|
|
42
|
+
},
|
|
43
|
+
language: {
|
|
44
|
+
type: 'go',
|
|
45
|
+
version: '1.23.3'
|
|
46
|
+
},
|
|
47
|
+
sdk: {
|
|
48
|
+
type: 'cosmos',
|
|
49
|
+
version: '0.47.5'
|
|
50
|
+
},
|
|
51
|
+
ibc: {
|
|
52
|
+
type: 'go',
|
|
53
|
+
version: 'v7.4.0',
|
|
54
|
+
ics_enabled: ['ics20-1']
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
images: [{
|
|
58
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/iopntestnet/images/iopn_Dark.png'
|
|
59
|
+
}],
|
|
60
|
+
apis: {
|
|
61
|
+
rpc: [{
|
|
62
|
+
address: 'https://testnet-rpc.iopn.tech/',
|
|
63
|
+
provider: 'iopn'
|
|
64
|
+
}],
|
|
65
|
+
rest: [{
|
|
66
|
+
address: 'https://testnet-rpc2.iopn.tech/',
|
|
67
|
+
provider: 'iopn'
|
|
68
|
+
}]
|
|
69
|
+
},
|
|
70
|
+
explorers: [{
|
|
71
|
+
kind: 'explorer',
|
|
72
|
+
url: 'https://testnet.iopn.tech/'
|
|
73
|
+
}],
|
|
74
|
+
keywords: ['dex']
|
|
75
|
+
};
|
|
76
|
+
export default info;
|
|
@@ -15,6 +15,14 @@ const info = {
|
|
|
15
15
|
name: 'Juno Testnet',
|
|
16
16
|
display: 'junox',
|
|
17
17
|
symbol: 'JUNOX',
|
|
18
|
+
traces: [{
|
|
19
|
+
type: 'test-mintage',
|
|
20
|
+
counterparty: {
|
|
21
|
+
chain_name: 'juno',
|
|
22
|
+
base_denom: 'ujuno'
|
|
23
|
+
},
|
|
24
|
+
provider: 'Juno'
|
|
25
|
+
}],
|
|
18
26
|
logo_URIs: {
|
|
19
27
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png',
|
|
20
28
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg'
|
|
@@ -14,6 +14,14 @@ const info = {
|
|
|
14
14
|
name: 'Ki',
|
|
15
15
|
display: 'tki',
|
|
16
16
|
symbol: 'TKI',
|
|
17
|
+
traces: [{
|
|
18
|
+
type: 'test-mintage',
|
|
19
|
+
counterparty: {
|
|
20
|
+
chain_name: 'kichain',
|
|
21
|
+
base_denom: 'uxki'
|
|
22
|
+
},
|
|
23
|
+
provider: 'Ki Chain'
|
|
24
|
+
}],
|
|
17
25
|
logo_URIs: {
|
|
18
26
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.png',
|
|
19
27
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kichain/images/xki.svg'
|
|
@@ -54,6 +54,20 @@ const info = {
|
|
|
54
54
|
kind: 'Default Explorer',
|
|
55
55
|
url: 'https://testnet.manifest.explorers.guru/',
|
|
56
56
|
tx_page: 'https://testnet.manifest.explorers.guru/transactions'
|
|
57
|
+
}],
|
|
58
|
+
logo_URIs: {
|
|
59
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifesttestnet/images/manifest.png',
|
|
60
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifesttestnet/images/manifest.svg'
|
|
61
|
+
},
|
|
62
|
+
images: [{
|
|
63
|
+
image_sync: {
|
|
64
|
+
chain_name: 'manifesttestnet'
|
|
65
|
+
},
|
|
66
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifesttestnet/images/manifest.png',
|
|
67
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/manifesttestnet/images/manifest.svg',
|
|
68
|
+
theme: {
|
|
69
|
+
primary_color_hex: '#A087FF'
|
|
70
|
+
}
|
|
57
71
|
}]
|
|
58
72
|
};
|
|
59
73
|
export default info;
|
|
@@ -80,7 +80,7 @@ const info = {
|
|
|
80
80
|
counterparty: {
|
|
81
81
|
chain_name: 'nobletestnet',
|
|
82
82
|
base_denom: 'uusdc',
|
|
83
|
-
channel_id: 'channel-
|
|
83
|
+
channel_id: 'channel-237'
|
|
84
84
|
},
|
|
85
85
|
chain: {
|
|
86
86
|
channel_id: 'channel-2',
|
|
@@ -124,7 +124,7 @@ const info = {
|
|
|
124
124
|
counterparty: {
|
|
125
125
|
chain_name: 'nobletestnet',
|
|
126
126
|
base_denom: 'ausdy',
|
|
127
|
-
channel_id: 'channel-
|
|
127
|
+
channel_id: 'channel-237'
|
|
128
128
|
},
|
|
129
129
|
chain: {
|
|
130
130
|
channel_id: 'channel-2',
|
|
@@ -168,7 +168,7 @@ const info = {
|
|
|
168
168
|
counterparty: {
|
|
169
169
|
chain_name: 'osmosistestnet',
|
|
170
170
|
base_denom: 'uosmo',
|
|
171
|
-
channel_id: 'channel-
|
|
171
|
+
channel_id: 'channel-9126'
|
|
172
172
|
},
|
|
173
173
|
chain: {
|
|
174
174
|
channel_id: 'channel-0',
|
|
@@ -209,7 +209,7 @@ const info = {
|
|
|
209
209
|
traces: [{
|
|
210
210
|
type: 'ibc',
|
|
211
211
|
counterparty: {
|
|
212
|
-
chain_name: '
|
|
212
|
+
chain_name: 'cosmosicsprovidertestnet',
|
|
213
213
|
base_denom: 'uatom',
|
|
214
214
|
channel_id: 'channel-241'
|
|
215
215
|
},
|
|
@@ -27,19 +27,28 @@ const info = {
|
|
|
27
27
|
},
|
|
28
28
|
codebase: {
|
|
29
29
|
git_repo: 'https://github.com/MANTRA-Chain/mantrachain',
|
|
30
|
-
recommended_version: '
|
|
31
|
-
compatible_versions: ['
|
|
30
|
+
recommended_version: 'v2.0.0',
|
|
31
|
+
compatible_versions: ['v2.0.0'],
|
|
32
32
|
consensus: {
|
|
33
33
|
type: 'cometbft',
|
|
34
|
-
version: '
|
|
34
|
+
version: 'v0.38.15'
|
|
35
35
|
},
|
|
36
36
|
sdk: {
|
|
37
37
|
type: 'cosmos',
|
|
38
|
-
version: '
|
|
38
|
+
version: 'v0.50.11',
|
|
39
|
+
repo: 'https://github.com/MANTRA-Chain/cosmos-sdk',
|
|
40
|
+
tag: 'v0.50.11-v2-mantra-1'
|
|
39
41
|
},
|
|
40
42
|
cosmwasm: {
|
|
41
|
-
version: '0
|
|
43
|
+
version: 'v0.54.0',
|
|
42
44
|
enabled: true
|
|
45
|
+
},
|
|
46
|
+
ibc: {
|
|
47
|
+
type: 'go',
|
|
48
|
+
version: 'v8.5.2'
|
|
49
|
+
},
|
|
50
|
+
genesis: {
|
|
51
|
+
genesis_url: 'https://raw.githubusercontent.com/MANTRA-Chain/mantrachain/refs/heads/main/networks/mantra-dukong-1/genesis.json'
|
|
43
52
|
}
|
|
44
53
|
},
|
|
45
54
|
apis: {
|
package/esm/testnet/named.js
CHANGED
|
@@ -6,6 +6,7 @@ export * as arkeonetworktestnet from './arkeonetworktestnet';
|
|
|
6
6
|
export * as artelatestnet from './artelatestnet';
|
|
7
7
|
export * as atomonetestnet from './atomonetestnet';
|
|
8
8
|
export * as auratestnet from './auratestnet';
|
|
9
|
+
export * as autheotestnet from './autheotestnet';
|
|
9
10
|
export * as axelartestnet from './axelartestnet';
|
|
10
11
|
export * as babylontestnet from './babylontestnet';
|
|
11
12
|
export * as bitcannadevnet from './bitcannadevnet';
|
|
@@ -45,6 +46,7 @@ export * as hypersigntestnet from './hypersigntestnet';
|
|
|
45
46
|
export * as impacthubtestnet from './impacthubtestnet';
|
|
46
47
|
export * as imversedtestnet from './imversedtestnet';
|
|
47
48
|
export * as injectivetestnet from './injectivetestnet';
|
|
49
|
+
export * as iopntestnet from './iopntestnet';
|
|
48
50
|
export * as jackaltestnet from './jackaltestnet';
|
|
49
51
|
export * as jackaltestnet2 from './jackaltestnet2';
|
|
50
52
|
export * as junotestnet from './junotestnet';
|
|
@@ -234,6 +234,49 @@ const info = {
|
|
|
234
234
|
primary_color_hex: '#272d45'
|
|
235
235
|
}
|
|
236
236
|
}]
|
|
237
|
+
},
|
|
238
|
+
{
|
|
239
|
+
description: 'The native token of Stargaze',
|
|
240
|
+
denom_units: [{
|
|
241
|
+
denom: 'ibc/16E817E682AD1A73FD748BC989574B2702E109C4105550498086531FA3D6B050',
|
|
242
|
+
exponent: 0,
|
|
243
|
+
aliases: ['ustars']
|
|
244
|
+
}, {
|
|
245
|
+
denom: 'stars',
|
|
246
|
+
exponent: 6
|
|
247
|
+
}],
|
|
248
|
+
type_asset: 'ics20',
|
|
249
|
+
base: 'ibc/16E817E682AD1A73FD748BC989574B2702E109C4105550498086531FA3D6B050',
|
|
250
|
+
name: 'Stargaze',
|
|
251
|
+
display: 'stars',
|
|
252
|
+
symbol: 'STARS',
|
|
253
|
+
traces: [{
|
|
254
|
+
type: 'ibc',
|
|
255
|
+
counterparty: {
|
|
256
|
+
chain_name: 'stargaze',
|
|
257
|
+
base_denom: 'ustars',
|
|
258
|
+
channel_id: 'channel-406'
|
|
259
|
+
},
|
|
260
|
+
chain: {
|
|
261
|
+
channel_id: 'channel-4',
|
|
262
|
+
path: 'transfer/channel-4/ustars'
|
|
263
|
+
}
|
|
264
|
+
}],
|
|
265
|
+
logo_URIs: {
|
|
266
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
267
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg'
|
|
268
|
+
},
|
|
269
|
+
images: [{
|
|
270
|
+
image_sync: {
|
|
271
|
+
chain_name: 'stargaze',
|
|
272
|
+
base_denom: 'ustars'
|
|
273
|
+
},
|
|
274
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
275
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
276
|
+
theme: {
|
|
277
|
+
primary_color_hex: '#db2777'
|
|
278
|
+
}
|
|
279
|
+
}]
|
|
237
280
|
}
|
|
238
281
|
]
|
|
239
282
|
};
|
|
@@ -29,19 +29,32 @@ const info = {
|
|
|
29
29
|
},
|
|
30
30
|
codebase: {
|
|
31
31
|
git_repo: 'https://github.com/MANTRA-Chain/mantrachain',
|
|
32
|
-
recommended_version: '
|
|
33
|
-
compatible_versions: [
|
|
32
|
+
recommended_version: 'v1.0.3',
|
|
33
|
+
compatible_versions: [
|
|
34
|
+
'v1.0.3',
|
|
35
|
+
'v1.0.1',
|
|
36
|
+
'v1.0.0',
|
|
37
|
+
'v1.0.0-rc3'
|
|
38
|
+
],
|
|
34
39
|
consensus: {
|
|
35
40
|
type: 'cometbft',
|
|
36
|
-
version: '
|
|
41
|
+
version: 'v0.38.15'
|
|
37
42
|
},
|
|
38
43
|
sdk: {
|
|
39
44
|
type: 'cosmos',
|
|
40
|
-
version: '
|
|
45
|
+
version: 'v0.50.8',
|
|
46
|
+
repo: 'https://github.com/MANTRA-Chain/cosmos-sdk'
|
|
41
47
|
},
|
|
42
48
|
cosmwasm: {
|
|
43
|
-
version: '
|
|
49
|
+
version: 'v0.53.0',
|
|
44
50
|
enabled: true
|
|
51
|
+
},
|
|
52
|
+
ibc: {
|
|
53
|
+
type: 'go',
|
|
54
|
+
version: 'v8.5.1'
|
|
55
|
+
},
|
|
56
|
+
genesis: {
|
|
57
|
+
genesis_url: 'https://raw.githubusercontent.com/MANTRA-Chain/mantrachain/refs/heads/main/networks/mantra-1/genesis.json'
|
|
45
58
|
}
|
|
46
59
|
},
|
|
47
60
|
apis: {
|