@pioneer-platform/uniswap-client 8.41.0 → 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.
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +33 -0
- package/package.json +4 -4
- package/tsconfig.json +14 -6
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @pioneer-platform/uniswap-client@8.
|
|
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,38 @@
|
|
|
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
|
+
|
|
3
36
|
## 8.41.0
|
|
4
37
|
|
|
5
38
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pioneer-platform/uniswap-client",
|
|
3
|
-
"version": "8.
|
|
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/
|
|
17
|
+
"@pioneer-platform/maya-network": "8.15.0",
|
|
18
|
+
"@pioneer-platform/pioneer-discovery": "8.44.0",
|
|
18
19
|
"@pioneer-platform/pioneer-coins": "9.20.0",
|
|
19
|
-
"@pioneer-platform/pioneer-
|
|
20
|
-
"@pioneer-platform/maya-network": "8.15.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": [
|
|
5
|
+
"lib": [
|
|
6
|
+
"es2020",
|
|
7
|
+
"dom"
|
|
8
|
+
],
|
|
6
9
|
"declaration": true,
|
|
7
10
|
"outDir": "./lib",
|
|
8
11
|
"rootDir": "./src",
|
|
@@ -17,13 +20,18 @@
|
|
|
17
20
|
"esModuleInterop": true,
|
|
18
21
|
"resolveJsonModule": true,
|
|
19
22
|
"forceConsistentCasingInFileNames": true,
|
|
20
|
-
"types": [
|
|
23
|
+
"types": [
|
|
24
|
+
"node"
|
|
25
|
+
],
|
|
26
|
+
"skipLibCheck": true
|
|
21
27
|
},
|
|
22
|
-
"include": [
|
|
28
|
+
"include": [
|
|
29
|
+
"src/**/*.ts"
|
|
30
|
+
],
|
|
23
31
|
"exclude": [
|
|
24
|
-
"node_modules",
|
|
25
|
-
"**/__tests__/*",
|
|
26
|
-
"src/abis/**/*",
|
|
32
|
+
"node_modules",
|
|
33
|
+
"**/__tests__/*",
|
|
34
|
+
"src/abis/**/*",
|
|
27
35
|
"src/uniswap/**/*",
|
|
28
36
|
"src/utils/**/*",
|
|
29
37
|
"src/routing/**/*",
|