chain-registry 2.0.195 → 2.0.196
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/cosmoshub/ibc-data.js +2 -2
- package/esm/mainnet/ethereum/asset-list.js +0 -1
- package/esm/mainnet/ltrstchain/asset-list.js +35 -0
- package/esm/mainnet/ltrstchain/chain.js +75 -0
- package/esm/mainnet/ltrstchain/index.js +4 -0
- package/esm/mainnet/migaloo/ibc-data.js +2 -2
- package/esm/mainnet/neutron/ibc-data.js +2 -2
- package/esm/mainnet/osmosis/asset-list.js +1 -2
- package/esm/mainnet/osmosis/ibc-data.js +2 -2
- package/esm/mainnet/stride/ibc-data.js +2 -2
- package/esm/mainnet/terra2/ibc-data.js +2 -2
- package/esm/mainnet/umee/asset-list.js +0 -1
- package/mainnet/asset-lists.js +2 -0
- package/mainnet/chains.js +2 -0
- package/mainnet/cosmoshub/ibc-data.js +2 -2
- package/mainnet/ethereum/asset-list.js +0 -1
- package/mainnet/ltrstchain/asset-list.d.ts +3 -0
- package/mainnet/ltrstchain/asset-list.js +37 -0
- package/mainnet/ltrstchain/chain.d.ts +3 -0
- package/mainnet/ltrstchain/chain.js +77 -0
- package/mainnet/ltrstchain/index.d.ts +2 -0
- package/mainnet/ltrstchain/index.js +10 -0
- package/mainnet/migaloo/ibc-data.js +2 -2
- package/mainnet/neutron/ibc-data.js +2 -2
- package/mainnet/osmosis/asset-list.js +1 -2
- package/mainnet/osmosis/ibc-data.js +2 -2
- package/mainnet/stride/ibc-data.js +2 -2
- package/mainnet/terra2/ibc-data.js +2 -2
- package/mainnet/umee/asset-list.js +0 -1
- package/package.json +3 -3
|
@@ -119,6 +119,7 @@ import * as _lombardledger from './lombardledger';
|
|
|
119
119
|
import * as _loop from './loop';
|
|
120
120
|
import * as _lorenzo from './lorenzo';
|
|
121
121
|
import * as _loyal from './loyal';
|
|
122
|
+
import * as _ltrstchain from './ltrstchain';
|
|
122
123
|
import * as _lumen from './lumen';
|
|
123
124
|
import * as _lumera from './lumera';
|
|
124
125
|
import * as _lumiwaveprotocol from './lumiwaveprotocol';
|
|
@@ -353,6 +354,7 @@ const assetList = [
|
|
|
353
354
|
_loop.assetList,
|
|
354
355
|
_lorenzo.assetList,
|
|
355
356
|
_loyal.assetList,
|
|
357
|
+
_ltrstchain.assetList,
|
|
356
358
|
_lumen.assetList,
|
|
357
359
|
_lumera.assetList,
|
|
358
360
|
_lumiwaveprotocol.assetList,
|
package/esm/mainnet/chains.js
CHANGED
|
@@ -119,6 +119,7 @@ import * as _lombardledger from './lombardledger';
|
|
|
119
119
|
import * as _loop from './loop';
|
|
120
120
|
import * as _lorenzo from './lorenzo';
|
|
121
121
|
import * as _loyal from './loyal';
|
|
122
|
+
import * as _ltrstchain from './ltrstchain';
|
|
122
123
|
import * as _lumen from './lumen';
|
|
123
124
|
import * as _lumera from './lumera';
|
|
124
125
|
import * as _lumiwaveprotocol from './lumiwaveprotocol';
|
|
@@ -353,6 +354,7 @@ const chains = [
|
|
|
353
354
|
_loop.chain,
|
|
354
355
|
_lorenzo.chain,
|
|
355
356
|
_loyal.chain,
|
|
357
|
+
_ltrstchain.chain,
|
|
356
358
|
_lumen.chain,
|
|
357
359
|
_lumera.chain,
|
|
358
360
|
_lumiwaveprotocol.chain,
|
|
@@ -1646,7 +1646,6 @@ const info = {
|
|
|
1646
1646
|
logoURIs: {
|
|
1647
1647
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mbtc.png'
|
|
1648
1648
|
},
|
|
1649
|
-
coingeckoId: 'babypie-wrapped-btc',
|
|
1650
1649
|
images: [{
|
|
1651
1650
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mbtc.png'
|
|
1652
1651
|
}]
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chainName: 'ltrstchain',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'The native token of LTRST Chain. Used for transaction fees, staking, and governance. The chain is built for privacy-respecting estate and legal documents.',
|
|
6
|
+
denomUnits: [
|
|
7
|
+
{
|
|
8
|
+
denom: 'ultrst',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['microltrst']
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
denom: 'mltrst',
|
|
14
|
+
exponent: 3,
|
|
15
|
+
aliases: ['milliltrst']
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
denom: 'LTRST',
|
|
19
|
+
exponent: 6
|
|
20
|
+
}
|
|
21
|
+
],
|
|
22
|
+
typeAsset: 'sdk.coin',
|
|
23
|
+
base: 'ultrst',
|
|
24
|
+
name: 'LTRST',
|
|
25
|
+
display: 'LTRST',
|
|
26
|
+
symbol: 'LTRST',
|
|
27
|
+
logoURIs: {
|
|
28
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ltrstchain/images/ltrst.png'
|
|
29
|
+
},
|
|
30
|
+
images: [{
|
|
31
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ltrstchain/images/ltrst.png'
|
|
32
|
+
}]
|
|
33
|
+
}]
|
|
34
|
+
};
|
|
35
|
+
export default info;
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../chain.schema.json',
|
|
3
|
+
chainName: 'ltrstchain',
|
|
4
|
+
chainType: 'cosmos',
|
|
5
|
+
chainId: 'ltrst-chain-1',
|
|
6
|
+
prettyName: 'LTRST Chain',
|
|
7
|
+
website: 'https://larrytrustee.ai',
|
|
8
|
+
status: 'live',
|
|
9
|
+
networkType: 'mainnet',
|
|
10
|
+
bech32Prefix: 'ltrst',
|
|
11
|
+
daemonName: 'ltrstchaind',
|
|
12
|
+
nodeHome: '$HOME/.ltrstchain',
|
|
13
|
+
keyAlgos: ['secp256k1'],
|
|
14
|
+
slip44: 118,
|
|
15
|
+
fees: {
|
|
16
|
+
feeTokens: [{
|
|
17
|
+
denom: 'ultrst',
|
|
18
|
+
fixedMinGasPrice: 0,
|
|
19
|
+
lowGasPrice: 0.01,
|
|
20
|
+
averageGasPrice: 0.025,
|
|
21
|
+
highGasPrice: 0.04
|
|
22
|
+
}]
|
|
23
|
+
},
|
|
24
|
+
staking: {
|
|
25
|
+
stakingTokens: [{
|
|
26
|
+
denom: 'ultrst'
|
|
27
|
+
}]
|
|
28
|
+
},
|
|
29
|
+
codebase: {
|
|
30
|
+
gitRepo: 'https://github.com/Larrytrustee/ltrst-chain-l1',
|
|
31
|
+
sdk: {
|
|
32
|
+
type: 'cosmos',
|
|
33
|
+
version: '0.50'
|
|
34
|
+
},
|
|
35
|
+
consensus: {
|
|
36
|
+
type: 'cometbft',
|
|
37
|
+
version: '0.38.17'
|
|
38
|
+
},
|
|
39
|
+
ibc: {
|
|
40
|
+
type: 'go',
|
|
41
|
+
version: '8.5.2',
|
|
42
|
+
icsEnabled: ['ics20-1']
|
|
43
|
+
},
|
|
44
|
+
cosmwasm: {
|
|
45
|
+
enabled: false
|
|
46
|
+
},
|
|
47
|
+
genesis: {
|
|
48
|
+
genesisUrl: 'https://chain.larrytrustee.ai/trpc/genesis'
|
|
49
|
+
}
|
|
50
|
+
},
|
|
51
|
+
apis: {
|
|
52
|
+
rpc: [{
|
|
53
|
+
address: 'https://chain.larrytrustee.ai/trpc/',
|
|
54
|
+
provider: 'LarryTrustee.AI'
|
|
55
|
+
}],
|
|
56
|
+
rest: [{
|
|
57
|
+
address: 'https://chain.larrytrustee.ai/tapi/',
|
|
58
|
+
provider: 'LarryTrustee.AI'
|
|
59
|
+
}]
|
|
60
|
+
},
|
|
61
|
+
explorers: [{
|
|
62
|
+
kind: 'LarryTrustee Explorer',
|
|
63
|
+
url: 'https://dex.larrytrustee.ai/explorer',
|
|
64
|
+
txPage: 'https://dex.larrytrustee.ai/explorer/tx/${txHash}',
|
|
65
|
+
accountPage: 'https://dex.larrytrustee.ai/explorer/address/${accountAddress}'
|
|
66
|
+
}],
|
|
67
|
+
logoURIs: {
|
|
68
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ltrstchain/images/ltrst.png'
|
|
69
|
+
},
|
|
70
|
+
images: [{
|
|
71
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ltrstchain/images/ltrst.png'
|
|
72
|
+
}],
|
|
73
|
+
description: 'LTRST Chain is a Cosmos SDK Layer 1 with privacy primitives at the protocol level, built so a family\'s living trust never has to live on a server owned by someone who could sell it, breach it, or quietly mine its data.'
|
|
74
|
+
};
|
|
75
|
+
export default info;
|
|
@@ -2009,8 +2009,7 @@ const info = {
|
|
|
2009
2009
|
},
|
|
2010
2010
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png',
|
|
2011
2011
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg'
|
|
2012
|
-
}]
|
|
2013
|
-
coingeckoId: 'umee'
|
|
2012
|
+
}]
|
|
2014
2013
|
},
|
|
2015
2014
|
{
|
|
2016
2015
|
description: 'The native token of Gravity Bridge',
|
|
@@ -18,7 +18,6 @@ const info = {
|
|
|
18
18
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png',
|
|
19
19
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg'
|
|
20
20
|
},
|
|
21
|
-
coingeckoId: 'umee',
|
|
22
21
|
images: [{
|
|
23
22
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png',
|
|
24
23
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg'
|
package/mainnet/asset-lists.js
CHANGED
|
@@ -144,6 +144,7 @@ const _lombardledger = __importStar(require("./lombardledger"));
|
|
|
144
144
|
const _loop = __importStar(require("./loop"));
|
|
145
145
|
const _lorenzo = __importStar(require("./lorenzo"));
|
|
146
146
|
const _loyal = __importStar(require("./loyal"));
|
|
147
|
+
const _ltrstchain = __importStar(require("./ltrstchain"));
|
|
147
148
|
const _lumen = __importStar(require("./lumen"));
|
|
148
149
|
const _lumera = __importStar(require("./lumera"));
|
|
149
150
|
const _lumiwaveprotocol = __importStar(require("./lumiwaveprotocol"));
|
|
@@ -378,6 +379,7 @@ const assetList = [
|
|
|
378
379
|
_loop.assetList,
|
|
379
380
|
_lorenzo.assetList,
|
|
380
381
|
_loyal.assetList,
|
|
382
|
+
_ltrstchain.assetList,
|
|
381
383
|
_lumen.assetList,
|
|
382
384
|
_lumera.assetList,
|
|
383
385
|
_lumiwaveprotocol.assetList,
|
package/mainnet/chains.js
CHANGED
|
@@ -144,6 +144,7 @@ const _lombardledger = __importStar(require("./lombardledger"));
|
|
|
144
144
|
const _loop = __importStar(require("./loop"));
|
|
145
145
|
const _lorenzo = __importStar(require("./lorenzo"));
|
|
146
146
|
const _loyal = __importStar(require("./loyal"));
|
|
147
|
+
const _ltrstchain = __importStar(require("./ltrstchain"));
|
|
147
148
|
const _lumen = __importStar(require("./lumen"));
|
|
148
149
|
const _lumera = __importStar(require("./lumera"));
|
|
149
150
|
const _lumiwaveprotocol = __importStar(require("./lumiwaveprotocol"));
|
|
@@ -378,6 +379,7 @@ const chains = [
|
|
|
378
379
|
_loop.chain,
|
|
379
380
|
_lorenzo.chain,
|
|
380
381
|
_loyal.chain,
|
|
382
|
+
_ltrstchain.chain,
|
|
381
383
|
_lumen.chain,
|
|
382
384
|
_lumera.chain,
|
|
383
385
|
_lumiwaveprotocol.chain,
|
|
@@ -1648,7 +1648,6 @@ const info = {
|
|
|
1648
1648
|
logoURIs: {
|
|
1649
1649
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mbtc.png'
|
|
1650
1650
|
},
|
|
1651
|
-
coingeckoId: 'babypie-wrapped-btc',
|
|
1652
1651
|
images: [{
|
|
1653
1652
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/mbtc.png'
|
|
1654
1653
|
}]
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../assetlist.schema.json',
|
|
5
|
+
chainName: 'ltrstchain',
|
|
6
|
+
assets: [{
|
|
7
|
+
description: 'The native token of LTRST Chain. Used for transaction fees, staking, and governance. The chain is built for privacy-respecting estate and legal documents.',
|
|
8
|
+
denomUnits: [
|
|
9
|
+
{
|
|
10
|
+
denom: 'ultrst',
|
|
11
|
+
exponent: 0,
|
|
12
|
+
aliases: ['microltrst']
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
denom: 'mltrst',
|
|
16
|
+
exponent: 3,
|
|
17
|
+
aliases: ['milliltrst']
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
denom: 'LTRST',
|
|
21
|
+
exponent: 6
|
|
22
|
+
}
|
|
23
|
+
],
|
|
24
|
+
typeAsset: 'sdk.coin',
|
|
25
|
+
base: 'ultrst',
|
|
26
|
+
name: 'LTRST',
|
|
27
|
+
display: 'LTRST',
|
|
28
|
+
symbol: 'LTRST',
|
|
29
|
+
logoURIs: {
|
|
30
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ltrstchain/images/ltrst.png'
|
|
31
|
+
},
|
|
32
|
+
images: [{
|
|
33
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ltrstchain/images/ltrst.png'
|
|
34
|
+
}]
|
|
35
|
+
}]
|
|
36
|
+
};
|
|
37
|
+
exports.default = info;
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = {
|
|
4
|
+
$schema: '../chain.schema.json',
|
|
5
|
+
chainName: 'ltrstchain',
|
|
6
|
+
chainType: 'cosmos',
|
|
7
|
+
chainId: 'ltrst-chain-1',
|
|
8
|
+
prettyName: 'LTRST Chain',
|
|
9
|
+
website: 'https://larrytrustee.ai',
|
|
10
|
+
status: 'live',
|
|
11
|
+
networkType: 'mainnet',
|
|
12
|
+
bech32Prefix: 'ltrst',
|
|
13
|
+
daemonName: 'ltrstchaind',
|
|
14
|
+
nodeHome: '$HOME/.ltrstchain',
|
|
15
|
+
keyAlgos: ['secp256k1'],
|
|
16
|
+
slip44: 118,
|
|
17
|
+
fees: {
|
|
18
|
+
feeTokens: [{
|
|
19
|
+
denom: 'ultrst',
|
|
20
|
+
fixedMinGasPrice: 0,
|
|
21
|
+
lowGasPrice: 0.01,
|
|
22
|
+
averageGasPrice: 0.025,
|
|
23
|
+
highGasPrice: 0.04
|
|
24
|
+
}]
|
|
25
|
+
},
|
|
26
|
+
staking: {
|
|
27
|
+
stakingTokens: [{
|
|
28
|
+
denom: 'ultrst'
|
|
29
|
+
}]
|
|
30
|
+
},
|
|
31
|
+
codebase: {
|
|
32
|
+
gitRepo: 'https://github.com/Larrytrustee/ltrst-chain-l1',
|
|
33
|
+
sdk: {
|
|
34
|
+
type: 'cosmos',
|
|
35
|
+
version: '0.50'
|
|
36
|
+
},
|
|
37
|
+
consensus: {
|
|
38
|
+
type: 'cometbft',
|
|
39
|
+
version: '0.38.17'
|
|
40
|
+
},
|
|
41
|
+
ibc: {
|
|
42
|
+
type: 'go',
|
|
43
|
+
version: '8.5.2',
|
|
44
|
+
icsEnabled: ['ics20-1']
|
|
45
|
+
},
|
|
46
|
+
cosmwasm: {
|
|
47
|
+
enabled: false
|
|
48
|
+
},
|
|
49
|
+
genesis: {
|
|
50
|
+
genesisUrl: 'https://chain.larrytrustee.ai/trpc/genesis'
|
|
51
|
+
}
|
|
52
|
+
},
|
|
53
|
+
apis: {
|
|
54
|
+
rpc: [{
|
|
55
|
+
address: 'https://chain.larrytrustee.ai/trpc/',
|
|
56
|
+
provider: 'LarryTrustee.AI'
|
|
57
|
+
}],
|
|
58
|
+
rest: [{
|
|
59
|
+
address: 'https://chain.larrytrustee.ai/tapi/',
|
|
60
|
+
provider: 'LarryTrustee.AI'
|
|
61
|
+
}]
|
|
62
|
+
},
|
|
63
|
+
explorers: [{
|
|
64
|
+
kind: 'LarryTrustee Explorer',
|
|
65
|
+
url: 'https://dex.larrytrustee.ai/explorer',
|
|
66
|
+
txPage: 'https://dex.larrytrustee.ai/explorer/tx/${txHash}',
|
|
67
|
+
accountPage: 'https://dex.larrytrustee.ai/explorer/address/${accountAddress}'
|
|
68
|
+
}],
|
|
69
|
+
logoURIs: {
|
|
70
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ltrstchain/images/ltrst.png'
|
|
71
|
+
},
|
|
72
|
+
images: [{
|
|
73
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ltrstchain/images/ltrst.png'
|
|
74
|
+
}],
|
|
75
|
+
description: 'LTRST Chain is a Cosmos SDK Layer 1 with privacy primitives at the protocol level, built so a family\'s living trust never has to live on a server owned by someone who could sell it, breach it, or quietly mine its data.'
|
|
76
|
+
};
|
|
77
|
+
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;
|
|
@@ -2011,8 +2011,7 @@ const info = {
|
|
|
2011
2011
|
},
|
|
2012
2012
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png',
|
|
2013
2013
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg'
|
|
2014
|
-
}]
|
|
2015
|
-
coingeckoId: 'umee'
|
|
2014
|
+
}]
|
|
2016
2015
|
},
|
|
2017
2016
|
{
|
|
2018
2017
|
description: 'The native token of Gravity Bridge',
|
|
@@ -20,7 +20,6 @@ const info = {
|
|
|
20
20
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png',
|
|
21
21
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg'
|
|
22
22
|
},
|
|
23
|
-
coingeckoId: 'umee',
|
|
24
23
|
images: [{
|
|
25
24
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.png',
|
|
26
25
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/umee/images/umee.svg'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.196",
|
|
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.196"
|
|
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": "b4fab2757f5fb58901a43c90a55f3b3201b193c6"
|
|
43
43
|
}
|