@uniswap/universal-router-sdk 4.34.0 → 4.34.2

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.
Files changed (1) hide show
  1. package/package.json +9 -38
package/package.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/universal-router-sdk",
3
+ "version": "4.34.2",
3
4
  "description": "sdk for integrating with the Universal Router contracts",
4
5
  "repository": "https://github.com/Uniswap/sdks.git",
5
6
  "keywords": [
@@ -23,22 +24,22 @@
23
24
  "lint:fix": "yarn prettier:fix && yarn forge:fix",
24
25
  "prettier": "prettier --check '**/*.ts' && prettier --check '**/*.json'",
25
26
  "prettier:fix": "prettier --write '**/*.ts' && prettier --write '**/*.json'",
26
- "release": "semantic-release",
27
+ "release": "changeset publish",
27
28
  "test": "yarn test:hardhat && yarn test:forge",
28
29
  "test:forge": "forge test",
29
30
  "test:hardhat": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' hardhat test"
30
31
  },
31
32
  "dependencies": {
32
33
  "@openzeppelin/contracts": "4.7.0",
33
- "@uniswap/permit2-sdk": "^1.3.0",
34
- "@uniswap/router-sdk": "^2.7.1",
35
- "@uniswap/sdk-core": "^7.12.1",
34
+ "@uniswap/permit2-sdk": "workspace:*",
35
+ "@uniswap/router-sdk": "workspace:*",
36
+ "@uniswap/sdk-core": "workspace:*",
36
37
  "@uniswap/universal-router": "2.1.0",
37
38
  "@uniswap/v2-core": "^1.0.1",
38
- "@uniswap/v2-sdk": "^4.19.1",
39
+ "@uniswap/v2-sdk": "workspace:*",
39
40
  "@uniswap/v3-core": "1.0.0",
40
- "@uniswap/v3-sdk": "^3.29.1",
41
- "@uniswap/v4-sdk": "^1.29.1",
41
+ "@uniswap/v3-sdk": "workspace:*",
42
+ "@uniswap/v4-sdk": "workspace:*",
42
43
  "bignumber.js": "^9.0.2",
43
44
  "ethers": "^5.7.0"
44
45
  },
@@ -68,38 +69,8 @@
68
69
  "access": "public",
69
70
  "provenance": true
70
71
  },
71
- "release": {
72
- "extends": "semantic-release-monorepo",
73
- "branches": [
74
- {
75
- "name": "main",
76
- "prerelease": false
77
- }
78
- ],
79
- "plugins": [
80
- [
81
- "@semantic-release/commit-analyzer",
82
- {
83
- "preset": "angular",
84
- "releaseRules": "../../publishing/release-rules.cjs"
85
- }
86
- ],
87
- "@semantic-release/release-notes-generator",
88
- "@semantic-release/npm",
89
- "@semantic-release/github",
90
- [
91
- "@semantic-release/exec",
92
- {
93
- "successCmd": "git restore yarn.lock && yarn",
94
- "failCmd": "git restore yarn.lock && yarn",
95
- "execCwd": "../.."
96
- }
97
- ]
98
- ]
99
- },
100
72
  "installConfig": {
101
73
  "hoistingLimits": "workspaces"
102
74
  },
103
- "sideEffects": false,
104
- "version": "4.34.0"
75
+ "sideEffects": false
105
76
  }