@uniswap/router-sdk 2.7.0 → 2.7.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 +7 -36
package/package.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/router-sdk",
3
+ "version": "2.7.2",
3
4
  "description": "An sdk for routing swaps using Uniswap v2 and Uniswap v3.",
4
5
  "repository": "https://github.com/Uniswap/sdks.git",
5
6
  "keywords": [
@@ -15,17 +16,17 @@
15
16
  "scripts": {
16
17
  "build": "tsdx build",
17
18
  "lint": "eslint 'src/**/*.{js,ts,tsx}' --max-warnings 0",
18
- "release": "semantic-release",
19
+ "release": "changeset publish",
19
20
  "start": "tsdx watch",
20
21
  "test": "tsdx test"
21
22
  },
22
23
  "dependencies": {
23
24
  "@ethersproject/abi": "^5.5.0",
24
- "@uniswap/sdk-core": "^7.12.0",
25
+ "@uniswap/sdk-core": "workspace:*",
25
26
  "@uniswap/swap-router-contracts": "^1.3.0",
26
- "@uniswap/v2-sdk": "^4.19.0",
27
- "@uniswap/v3-sdk": "^3.29.0",
28
- "@uniswap/v4-sdk": "^1.29.0"
27
+ "@uniswap/v2-sdk": "workspace:*",
28
+ "@uniswap/v3-sdk": "workspace:*",
29
+ "@uniswap/v4-sdk": "workspace:*"
29
30
  },
30
31
  "devDependencies": {
31
32
  "@types/jest": "^24.0.25",
@@ -42,35 +43,5 @@
42
43
  "publishConfig": {
43
44
  "access": "public",
44
45
  "provenance": true
45
- },
46
- "release": {
47
- "extends": "semantic-release-monorepo",
48
- "branches": [
49
- {
50
- "name": "main",
51
- "prerelease": false
52
- }
53
- ],
54
- "plugins": [
55
- [
56
- "@semantic-release/commit-analyzer",
57
- {
58
- "preset": "angular",
59
- "releaseRules": "../../publishing/release-rules.cjs"
60
- }
61
- ],
62
- "@semantic-release/release-notes-generator",
63
- "@semantic-release/npm",
64
- "@semantic-release/github",
65
- [
66
- "@semantic-release/exec",
67
- {
68
- "successCmd": "git restore yarn.lock && yarn",
69
- "failCmd": "git restore yarn.lock && yarn",
70
- "execCwd": "../.."
71
- }
72
- ]
73
- ]
74
- },
75
- "version": "2.7.0"
46
+ }
76
47
  }