chain-registry 2.0.178 → 2.0.179

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.
@@ -102,6 +102,45 @@ const info = {
102
102
  },
103
103
  coingeckoId: 'osmosis'
104
104
  },
105
+ {
106
+ description: 'LMN from Lumen',
107
+ denomUnits: [{
108
+ denom: 'ibc/693DDB2D9B4260D67C8136C22D837F37488E0FBD81857D8E9C6022332EA26E33',
109
+ exponent: 0,
110
+ aliases: ['ulmn']
111
+ }, {
112
+ denom: 'lmn',
113
+ exponent: 6,
114
+ aliases: []
115
+ }],
116
+ typeAsset: 'ics20',
117
+ base: 'ibc/693DDB2D9B4260D67C8136C22D837F37488E0FBD81857D8E9C6022332EA26E33',
118
+ name: 'Lumen',
119
+ display: 'lmn',
120
+ symbol: 'LMN',
121
+ traces: [{
122
+ type: 'ibc',
123
+ counterparty: {
124
+ chainName: 'lumen',
125
+ baseDenom: 'ulmn',
126
+ channelId: 'channel-0'
127
+ },
128
+ chain: {
129
+ channelId: 'channel-10',
130
+ path: 'transfer/channel-10/ulmn'
131
+ }
132
+ }],
133
+ images: [{
134
+ imageSync: {
135
+ chainName: 'lumen',
136
+ baseDenom: 'ulmn'
137
+ },
138
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
139
+ }],
140
+ logoURIs: {
141
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
142
+ }
143
+ },
105
144
  {
106
145
  description: 'Crypto2Mars Community Token',
107
146
  denomUnits: [{
@@ -91,6 +91,37 @@ const info = [
91
91
  }
92
92
  }]
93
93
  },
