@pioneer-platform/uniswap-client 8.39.10 → 8.44.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.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > @pioneer-platform/uniswap-client@8.39.10 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/intergrations/uniswap
3
+ > @pioneer-platform/uniswap-client@8.42.0 build /Users/highlander/WebstormProjects/keepkey-stack/projects/pioneer/modules/intergrations/uniswap
4
4
  > tsc -p .
5
5
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,66 @@
1
1
  # @pioneer-platform/uniswap-client
2
2
 
3
+ ## 8.44.0
4
+
5
+ ### Minor Changes
6
+
7
+ - chore: feat(e2e): add blue API support to swap roundtrip tests
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @pioneer-platform/pioneer-discovery@8.44.0
13
+
14
+ ## 8.43.0
15
+
16
+ ### Minor Changes
17
+
18
+ - feat(e2e): add blue API support to swap roundtrip tests
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @pioneer-platform/pioneer-discovery@8.43.0
24
+
25
+ ## 8.42.0
26
+
27
+ ### Minor Changes
28
+
29
+ - feat(swaps): make GetPendingSwap idempotent with auto-backfill
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies
34
+ - @pioneer-platform/pioneer-discovery@8.42.0
35
+
36
+ ## 8.41.0
37
+
38
+ ### Minor Changes
39
+
40
+ - feat(monorepo): production release preparation with strict TypeScript and enhanced swap functionality
41
+
42
+ ### Patch Changes
43
+
44
+ - Updated dependencies
45
+ - @pioneer-platform/maya-network@8.15.0
46
+ - @pioneer-platform/pioneer-discovery@8.41.0
47
+ - @pioneer-platform/pioneer-caip@9.21.0
48
+ - @pioneer-platform/pioneer-coins@9.20.0
49
+
50
+ ## 8.40.0
51
+
52
+ ### Minor Changes
53
+
54
+ - feat(pioneer-client): add client-side host override for staging/blue testing
55
+
56
+ ### Patch Changes
57
+
58
+ - Updated dependencies
59
+ - @pioneer-platform/maya-network@8.14.0
60
+ - @pioneer-platform/pioneer-discovery@8.40.0
61
+ - @pioneer-platform/pioneer-caip@9.20.0
62
+ - @pioneer-platform/pioneer-coins@9.19.0
63
+
3
64
  ## 8.39.10
4
65
 
5
66
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pioneer-platform/uniswap-client",
3
- "version": "8.39.10",
3
+ "version": "8.44.0",
4
4
  "main": "./lib/index.js",
5
5
  "types": "./lib/index.d.ts",
6
6
  "dependencies": {
@@ -14,10 +14,10 @@
14
14
  "ms.macro": "^2.0.0",
15
15
  "uuidv4": "^6.2.13",
16
16
  "@pioneer-platform/loggerdog": "8.11.0",
17
- "@pioneer-platform/maya-network": "8.13.23",
18
- "@pioneer-platform/pioneer-coins": "9.18.3",
19
- "@pioneer-platform/pioneer-discovery": "8.39.10",
20
- "@pioneer-platform/pioneer-caip": "9.19.3"
17
+ "@pioneer-platform/maya-network": "8.15.0",
18
+ "@pioneer-platform/pioneer-discovery": "8.44.0",
19
+ "@pioneer-platform/pioneer-coins": "9.20.0",
20
+ "@pioneer-platform/pioneer-caip": "9.21.0"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/async-retry": "^1.4.8",
package/tsconfig.json CHANGED
@@ -2,7 +2,10 @@
2
2
  "compilerOptions": {
3
3
  "target": "es2020",
4
4
  "module": "commonjs",
5
- "lib": ["es2020", "dom"],
5
+ "lib": [
6
+ "es2020",
7
+ "dom"
8
+ ],
6
9
  "declaration": true,
7
10
  "outDir": "./lib",
8
11
  "rootDir": "./src",
@@ -16,15 +19,19 @@
16
19
  "alwaysStrict": false,
17
20
  "esModuleInterop": true,
18
21
  "resolveJsonModule": true,
19
- "skipLibCheck": true,
20
22
  "forceConsistentCasingInFileNames": true,
21
- "types": ["node"]
23
+ "types": [
24
+ "node"
25
+ ],
26
+ "skipLibCheck": true
22
27
  },
23
- "include": ["src/**/*.ts"],
28
+ "include": [
29
+ "src/**/*.ts"
30
+ ],
24
31
  "exclude": [
25
- "node_modules",
26
- "**/__tests__/*",
27
- "src/abis/**/*",
32
+ "node_modules",
33
+ "**/__tests__/*",
34
+ "src/abis/**/*",
28
35
  "src/uniswap/**/*",
29
36
  "src/utils/**/*",
30
37
  "src/routing/**/*",