@chain-registry/osmosis 0.5.1 → 0.6.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/module/index.js CHANGED
@@ -1,9 +1,9 @@
1
+ import asset_list from './asset_list';
1
2
  import assets from './assets';
2
3
  import chain from './chain';
3
- import ibc_assets from './ibc_assets';
4
4
  export default {
5
5
  chain,
6
6
  assets,
7
- ibc_assets
7
+ asset_list
8
8
  };
9
- export { assets, chain, ibc_assets };
9
+ export { asset_list, assets, chain };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/osmosis",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "Chain Registry info for Osmosis",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry",
@@ -54,14 +54,14 @@
54
54
  "@babel/plugin-transform-runtime": "7.18.5",
55
55
  "@babel/preset-env": "7.18.2",
56
56
  "@babel/preset-typescript": "^7.17.12",
57
- "@chain-registry/utils": "^0.3.1",
57
+ "@chain-registry/utils": "^0.4.0",
58
58
  "@types/jest": "^28.1.1",
59
59
  "@typescript-eslint/eslint-plugin": "5.31.0",
60
60
  "@typescript-eslint/parser": "5.31.0",
61
61
  "babel-core": "7.0.0-bridge.0",
62
62
  "babel-jest": "28.1.1",
63
63
  "babel-watch": "^7.0.0",
64
- "chain-registry": "^0.6.1",
64
+ "chain-registry": "^0.7.0",
65
65
  "cross-env": "^7.0.2",
66
66
  "eslint": "8.20.0",
67
67
  "eslint-config-prettier": "^8.5.0",
@@ -77,7 +77,7 @@
77
77
  },
78
78
  "dependencies": {
79
79
  "@babel/runtime": "^7.18.3",
80
- "@chain-registry/types": "^0.4.0"
80
+ "@chain-registry/types": "^0.5.0"
81
81
  },
82
- "gitHead": "7720787e0d06debcd6b38b888f92ace4ea98e4ac"
82
+ "gitHead": "7b1714a8a4afe11fd7dc893d1e5790997731d2f8"
83
83
  }
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const asset_list: AssetList;
3
+ export default asset_list;
package/types/index.d.ts CHANGED
@@ -1,10 +1,10 @@
1
+ import asset_list from './asset_list';
1
2
  import assets from './assets';
2
3
  import chain from './chain';
3
- import ibc_assets from './ibc_assets';
4
4
  declare const _default: {
5
5
  chain: import('@chain-registry/types').Chain;
6
6
  assets: import('@chain-registry/types').AssetList;
7
- ibc_assets: import('@chain-registry/types').IBCAsset;
7
+ asset_list: import('@chain-registry/types').AssetList;
8
8
  };
9
9
  export default _default;
10
- export { assets, chain, ibc_assets };
10
+ export { asset_list, assets, chain };
@@ -1,3 +0,0 @@
1
- import { IBCAsset } from '@chain-registry/types';
2
- declare const ibc_assets: IBCAsset;
3
- export default ibc_assets;