@pioneer-platform/pioneer-discovery 0.1.0 → 0.2.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
@@ -1,5 +1,26 @@
1
1
  # @pioneer-platform/pioneer-discovery
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Automated minor version bump for all packages
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @pioneer-platform/loggerdog@8.5.0
13
+ - @pioneer-platform/pioneer-caip@9.4.0
14
+
15
+ ## 0.1.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Automated patch version bump for all packages
20
+ - Updated dependencies
21
+ - @pioneer-platform/loggerdog@8.4.1
22
+ - @pioneer-platform/pioneer-caip@9.3.1
23
+
3
24
  ## 0.1.0
4
25
 
5
26
  ### Minor Changes
package/package.json CHANGED
@@ -1,11 +1,19 @@
1
1
  {
2
2
  "name": "@pioneer-platform/pioneer-discovery",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/main.d.ts",
6
6
  "_moduleAliases": {
7
7
  "@coins": "lib/coins"
8
8
  },
9
+ "scripts": {
10
+ "npm": "pnpm i",
11
+ "build": "tsc -p .",
12
+ "test": "pnpm run build && node __tests__/test-module.js",
13
+ "test-suite": "pnpm run build && node __tests__/tests-common.js",
14
+ "build:watch": "pnpm run build && onchange 'src/**/*.ts' -- pnpm run build",
15
+ "prepublish": "pnpm run build"
16
+ },
9
17
  "devDependencies": {
10
18
  "@types/express": "^4.17.6",
11
19
  "@types/node": "^18.16.0",
@@ -16,16 +24,8 @@
16
24
  "dependencies": {
17
25
  "@coinmasters/tokens": "^3.7.33",
18
26
  "@coinmasters/types": "^4.7.33",
19
- "@pioneer-platform/loggerdog": "^8.4.0",
20
- "@pioneer-platform/pioneer-caip": "^9.3.0",
27
+ "@pioneer-platform/loggerdog": "^8.5.0",
28
+ "@pioneer-platform/pioneer-caip": "^9.4.0",
21
29
  "ethers": "5.7.2"
22
- },
23
- "scripts": {
24
- "npm": "pnpm i",
25
- "build": "tsc -p .",
26
- "test": "pnpm run build && node __tests__/test-module.js",
27
- "test-suite": "pnpm run build && node __tests__/tests-common.js",
28
- "build:watch": "pnpm run build && onchange 'src/**/*.ts' -- pnpm run build",
29
- "prepublish": "pnpm run build"
30
30
  }
31
- }
31
+ }
File without changes
File without changes
File without changes
package/lib/data.d.ts DELETED
@@ -1,3 +0,0 @@
1
- import assetData from "./generatedAssetData.json";
2
- import relatedAssets from "./relatedAssetIndex.json";
3
- export { assetData, relatedAssets };
package/lib/data.js DELETED
@@ -1,21 +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.relatedAssets = exports.assetData = void 0;
7
- /*
8
- Asset Tools
9
-
10
- -highlander
11
-
12
- */
13
- var TAG = ' | pioneer-discovery | ';
14
- var log = require('@pioneer-platform/loggerdog')();
15
- // let router = require("@pioneer-platform/pioneer-router")
16
- // router.init()
17
- //dataByCaip
18
- var generatedAssetData_json_1 = __importDefault(require("./generatedAssetData.json"));
19
- exports.assetData = generatedAssetData_json_1.default;
20
- var relatedAssetIndex_json_1 = __importDefault(require("./relatedAssetIndex.json"));
21
- exports.relatedAssets = relatedAssetIndex_json_1.default;