@chain-registry/osmosis 1.67.12 → 1.67.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chain-registry/osmosis",
3
- "version": "1.67.12",
3
+ "version": "1.67.14",
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",
@@ -23,14 +23,13 @@
23
23
  "copy": "copyfiles -f LICENSE README.md package.json dist",
24
24
  "clean": "rimraf dist/**",
25
25
  "prepare": "npm run build",
26
- "build:pkg": "ts-node ./scripts/build.ts",
27
- "codegen": "npm run build:pkg",
26
+ "codegen": "rimraf src/** && ts-node ./scripts/build.ts",
28
27
  "build": "npm run clean; tsc; tsc -p tsconfig.esm.json; npm run copy",
29
28
  "test": "jest",
30
29
  "test:watch": "jest --watch"
31
30
  },
32
31
  "dependencies": {
33
- "@chain-registry/types": "^0.50.12"
32
+ "@chain-registry/types": "^0.50.14"
34
33
  },
35
34
  "keywords": [
36
35
  "chain-registry",
@@ -39,5 +38,5 @@
39
38
  "interchain",
40
39
  "osmosis"
41
40
  ],
42
- "gitHead": "3e56430b6039e85b0529e465967b2ef3416cc696"
41
+ "gitHead": "f7848bb1714bd6e39d34847c54f6d24bd0a51c97"
43
42
  }
package/esm/index.js DELETED
@@ -1,13 +0,0 @@
1
- import asset_list from './asset_list';
2
- import assets from './assets';
3
- import chain from './chain';
4
- import testnet from './testnet';
5
- import testnet_assets from './testnet_assets';
6
- export default {
7
- chain,
8
- assets,
9
- asset_list,
10
- testnet,
11
- testnet_assets
12
- };
13
- export { asset_list, assets, chain, testnet, testnet_assets };
package/index.d.ts DELETED
@@ -1,14 +0,0 @@
1
- import asset_list from './asset_list';
2
- import assets from './assets';
3
- import chain from './chain';
4
- import testnet from './testnet';
5
- import testnet_assets from './testnet_assets';
6
- declare const _default: {
7
- chain: import("@chain-registry/types").Chain;
8
- assets: import("@chain-registry/types").AssetList;
9
- asset_list: import("@chain-registry/types").AssetList;
10
- testnet: import("@chain-registry/types").Chain;
11
- testnet_assets: import("@chain-registry/types").AssetList;
12
- };
13
- export default _default;
14
- export { asset_list, assets, chain, testnet, testnet_assets };
package/index.js DELETED
@@ -1,23 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.testnet_assets = exports.testnet = exports.chain = exports.assets = exports.asset_list = void 0;
7
- const asset_list_1 = __importDefault(require("./asset_list"));
8
- exports.asset_list = asset_list_1.default;
9
- const assets_1 = __importDefault(require("./assets"));
10
- exports.assets = assets_1.default;
11
- const chain_1 = __importDefault(require("./chain"));
12
- exports.chain = chain_1.default;
13
- const testnet_1 = __importDefault(require("./testnet"));
14
- exports.testnet = testnet_1.default;
15
- const testnet_assets_1 = __importDefault(require("./testnet_assets"));
16
- exports.testnet_assets = testnet_assets_1.default;
17
- exports.default = {
18
- chain: chain_1.default,
19
- assets: assets_1.default,
20
- asset_list: asset_list_1.default,
21
- testnet: testnet_1.default,
22
- testnet_assets: testnet_assets_1.default
23
- };