@chain-registry/osmosis 0.4.4 → 0.5.0

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/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.5.0](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.6...@chain-registry/osmosis@0.5.0) (2022-08-14)
7
+
8
+ **Note:** Version bump only for package @chain-registry/osmosis
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.4.6](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.5...@chain-registry/osmosis@0.4.6) (2022-08-14)
15
+
16
+ **Note:** Version bump only for package @chain-registry/osmosis
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.4.5](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.4...@chain-registry/osmosis@0.4.5) (2022-08-14)
23
+
24
+ **Note:** Version bump only for package @chain-registry/osmosis
25
+
26
+
27
+
28
+
29
+
6
30
  ## [0.4.4](https://github.com/cosmology-tech/chain-registry/compare/@chain-registry/osmosis@0.4.3...@chain-registry/osmosis@0.4.4) (2022-08-14)
7
31
 
8
32
  **Note:** Version bump only for package @chain-registry/osmosis
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @chain-registry/osmosis
2
2
 
3
3
  <p align="center" width="100%">
4
- <img height="90" src="https://user-images.githubusercontent.com/545047/184518988-10c0046e-8ded-4f40-9e4c-08280345a325.svg" />
4
+ <img height="90" src="https://user-images.githubusercontent.com/545047/184519024-2d34bf20-2440-4837-943f-4915a46409f5.svg" />
5
5
  </p>
6
6
 
7
7
  <p align="center" width="100%">
@@ -21,3 +21,43 @@ npm install @chain-registry/osmosis
21
21
  ```js
22
22
  import { chain, assets, ibc_assets } from '@chain-registry/osmosis';
23
23
  ```
24
+
25
+ ```js
26
+ console.log(ibc_assets);
27
+ {
28
+ chain_name: 'osmosis',
29
+ assets: [
30
+ {
31
+ description: 'Somm Token (SOMM) is the native staking token of the Sommelier Chain',
32
+ denom_units: [Array],
33
+ base: 'ibc/9BBA9A1C257E971E38C1422780CE6F0B0686F0A3085E2D61118D904BFE0F5F5E',
34
+ name: 'Somm',
35
+ display: 'somm',
36
+ symbol: 'SOMM',
37
+ logo_URIs: [Object],
38
+ coingecko_id: 'sommelier',
39
+ ibc: [Object]
40
+ },
41
+ {
42
+ description: 'The native token of Stargaze',
43
+ denom_units: [Array],
44
+ base: 'ibc/987C17B11ABC2B20019178ACE62929FE9840202CE79498E29FE8E5CB02B7C0A4',
45
+ name: 'Stargaze',
46
+ display: 'stars',
47
+ symbol: 'STARS',
48
+ logo_URIs: [Object],
49
+ coingecko_id: 'stargaze',
50
+ ibc: [Object]
51
+ },
52
+ // ... more assets
53
+ ]
54
+ }
55
+ ```
56
+
57
+ ## Credits
58
+
59
+ Built by Cosmology — if you like our tools, please consider delegating to [our validator](https://www.mintscan.io/juno/validators/junovaloper1pr5qgj4jg47lvsnejtfvk78090shvuctgdwdm5)
60
+
61
+ Code built with the help of these related projects:
62
+
63
+ * [chain-registry](https://github.com/cosmology/chain-registry) an npm module for the official Cosmos chain-registry
package/main/assets.js CHANGED
@@ -4,48 +4,49 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports["default"] = void 0;
7
- var _default = {
8
- "$schema": "../assetlist.schema.json",
9
- "chain_name": "osmosis",
10
- "assets": [{
11
- "description": "The native token of Osmosis",
12
- "denom_units": [{
13
- "denom": "uosmo",
14
- "exponent": 0,
15
- "aliases": []
7
+ var assets = {
8
+ $schema: '../assetlist.schema.json',
9
+ chain_name: 'osmosis',
10
+ assets: [{
11
+ description: 'The native token of Osmosis',
12
+ denom_units: [{
13
+ denom: 'uosmo',
14
+ exponent: 0,
15
+ aliases: []
16
16
  }, {
17
- "denom": "osmo",
18
- "exponent": 6,
19
- "aliases": []
17
+ denom: 'osmo',
18
+ exponent: 6,
19
+ aliases: []
20
20
  }],
21
- "base": "uosmo",
22
- "name": "Osmosis",
23
- "display": "osmo",
24
- "symbol": "OSMO",
25
- "logo_URIs": {
26
- "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png",
27
- "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg"
21
+ base: 'uosmo',
22
+ name: 'Osmosis',
23
+ display: 'osmo',
24
+ symbol: 'OSMO',
25
+ logo_URIs: {
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
27
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
28
28
  },
29
- "coingecko_id": "osmosis",
30
- "keywords": ["dex", "staking"]
29
+ coingecko_id: 'osmosis',
30
+ keywords: ['dex', 'staking']
31
31
  }, {
32
- "denom_units": [{
33
- "denom": "uion",
34
- "exponent": 0
32
+ denom_units: [{
33
+ denom: 'uion',
34
+ exponent: 0
35
35
  }, {
36
- "denom": "ion",
37
- "exponent": 6
36
+ denom: 'ion',
37
+ exponent: 6
38
38
  }],
39
- "base": "uion",
40
- "name": "Ion",
41
- "display": "ion",
42
- "symbol": "ION",
43
- "logo_URIs": {
44
- "png": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png",
45
- "svg": "https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg"
39
+ base: 'uion',
40
+ name: 'Ion',
41
+ display: 'ion',
42
+ symbol: 'ION',
43
+ logo_URIs: {
44
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.png',
45
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/ion.svg'
46
46
  },
47
- "coingecko_id": "ion",
48
- "keywords": ["memecoin"]
47
+ coingecko_id: 'ion',
48
+ keywords: ['memecoin']
49
49
  }]
50
50
  };
51
+ var _default = assets;
51
52
  exports["default"] = _default;