chain-registry 1.64.7 → 1.64.8
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/bouachain/assets.js +37 -0
- package/esm/mainnet/bouachain/chain.js +66 -0
- package/esm/mainnet/bouachain/index.js +4 -0
- package/esm/mainnet/chains.js +2 -0
- package/esm/mainnet/named.js +1 -0
- package/esm/mainnet/pryzm/assets.js +9 -9
- package/mainnet/assets.js +2 -0
- package/mainnet/bouachain/assets.d.ts +3 -0
- package/mainnet/bouachain/assets.js +39 -0
- package/mainnet/bouachain/chain.d.ts +3 -0
- package/mainnet/bouachain/chain.js +68 -0
- package/mainnet/bouachain/index.d.ts +2 -0
- package/mainnet/bouachain/index.js +10 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/named.d.ts +1 -0
- package/mainnet/named.js +5 -4
- package/mainnet/pryzm/assets.js +9 -9
- package/package.json +4 -4
package/esm/mainnet/assets.js
CHANGED
|
@@ -26,6 +26,7 @@ import * as _blockx from './blockx';
|
|
|
26
26
|
import * as _bluechip from './bluechip';
|
|
27
27
|
import * as _bluzelle from './bluzelle';
|
|
28
28
|
import * as _bostrom from './bostrom';
|
|
29
|
+
import * as _bouachain from './bouachain';
|
|
29
30
|
import * as _canto from './canto';
|
|
30
31
|
import * as _carbon from './carbon';
|
|
31
32
|
import * as _celestia from './celestia';
|
|
@@ -217,6 +218,7 @@ const assets = [
|
|
|
217
218
|
_bluechip.assets,
|
|
218
219
|
_bluzelle.assets,
|
|
219
220
|
_bostrom.assets,
|
|
221
|
+
_bouachain.assets,
|
|
220
222
|
_canto.assets,
|
|
221
223
|
_carbon.assets,
|
|
222
224
|
_celestia.assets,
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'bouachain',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of the Bouachain blockchain, used for transaction fees, staking, and governance.',
|
|
6
|
+
denom_units: [{
|
|
7
|
+
denom: 'ubouacoin',
|
|
8
|
+
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'bouacoin',
|
|
11
|
+
exponent: 8
|
|
12
|
+
}],
|
|
13
|
+
base: 'ubouacoin',
|
|
14
|
+
name: 'BOUACOIN',
|
|
15
|
+
display: 'bouacoin',
|
|
16
|
+
symbol: 'BOUA',
|
|
17
|
+
logo_URIs: {
|
|
18
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png',
|
|
19
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg'
|
|
20
|
+
},
|
|
21
|
+
images: [{
|
|
22
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png',
|
|
23
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg',
|
|
24
|
+
theme: {
|
|
25
|
+
primary_color_hex: '#000000'
|
|
26
|
+
}
|
|
27
|
+
}],
|
|
28
|
+
socials: {
|
|
29
|
+
website: 'https://Bouachain.com',
|
|
30
|
+
twitter: 'https://x.com/bouachain',
|
|
31
|
+
github: 'https://github.com/bouachain',
|
|
32
|
+
telegram: 'https://t.me/boua-chain'
|
|
33
|
+
},
|
|
34
|
+
type_asset: 'sdk.coin'
|
|
35
|
+
}]
|
|
36
|
+
};
|
|
37
|
+
export default info;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chain_name: 'bouachain',
|
|
4
|
+
chain_type: 'cosmos',
|
|
5
|
+
status: 'live',
|
|
6
|
+
website: 'https://bouachain.com',
|
|
7
|
+
network_type: 'mainnet',
|
|
8
|
+
pretty_name: 'Bouachain',
|
|
9
|
+
chain_id: 'bouachain',
|
|
10
|
+
bech32_prefix: 'boua',
|
|
11
|
+
daemon_name: 'bouachain',
|
|
12
|
+
node_home: '$HOME/.bouachain',
|
|
13
|
+
key_algos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
fee_tokens: [{
|
|
17
|
+
denom: 'ubouacoin',
|
|
18
|
+
fixed_min_gas_price: 0,
|
|
19
|
+
low_gas_price: 0.0006,
|
|
20
|
+
average_gas_price: 0.012,
|
|
21
|
+
high_gas_price: 0.04
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
staking_tokens: [{
|
|
26
|
+
denom: 'ubouacoin'
|
|
27
|
+
}],
|
|
28
|
+
lock_duration: {
|
|
29
|
+
time: '1814400s'
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
codebase: {},
|
|
33
|
+
logo_URIs: {
|
|
34
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png',
|
|
35
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg'
|
|
36
|
+
},
|
|
37
|
+
apis: {
|
|
38
|
+
rpc: [{
|
|
39
|
+
address: 'https://rpc.bouachain.com',
|
|
40
|
+
provider: 'BouaValidator'
|
|
41
|
+
}],
|
|
42
|
+
rest: [{
|
|
43
|
+
address: 'https://lcd.bouachain.com',
|
|
44
|
+
provider: 'BouaValidator'
|
|
45
|
+
}],
|
|
46
|
+
grpc: [{
|
|
47
|
+
address: 'https://grpc.bouachain.com',
|
|
48
|
+
provider: 'BouaValidator'
|
|
49
|
+
}]
|
|
50
|
+
},
|
|
51
|
+
explorers: [{
|
|
52
|
+
kind: 'bouachain',
|
|
53
|
+
url: 'https://bouascan.com',
|
|
54
|
+
tx_page: 'https://bouascan.com/bouachain/tx/${txHash}',
|
|
55
|
+
account_page: 'https://bouascan.com/bouachain/${accountAddress}'
|
|
56
|
+
}],
|
|
57
|
+
images: [{
|
|
58
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png',
|
|
59
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg',
|
|
60
|
+
theme: {
|
|
61
|
+
primary_color_hex: '#000000'
|
|
62
|
+
}
|
|
63
|
+
}],
|
|
64
|
+
keywords: ['bouachain', 'spawn']
|
|
65
|
+
};
|
|
66
|
+
export default info;
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -27,6 +27,7 @@ import * as _blockx from './blockx';
|
|
|
27
27
|
import * as _bluechip from './bluechip';
|
|
28
28
|
import * as _bluzelle from './bluzelle';
|
|
29
29
|
import * as _bostrom from './bostrom';
|
|
30
|
+
import * as _bouachain from './bouachain';
|
|
30
31
|
import * as _canto from './canto';
|
|
31
32
|
import * as _carbon from './carbon';
|
|
32
33
|
import * as _celestia from './celestia';
|
|
@@ -219,6 +220,7 @@ const chains = [
|
|
|
219
220
|
_bluechip.chain,
|
|
220
221
|
_bluzelle.chain,
|
|
221
222
|
_bostrom.chain,
|
|
223
|
+
_bouachain.chain,
|
|
222
224
|
_canto.chain,
|
|
223
225
|
_carbon.chain,
|
|
224
226
|
_celestia.chain,
|
package/esm/mainnet/named.js
CHANGED
|
@@ -27,6 +27,7 @@ export * as blockx from './blockx';
|
|
|
27
27
|
export * as bluechip from './bluechip';
|
|
28
28
|
export * as bluzelle from './bluzelle';
|
|
29
29
|
export * as bostrom from './bostrom';
|
|
30
|
+
export * as bouachain from './bouachain';
|
|
30
31
|
export * as canto from './canto';
|
|
31
32
|
export * as carbon from './carbon';
|
|
32
33
|
export * as celestia from './celestia';
|
|
@@ -570,7 +570,7 @@ const info = {
|
|
|
570
570
|
exponent: 0
|
|
571
571
|
}, {
|
|
572
572
|
denom: 'cINJ',
|
|
573
|
-
exponent:
|
|
573
|
+
exponent: 18
|
|
574
574
|
}],
|
|
575
575
|
base: 'c:inj',
|
|
576
576
|
name: 'cInj',
|
|
@@ -863,7 +863,7 @@ const info = {
|
|
|
863
863
|
exponent: 0
|
|
864
864
|
}, {
|
|
865
865
|
denom: 'pINJ30Sep2024',
|
|
866
|
-
exponent:
|
|
866
|
+
exponent: 18
|
|
867
867
|
}],
|
|
868
868
|
base: 'p:inj:30Sep2024',
|
|
869
869
|
name: 'pInj (30Sep2024)',
|
|
@@ -886,7 +886,7 @@ const info = {
|
|
|
886
886
|
exponent: 0
|
|
887
887
|
}, {
|
|
888
888
|
denom: 'pINJ31Dec2024',
|
|
889
|
-
exponent:
|
|
889
|
+
exponent: 18
|
|
890
890
|
}],
|
|
891
891
|
base: 'p:inj:31Dec2024',
|
|
892
892
|
name: 'pInj (31Dec2024)',
|
|
@@ -909,7 +909,7 @@ const info = {
|
|
|
909
909
|
exponent: 0
|
|
910
910
|
}, {
|
|
911
911
|
denom: 'pINJ31Dec2025',
|
|
912
|
-
exponent:
|
|
912
|
+
exponent: 18
|
|
913
913
|
}],
|
|
914
914
|
base: 'p:inj:31Dec2025',
|
|
915
915
|
name: 'pInj (31Dec2025)',
|
|
@@ -1461,7 +1461,7 @@ const info = {
|
|
|
1461
1461
|
exponent: 0
|
|
1462
1462
|
}, {
|
|
1463
1463
|
denom: 'yINJ30Sep2024',
|
|
1464
|
-
exponent:
|
|
1464
|
+
exponent: 18
|
|
1465
1465
|
}],
|
|
1466
1466
|
base: 'y:inj:30Sep2024',
|
|
1467
1467
|
name: 'yInj (30Sep2024)',
|
|
@@ -1484,7 +1484,7 @@ const info = {
|
|
|
1484
1484
|
exponent: 0
|
|
1485
1485
|
}, {
|
|
1486
1486
|
denom: 'yINJ31Dec2024',
|
|
1487
|
-
exponent:
|
|
1487
|
+
exponent: 18
|
|
1488
1488
|
}],
|
|
1489
1489
|
base: 'y:inj:31Dec2024',
|
|
1490
1490
|
name: 'yInj (31Dec2024)',
|
|
@@ -1507,7 +1507,7 @@ const info = {
|
|
|
1507
1507
|
exponent: 0
|
|
1508
1508
|
}, {
|
|
1509
1509
|
denom: 'yINJ31Dec2025',
|
|
1510
|
-
exponent:
|
|
1510
|
+
exponent: 18
|
|
1511
1511
|
}],
|
|
1512
1512
|
base: 'y:inj:31Dec2025',
|
|
1513
1513
|
name: 'yInj (31Dec2025)',
|
|
@@ -2013,7 +2013,7 @@ const info = {
|
|
|
2013
2013
|
exponent: 0
|
|
2014
2014
|
}, {
|
|
2015
2015
|
denom: 'lp:1:INJ',
|
|
2016
|
-
exponent:
|
|
2016
|
+
exponent: 18
|
|
2017
2017
|
}],
|
|
2018
2018
|
base: 'lp:1:inj',
|
|
2019
2019
|
name: 'INJ Yield LP',
|
|
@@ -2036,7 +2036,7 @@ const info = {
|
|
|
2036
2036
|
exponent: 0
|
|
2037
2037
|
}, {
|
|
2038
2038
|
denom: 'lp:4:INJypt-INJ',
|
|
2039
|
-
exponent:
|
|
2039
|
+
exponent: 18
|
|
2040
2040
|
}],
|
|
2041
2041
|
base: 'lp:4:injypt-inj',
|
|
2042
2042
|
name: 'INJ Boost LP',
|
package/mainnet/assets.js
CHANGED
|
@@ -51,6 +51,7 @@ const _blockx = __importStar(require("./blockx"));
|
|
|
51
51
|
const _bluechip = __importStar(require("./bluechip"));
|
|
52
52
|
const _bluzelle = __importStar(require("./bluzelle"));
|
|
53
53
|
const _bostrom = __importStar(require("./bostrom"));
|
|
54
|
+
const _bouachain = __importStar(require("./bouachain"));
|
|
54
55
|
const _canto = __importStar(require("./canto"));
|
|
55
56
|
const _carbon = __importStar(require("./carbon"));
|
|
56
57
|
const _celestia = __importStar(require("./celestia"));
|
|
@@ -242,6 +243,7 @@ const assets = [
|
|
|
242
243
|
_bluechip.assets,
|
|
243
244
|
_bluzelle.assets,
|
|
244
245
|
_bostrom.assets,
|
|
246
|
+
_bouachain.assets,
|
|
245
247
|
_canto.assets,
|
|
246
248
|
_carbon.assets,
|
|
247
249
|
_celestia.assets,
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chain_name: 'bouachain',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of the Bouachain blockchain, used for transaction fees, staking, and governance.',
|
|
8
|
+
denom_units: [{
|
|
9
|
+
denom: 'ubouacoin',
|
|
10
|
+
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'bouacoin',
|
|
13
|
+
exponent: 8
|
|
14
|
+
}],
|
|
15
|
+
base: 'ubouacoin',
|
|
16
|
+
name: 'BOUACOIN',
|
|
17
|
+
display: 'bouacoin',
|
|
18
|
+
symbol: 'BOUA',
|
|
19
|
+
logo_URIs: {
|
|
20
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png',
|
|
21
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg'
|
|
22
|
+
},
|
|
23
|
+
images: [{
|
|
24
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png',
|
|
25
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg',
|
|
26
|
+
theme: {
|
|
27
|
+
primary_color_hex: '#000000'
|
|
28
|
+
}
|
|
29
|
+
}],
|
|
30
|
+
socials: {
|
|
31
|
+
website: 'https://Bouachain.com',
|
|
32
|
+
twitter: 'https://x.com/bouachain',
|
|
33
|
+
github: 'https://github.com/bouachain',
|
|
34
|
+
telegram: 'https://t.me/boua-chain'
|
|
35
|
+
},
|
|
36
|
+
type_asset: 'sdk.coin'
|
|
37
|
+
}]
|
|
38
|
+
};
|
|
39
|
+
exports.default = info;
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chain_name: 'bouachain',
|
|
6
|
+
chain_type: 'cosmos',
|
|
7
|
+
status: 'live',
|
|
8
|
+
website: 'https://bouachain.com',
|
|
9
|
+
network_type: 'mainnet',
|
|
10
|
+
pretty_name: 'Bouachain',
|
|
11
|
+
chain_id: 'bouachain',
|
|
12
|
+
bech32_prefix: 'boua',
|
|
13
|
+
daemon_name: 'bouachain',
|
|
14
|
+
node_home: '$HOME/.bouachain',
|
|
15
|
+
key_algos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
fee_tokens: [{
|
|
19
|
+
denom: 'ubouacoin',
|
|
20
|
+
fixed_min_gas_price: 0,
|
|
21
|
+
low_gas_price: 0.0006,
|
|
22
|
+
average_gas_price: 0.012,
|
|
23
|
+
high_gas_price: 0.04
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
staking_tokens: [{
|
|
28
|
+
denom: 'ubouacoin'
|
|
29
|
+
}],
|
|
30
|
+
lock_duration: {
|
|
31
|
+
time: '1814400s'
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
codebase: {},
|
|
35
|
+
logo_URIs: {
|
|
36
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png',
|
|
37
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg'
|
|
38
|
+
},
|
|
39
|
+
apis: {
|
|
40
|
+
rpc: [{
|
|
41
|
+
address: 'https://rpc.bouachain.com',
|
|
42
|
+
provider: 'BouaValidator'
|
|
43
|
+
}],
|
|
44
|
+
rest: [{
|
|
45
|
+
address: 'https://lcd.bouachain.com',
|
|
46
|
+
provider: 'BouaValidator'
|
|
47
|
+
}],
|
|
48
|
+
grpc: [{
|
|
49
|
+
address: 'https://grpc.bouachain.com',
|
|
50
|
+
provider: 'BouaValidator'
|
|
51
|
+
}]
|
|
52
|
+
},
|
|
53
|
+
explorers: [{
|
|
54
|
+
kind: 'bouachain',
|
|
55
|
+
url: 'https://bouascan.com',
|
|
56
|
+
tx_page: 'https://bouascan.com/bouachain/tx/${txHash}',
|
|
57
|
+
account_page: 'https://bouascan.com/bouachain/${accountAddress}'
|
|
58
|
+
}],
|
|
59
|
+
images: [{
|
|
60
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.png',
|
|
61
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bouachain/images/bouachain.svg',
|
|
62
|
+
theme: {
|
|
63
|
+
primary_color_hex: '#000000'
|
|
64
|
+
}
|
|
65
|
+
}],
|
|
66
|
+
keywords: ['bouachain', 'spawn']
|
|
67
|
+
};
|
|
68
|
+
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/chains.js
CHANGED
|
@@ -52,6 +52,7 @@ const _blockx = __importStar(require("./blockx"));
|
|
|
52
52
|
const _bluechip = __importStar(require("./bluechip"));
|
|
53
53
|
const _bluzelle = __importStar(require("./bluzelle"));
|
|
54
54
|
const _bostrom = __importStar(require("./bostrom"));
|
|
55
|
+
const _bouachain = __importStar(require("./bouachain"));
|
|
55
56
|
const _canto = __importStar(require("./canto"));
|
|
56
57
|
const _carbon = __importStar(require("./carbon"));
|
|
57
58
|
const _celestia = __importStar(require("./celestia"));
|
|
@@ -244,6 +245,7 @@ const chains = [
|
|
|
244
245
|
_bluechip.chain,
|
|
245
246
|
_bluzelle.chain,
|
|
246
247
|
_bostrom.chain,
|
|
248
|
+
_bouachain.chain,
|
|
247
249
|
_canto.chain,
|
|
248
250
|
_carbon.chain,
|
|
249
251
|
_celestia.chain,
|
package/mainnet/named.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export * as blockx from './blockx';
|
|
|
27
27
|
export * as bluechip from './bluechip';
|
|
28
28
|
export * as bluzelle from './bluzelle';
|
|
29
29
|
export * as bostrom from './bostrom';
|
|
30
|
+
export * as bouachain from './bouachain';
|
|
30
31
|
export * as canto from './canto';
|
|
31
32
|
export * as carbon from './carbon';
|
|
32
33
|
export * as celestia from './celestia';
|
package/mainnet/named.js
CHANGED
|
@@ -23,10 +23,10 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = 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 = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = 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 = void 0;
|
|
26
|
+
exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer1 = exports.cifer = exports.chronicnetwork = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.cerberus = exports.celestia = exports.carbon = exports.canto = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.axelar = exports.aura1 = exports.aura = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda1 = exports.andromeda = exports.althea = exports.akiro = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports._8ball = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.ethereum = void 0;
|
|
27
|
+
exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.empowerchain = exports.emoney = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.doravota = exports.dig = exports.dhealth = exports.desmos = exports.decentr = exports.cudos = exports.cryptoorgchain = exports.cronos = void 0;
|
|
28
|
+
exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage1 = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.nois = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.migaloo = exports.microtick = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.mande = exports.lumnetwork = exports.lumenx = exports.loyal = exports.lorenzo = void 0;
|
|
29
|
+
exports.zetachain = exports.xpla = exports.vidulum = exports.uptick = exports.ununifi = 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 = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = 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 = void 0;
|
|
30
30
|
exports.ethereum = __importStar(require("./ethereum"));
|
|
31
31
|
exports.rootstock = __importStar(require("./rootstock"));
|
|
32
32
|
exports.solana = __importStar(require("./solana"));
|
|
@@ -56,6 +56,7 @@ exports.blockx = __importStar(require("./blockx"));
|
|
|
56
56
|
exports.bluechip = __importStar(require("./bluechip"));
|
|
57
57
|
exports.bluzelle = __importStar(require("./bluzelle"));
|
|
58
58
|
exports.bostrom = __importStar(require("./bostrom"));
|
|
59
|
+
exports.bouachain = __importStar(require("./bouachain"));
|
|
59
60
|
exports.canto = __importStar(require("./canto"));
|
|
60
61
|
exports.carbon = __importStar(require("./carbon"));
|
|
61
62
|
exports.celestia = __importStar(require("./celestia"));
|
package/mainnet/pryzm/assets.js
CHANGED
|
@@ -572,7 +572,7 @@ const info = {
|
|
|
572
572
|
exponent: 0
|
|
573
573
|
}, {
|
|
574
574
|
denom: 'cINJ',
|
|
575
|
-
exponent:
|
|
575
|
+
exponent: 18
|
|
576
576
|
}],
|
|
577
577
|
base: 'c:inj',
|
|
578
578
|
name: 'cInj',
|
|
@@ -865,7 +865,7 @@ const info = {
|
|
|
865
865
|
exponent: 0
|
|
866
866
|
}, {
|
|
867
867
|
denom: 'pINJ30Sep2024',
|
|
868
|
-
exponent:
|
|
868
|
+
exponent: 18
|
|
869
869
|
}],
|
|
870
870
|
base: 'p:inj:30Sep2024',
|
|
871
871
|
name: 'pInj (30Sep2024)',
|
|
@@ -888,7 +888,7 @@ const info = {
|
|
|
888
888
|
exponent: 0
|
|
889
889
|
}, {
|
|
890
890
|
denom: 'pINJ31Dec2024',
|
|
891
|
-
exponent:
|
|
891
|
+
exponent: 18
|
|
892
892
|
}],
|
|
893
893
|
base: 'p:inj:31Dec2024',
|
|
894
894
|
name: 'pInj (31Dec2024)',
|
|
@@ -911,7 +911,7 @@ const info = {
|
|
|
911
911
|
exponent: 0
|
|
912
912
|
}, {
|
|
913
913
|
denom: 'pINJ31Dec2025',
|
|
914
|
-
exponent:
|
|
914
|
+
exponent: 18
|
|
915
915
|
}],
|
|
916
916
|
base: 'p:inj:31Dec2025',
|
|
917
917
|
name: 'pInj (31Dec2025)',
|
|
@@ -1463,7 +1463,7 @@ const info = {
|
|
|
1463
1463
|
exponent: 0
|
|
1464
1464
|
}, {
|
|
1465
1465
|
denom: 'yINJ30Sep2024',
|
|
1466
|
-
exponent:
|
|
1466
|
+
exponent: 18
|
|
1467
1467
|
}],
|
|
1468
1468
|
base: 'y:inj:30Sep2024',
|
|
1469
1469
|
name: 'yInj (30Sep2024)',
|
|
@@ -1486,7 +1486,7 @@ const info = {
|
|
|
1486
1486
|
exponent: 0
|
|
1487
1487
|
}, {
|
|
1488
1488
|
denom: 'yINJ31Dec2024',
|
|
1489
|
-
exponent:
|
|
1489
|
+
exponent: 18
|
|
1490
1490
|
}],
|
|
1491
1491
|
base: 'y:inj:31Dec2024',
|
|
1492
1492
|
name: 'yInj (31Dec2024)',
|
|
@@ -1509,7 +1509,7 @@ const info = {
|
|
|
1509
1509
|
exponent: 0
|
|
1510
1510
|
}, {
|
|
1511
1511
|
denom: 'yINJ31Dec2025',
|
|
1512
|
-
exponent:
|
|
1512
|
+
exponent: 18
|
|
1513
1513
|
}],
|
|
1514
1514
|
base: 'y:inj:31Dec2025',
|
|
1515
1515
|
name: 'yInj (31Dec2025)',
|
|
@@ -2015,7 +2015,7 @@ const info = {
|
|
|
2015
2015
|
exponent: 0
|
|
2016
2016
|
}, {
|
|
2017
2017
|
denom: 'lp:1:INJ',
|
|
2018
|
-
exponent:
|
|
2018
|
+
exponent: 18
|
|
2019
2019
|
}],
|
|
2020
2020
|
base: 'lp:1:inj',
|
|
2021
2021
|
name: 'INJ Yield LP',
|
|
@@ -2038,7 +2038,7 @@ const info = {
|
|
|
2038
2038
|
exponent: 0
|
|
2039
2039
|
}, {
|
|
2040
2040
|
denom: 'lp:4:INJypt-INJ',
|
|
2041
|
-
exponent:
|
|
2041
|
+
exponent: 18
|
|
2042
2042
|
}],
|
|
2043
2043
|
base: 'lp:4:injypt-inj',
|
|
2044
2044
|
name: 'INJ Boost LP',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "1.64.
|
|
3
|
+
"version": "1.64.8",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.47.
|
|
32
|
+
"@chain-registry/utils": "^1.47.8",
|
|
33
33
|
"deepmerge": "^4.2.2"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.46.
|
|
36
|
+
"@chain-registry/types": "^0.46.8"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "19f3f61c12aebcc75616467fa7b1bbcd263ccd97"
|
|
47
47
|
}
|