chain-registry 0.0.29 → 0.0.30

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,14 @@
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.0.30](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.29...chain-registry@0.0.30) (2022-08-12)
7
+
8
+ **Note:** Version bump only for package chain-registry
9
+
10
+
11
+
12
+
13
+
6
14
  ## [0.0.29](https://github.com/cosmology-tech/chain-registry/compare/chain-registry@0.0.28...chain-registry@0.0.29) (2022-08-12)
7
15
 
8
16
  **Note:** Version bump only for package chain-registry
package/main/index.js CHANGED
@@ -29599,12 +29599,14 @@ var ibc_assets = [{
29599
29599
  },
29600
29600
  coingecko_id: "ion"
29601
29601
  }]
29602
- }]; // import { Chain } from './types';
29603
- // interface ChainRegistryModule {
29604
- // chains: Chain[]
29605
- // }
29606
-
29602
+ }];
29607
29603
  exports.ibc_assets = ibc_assets;
29604
+ var chainRegistry = {
29605
+ assets: assets,
29606
+ chains: chains,
29607
+ ibc: ibc,
29608
+ ibc_assets: ibc_assets
29609
+ };
29608
29610
  var _default = {
29609
29611
  assets: assets,
29610
29612
  chains: chains,
package/module/index.js CHANGED
@@ -29590,11 +29590,13 @@ const ibc_assets = [{
29590
29590
  },
29591
29591
  coingecko_id: "ion"
29592
29592
  }]
29593
- }]; // import { Chain } from './types';
29594
- // interface ChainRegistryModule {
29595
- // chains: Chain[]
29596
- // }
29597
-
29593
+ }];
29594
+ const chainRegistry = {
29595
+ assets,
29596
+ chains,
29597
+ ibc,
29598
+ ibc_assets
29599
+ };
29598
29600
  export default {
29599
29601
  assets,
29600
29602
  chains,
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
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",
7
7
  "license": "SEE LICENSE IN LICENSE",
8
8
  "main": "main/index.js",
9
9
  "module": "module/index.js",
10
- "typings": "main/index.d.ts",
10
+ "typings": "types/index.d.ts",
11
11
  "directories": {
12
12
  "lib": "src",
13
13
  "test": "__tests__"
@@ -71,5 +71,5 @@
71
71
  "dependencies": {
72
72
  "@babel/runtime": "^7.18.3"
73
73
  },
74
- "gitHead": "56132836cdb24f0f469e480c97b06c20943ee4d5"
74
+ "gitHead": "5cd490e3becf2681ba6b98c1a62cfdcfda9bf3ba"
75
75
  }