@chain-registry/assets 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,5 +1,5 @@
1
- import ibc_assets from './ibc_assets';
1
+ import asset_lists from './asset_lists';
2
2
  export default {
3
- ibc_assets
3
+ asset_lists
4
4
  };
5
- export { ibc_assets };
5
+ export { asset_lists };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/assets",
3
- "version": "0.5.1",
3
+ "version": "0.6.0",
4
4
  "description": "Chain Registry Asset Lists",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry",
@@ -23,7 +23,7 @@
23
23
  "build": "npm run build:module && npm run build:main",
24
24
  "build:ts": "tsc --project ./tsconfig.json",
25
25
  "buidl": "npm run build && npm run build:ts",
26
- "build:pkg": "babel-node ./scripts/build.js",
26
+ "codegen": "babel-node ./scripts/build.js",
27
27
  "prepare": "npm run build",
28
28
  "lint": "eslint --ext .ts,.tsx,.js .",
29
29
  "format": "eslint --fix . --ext .ts,.tsx,.js",
@@ -53,14 +53,14 @@
53
53
  "@babel/plugin-transform-runtime": "7.18.5",
54
54
  "@babel/preset-env": "7.18.2",
55
55
  "@babel/preset-typescript": "^7.17.12",
56
- "@chain-registry/utils": "^0.3.1",
56
+ "@chain-registry/utils": "^0.4.0",
57
57
  "@types/jest": "^28.1.1",
58
58
  "@typescript-eslint/eslint-plugin": "5.31.0",
59
59
  "@typescript-eslint/parser": "5.31.0",
60
60
  "babel-core": "7.0.0-bridge.0",
61
61
  "babel-jest": "28.1.1",
62
62
  "babel-watch": "^7.0.0",
63
- "chain-registry": "^0.6.1",
63
+ "chain-registry": "^0.7.0",
64
64
  "cross-env": "^7.0.2",
65
65
  "eslint": "8.20.0",
66
66
  "eslint-config-prettier": "^8.5.0",
@@ -75,7 +75,8 @@
75
75
  "typescript": "^4.7.3"
76
76
  },
77
77
  "dependencies": {
78
- "@babel/runtime": "^7.18.3"
78
+ "@babel/runtime": "^7.18.3",
79
+ "@chain-registry/types": "^0.5.0"
79
80
  },
80
- "gitHead": "7720787e0d06debcd6b38b888f92ace4ea98e4ac"
81
+ "gitHead": "7b1714a8a4afe11fd7dc893d1e5790997731d2f8"
81
82
  }
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const asset_lists: AssetList[];
3
+ export default asset_lists;
package/types/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
- import ibc_assets from './ibc_assets';
2
-
3
- export default {
4
- ibc_assets
1
+ import asset_lists from './asset_lists';
2
+ declare const _default: {
3
+ asset_lists: import("@chain-registry/types").AssetList[];
5
4
  };
6
-
7
- export { ibc_assets };
5
+ export default _default;
6
+ export { asset_lists };