94
+ {
95
+ $schema: '../ibc_data.schema.json',
96
+ chain1: {
97
+ chainName: 'beezee',
98
+ chainId: 'beezee-1',
99
+ clientId: '07-tendermint-38',
100
+ connectionId: 'connection-10'
101
+ },
102
+ chain2: {
103
+ chainName: 'lumen',
104
+ chainId: 'lumen',
105
+ clientId: '07-tendermint-0',
106
+ connectionId: 'connection-0'
107
+ },
108
+ channels: [{
109
+ chain1: {
110
+ channelId: 'channel-10',
111
+ portId: 'transfer'
112
+ },
113
+ chain2: {
114
+ channelId: 'channel-0',
115
+ portId: 'transfer'
116
+ },
117
+ ordering: 'unordered',
118
+ version: 'ics20-1',
119
+ tags: {
120
+ preferred: true,
121
+ status: 'ACTIVE'
122
+ }
123
+ }]
124
+ },
94
125
  {
95
126
  $schema: '../ibc_data.schema.json',
96
127
  chain1: {
@@ -91,6 +91,7 @@ import * as _lava from './lava';
91
91
  import * as _likecoin from './likecoin';
92
92
  import * as _lombardledger from './lombardledger';
93
93
  import * as _lorenzo from './lorenzo';
94
+ import * as _lumen from './lumen';
94
95
  import * as _lumera from './lumera';
95
96
  import * as _lumnetwork from './lumnetwork';
96
97
  import * as _mande from './mande';
@@ -269,6 +270,7 @@ const ibcData = [
269
270
  ..._likecoin.ibcData,
270
271
  ..._lombardledger.ibcData,
271
272
  ..._lorenzo.ibcData,
273
+ ..._lumen.ibcData,
272
274
  ..._lumera.ibcData,
273
275
  ..._lumnetwork.ibcData,
274
276
  ..._mande.ibcData,
@@ -65,10 +65,6 @@ const info = {
65
65
  address: 'https://rpc.kyve.network',
66
66
  provider: 'kyve'
67
67
  },
68
- {
69
- address: 'https://rpc-kyve.ecostake.com',
70
- provider: 'ecostake'
71
- },
72
68
  {
73
69
  address: 'https://rpc.lavenderfive.com:443/kyve',
74
70
  provider: 'Lavender.Five Nodes 🐝'
@@ -123,10 +119,6 @@ const info = {
123
119
  address: 'https://rest.lavenderfive.com:443/kyve',
124
120
  provider: 'Lavender.Five Nodes 🐝'
125
121
  },
126
- {
127
- address: 'https://rest-kyve.ecostake.com',
128
- provider: 'ecostake'
129
- },
130
122
  {
131
123
  address: 'https://lcd-kyve.imperator.co',
132
124
  provider: 'Imperator.co'
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'beezee',
5
+ chainId: 'beezee-1',
6
+ clientId: '07-tendermint-38',
7
+ connectionId: 'connection-10'
8
+ },
9
+ chain2: {
10
+ chainName: 'lumen',
11
+ chainId: 'lumen',
12
+ clientId: '07-tendermint-0',
13
+ connectionId: 'connection-0'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-10',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-0',
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;
@@ -1,4 +1,6 @@
1
1
  import _assetList from './asset-list';
2
2
  import _chain from './chain';
3
+ import _ibcData from './ibc-data';
3
4
  export const assetList = _assetList;
4
5
  export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -53,6 +53,29 @@ const info = {
53
53
  }],
54
54
  typeAsset: 'sdk.coin'
55
55
  },
56
+ {
57
+ description: 'Manifest Power token',
58
+ denomUnits: [{
59
+ denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
60
+ exponent: 0
61
+ }, {
62
+ denom: 'pwr',
63
+ exponent: 6
64
+ }],
65
+ base: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
66
+ name: 'Manifest Power Token',
67
+ display: 'pwr',
68
+ symbol: 'PWR',
69
+ logoURIs: {
70
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
71
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
72
+ },
73
+ images: [{
74
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
75
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
76
+ }],
77
+ typeAsset: 'sdk.coin'
78
+ },
56
79
  {
57
80
  description: 'The native token of Osmosis',
58
81
  extendedDescription: 'Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.',
@@ -18,6 +18,12 @@ const info = {
18
18
  lowGasPrice: 1.05,
19
19
  averageGasPrice: 1.1,
20
20
  highGasPrice: 3
21
+ }, {
22
+ denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
23
+ fixedMinGasPrice: 0.37,
24
+ lowGasPrice: 0.4,
25
+ averageGasPrice: 0.5,
26
+ highGasPrice: 1
21
27
  }]
22
28
  },
23
29
  staking: {
@@ -27,10 +33,10 @@ const info = {
27
33
  },
28
34
  codebase: {
29
35
  gitRepo: 'https://github.com/liftedinit/manifest-ledger',
30
- recommendedVersion: 'v1.0.5',
31
- compatibleVersions: ['v1.0.3', 'v1.0.5'],
36
+ recommendedVersion: 'v1.0.14',
37
+ compatibleVersions: ['v1.0.14'],
32
38
  binaries: {
33
- "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.5/manifest-ledger-v1.0.5-linux-amd64.tar.gz'
39
+ "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.14/manifest-ledger-v1.0.14-linux-amd64.tar.gz'
34
40
  },
35
41
  genesis: {
36
42
  genesisUrl: 'https://nodes.liftedinit.app/manifest/rpc/genesis?'
@@ -60,10 +60,6 @@ const info = {
60
60
  address: 'https://passage-rpc.staketab.org:443',
61
61
  provider: 'Staketab'
62
62
  },
63
- {
64
- address: 'https://rpc-passage.ecostake.com',
65
- provider: 'ecostake'
66
- },
67
63
  {
68
64
  address: 'https://rpc.lavenderfive.com:443/passage',
69
65
  provider: 'Lavender.Five Nodes 🐝'
@@ -122,10 +118,6 @@ const info = {
122
118
  address: 'https://passage-rest.staketab.org',
123
119
  provider: 'Staketab'
124
120
  },
125
- {
126
- address: 'https://rest-passage.ecostake.com',
127
- provider: 'ecostake'
128
- },
129
121
  {
130
122
  address: 'https://rest.lavenderfive.com:443/passage',
131
123
  provider: 'Lavender.Five Nodes 🐝'
@@ -53,6 +53,29 @@ const info = {
53
53
  }],
54
54
  typeAsset: 'sdk.coin'
55
55
  },
56
+ {
57
+ description: 'Manifest Power token',
58
+ denomUnits: [{
59
+ denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
60
+ exponent: 0
61
+ }, {
62
+ denom: 'pwr',
63
+ exponent: 6
64
+ }],
65
+ base: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
66
+ name: 'Manifest Power Token',
67
+ display: 'pwr',
68
+ symbol: 'PWR',
69
+ logoURIs: {
70
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
71
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
72
+ },
73
+ images: [{
74
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
75
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
76
+ }],
77
+ typeAsset: 'sdk.coin'
78
+ },
56
79
  {
57
80
  description: 'Osmosis token on Manifest Ledger Testnet',
58
81
  denomUnits: [{
@@ -18,6 +18,12 @@ const info = {
18
18
  lowGasPrice: 1.05,
19
19
  averageGasPrice: 1.1,
20
20
  highGasPrice: 3
21
+ }, {
22
+ denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
23
+ fixedMinGasPrice: 0.37,
24
+ lowGasPrice: 0.4,
25
+ averageGasPrice: 0.5,
26
+ highGasPrice: 1
21
27
  }]
22
28
  },
23
29
  staking: {
@@ -27,10 +33,10 @@ const info = {
27
33
  },
28
34
  codebase: {
29
35
  gitRepo: 'https://github.com/liftedinit/manifest-ledger',
30
- recommendedVersion: 'v1.0.3',
31
- compatibleVersions: ['v1.0.3'],
36
+ recommendedVersion: 'v2.0.1',
37
+ compatibleVersions: ['v2.0.1'],
32
38
  binaries: {
33
- "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.3/manifest-ledger-v1.0.3-linux-amd64.tar.gz'
39
+ "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v2.0.1/manifest-ledger-v2.0.1-linux-amd64.tar.gz'
34
40
  },
35
41
  genesis: {
36
42
  genesisUrl: 'https://nodes.liftedinit.tech/manifest/testnet/rpc/genesis?'
@@ -104,6 +104,45 @@ const info = {
104
104
  },
105
105
  coingeckoId: 'osmosis'
106
106
  },
107
+ {
108
+ description: 'LMN from Lumen',
109
+ denomUnits: [{
110
+ denom: 'ibc/693DDB2D9B4260D67C8136C22D837F37488E0FBD81857D8E9C6022332EA26E33',
111
+ exponent: 0,
112
+ aliases: ['ulmn']
113
+ }, {
114
+ denom: 'lmn',
115
+ exponent: 6,
116
+ aliases: []
117
+ }],
118
+ typeAsset: 'ics20',
119
+ base: 'ibc/693DDB2D9B4260D67C8136C22D837F37488E0FBD81857D8E9C6022332EA26E33',
120
+ name: 'Lumen',
121
+ display: 'lmn',
122
+ symbol: 'LMN',
123
+ traces: [{
124
+ type: 'ibc',
125
+ counterparty: {
126
+ chainName: 'lumen',
127
+ baseDenom: 'ulmn',
128
+ channelId: 'channel-0'
129
+ },
130
+ chain: {
131
+ channelId: 'channel-10',
132
+ path: 'transfer/channel-10/ulmn'
133
+ }
134
+ }],
135
+ images: [{
136
+ imageSync: {
137
+ chainName: 'lumen',
138
+ baseDenom: 'ulmn'
139
+ },
140
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
141
+ }],
142
+ logoURIs: {
143
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/lumen/images/lmn.png'
144
+ }
145
+ },
107
146
  {
108
147
  description: 'Crypto2Mars Community Token',
109
148
  denomUnits: [{
@@ -93,6 +93,37 @@ const info = [
93
93
  }
94
94
  }]
95
95
  },
96
+ {
97
+ $schema: '../ibc_data.schema.json',
98
+ chain1: {
99
+ chainName: 'beezee',
100
+ chainId: 'beezee-1',
101
+ clientId: '07-tendermint-38',
102
+ connectionId: 'connection-10'
103
+ },
104
+ chain2: {
105
+ chainName: 'lumen',
106
+ chainId: 'lumen',
107
+ clientId: '07-tendermint-0',
108
+ connectionId: 'connection-0'
109
+ },
110
+ channels: [{
111
+ chain1: {
112
+ channelId: 'channel-10',
113
+ portId: 'transfer'
114
+ },
115
+ chain2: {
116
+ channelId: 'channel-0',
117
+ portId: 'transfer'
118
+ },
119
+ ordering: 'unordered',
120
+ version: 'ics20-1',
121
+ tags: {
122
+ preferred: true,
123
+ status: 'ACTIVE'
124
+ }
125
+ }]
126
+ },
96
127
  {
97
128
  $schema: '../ibc_data.schema.json',
98
129
  chain1: {
@@ -116,6 +116,7 @@ const _lava = __importStar(require("./lava"));
116
116
  const _likecoin = __importStar(require("./likecoin"));
117
117
  const _lombardledger = __importStar(require("./lombardledger"));
118
118
  const _lorenzo = __importStar(require("./lorenzo"));
119
+ const _lumen = __importStar(require("./lumen"));
119
120
  const _lumera = __importStar(require("./lumera"));
120
121
  const _lumnetwork = __importStar(require("./lumnetwork"));
121
122
  const _mande = __importStar(require("./mande"));
@@ -294,6 +295,7 @@ const ibcData = [
294
295
  ..._likecoin.ibcData,
295
296
  ..._lombardledger.ibcData,
296
297
  ..._lorenzo.ibcData,
298
+ ..._lumen.ibcData,
297
299
  ..._lumera.ibcData,
298
300
  ..._lumnetwork.ibcData,
299
301
  ..._mande.ibcData,
@@ -67,10 +67,6 @@ const info = {
67
67
  address: 'https://rpc.kyve.network',
68
68
  provider: 'kyve'
69
69
  },
70
- {
71
- address: 'https://rpc-kyve.ecostake.com',
72
- provider: 'ecostake'
73
- },
74
70
  {
75
71
  address: 'https://rpc.lavenderfive.com:443/kyve',
76
72
  provider: 'Lavender.Five Nodes 🐝'
@@ -125,10 +121,6 @@ const info = {
125
121
  address: 'https://rest.lavenderfive.com:443/kyve',
126
122
  provider: 'Lavender.Five Nodes 🐝'
127
123
  },
128
- {
129
- address: 'https://rest-kyve.ecostake.com',
130
- provider: 'ecostake'
131
- },
132
124
  {
133
125
  address: 'https://lcd-kyve.imperator.co',
134
126
  provider: 'Imperator.co'
@@ -0,0 +1,3 @@
1
+ import { IBCData } from '@chain-registry/types';
2
+ declare const info: IBCData[];
3
+ export default info;
@@ -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: 'beezee',
7
+ chainId: 'beezee-1',
8
+ clientId: '07-tendermint-38',
9
+ connectionId: 'connection-10'
10
+ },
11
+ chain2: {
12
+ chainName: 'lumen',
13
+ chainId: 'lumen',
14
+ clientId: '07-tendermint-0',
15
+ connectionId: 'connection-0'
16
+ },
17
+ channels: [{
18
+ chain1: {
19
+ channelId: 'channel-10',
20
+ portId: 'transfer'
21
+ },
22
+ chain2: {
23
+ channelId: 'channel-0',
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;
@@ -1,2 +1,3 @@
1
1
  export declare const assetList: import("@chain-registry/types").AssetList;
2
2
  export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibcData: import("@chain-registry/types").IBCData[];
@@ -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;
@@ -55,6 +55,29 @@ const info = {
55
55
  }],
56
56
  typeAsset: 'sdk.coin'
57
57
  },
58
+ {
59
+ description: 'Manifest Power token',
60
+ denomUnits: [{
61
+ denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
62
+ exponent: 0
63
+ }, {
64
+ denom: 'pwr',
65
+ exponent: 6
66
+ }],
67
+ base: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
68
+ name: 'Manifest Power Token',
69
+ display: 'pwr',
70
+ symbol: 'PWR',
71
+ logoURIs: {
72
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
73
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
74
+ },
75
+ images: [{
76
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
77
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
78
+ }],
79
+ typeAsset: 'sdk.coin'
80
+ },
58
81
  {
59
82
  description: 'The native token of Osmosis',
60
83
  extendedDescription: 'Osmosis (OSMO) is the premier DEX and cross-chain DeFi hub within the Cosmos ecosystem, a network of over 50 sovereign, interoperable blockchains seamlessly connected through the Inter-Blockchain Communication Protocol (IBC). Pioneering in its approach, Osmosis offers a dynamic trading and liquidity provision experience, integrating non-IBC assets from other ecosystems, including Ethereum, Solana, Avalanche, and Polkadot. Initially adopting Balancer-style pools, Osmosis now also features a concentrated liquidity model that is orders of magnitude more capital efficient, meaning that significantly less liquidity is required to handle the same amount of trading volume with minimal slippage.\n\nAs a true appchain, Osmosis has greater control over the full blockchain stack than traditional smart contract DEXs, which must follow the code of the parent chain that it is built on. This fine-grained control has enabled, for example, the development of Superfluid Staking, an extension of Proof of Stake that allows assets at the application layer to be staked to secure the chain. The customizability of appchains also allows implementing features like the Protocol Revenue module, which enables Osmosis to conduct on-chain arbitrage on behalf of OSMO stakers, balancing prices across pools while generating real yield revenue from this volume. Additionally, as a sovereign appchain, Osmosis governance can vote on upgrades to the protocol. One example of this was the introduction of a Taker Fee, which switched on the collection of exchange fees to generate diverse yield from Osmosis volume and distribute it to OSMO stakers.\n\nOsmosis is bringing the full centralized exchange experience to the decentralized world by building a cross-chain native DEX and trading suite that connects all chains over IBC, including Ethereum and Bitcoin. To reach this goal, Osmosis hosts an ever-expanding suite of DeFi applications aimed at providing a one-stop experience that includes lending, credit, margin, DeFi strategy vaults, power perps, fiat on-ramps, NFTs, stablecoins, and more — all of the functionalities that centralized exchange offer and more, in the trust-minimized environment of decentralized finance.',
@@ -20,6 +20,12 @@ const info = {
20
20
  lowGasPrice: 1.05,
21
21
  averageGasPrice: 1.1,
22
22
  highGasPrice: 3
23
+ }, {
24
+ denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
25
+ fixedMinGasPrice: 0.37,
26
+ lowGasPrice: 0.4,
27
+ averageGasPrice: 0.5,
28
+ highGasPrice: 1
23
29
  }]
24
30
  },
25
31
  staking: {
@@ -29,10 +35,10 @@ const info = {
29
35
  },
30
36
  codebase: {
31
37
  gitRepo: 'https://github.com/liftedinit/manifest-ledger',
32
- recommendedVersion: 'v1.0.5',
33
- compatibleVersions: ['v1.0.3', 'v1.0.5'],
38
+ recommendedVersion: 'v1.0.14',
39
+ compatibleVersions: ['v1.0.14'],
34
40
  binaries: {
35
- "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.5/manifest-ledger-v1.0.5-linux-amd64.tar.gz'
41
+ "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.14/manifest-ledger-v1.0.14-linux-amd64.tar.gz'
36
42
  },
37
43
  genesis: {
38
44
  genesisUrl: 'https://nodes.liftedinit.app/manifest/rpc/genesis?'
@@ -62,10 +62,6 @@ const info = {
62
62
  address: 'https://passage-rpc.staketab.org:443',
63
63
  provider: 'Staketab'
64
64
  },
65
- {
66
- address: 'https://rpc-passage.ecostake.com',
67
- provider: 'ecostake'
68
- },
69
65
  {
70
66
  address: 'https://rpc.lavenderfive.com:443/passage',
71
67
  provider: 'Lavender.Five Nodes 🐝'
@@ -124,10 +120,6 @@ const info = {
124
120
  address: 'https://passage-rest.staketab.org',
125
121
  provider: 'Staketab'
126
122
  },
127
- {
128
- address: 'https://rest-passage.ecostake.com',
129
- provider: 'ecostake'
130
- },
131
123
  {
132
124
  address: 'https://rest.lavenderfive.com:443/passage',
133
125
  provider: 'Lavender.Five Nodes 🐝'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.178",
3
+ "version": "2.0.179",
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.178"
32
+ "@chain-registry/types": "^2.0.179"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "1e32b73a4c50a58794fcb03d88a72331bffc2504"
42
+ "gitHead": "037b6974875ab951c4a96eff5d3f2fe7833679e0"
43
43
  }
@@ -55,6 +55,29 @@ const info = {
55
55
  }],
56
56
  typeAsset: 'sdk.coin'
57
57
  },
58
+ {
59
+ description: 'Manifest Power token',
60
+ denomUnits: [{
61
+ denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
62
+ exponent: 0
63
+ }, {
64
+ denom: 'pwr',
65
+ exponent: 6
66
+ }],
67
+ base: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
68
+ name: 'Manifest Power Token',
69
+ display: 'pwr',
70
+ symbol: 'PWR',
71
+ logoURIs: {
72
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
73
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
74
+ },
75
+ images: [{
76
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.png',
77
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/manifest/images/manifest.svg'
78
+ }],
79
+ typeAsset: 'sdk.coin'
80
+ },
58
81
  {
59
82
  description: 'Osmosis token on Manifest Ledger Testnet',
60
83
  denomUnits: [{
@@ -20,6 +20,12 @@ const info = {
20
20
  lowGasPrice: 1.05,
21
21
  averageGasPrice: 1.1,
22
22
  highGasPrice: 3
23
+ }, {
24
+ denom: 'factory/manifest1afk9zr2hn2jsac63h4hm60vl9z3e5u69gndzf7c99cqge3vzwjzsfmy9qj/upwr',
25
+ fixedMinGasPrice: 0.37,
26
+ lowGasPrice: 0.4,
27
+ averageGasPrice: 0.5,
28
+ highGasPrice: 1
23
29
  }]
24
30
  },
25
31
  staking: {
@@ -29,10 +35,10 @@ const info = {
29
35
  },
30
36
  codebase: {
31
37
  gitRepo: 'https://github.com/liftedinit/manifest-ledger',
32
- recommendedVersion: 'v1.0.3',
33
- compatibleVersions: ['v1.0.3'],
38
+ recommendedVersion: 'v2.0.1',
39
+ compatibleVersions: ['v2.0.1'],
34
40
  binaries: {
35
- "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v1.0.3/manifest-ledger-v1.0.3-linux-amd64.tar.gz'
41
+ "linux/amd64": 'https://github.com/liftedinit/manifest-ledger/releases/download/v2.0.1/manifest-ledger-v2.0.1-linux-amd64.tar.gz'
36
42
  },
37
43
  genesis: {
38
44
  genesisUrl: 'https://nodes.liftedinit.tech/manifest/testnet/rpc/genesis?'