chain-registry 1.69.446 → 1.69.448
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/chains.js +2 -0
- package/esm/mainnet/kiichain/assets.js +26 -0
- package/esm/mainnet/kiichain/chain.js +81 -0
- package/esm/mainnet/kiichain/index.js +4 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/stargaze/assets.js +2 -2
- package/esm/testnet/divinetestnet/ibc.js +32 -0
- package/esm/testnet/divinetestnet/index.js +2 -0
- package/esm/testnet/ibc.js +2 -0
- package/esm/testnet/kiiorotestnet/chain.js +2 -2
- package/esm/testnet/osmosistestnet/ibc.js +31 -0
- package/mainnet/assets.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/kiichain/assets.d.ts +3 -0
- package/mainnet/kiichain/assets.js +28 -0
- package/mainnet/kiichain/chain.d.ts +3 -0
- package/mainnet/kiichain/chain.js +83 -0
- package/mainnet/kiichain/index.d.ts +2 -0
- package/mainnet/kiichain/index.js +10 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +4 -3
- package/mainnet/stargaze/assets.js +2 -2
- package/package.json +3 -3
- package/testnet/divinetestnet/ibc.d.ts +3 -0
- package/testnet/divinetestnet/ibc.js +34 -0
- package/testnet/divinetestnet/index.d.ts +1 -0
- package/testnet/divinetestnet/index.js +3 -1
- package/testnet/ibc.js +2 -0
- package/testnet/kiiorotestnet/chain.js +2 -2
- package/testnet/osmosistestnet/ibc.js +31 -0
package/esm/mainnet/assets.js
CHANGED
|
@@ -101,6 +101,7 @@ import * as _joltify from './joltify';
|
|
|
101
101
|
import * as _juno from './juno';
|
|
102
102
|
import * as _kava from './kava';
|
|
103
103
|
import * as _kichain from './kichain';
|
|
104
|
+
import * as _kiichain from './kiichain';
|
|
104
105
|
import * as _kimanetwork from './kimanetwork';
|
|
105
106
|
import * as _konstellation from './konstellation';
|
|
106
107
|
import * as _kopi from './kopi';
|
|
@@ -326,6 +327,7 @@ const assets = [
|
|
|
326
327
|
_juno.assets,
|
|
327
328
|
_kava.assets,
|
|
328
329
|
_kichain.assets,
|
|
330
|
+
_kiichain.assets,
|
|
329
331
|
_kimanetwork.assets,
|
|
330
332
|
_konstellation.assets,
|
|
331
333
|
_kopi.assets,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -101,6 +101,7 @@ import * as _joltify from './joltify';
|
|
|
101
101
|
import * as _juno from './juno';
|
|
102
102
|
import * as _kava from './kava';
|
|
103
103
|
import * as _kichain from './kichain';
|
|
104
|
+
import * as _kiichain from './kiichain';
|
|
104
105
|
import * as _kimanetwork from './kimanetwork';
|
|
105
106
|
import * as _konstellation from './konstellation';
|
|
106
107
|
import * as _kopi from './kopi';
|
|
@@ -326,6 +327,7 @@ const chains = [
|
|
|
326
327
|
_juno.chain,
|
|
327
328
|
_kava.chain,
|
|
328
329
|
_kichain.chain,
|
|
330
|
+
_kiichain.chain,
|
|
329
331
|
_kimanetwork.chain,
|
|
330
332
|
_konstellation.chain,
|
|
331
333
|
_kopi.chain,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'kiichain',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of KiiChain',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'akii',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'kii',
|
|
11
|
+
exponent: 18
|
|
12
|
+
}],
|
|
13
|
+
base: 'akii',
|
|
14
|
+
name: 'Kii',
|
|
15
|
+
display: 'kii',
|
|
16
|
+
symbol: 'KII',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kiichain/images/kii.png'
|
|
19
|
+
},
|
|
20
|
+
images: [{
|
|
21
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kiichain/images/kii.png'
|
|
22
|
+
}],
|
|
23
|
+
type_asset: 'sdk.coin'
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
export default info;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'kiichain',
|
|
4
|
+
status: 'live',
|
|
5
|
+
network_type: 'mainnet',
|
|
6
|
+
pretty_name: 'KiiChain',
|
|
7
|
+
chain_type: 'cosmos',
|
|
8
|
+
chain_id: 'kiichain_1783-1',
|
|
9
|
+
bech32_prefix: 'kii',
|
|
10
|
+
daemon_name: 'kiichaind',
|
|
11
|
+
node_home: '$HOME/.kiichain',
|
|
12
|
+
key_algos: ['ethsecp256k1'],
|
|
13
|
+
slip44: 60,
|
|
14
|
+
fees: {
|
|
15
|
+
fee_tokens: [{
|
|
16
|
+
denom: 'akii',
|
|
17
|
+
low_gas_price: 600000000,
|
|
18
|
+
average_gas_price: 750000000,
|
|
19
|
+
high_gas_price: 1000000000
|
|
20
|
+
}]
|
|
21
|
+
},
|
|
22
|
+
staking: {
|
|
23
|
+
staking_tokens: [{
|
|
24
|
+
denom: 'akii'
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
codebase: {
|
|
28
|
+
git_repo: 'https://github.com/KiiChain/kiichain',
|
|
29
|
+
recommended_version: 'v6.1.0',
|
|
30
|
+
compatible_versions: ['v6.1.0'],
|
|
31
|
+
consensus: {
|
|
32
|
+
type: 'cometbft',
|
|
33
|
+
version: '0.38'
|
|
34
|
+
},
|
|
35
|
+
sdk: {
|
|
36
|
+
type: 'cosmos',
|
|
37
|
+
version: '0.53'
|
|
38
|
+
},
|
|
39
|
+
cosmwasm: {
|
|
40
|
+
enabled: true
|
|
41
|
+
},
|
|
42
|
+
genesis: {
|
|
43
|
+
genesis_url: 'https://raw.githubusercontent.com/KiiChain/mainnets/refs/heads/main/kiichain/genesis.json'
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
apis: {
|
|
47
|
+
rpc: [{
|
|
48
|
+
address: 'https://rpc.kiivalidator.com',
|
|
49
|
+
provider: 'Kiichain'
|
|
50
|
+
}],
|
|
51
|
+
rest: [{
|
|
52
|
+
address: 'https://lcd.kiivalidator.com',
|
|
53
|
+
provider: 'Kiichain'
|
|
54
|
+
}],
|
|
55
|
+
grpc: [{
|
|
56
|
+
address: 'grpc.kiivalidator.com',
|
|
57
|
+
provider: 'Kiichain'
|
|
58
|
+
}],
|
|
59
|
+
"evm-http-jsonrpc": [{
|
|
60
|
+
address: 'https://json-rpc.kiivalidator.com',
|
|
61
|
+
provider: 'Kiichain'
|
|
62
|
+
}]
|
|
63
|
+
},
|
|
64
|
+
logo_URIs: {
|
|
65
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kiichain/images/kii.png'
|
|
66
|
+
},
|
|
67
|
+
explorers: [{
|
|
68
|
+
kind: 'custom',
|
|
69
|
+
url: 'https://explorer.kiichain.io',
|
|
70
|
+
account_page: 'https://explorer.kiichain.io/address/${accountAddress}'
|
|
71
|
+
}],
|
|
72
|
+
keywords: [
|
|
73
|
+
'RWA',
|
|
74
|
+
'stablecoins',
|
|
75
|
+
'kii'
|
|
76
|
+
],
|
|
77
|
+
images: [{
|
|
78
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kiichain/images/kii.png'
|
|
79
|
+
}]
|
|
80
|
+
};
|
|
81
|
+
export default info;
|
package/esm/mainnet/named.js
CHANGED
|
@@ -101,6 +101,7 @@ export * as joltify from './joltify';
|
|
|
101
101
|
export * as juno from './juno';
|
|
102
102
|
export * as kava from './kava';
|
|
103
103
|
export * as kichain from './kichain';
|
|
104
|
+
export * as kiichain from './kiichain';
|
|
104
105
|
export * as kimanetwork from './kimanetwork';
|
|
105
106
|
export * as konstellation from './konstellation';
|
|
106
107
|
export * as kopi from './kopi';
|
|
@@ -865,13 +865,13 @@ const info = {
|
|
|
865
865
|
{
|
|
866
866
|
description: 'The official token of the Clown Society, originating on Stargaze.',
|
|
867
867
|
denom_units: [{
|
|
868
|
-
denom: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/
|
|
868
|
+
denom: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uCLW',
|
|
869
869
|
exponent: 0
|
|
870
870
|
}, {
|
|
871
871
|
denom: 'CLW',
|
|
872
872
|
exponent: 6
|
|
873
873
|
}],
|
|
874
|
-
base: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/
|
|
874
|
+
base: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uCLW',
|
|
875
875
|
name: 'Clown Society',
|
|
876
876
|
display: 'CLW',
|
|
877
877
|
symbol: 'CLW',
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../../ibc_data.schema.json',
|
|
3
|
+
chain_1: {
|
|
4
|
+
chain_name: 'divinetestnet',
|
|
5
|
+
chain_id: 'divine-testnet-1',
|
|
6
|
+
client_id: '07-tendermint-0',
|
|
7
|
+
connection_id: 'connection-0'
|
|
8
|
+
},
|
|
9
|
+
chain_2: {
|
|
10
|
+
chain_name: 'osmosistestnet',
|
|
11
|
+
chain_id: 'osmo-test-5',
|
|
12
|
+
client_id: '07-tendermint-4998',
|
|
13
|
+
connection_id: 'connection-4361'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain_1: {
|
|
17
|
+
channel_id: 'channel-0',
|
|
18
|
+
port_id: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain_2: {
|
|
21
|
+
channel_id: 'channel-11231',
|
|
22
|
+
port_id: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
package/esm/testnet/ibc.js
CHANGED
|
@@ -9,6 +9,7 @@ import * as _composabletestnet from './composabletestnet';
|
|
|
9
9
|
import * as _coreumtestnet from './coreumtestnet';
|
|
10
10
|
import * as _cosmoshubtestnet from './cosmoshubtestnet';
|
|
11
11
|
import * as _cosmosicsprovidertestnet from './cosmosicsprovidertestnet';
|
|
12
|
+
import * as _divinetestnet from './divinetestnet';
|
|
12
13
|
import * as _doravotatestnet from './doravotatestnet';
|
|
13
14
|
import * as _dydxtestnet from './dydxtestnet';
|
|
14
15
|
import * as _elystestnet from './elystestnet';
|
|
@@ -61,6 +62,7 @@ const ibc = [
|
|
|
61
62
|
..._coreumtestnet.ibc,
|
|
62
63
|
..._cosmoshubtestnet.ibc,
|
|
63
64
|
..._cosmosicsprovidertestnet.ibc,
|
|
65
|
+
..._divinetestnet.ibc,
|
|
64
66
|
..._doravotatestnet.ibc,
|
|
65
67
|
..._dydxtestnet.ibc,
|
|
66
68
|
..._elystestnet.ibc,
|
|
@@ -79,8 +79,8 @@ const info = {
|
|
|
79
79
|
},
|
|
80
80
|
explorers: [{
|
|
81
81
|
kind: 'custom',
|
|
82
|
-
url: 'https://explorer.kiichain.io
|
|
83
|
-
account_page: 'https://explorer.kiichain.io/account/${accountAddress}'
|
|
82
|
+
url: 'https://testnet.explorer.kiichain.io',
|
|
83
|
+
account_page: 'https://testnet.explorer.kiichain.io/account/${accountAddress}'
|
|
84
84
|
}],
|
|
85
85
|
keywords: [
|
|
86
86
|
'testnet',
|
|
@@ -355,6 +355,37 @@ const info = [
|
|
|
355
355
|
}
|
|
356
356
|
}]
|
|
357
357
|
},
|
|
358
|
+
{
|
|
359
|
+
$schema: '../../ibc_data.schema.json',
|
|
360
|
+
chain_1: {
|
|
361
|
+
chain_name: 'divinetestnet',
|
|
362
|
+
chain_id: 'divine-testnet-1',
|
|
363
|
+
client_id: '07-tendermint-0',
|
|
364
|
+
connection_id: 'connection-0'
|
|
365
|
+
},
|
|
366
|
+
chain_2: {
|
|
367
|
+
chain_name: 'osmosistestnet',
|
|
368
|
+
chain_id: 'osmo-test-5',
|
|
369
|
+
client_id: '07-tendermint-4998',
|
|
370
|
+
connection_id: 'connection-4361'
|
|
371
|
+
},
|
|
372
|
+
channels: [{
|
|
373
|
+
chain_1: {
|
|
374
|
+
channel_id: 'channel-0',
|
|
375
|
+
port_id: 'transfer'
|
|
376
|
+
},
|
|
377
|
+
chain_2: {
|
|
378
|
+
channel_id: 'channel-11231',
|
|
379
|
+
port_id: 'transfer'
|
|
380
|
+
},
|
|
381
|
+
ordering: 'unordered',
|
|
382
|
+
version: 'ics20-1',
|
|
383
|
+
tags: {
|
|
384
|
+
preferred: true,
|
|
385
|
+
status: 'ACTIVE'
|
|
386
|
+
}
|
|
387
|
+
}]
|
|
388
|
+
},
|
|
358
389
|
{
|
|
359
390
|
$schema: '../../ibc_data.schema.json',
|
|
360
391
|
chain_1: {
|
package/mainnet/assets.js
CHANGED
|
@@ -126,6 +126,7 @@ const _joltify = __importStar(require("./joltify"));
|
|
|
126
126
|
const _juno = __importStar(require("./juno"));
|
|
127
127
|
const _kava = __importStar(require("./kava"));
|
|
128
128
|
const _kichain = __importStar(require("./kichain"));
|
|
129
|
+
const _kiichain = __importStar(require("./kiichain"));
|
|
129
130
|
const _kimanetwork = __importStar(require("./kimanetwork"));
|
|
130
131
|
const _konstellation = __importStar(require("./konstellation"));
|
|
131
132
|
const _kopi = __importStar(require("./kopi"));
|
|
@@ -351,6 +352,7 @@ const assets = [
|
|
|
351
352
|
_juno.assets,
|
|
352
353
|
_kava.assets,
|
|
353
354
|
_kichain.assets,
|
|
355
|
+
_kiichain.assets,
|
|
354
356
|
_kimanetwork.assets,
|
|
355
357
|
_konstellation.assets,
|
|
356
358
|
_kopi.assets,
|
package/mainnet/chains.js
CHANGED
|
@@ -126,6 +126,7 @@ const _joltify = __importStar(require("./joltify"));
|
|
|
126
126
|
const _juno = __importStar(require("./juno"));
|
|
127
127
|
const _kava = __importStar(require("./kava"));
|
|
128
128
|
const _kichain = __importStar(require("./kichain"));
|
|
129
|
+
const _kiichain = __importStar(require("./kiichain"));
|
|
129
130
|
const _kimanetwork = __importStar(require("./kimanetwork"));
|
|
130
131
|
const _konstellation = __importStar(require("./konstellation"));
|
|
131
132
|
const _kopi = __importStar(require("./kopi"));
|
|
@@ -351,6 +352,7 @@ const chains = [
|
|
|
351
352
|
_juno.chain,
|
|
352
353
|
_kava.chain,
|
|
353
354
|
_kichain.chain,
|
|
355
|
+
_kiichain.chain,
|
|
354
356
|
_kimanetwork.chain,
|
|
355
357
|
_konstellation.chain,
|
|
356
358
|
_kopi.chain,
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'kiichain',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of KiiChain',
|
|
8
|
+
denom_units: [{
|
|
9
|
+
denom: 'akii',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'kii',
|
|
13
|
+
exponent: 18
|
|
14
|
+
}],
|
|
15
|
+
base: 'akii',
|
|
16
|
+
name: 'Kii',
|
|
17
|
+
display: 'kii',
|
|
18
|
+
symbol: 'KII',
|
|
19
|
+
logo_URIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kiichain/images/kii.png'
|
|
21
|
+
},
|
|
22
|
+
images: [{
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kiichain/images/kii.png'
|
|
24
|
+
}],
|
|
25
|
+
type_asset: 'sdk.coin'
|
|
26
|
+
}]
|
|
27
|
+
};
|
|
28
|
+
exports.default = info;
|
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'kiichain',
|
|
6
|
+
status: 'live',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
pretty_name: 'KiiChain',
|
|
9
|
+
chain_type: 'cosmos',
|
|
10
|
+
chain_id: 'kiichain_1783-1',
|
|
11
|
+
bech32_prefix: 'kii',
|
|
12
|
+
daemon_name: 'kiichaind',
|
|
13
|
+
node_home: '$HOME/.kiichain',
|
|
14
|
+
key_algos: ['ethsecp256k1'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
fees: {
|
|
17
|
+
fee_tokens: [{
|
|
18
|
+
denom: 'akii',
|
|
19
|
+
low_gas_price: 600000000,
|
|
20
|
+
average_gas_price: 750000000,
|
|
21
|
+
high_gas_price: 1000000000
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'akii'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
git_repo: 'https://github.com/KiiChain/kiichain',
|
|
31
|
+
recommended_version: 'v6.1.0',
|
|
32
|
+
compatible_versions: ['v6.1.0'],
|
|
33
|
+
consensus: {
|
|
34
|
+
type: 'cometbft',
|
|
35
|
+
version: '0.38'
|
|
36
|
+
},
|
|
37
|
+
sdk: {
|
|
38
|
+
type: 'cosmos',
|
|
39
|
+
version: '0.53'
|
|
40
|
+
},
|
|
41
|
+
cosmwasm: {
|
|
42
|
+
enabled: true
|
|
43
|
+
},
|
|
44
|
+
genesis: {
|
|
45
|
+
genesis_url: 'https://raw.githubusercontent.com/KiiChain/mainnets/refs/heads/main/kiichain/genesis.json'
|
|
46
|
+
}
|
|
47
|
+
},
|
|
48
|
+
apis: {
|
|
49
|
+
rpc: [{
|
|
50
|
+
address: 'https://rpc.kiivalidator.com',
|
|
51
|
+
provider: 'Kiichain'
|
|
52
|
+
}],
|
|
53
|
+
rest: [{
|
|
54
|
+
address: 'https://lcd.kiivalidator.com',
|
|
55
|
+
provider: 'Kiichain'
|
|
56
|
+
}],
|
|
57
|
+
grpc: [{
|
|
58
|
+
address: 'grpc.kiivalidator.com',
|
|
59
|
+
provider: 'Kiichain'
|
|
60
|
+
}],
|
|
61
|
+
"evm-http-jsonrpc": [{
|
|
62
|
+
address: 'https://json-rpc.kiivalidator.com',
|
|
63
|
+
provider: 'Kiichain'
|
|
64
|
+
}]
|
|
65
|
+
},
|
|
66
|
+
logo_URIs: {
|
|
67
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kiichain/images/kii.png'
|
|
68
|
+
},
|
|
69
|
+
explorers: [{
|
|
70
|
+
kind: 'custom',
|
|
71
|
+
url: 'https://explorer.kiichain.io',
|
|
72
|
+
account_page: 'https://explorer.kiichain.io/address/${accountAddress}'
|
|
73
|
+
}],
|
|
74
|
+
keywords: [
|
|
75
|
+
'RWA',
|
|
76
|
+
'stablecoins',
|
|
77
|
+
'kii'
|
|
78
|
+
],
|
|
79
|
+
images: [{
|
|
80
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/kiichain/images/kii.png'
|
|
81
|
+
}]
|
|
82
|
+
};
|
|
83
|
+
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
|
@@ -101,6 +101,7 @@ export * as joltify from './joltify';
|
|
|
101
101
|
export * as juno from './juno';
|
|
102
102
|
export * as kava from './kava';
|
|
103
103
|
export * as kichain from './kichain';
|
|
104
|
+
export * as kiichain from './kiichain';
|
|
104
105
|
export * as kimanetwork from './kimanetwork';
|
|
105
106
|
export * as konstellation from './konstellation';
|
|
106
107
|
export * as kopi from './kopi';
|
package/mainnet/named.js
CHANGED
|
@@ -25,9 +25,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
26
|
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.bitway = 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.penumbra = exports.namada = exports.ethereum = void 0;
|
|
27
27
|
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.fandomchain = 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.divine = exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = void 0;
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.zigchain = exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.wardenprotocol = exports.vector = exports.uptick = exports.ununifi = exports.union = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = void 0;
|
|
28
|
+
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.mirage = 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 = exports.kimanetwork = exports.kiichain = exports.kichain = exports.kava = exports.juno = void 0;
|
|
29
|
+
exports.symphony = exports.sunrise = exports.stride = exports.stratos = exports.stoc = 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 = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.optio = exports.opct = void 0;
|
|
30
|
+
exports.zigchain = exports.zetachain = exports.zenrock = exports.xrplevm = exports.xpla = exports.xion = exports.xarchain = exports.wardenprotocol = exports.vector = exports.uptick = exports.ununifi = exports.union = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = void 0;
|
|
31
31
|
exports.ethereum = __importStar(require("./ethereum"));
|
|
32
32
|
exports.namada = __importStar(require("./namada"));
|
|
33
33
|
exports.penumbra = __importStar(require("./penumbra"));
|
|
@@ -131,6 +131,7 @@ exports.joltify = __importStar(require("./joltify"));
|
|
|
131
131
|
exports.juno = __importStar(require("./juno"));
|
|
132
132
|
exports.kava = __importStar(require("./kava"));
|
|
133
133
|
exports.kichain = __importStar(require("./kichain"));
|
|
134
|
+
exports.kiichain = __importStar(require("./kiichain"));
|
|
134
135
|
exports.kimanetwork = __importStar(require("./kimanetwork"));
|
|
135
136
|
exports.konstellation = __importStar(require("./konstellation"));
|
|
136
137
|
exports.kopi = __importStar(require("./kopi"));
|
|
@@ -867,13 +867,13 @@ const info = {
|
|
|
867
867
|
{
|
|
868
868
|
description: 'The official token of the Clown Society, originating on Stargaze.',
|
|
869
869
|
denom_units: [{
|
|
870
|
-
denom: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/
|
|
870
|
+
denom: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uCLW',
|
|
871
871
|
exponent: 0
|
|
872
872
|
}, {
|
|
873
873
|
denom: 'CLW',
|
|
874
874
|
exponent: 6
|
|
875
875
|
}],
|
|
876
|
-
base: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/
|
|
876
|
+
base: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uCLW',
|
|
877
877
|
name: 'Clown Society',
|
|
878
878
|
display: 'CLW',
|
|
879
879
|
symbol: 'CLW',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.69.
|
|
3
|
+
"version": "1.69.448",
|
|
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.283"
|
|
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": "e752bfe635ca7f21436c517ed849ed7e363dca19"
|
|
43
43
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../../ibc_data.schema.json',
|
|
5
|
+
chain_1: {
|
|
6
|
+
chain_name: 'divinetestnet',
|
|
7
|
+
chain_id: 'divine-testnet-1',
|
|
8
|
+
client_id: '07-tendermint-0',
|
|
9
|
+
connection_id: 'connection-0'
|
|
10
|
+
},
|
|
11
|
+
chain_2: {
|
|
12
|
+
chain_name: 'osmosistestnet',
|
|
13
|
+
chain_id: 'osmo-test-5',
|
|
14
|
+
client_id: '07-tendermint-4998',
|
|
15
|
+
connection_id: 'connection-4361'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain_1: {
|
|
19
|
+
channel_id: 'channel-0',
|
|
20
|
+
port_id: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain_2: {
|
|
23
|
+
channel_id: 'channel-11231',
|
|
24
|
+
port_id: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}];
|
|
34
|
+
exports.default = info;
|
|
@@ -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.assets = void 0;
|
|
6
|
+
exports.ibc = exports.chain = exports.assets = void 0;
|
|
7
7
|
const assets_1 = __importDefault(require("./assets"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_1 = __importDefault(require("./ibc"));
|
|
9
10
|
exports.assets = assets_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibc = ibc_1.default;
|
package/testnet/ibc.js
CHANGED
|
@@ -34,6 +34,7 @@ const _composabletestnet = __importStar(require("./composabletestnet"));
|
|
|
34
34
|
const _coreumtestnet = __importStar(require("./coreumtestnet"));
|
|
35
35
|
const _cosmoshubtestnet = __importStar(require("./cosmoshubtestnet"));
|
|
36
36
|
const _cosmosicsprovidertestnet = __importStar(require("./cosmosicsprovidertestnet"));
|
|
37
|
+
const _divinetestnet = __importStar(require("./divinetestnet"));
|
|
37
38
|
const _doravotatestnet = __importStar(require("./doravotatestnet"));
|
|
38
39
|
const _dydxtestnet = __importStar(require("./dydxtestnet"));
|
|
39
40
|
const _elystestnet = __importStar(require("./elystestnet"));
|
|
@@ -86,6 +87,7 @@ const ibc = [
|
|
|
86
87
|
..._coreumtestnet.ibc,
|
|
87
88
|
..._cosmoshubtestnet.ibc,
|
|
88
89
|
..._cosmosicsprovidertestnet.ibc,
|
|
90
|
+
..._divinetestnet.ibc,
|
|
89
91
|
..._doravotatestnet.ibc,
|
|
90
92
|
..._dydxtestnet.ibc,
|
|
91
93
|
..._elystestnet.ibc,
|
|
@@ -81,8 +81,8 @@ const info = {
|
|
|
81
81
|
},
|
|
82
82
|
explorers: [{
|
|
83
83
|
kind: 'custom',
|
|
84
|
-
url: 'https://explorer.kiichain.io
|
|
85
|
-
account_page: 'https://explorer.kiichain.io/account/${accountAddress}'
|
|
84
|
+
url: 'https://testnet.explorer.kiichain.io',
|
|
85
|
+
account_page: 'https://testnet.explorer.kiichain.io/account/${accountAddress}'
|
|
86
86
|
}],
|
|
87
87
|
keywords: [
|
|
88
88
|
'testnet',
|
|
@@ -357,6 +357,37 @@ const info = [
|
|
|
357
357
|
}
|
|
358
358
|
}]
|
|
359
359
|
},
|
|
360
|
+
{
|
|
361
|
+
$schema: '../../ibc_data.schema.json',
|
|
362
|
+
chain_1: {
|
|
363
|
+
chain_name: 'divinetestnet',
|
|
364
|
+
chain_id: 'divine-testnet-1',
|
|
365
|
+
client_id: '07-tendermint-0',
|
|
366
|
+
connection_id: 'connection-0'
|
|
367
|
+
},
|
|
368
|
+
chain_2: {
|
|
369
|
+
chain_name: 'osmosistestnet',
|
|
370
|
+
chain_id: 'osmo-test-5',
|
|
371
|
+
client_id: '07-tendermint-4998',
|
|
372
|
+
connection_id: 'connection-4361'
|
|
373
|
+
},
|
|
374
|
+
channels: [{
|
|
375
|
+
chain_1: {
|
|
376
|
+
channel_id: 'channel-0',
|
|
377
|
+
port_id: 'transfer'
|
|
378
|
+
},
|
|
379
|
+
chain_2: {
|
|
380
|
+
channel_id: 'channel-11231',
|
|
381
|
+
port_id: 'transfer'
|
|
382
|
+
},
|
|
383
|
+
ordering: 'unordered',
|
|
384
|
+
version: 'ics20-1',
|
|
385
|
+
tags: {
|
|
386
|
+
preferred: true,
|
|
387
|
+
status: 'ACTIVE'
|
|
388
|
+
}
|
|
389
|
+
}]
|
|
390
|
+
},
|
|
360
391
|
{
|
|
361
392
|
$schema: '../../ibc_data.schema.json',
|
|
362
393
|
chain_1: {
|