@pioneer-platform/avax-network 0.2.6 → 0.3.1

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 ADDED
@@ -0,0 +1,22 @@
1
+ # @pioneer-platform/avax-network
2
+
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Automated patch version bump for all packages
8
+ - Updated dependencies
9
+ - @pioneer-platform/blockbook@8.4.1
10
+ - @pioneer-platform/loggerdog@8.4.1
11
+
12
+ ## 0.3.0
13
+
14
+ ### Minor Changes
15
+
16
+ - Release: minor version bump for all packages
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @pioneer-platform/blockbook@8.4.0
22
+ - @pioneer-platform/loggerdog@8.4.0
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@pioneer-platform/avax-network",
3
- "version": "0.2.6",
3
+ "version": "0.3.1",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "scripts": {
7
7
  "testfile": "cross-env WALLETPACK_TESTING=true mocha --require @babel/register --require @babel/polyfill --exit --timeout 1000000",
8
- "test-babel": "npm run testfile \"__tests__/test-module.js*/*.test.js\"",
9
- "test": "npm run build && node __tests__/test-module.js",
10
- "test-dev": "npm run build && node lib/index.js",
11
- "start": "npm run build:live",
8
+ "test-babel": "pnpm run testfile \"__tests__/test-module.js*/*.test.js\"",
9
+ "test": "pnpm run build && node __tests__/test-module.js",
10
+ "test-dev": "pnpm run build && node lib/index.js",
11
+ "start": "pnpm run build:live",
12
12
  "build": "tsc -p .",
13
- "prepublish": "npm run build",
14
- "build:watch": "npm run build && onchange 'src/**/*.ts' -- npm run build"
13
+ "prepublish": "pnpm run build",
14
+ "build:watch": "pnpm run build && onchange 'src/**/*.ts' -- pnpm run build"
15
15
  },
16
16
  "dependencies": {
17
17
  "@ethersproject/providers": "^5.1.0",
18
- "@pioneer-platform/blockbook": "^8.3.7",
19
- "@pioneer-platform/loggerdog": "^8.3.1",
18
+ "@pioneer-platform/blockbook": "^8.4.1",
19
+ "@pioneer-platform/loggerdog": "^8.4.1",
20
20
  "@xchainjs/xchain-util": "^0.2.6",
21
- "axios": "^1.3.4",
21
+ "axios": "^1.6.0",
22
22
  "dotenv": "^8.2.0",
23
- "ethers": "^5.1.0",
23
+ "ethers": "^6.6.4",
24
24
  "moralis-v1": "^1.11.0",
25
25
  "request-promise": "^4.2.6",
26
26
  "wait-promise": "^0.4.1",
@@ -28,9 +28,9 @@
28
28
  "web3-utils": "^1.3.6"
29
29
  },
30
30
  "devDependencies": {
31
- "@types/node": "^13.13.48",
31
+ "@types/node": "^18.16.0",
32
32
  "ts-node": "^10.9.1",
33
- "typescript": "^5.0.2"
33
+ "typescript": "^5.0.4"
34
34
  },
35
35
  "description": "",
36
36
  "keywords": [
@@ -38,5 +38,5 @@
38
38
  ],
39
39
  "author": "Bithighlander <pioneer@gmail.com>",
40
40
  "license": "GPL",
41
- "gitHead": "e4a7114f00103ee48533c369dba4a02021ddcbe4"
42
- }
41
+ "gitHead": "a76012f6693a12181c4744e53e977a9eaeef0ed3"
42
+ }
package/tsconfig.json CHANGED
@@ -1,13 +1,25 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "target": "es5",
3
+ "target": "es2020",
4
4
  "module": "commonjs",
5
- "lib": ["es6", "es2015", "dom"],
5
+ "lib": ["es2020", "dom"],
6
6
  "declaration": true,
7
- "outDir": "lib",
8
- "rootDir": "src",
9
- "strict": true,
10
- "types": ["node"],
11
- "esModuleInterop": true
12
- }
7
+ "outDir": "./lib",
8
+ "rootDir": "./src",
9
+ "strict": false,
10
+ "noImplicitAny": false,
11
+ "strictNullChecks": false,
12
+ "strictFunctionTypes": false,
13
+ "strictBindCallApply": false,
14
+ "strictPropertyInitialization": false,
15
+ "noImplicitThis": false,
16
+ "alwaysStrict": false,
17
+ "esModuleInterop": true,
18
+ "resolveJsonModule": true,
19
+ "skipLibCheck": true,
20
+ "forceConsistentCasingInFileNames": true,
21
+ "types": ["node"]
22
+ },
23
+ "include": ["src"],
24
+ "exclude": ["node_modules", "**/__tests__/*"]
13
25
  }