chain-registry 2.0.129 → 2.0.131
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/chains.js +2 -0
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/kiichain/asset-list.js +26 -0
- package/esm/mainnet/kiichain/chain.js +81 -0
- package/esm/mainnet/kiichain/index.js +4 -0
- package/esm/mainnet/mirage/chain.js +1 -0
- package/esm/mainnet/mirage/ibc-data.js +32 -0
- package/esm/mainnet/mirage/index.js +2 -0
- package/esm/mainnet/osmosis/ibc-data.js +31 -0
- package/esm/mainnet/stargaze/asset-list.js +25 -0
- package/esm/testnet/divinetestnet/ibc-data.js +32 -0
- package/esm/testnet/divinetestnet/index.js +2 -0
- package/esm/testnet/ibc-data.js +2 -0
- package/esm/testnet/kiiorotestnet/chain.js +2 -2
- package/esm/testnet/osmosistestnet/ibc-data.js +31 -0
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/kiichain/asset-list.d.ts +3 -0
- package/mainnet/kiichain/asset-list.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/mirage/chain.js +1 -0
- package/mainnet/mirage/ibc-data.d.ts +3 -0
- package/mainnet/mirage/ibc-data.js +34 -0
- package/mainnet/mirage/index.d.ts +1 -0
- package/mainnet/mirage/index.js +3 -1
- package/mainnet/osmosis/ibc-data.js +31 -0
- package/mainnet/stargaze/asset-list.js +25 -0
- package/package.json +3 -3
- package/testnet/divinetestnet/ibc-data.d.ts +3 -0
- package/testnet/divinetestnet/ibc-data.js +34 -0
- package/testnet/divinetestnet/index.d.ts +1 -0
- package/testnet/divinetestnet/index.js +3 -1
- package/testnet/ibc-data.js +2 -0
- package/testnet/kiiorotestnet/chain.js +2 -2
- package/testnet/osmosistestnet/ibc-data.js +31 -0
|
@@ -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 assetList = [
|
|
|
326
327
|
_juno.assetList,
|
|
327
328
|
_kava.assetList,
|
|
328
329
|
_kichain.assetList,
|
|
330
|
+
_kiichain.assetList,
|
|
329
331
|
_kimanetwork.assetList,
|
|
330
332
|
_konstellation.assetList,
|
|
331
333
|
_kopi.assetList,
|
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,
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -98,6 +98,7 @@ import * as _medasdigital from './medasdigital';
|
|
|
98
98
|
import * as _meme from './meme';
|
|
99
99
|
import * as _migaloo from './migaloo';
|
|
100
100
|
import * as _milkyway from './milkyway';
|
|
101
|
+
import * as _mirage from './mirage';
|
|
101
102
|
import * as _mtgbp from './mtgbp';
|
|
102
103
|
import * as _neutaro from './neutaro';
|
|
103
104
|
import * as _neutron from './neutron';
|
|
@@ -273,6 +274,7 @@ const ibcData = [
|
|
|
273
274
|
..._meme.ibcData,
|
|
274
275
|
..._migaloo.ibcData,
|
|
275
276
|
..._milkyway.ibcData,
|
|
277
|
+
..._mirage.ibcData,
|
|
276
278
|
..._mtgbp.ibcData,
|
|
277
279
|
..._neutaro.ibcData,
|
|
278
280
|
..._neutron.ibcData,
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'kiichain',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of KiiChain',
|
|
6
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
+
typeAsset: 'sdk.coin'
|
|
24
|
+
}]
|
|
25
|
+
};
|
|
26
|
+
export default info;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'kiichain',
|
|
4
|
+
status: 'live',
|
|
5
|
+
networkType: 'mainnet',
|
|
6
|
+
prettyName: 'KiiChain',
|
|
7
|
+
chainType: 'cosmos',
|
|
8
|
+
chainId: 'kiichain_1783-1',
|
|
9
|
+
bech32Prefix: 'kii',
|
|
10
|
+
daemonName: 'kiichaind',
|
|
11
|
+
nodeHome: '$HOME/.kiichain',
|
|
12
|
+
keyAlgos: ['ethsecp256k1'],
|
|
13
|
+
slip44: 60,
|
|
14
|
+
fees: {
|
|
15
|
+
feeTokens: [{
|
|
16
|
+
denom: 'akii',
|
|
17
|
+
lowGasPrice: 600000000,
|
|
18
|
+
averageGasPrice: 750000000,
|
|
19
|
+
highGasPrice: 1000000000
|
|
20
|
+
}]
|
|
21
|
+
},
|
|
22
|
+
staking: {
|
|
23
|
+
stakingTokens: [{
|
|
24
|
+
denom: 'akii'
|
|
25
|
+
}]
|
|
26
|
+
},
|
|
27
|
+
codebase: {
|
|
28
|
+
gitRepo: 'https://github.com/KiiChain/kiichain',
|
|
29
|
+
recommendedVersion: 'v6.1.0',
|
|
30
|
+
compatibleVersions: ['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
|
+
genesisUrl: '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
|
+
evmHttpJsonrpc: [{
|
|
60
|
+
address: 'https://json-rpc.kiivalidator.com',
|
|
61
|
+
provider: 'Kiichain'
|
|
62
|
+
}]
|
|
63
|
+
},
|
|
64
|
+
logoURIs: {
|
|
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
|
+
accountPage: '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;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'mirage',
|
|
5
|
+
chainId: 'mirage-1',
|
|
6
|
+
clientId: '07-tendermint-1',
|
|
7
|
+
connectionId: 'connection-0'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'osmosis',
|
|
11
|
+
chainId: 'osmosis-1',
|
|
12
|
+
clientId: '07-tendermint-3643',
|
|
13
|
+
connectionId: 'connection-10990'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-0',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-108600',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
|
@@ -3131,6 +3131,37 @@ const info = [
|
|
|
3131
3131
|
}
|
|
3132
3132
|
}]
|
|
3133
3133
|
},
|
|
3134
|
+
{
|
|
3135
|
+
$schema: '../ibc_data.schema.json',
|
|
3136
|
+
chain1: {
|
|
3137
|
+
chainName: 'mirage',
|
|
3138
|
+
chainId: 'mirage-1',
|
|
3139
|
+
clientId: '07-tendermint-1',
|
|
3140
|
+
connectionId: 'connection-0'
|
|
3141
|
+
},
|
|
3142
|
+
chain2: {
|
|
3143
|
+
chainName: 'osmosis',
|
|
3144
|
+
chainId: 'osmosis-1',
|
|
3145
|
+
clientId: '07-tendermint-3643',
|
|
3146
|
+
connectionId: 'connection-10990'
|
|
3147
|
+
},
|
|
3148
|
+
channels: [{
|
|
3149
|
+
chain1: {
|
|
3150
|
+
channelId: 'channel-0',
|
|
3151
|
+
portId: 'transfer'
|
|
3152
|
+
},
|
|
3153
|
+
chain2: {
|
|
3154
|
+
channelId: 'channel-108600',
|
|
3155
|
+
portId: 'transfer'
|
|
3156
|
+
},
|
|
3157
|
+
ordering: 'unordered',
|
|
3158
|
+
version: 'ics20-1',
|
|
3159
|
+
tags: {
|
|
3160
|
+
preferred: true,
|
|
3161
|
+
status: 'ACTIVE'
|
|
3162
|
+
}
|
|
3163
|
+
}]
|
|
3164
|
+
},
|
|
3134
3165
|
{
|
|
3135
3166
|
$schema: '../ibc_data.schema.json',
|
|
3136
3167
|
chain1: {
|
|
@@ -861,6 +861,31 @@ const info = {
|
|
|
861
861
|
baseDenom: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/stlth'
|
|
862
862
|
}
|
|
863
863
|
}]
|
|
864
|
+
},
|
|
865
|
+
{
|
|
866
|
+
description: 'The official token of the Clown Society, originating on Stargaze.',
|
|
867
|
+
denomUnits: [{
|
|
868
|
+
denom: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uCLW',
|
|
869
|
+
exponent: 0
|
|
870
|
+
}, {
|
|
871
|
+
denom: 'CLW',
|
|
872
|
+
exponent: 6
|
|
873
|
+
}],
|
|
874
|
+
base: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uCLW',
|
|
875
|
+
name: 'Clown Society',
|
|
876
|
+
display: 'CLW',
|
|
877
|
+
symbol: 'CLW',
|
|
878
|
+
logoURIs: {
|
|
879
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/clw.png'
|
|
880
|
+
},
|
|
881
|
+
images: [{
|
|
882
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/clw.png'
|
|
883
|
+
}],
|
|
884
|
+
socials: {
|
|
885
|
+
website: 'https://www.clown-society.com/',
|
|
886
|
+
x: 'https://x.com/ClownsocieT'
|
|
887
|
+
},
|
|
888
|
+
typeAsset: 'sdk.coin'
|
|
864
889
|
}
|
|
865
890
|
]
|
|
866
891
|
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'divinetestnet',
|
|
5
|
+
chainId: 'divine-testnet-1',
|
|
6
|
+
clientId: '07-tendermint-0',
|
|
7
|
+
connectionId: 'connection-0'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'osmosistestnet',
|
|
11
|
+
chainId: 'osmo-test-5',
|
|
12
|
+
clientId: '07-tendermint-4998',
|
|
13
|
+
connectionId: 'connection-4361'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-0',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-11231',
|
|
22
|
+
portId: '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-data.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 ibcData = [
|
|
|
61
62
|
..._coreumtestnet.ibcData,
|
|
62
63
|
..._cosmoshubtestnet.ibcData,
|
|
63
64
|
..._cosmosicsprovidertestnet.ibcData,
|
|
65
|
+
..._divinetestnet.ibcData,
|
|
64
66
|
..._doravotatestnet.ibcData,
|
|
65
67
|
..._dydxtestnet.ibcData,
|
|
66
68
|
..._elystestnet.ibcData,
|
|
@@ -79,8 +79,8 @@ const info = {
|
|
|
79
79
|
},
|
|
80
80
|
explorers: [{
|
|
81
81
|
kind: 'custom',
|
|
82
|
-
url: 'https://explorer.kiichain.io
|
|
83
|
-
accountPage: 'https://explorer.kiichain.io/account/${accountAddress}'
|
|
82
|
+
url: 'https://testnet.explorer.kiichain.io',
|
|
83
|
+
accountPage: '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
|
+
chain1: {
|
|
361
|
+
chainName: 'divinetestnet',
|
|
362
|
+
chainId: 'divine-testnet-1',
|
|
363
|
+
clientId: '07-tendermint-0',
|
|
364
|
+
connectionId: 'connection-0'
|
|
365
|
+
},
|
|
366
|
+
chain2: {
|
|
367
|
+
chainName: 'osmosistestnet',
|
|
368
|
+
chainId: 'osmo-test-5',
|
|
369
|
+
clientId: '07-tendermint-4998',
|
|
370
|
+
connectionId: 'connection-4361'
|
|
371
|
+
},
|
|
372
|
+
channels: [{
|
|
373
|
+
chain1: {
|
|
374
|
+
channelId: 'channel-0',
|
|
375
|
+
portId: 'transfer'
|
|
376
|
+
},
|
|
377
|
+
chain2: {
|
|
378
|
+
channelId: 'channel-11231',
|
|
379
|
+
portId: '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
|
chain1: {
|
package/mainnet/asset-lists.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 assetList = [
|
|
|
351
352
|
_juno.assetList,
|
|
352
353
|
_kava.assetList,
|
|
353
354
|
_kichain.assetList,
|
|
355
|
+
_kiichain.assetList,
|
|
354
356
|
_kimanetwork.assetList,
|
|
355
357
|
_konstellation.assetList,
|
|
356
358
|
_kopi.assetList,
|
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,
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -123,6 +123,7 @@ const _medasdigital = __importStar(require("./medasdigital"));
|
|
|
123
123
|
const _meme = __importStar(require("./meme"));
|
|
124
124
|
const _migaloo = __importStar(require("./migaloo"));
|
|
125
125
|
const _milkyway = __importStar(require("./milkyway"));
|
|
126
|
+
const _mirage = __importStar(require("./mirage"));
|
|
126
127
|
const _mtgbp = __importStar(require("./mtgbp"));
|
|
127
128
|
const _neutaro = __importStar(require("./neutaro"));
|
|
128
129
|
const _neutron = __importStar(require("./neutron"));
|
|
@@ -298,6 +299,7 @@ const ibcData = [
|
|
|
298
299
|
..._meme.ibcData,
|
|
299
300
|
..._migaloo.ibcData,
|
|
300
301
|
..._milkyway.ibcData,
|
|
302
|
+
..._mirage.ibcData,
|
|
301
303
|
..._mtgbp.ibcData,
|
|
302
304
|
..._neutaro.ibcData,
|
|
303
305
|
..._neutron.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: 'kiichain',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of KiiChain',
|
|
8
|
+
denomUnits: [{
|
|
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
|
+
logoURIs: {
|
|
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
|
+
typeAsset: '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
|
+
chainName: 'kiichain',
|
|
6
|
+
status: 'live',
|
|
7
|
+
networkType: 'mainnet',
|
|
8
|
+
prettyName: 'KiiChain',
|
|
9
|
+
chainType: 'cosmos',
|
|
10
|
+
chainId: 'kiichain_1783-1',
|
|
11
|
+
bech32Prefix: 'kii',
|
|
12
|
+
daemonName: 'kiichaind',
|
|
13
|
+
nodeHome: '$HOME/.kiichain',
|
|
14
|
+
keyAlgos: ['ethsecp256k1'],
|
|
15
|
+
slip44: 60,
|
|
16
|
+
fees: {
|
|
17
|
+
feeTokens: [{
|
|
18
|
+
denom: 'akii',
|
|
19
|
+
lowGasPrice: 600000000,
|
|
20
|
+
averageGasPrice: 750000000,
|
|
21
|
+
highGasPrice: 1000000000
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'akii'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
gitRepo: 'https://github.com/KiiChain/kiichain',
|
|
31
|
+
recommendedVersion: 'v6.1.0',
|
|
32
|
+
compatibleVersions: ['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
|
+
genesisUrl: '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
|
+
evmHttpJsonrpc: [{
|
|
62
|
+
address: 'https://json-rpc.kiivalidator.com',
|
|
63
|
+
provider: 'Kiichain'
|
|
64
|
+
}]
|
|
65
|
+
},
|
|
66
|
+
logoURIs: {
|
|
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
|
+
accountPage: '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.assetList = void 0;
|
|
7
|
+
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
|
+
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
exports.assetList = asset_list_1.default;
|
|
10
|
+
exports.chain = chain_1.default;
|
package/mainnet/mirage/chain.js
CHANGED
|
@@ -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: 'mirage',
|
|
7
|
+
chainId: 'mirage-1',
|
|
8
|
+
clientId: '07-tendermint-1',
|
|
9
|
+
connectionId: 'connection-0'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'osmosis',
|
|
13
|
+
chainId: 'osmosis-1',
|
|
14
|
+
clientId: '07-tendermint-3643',
|
|
15
|
+
connectionId: 'connection-10990'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-0',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-108600',
|
|
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/mirage/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;
|
|
@@ -3133,6 +3133,37 @@ const info = [
|
|
|
3133
3133
|
}
|
|
3134
3134
|
}]
|
|
3135
3135
|
},
|
|
3136
|
+
{
|
|
3137
|
+
$schema: '../ibc_data.schema.json',
|
|
3138
|
+
chain1: {
|
|
3139
|
+
chainName: 'mirage',
|
|
3140
|
+
chainId: 'mirage-1',
|
|
3141
|
+
clientId: '07-tendermint-1',
|
|
3142
|
+
connectionId: 'connection-0'
|
|
3143
|
+
},
|
|
3144
|
+
chain2: {
|
|
3145
|
+
chainName: 'osmosis',
|
|
3146
|
+
chainId: 'osmosis-1',
|
|
3147
|
+
clientId: '07-tendermint-3643',
|
|
3148
|
+
connectionId: 'connection-10990'
|
|
3149
|
+
},
|
|
3150
|
+
channels: [{
|
|
3151
|
+
chain1: {
|
|
3152
|
+
channelId: 'channel-0',
|
|
3153
|
+
portId: 'transfer'
|
|
3154
|
+
},
|
|
3155
|
+
chain2: {
|
|
3156
|
+
channelId: 'channel-108600',
|
|
3157
|
+
portId: 'transfer'
|
|
3158
|
+
},
|
|
3159
|
+
ordering: 'unordered',
|
|
3160
|
+
version: 'ics20-1',
|
|
3161
|
+
tags: {
|
|
3162
|
+
preferred: true,
|
|
3163
|
+
status: 'ACTIVE'
|
|
3164
|
+
}
|
|
3165
|
+
}]
|
|
3166
|
+
},
|
|
3136
3167
|
{
|
|
3137
3168
|
$schema: '../ibc_data.schema.json',
|
|
3138
3169
|
chain1: {
|
|
@@ -863,6 +863,31 @@ const info = {
|
|
|
863
863
|
baseDenom: 'factory/osmo1q77cw0mmlluxu0wr29fcdd0tdnh78gzhkvhe4n6ulal9qvrtu43qtd0nh8/stlth'
|
|
864
864
|
}
|
|
865
865
|
}]
|
|
866
|
+
},
|
|
867
|
+
{
|
|
868
|
+
description: 'The official token of the Clown Society, originating on Stargaze.',
|
|
869
|
+
denomUnits: [{
|
|
870
|
+
denom: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uCLW',
|
|
871
|
+
exponent: 0
|
|
872
|
+
}, {
|
|
873
|
+
denom: 'CLW',
|
|
874
|
+
exponent: 6
|
|
875
|
+
}],
|
|
876
|
+
base: 'factory/stars1khzuhuhv02vaturh9x9lz4jach824x9umcgghl/uCLW',
|
|
877
|
+
name: 'Clown Society',
|
|
878
|
+
display: 'CLW',
|
|
879
|
+
symbol: 'CLW',
|
|
880
|
+
logoURIs: {
|
|
881
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/clw.png'
|
|
882
|
+
},
|
|
883
|
+
images: [{
|
|
884
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/clw.png'
|
|
885
|
+
}],
|
|
886
|
+
socials: {
|
|
887
|
+
website: 'https://www.clown-society.com/',
|
|
888
|
+
x: 'https://x.com/ClownsocieT'
|
|
889
|
+
},
|
|
890
|
+
typeAsset: 'sdk.coin'
|
|
866
891
|
}
|
|
867
892
|
]
|
|
868
893
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.131",
|
|
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.131"
|
|
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": "e0d9b0bcd1f12b7ade72c252a2f103b763ce3e94"
|
|
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
|
+
chain1: {
|
|
6
|
+
chainName: 'divinetestnet',
|
|
7
|
+
chainId: 'divine-testnet-1',
|
|
8
|
+
clientId: '07-tendermint-0',
|
|
9
|
+
connectionId: 'connection-0'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'osmosistestnet',
|
|
13
|
+
chainId: 'osmo-test-5',
|
|
14
|
+
clientId: '07-tendermint-4998',
|
|
15
|
+
connectionId: 'connection-4361'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-0',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-11231',
|
|
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;
|
|
@@ -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/testnet/ibc-data.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 ibcData = [
|
|
|
86
87
|
..._coreumtestnet.ibcData,
|
|
87
88
|
..._cosmoshubtestnet.ibcData,
|
|
88
89
|
..._cosmosicsprovidertestnet.ibcData,
|
|
90
|
+
..._divinetestnet.ibcData,
|
|
89
91
|
..._doravotatestnet.ibcData,
|
|
90
92
|
..._dydxtestnet.ibcData,
|
|
91
93
|
..._elystestnet.ibcData,
|
|
@@ -81,8 +81,8 @@ const info = {
|
|
|
81
81
|
},
|
|
82
82
|
explorers: [{
|
|
83
83
|
kind: 'custom',
|
|
84
|
-
url: 'https://explorer.kiichain.io
|
|
85
|
-
accountPage: 'https://explorer.kiichain.io/account/${accountAddress}'
|
|
84
|
+
url: 'https://testnet.explorer.kiichain.io',
|
|
85
|
+
accountPage: '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
|
+
chain1: {
|
|
363
|
+
chainName: 'divinetestnet',
|
|
364
|
+
chainId: 'divine-testnet-1',
|
|
365
|
+
clientId: '07-tendermint-0',
|
|
366
|
+
connectionId: 'connection-0'
|
|
367
|
+
},
|
|
368
|
+
chain2: {
|
|
369
|
+
chainName: 'osmosistestnet',
|
|
370
|
+
chainId: 'osmo-test-5',
|
|
371
|
+
clientId: '07-tendermint-4998',
|
|
372
|
+
connectionId: 'connection-4361'
|
|
373
|
+
},
|
|
374
|
+
channels: [{
|
|
375
|
+
chain1: {
|
|
376
|
+
channelId: 'channel-0',
|
|
377
|
+
portId: 'transfer'
|
|
378
|
+
},
|
|
379
|
+
chain2: {
|
|
380
|
+
channelId: 'channel-11231',
|
|
381
|
+
portId: '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
|
chain1: {
|