smart-order-router-tbd 0.1.2 → 0.1.4
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 +255 -255
- package/LICENSE +674 -674
- package/build/main/providers/caching-subgraph-provider.js +6 -1
- package/build/main/providers/caching-token-provider.js +5 -1
- package/build/main/providers/on-chain-gas-price-provider.js +2 -1
- package/build/main/providers/on-chain-quote-provider.js +13 -1
- package/build/main/providers/pv2/static-subgraph-provider.js +5 -1
- package/build/main/providers/pv3/static-subgraph-provider.js +5 -1
- package/build/main/providers/token-provider.d.ts +1 -0
- package/build/main/providers/token-provider.js +5 -3
- package/build/main/providers/v2/static-subgraph-provider.js +5 -1
- package/build/main/providers/v3/static-subgraph-provider.js +5 -1
- package/build/main/providers/v4/euler-swap-hooks-subgraph-provider.js +43 -43
- package/build/main/routers/alpha-router/alpha-router.js +71 -13
- package/build/main/routers/alpha-router/config.js +2 -1
- package/build/main/routers/alpha-router/functions/get-candidate-pools.js +5 -1
- package/build/main/routers/alpha-router/gas-models/gas-costs.js +4 -1
- package/build/main/routers/alpha-router/gas-models/gas-model.js +2 -1
- package/build/main/routers/alpha-router/quoters/pv3-quoter.js +5 -1
- package/build/main/routers/alpha-router/quoters/pv4cl-quoter.js +8 -12
- package/build/main/routers/alpha-router/quoters/v3-quoter.js +5 -1
- package/build/main/routers/alpha-router/quoters/v4-quoter.js +5 -1
- package/build/main/routers/legacy-router/bases.d.ts +6 -0
- package/build/main/routers/legacy-router/bases.js +5 -1
- package/build/main/tsconfig.tsbuildinfo +1 -1
- package/build/main/util/addresses.js +8 -1
- package/build/main/util/chains.d.ts +4 -2
- package/build/main/util/chains.js +26 -1
- package/build/main/util/defaultBlocksToLive.js +3 -1
- package/build/main/util/index.d.ts +1 -0
- package/build/main/util/index.js +2 -1
- package/build/main/util/pool.js +2 -1
- package/build/main/util/pv2-constants.js +5 -1
- package/build/main/util/pv3-constants.js +4 -1
- package/build/main/util/pv4cl-constants.d.ts +2 -2
- package/build/main/util/pv4cl-constants.js +7 -3
- package/build/main/util/route-caps.d.ts +30 -0
- package/build/main/util/route-caps.js +57 -0
- package/build/module/providers/caching-subgraph-provider.js +7 -2
- package/build/module/providers/caching-token-provider.js +6 -2
- package/build/module/providers/on-chain-gas-price-provider.js +2 -1
- package/build/module/providers/on-chain-quote-provider.js +13 -1
- package/build/module/providers/pv2/static-subgraph-provider.js +6 -2
- package/build/module/providers/pv3/static-subgraph-provider.js +6 -2
- package/build/module/providers/token-provider.d.ts +1 -0
- package/build/module/providers/token-provider.js +3 -1
- package/build/module/providers/v2/static-subgraph-provider.js +6 -2
- package/build/module/providers/v3/static-subgraph-provider.js +6 -2
- package/build/module/providers/v4/euler-swap-hooks-subgraph-provider.js +43 -43
- package/build/module/routers/alpha-router/alpha-router.js +71 -13
- package/build/module/routers/alpha-router/config.js +2 -1
- package/build/module/routers/alpha-router/functions/get-candidate-pools.js +6 -2
- package/build/module/routers/alpha-router/gas-models/gas-costs.js +4 -1
- package/build/module/routers/alpha-router/gas-models/gas-model.js +3 -2
- package/build/module/routers/alpha-router/quoters/pv3-quoter.js +6 -2
- package/build/module/routers/alpha-router/quoters/pv4cl-quoter.js +8 -12
- package/build/module/routers/alpha-router/quoters/v3-quoter.js +6 -2
- package/build/module/routers/alpha-router/quoters/v4-quoter.js +6 -2
- package/build/module/routers/legacy-router/bases.d.ts +6 -0
- package/build/module/routers/legacy-router/bases.js +6 -2
- package/build/module/tsconfig.module.tsbuildinfo +1 -1
- package/build/module/util/addresses.js +8 -1
- package/build/module/util/chains.d.ts +4 -2
- package/build/module/util/chains.js +27 -2
- package/build/module/util/defaultBlocksToLive.js +3 -1
- package/build/module/util/index.d.ts +1 -0
- package/build/module/util/index.js +2 -1
- package/build/module/util/pool.js +2 -1
- package/build/module/util/pv2-constants.js +5 -1
- package/build/module/util/pv3-constants.js +4 -1
- package/build/module/util/pv4cl-constants.d.ts +2 -2
- package/build/module/util/pv4cl-constants.js +7 -3
- package/build/module/util/route-caps.d.ts +30 -0
- package/build/module/util/route-caps.js +50 -0
- package/package.json +1 -1
- package/build/main/providers/pancakeswap/index.d.ts +0 -2
- package/build/main/providers/pancakeswap/index.js +0 -19
- package/build/main/providers/pancakeswap/pool-provider.d.ts +0 -8
- package/build/main/providers/pancakeswap/pool-provider.js +0 -43
- package/build/main/providers/pancakeswap/type-bridge.d.ts +0 -8
- package/build/main/providers/pancakeswap/type-bridge.js +0 -56
- package/build/main/routers/alpha-router/entities/pancakeswap-route.d.ts +0 -55
- package/build/main/routers/alpha-router/entities/pancakeswap-route.js +0 -76
- package/build/main/routers/alpha-router/gas-models/pancakeswap/pancakeswap-gas-model.d.ts +0 -16
- package/build/main/routers/alpha-router/gas-models/pancakeswap/pancakeswap-gas-model.js +0 -48
- package/build/main/routers/alpha-router/quoters/pancakeswap-quoter.d.ts +0 -24
- package/build/main/routers/alpha-router/quoters/pancakeswap-quoter.js +0 -205
- package/build/main/util/pancakeswap-protocols.d.ts +0 -11
- package/build/main/util/pancakeswap-protocols.js +0 -22
- package/build/module/providers/pancakeswap/index.d.ts +0 -2
- package/build/module/providers/pancakeswap/index.js +0 -3
- package/build/module/providers/pancakeswap/pool-provider.d.ts +0 -8
- package/build/module/providers/pancakeswap/pool-provider.js +0 -37
- package/build/module/providers/pancakeswap/type-bridge.d.ts +0 -8
- package/build/module/providers/pancakeswap/type-bridge.js +0 -50
- package/build/module/routers/alpha-router/entities/pancakeswap-route.d.ts +0 -55
- package/build/module/routers/alpha-router/entities/pancakeswap-route.js +0 -46
- package/build/module/routers/alpha-router/gas-models/pancakeswap/pancakeswap-gas-model.d.ts +0 -16
- package/build/module/routers/alpha-router/gas-models/pancakeswap/pancakeswap-gas-model.js +0 -40
- package/build/module/routers/alpha-router/quoters/pancakeswap-quoter.d.ts +0 -24
- package/build/module/routers/alpha-router/quoters/pancakeswap-quoter.js +0 -200
- package/build/module/util/pancakeswap-protocols.d.ts +0 -11
- package/build/module/util/pancakeswap-protocols.js +0 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,255 +1,255 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
-
|
|
5
|
-
### [3.6.0](https://github.com/Uniswap/smart-order-router/compare/v3.5.0...v3.6.0) (2023-02-24)
|
|
6
|
-
|
|
7
|
-
### [3.0.1](https://github.com/Uniswap/smart-order-router/compare/v2.10.2...v3.0.1) (2022-11-20)
|
|
8
|
-
|
|
9
|
-
### [2.10.2](https://github.com/Uniswap/smart-order-router/compare/v2.10.1...v2.10.2) (2022-11-08)
|
|
10
|
-
|
|
11
|
-
### [2.10.1](https://github.com/Uniswap/smart-order-router/compare/v2.10.0...v2.10.1) (2022-10-12)
|
|
12
|
-
|
|
13
|
-
## [2.10.0](https://github.com/Uniswap/smart-order-router/compare/v2.9.3...v2.10.0) (2022-09-09)
|
|
14
|
-
|
|
15
|
-
### Features
|
|
16
|
-
|
|
17
|
-
- add network context to logs ([#163](https://github.com/Uniswap/smart-order-router/issues/163)) ([d686a14](https://github.com/Uniswap/smart-order-router/commit/d686a14a0d0cf248caf29bc1c0384c4d84719475))
|
|
18
|
-
|
|
19
|
-
### [2.9.3](https://github.com/Uniswap/smart-order-router/compare/v2.9.2...v2.9.3) (2022-08-17)
|
|
20
|
-
|
|
21
|
-
### [2.9.2](https://github.com/Uniswap/smart-order-router/compare/v2.9.1...v2.9.2) (2022-08-10)
|
|
22
|
-
|
|
23
|
-
### [2.9.1](https://github.com/Uniswap/smart-order-router/compare/v2.8.2...v2.9.1) (2022-08-10)
|
|
24
|
-
|
|
25
|
-
### [2.8.2](https://github.com/Uniswap/smart-order-router/compare/v2.8.1...v2.8.2) (2022-08-02)
|
|
26
|
-
|
|
27
|
-
### [2.8.1](https://github.com/Uniswap/smart-order-router/compare/v2.8.0...v2.8.1) (2022-07-31)
|
|
28
|
-
|
|
29
|
-
## [2.8.0](https://github.com/Uniswap/smart-order-router/compare/v2.6.1...v2.8.0) (2022-07-20)
|
|
30
|
-
|
|
31
|
-
### Features
|
|
32
|
-
|
|
33
|
-
- add stale config ([#116](https://github.com/Uniswap/smart-order-router/issues/116)) ([3c4a32f](https://github.com/Uniswap/smart-order-router/commit/3c4a32fc671ee1b57c48f494090caede2d5f776f))
|
|
34
|
-
|
|
35
|
-
## [2.7.0](https://github.com/Uniswap/smart-order-router/compare/v2.6.1...v2.7.0) (2022-07-14)
|
|
36
|
-
|
|
37
|
-
### Features
|
|
38
|
-
|
|
39
|
-
- add stale config ([#116](https://github.com/Uniswap/smart-order-router/issues/116)) ([3c4a32f](https://github.com/Uniswap/smart-order-router/commit/3c4a32fc671ee1b57c48f494090caede2d5f776f))
|
|
40
|
-
|
|
41
|
-
### [2.6.1](https://github.com/Uniswap/smart-order-router/compare/v2.6.0...v2.6.1) (2022-07-12)
|
|
42
|
-
|
|
43
|
-
## [2.6.0](https://github.com/Uniswap/smart-order-router/compare/v2.5.32...v2.6.0) (2022-07-07)
|
|
44
|
-
|
|
45
|
-
### Features
|
|
46
|
-
|
|
47
|
-
- export TokenValidatorProvider ([#110](https://github.com/Uniswap/smart-order-router/issues/110)) ([53c6bef](https://github.com/Uniswap/smart-order-router/commit/53c6befc4a78f814a80d510896e4c15da527151c))
|
|
48
|
-
|
|
49
|
-
### Bug Fixes
|
|
50
|
-
|
|
51
|
-
- update celo contract addresses ([#109](https://github.com/Uniswap/smart-order-router/issues/109)) ([121e9ba](https://github.com/Uniswap/smart-order-router/commit/121e9ba5fd37afaaeea65d0e92e9fdd599d7cbb2))
|
|
52
|
-
|
|
53
|
-
### [2.5.32](https://github.com/Uniswap/smart-order-router/compare/v2.5.31...v2.5.32) (2022-07-05)
|
|
54
|
-
|
|
55
|
-
### [2.5.31](https://github.com/Uniswap/smart-order-router/compare/v2.5.30...v2.5.31) (2022-07-01)
|
|
56
|
-
|
|
57
|
-
### [2.5.30](https://github.com/Uniswap/smart-order-router/compare/v2.5.29...v2.5.30) (2022-05-14)
|
|
58
|
-
|
|
59
|
-
### [2.5.29](https://github.com/Uniswap/smart-order-router/compare/v2.5.28...v2.5.29) (2022-05-14)
|
|
60
|
-
|
|
61
|
-
### [2.5.28](https://github.com/Uniswap/smart-order-router/compare/v2.5.27...v2.5.28) (2022-05-14)
|
|
62
|
-
|
|
63
|
-
### [2.5.27](https://github.com/Uniswap/smart-order-router/compare/v2.5.26...v2.5.27) (2022-05-13)
|
|
64
|
-
|
|
65
|
-
### [2.5.26](https://github.com/Uniswap/smart-order-router/compare/v2.5.25...v2.5.26) (2022-03-29)
|
|
66
|
-
|
|
67
|
-
### Bug Fixes
|
|
68
|
-
|
|
69
|
-
- split tsconfig to reduce package size ([#85](https://github.com/Uniswap/smart-order-router/issues/85)) ([3ebf637](https://github.com/Uniswap/smart-order-router/commit/3ebf637290a8c3f3e3fef6f2c5f5a488bbc5825c))
|
|
70
|
-
|
|
71
|
-
### [2.5.25](https://github.com/Uniswap/smart-order-router/compare/v2.5.24...v2.5.25) (2022-03-29)
|
|
72
|
-
|
|
73
|
-
### Bug Fixes
|
|
74
|
-
|
|
75
|
-
- retain ethers as dep for factories ([#84](https://github.com/Uniswap/smart-order-router/issues/84)) ([a24b0b2](https://github.com/Uniswap/smart-order-router/commit/a24b0b2d6116fef9a7796cb5e090e8d0f2c956b0))
|
|
76
|
-
|
|
77
|
-
### [2.5.24](https://github.com/Uniswap/smart-order-router/compare/v2.5.23...v2.5.24) (2022-03-28)
|
|
78
|
-
|
|
79
|
-
### Bug Fixes
|
|
80
|
-
|
|
81
|
-
- tree-shake mnemonist ([#83](https://github.com/Uniswap/smart-order-router/issues/83)) ([dc5ce16](https://github.com/Uniswap/smart-order-router/commit/dc5ce16e560ecda5d81a6642ae963add21825d73))
|
|
82
|
-
|
|
83
|
-
### [2.5.23](https://github.com/Uniswap/smart-order-router/compare/v2.5.22...v2.5.23) (2022-03-28)
|
|
84
|
-
|
|
85
|
-
### [2.5.22](https://github.com/Uniswap/smart-order-router/compare/v2.5.21...v2.5.22) (2022-03-18)
|
|
86
|
-
|
|
87
|
-
### [2.5.21](https://github.com/Uniswap/smart-order-router/compare/v2.5.19...v2.5.21) (2022-03-18)
|
|
88
|
-
|
|
89
|
-
### [2.5.19](https://github.com/Uniswap/smart-order-router/compare/v2.5.17...v2.5.19) (2022-02-22)
|
|
90
|
-
|
|
91
|
-
### [2.5.18](https://github.com/Uniswap/smart-order-router/compare/v2.5.17...v2.5.18) (2022-02-17)
|
|
92
|
-
|
|
93
|
-
### [2.5.17](https://github.com/Uniswap/smart-order-router/compare/v2.5.16...v2.5.17) (2022-02-17)
|
|
94
|
-
|
|
95
|
-
### [2.5.16](https://github.com/Uniswap/smart-order-router/compare/v2.5.14...v2.5.16) (2022-02-17)
|
|
96
|
-
|
|
97
|
-
### [2.5.14](https://github.com/Uniswap/smart-order-router/compare/v2.5.13...v2.5.14) (2022-02-01)
|
|
98
|
-
|
|
99
|
-
### [2.5.13](https://github.com/Uniswap/smart-order-router/compare/v2.5.12...v2.5.13) (2022-01-22)
|
|
100
|
-
|
|
101
|
-
### [2.5.12](https://github.com/Uniswap/smart-order-router/compare/v2.5.9...v2.5.12) (2022-01-13)
|
|
102
|
-
|
|
103
|
-
### [2.5.11](https://github.com/Uniswap/smart-order-router/compare/v2.5.9...v2.5.11) (2022-01-11)
|
|
104
|
-
|
|
105
|
-
### [2.5.10](https://github.com/Uniswap/smart-order-router/compare/v2.5.9...v2.5.10) (2022-01-11)
|
|
106
|
-
|
|
107
|
-
### [2.5.9](https://github.com/Uniswap/smart-order-router/compare/v2.5.4...v2.5.9) (2022-01-05)
|
|
108
|
-
|
|
109
|
-
### [2.5.8](https://github.com/Uniswap/smart-order-router/compare/v2.5.4...v2.5.8) (2022-01-04)
|
|
110
|
-
|
|
111
|
-
### [2.5.7](https://github.com/Uniswap/smart-order-router/compare/v2.5.4...v2.5.7) (2021-12-22)
|
|
112
|
-
|
|
113
|
-
### [2.5.5](https://github.com/Uniswap/smart-order-router/compare/v2.5.4...v2.5.5) (2021-12-22)
|
|
114
|
-
|
|
115
|
-
### [2.5.4](https://github.com/Uniswap/smart-order-router/compare/v2.5.1...v2.5.4) (2021-12-15)
|
|
116
|
-
|
|
117
|
-
### [2.5.2](https://github.com/Uniswap/smart-order-router/compare/v2.5.1...v2.5.2) (2021-12-15)
|
|
118
|
-
|
|
119
|
-
### [2.5.1](https://github.com/Uniswap/smart-order-router/compare/v2.4.5...v2.5.1) (2021-12-15)
|
|
120
|
-
|
|
121
|
-
### [2.4.5](https://github.com/Uniswap/smart-order-router/compare/v2.4.1...v2.4.5) (2021-12-15)
|
|
122
|
-
|
|
123
|
-
### Bug Fixes
|
|
124
|
-
|
|
125
|
-
- add export ([609ae40](https://github.com/Uniswap/smart-order-router/commit/609ae40c4bb1af6a6cb682258f19171d427bdbf9))
|
|
126
|
-
|
|
127
|
-
### [2.4.3](https://github.com/Uniswap/smart-order-router/compare/v2.4.1...v2.4.3) (2021-12-14)
|
|
128
|
-
|
|
129
|
-
### Bug Fixes
|
|
130
|
-
|
|
131
|
-
- add export ([609ae40](https://github.com/Uniswap/smart-order-router/commit/609ae40c4bb1af6a6cb682258f19171d427bdbf9))
|
|
132
|
-
|
|
133
|
-
### [2.4.1](https://github.com/Uniswap/smart-order-router/compare/v2.3.1...v2.4.1) (2021-12-14)
|
|
134
|
-
|
|
135
|
-
### [2.3.1](https://github.com/Uniswap/smart-order-router/compare/v2.2.3...v2.3.1) (2021-12-14)
|
|
136
|
-
|
|
137
|
-
### [2.2.3](https://github.com/Uniswap/smart-order-router/compare/v2.2.1...v2.2.3) (2021-12-14)
|
|
138
|
-
|
|
139
|
-
### [2.2.1](https://github.com/Uniswap/smart-order-router/compare/v2.1.1...v2.2.1) (2021-12-14)
|
|
140
|
-
|
|
141
|
-
### [2.1.1](https://github.com/Uniswap/smart-order-router/compare/v2.0.0-beta.18...v2.1.1) (2021-12-13)
|
|
142
|
-
|
|
143
|
-
### [2.0.5](https://github.com/Uniswap/smart-order-router/compare/v2.0.0-beta.18...v2.0.5) (2021-12-13)
|
|
144
|
-
|
|
145
|
-
### [2.0.3](https://github.com/Uniswap/smart-order-router/compare/v2.0.2...v2.0.3) (2021-12-06)
|
|
146
|
-
|
|
147
|
-
### [2.0.2](https://github.com/Uniswap/smart-order-router/compare/v2.0.0-beta.18...v2.0.2) (2021-12-06)
|
|
148
|
-
|
|
149
|
-
### [2.0.1](https://github.com/Uniswap/smart-order-router/compare/v2.0.0-beta.18...v2.0.1) (2021-12-02)
|
|
150
|
-
|
|
151
|
-
### [1.46.5](https://github.com/Uniswap/smart-order-router/compare/v1.46.4...v1.46.5) (2021-11-02)
|
|
152
|
-
|
|
153
|
-
### [1.46.4](https://github.com/Uniswap/smart-order-router/compare/v1.46.3...v1.46.4) (2021-10-25)
|
|
154
|
-
|
|
155
|
-
### [1.46.3](https://github.com/Uniswap/smart-order-router/compare/v1.46.1...v1.46.3) (2021-10-08)
|
|
156
|
-
|
|
157
|
-
### [1.46.1](https://github.com/Uniswap/smart-order-router/compare/v1.45.1...v1.46.1) (2021-10-06)
|
|
158
|
-
|
|
159
|
-
### Bug Fixes
|
|
160
|
-
|
|
161
|
-
- move prettier-plugin-organize-imports and sinon to dev dependencies ([#18](https://github.com/Uniswap/smart-order-router/issues/18)) ([c9514cc](https://github.com/Uniswap/smart-order-router/commit/c9514cc8ba87b62aedf1402cfd8188fc59d4a363))
|
|
162
|
-
|
|
163
|
-
### [1.45.1](https://github.com/Uniswap/smart-order-router/compare/v1.44.1...v1.45.1) (2021-09-28)
|
|
164
|
-
|
|
165
|
-
### [1.44.1](https://github.com/Uniswap/smart-order-router/compare/v1.43.1...v1.44.1) (2021-09-22)
|
|
166
|
-
|
|
167
|
-
### [1.43.1](https://github.com/Uniswap/smart-order-router/compare/v1.42.1...v1.43.1) (2021-09-22)
|
|
168
|
-
|
|
169
|
-
### [1.42.1](https://github.com/Uniswap/smart-order-router/compare/v1.41.1...v1.42.1) (2021-09-21)
|
|
170
|
-
|
|
171
|
-
### [1.41.1](https://github.com/Uniswap/smart-order-router/compare/v1.40.1...v1.41.1) (2021-09-21)
|
|
172
|
-
|
|
173
|
-
### [1.40.1](https://github.com/Uniswap/smart-order-router/compare/v1.39.1...v1.40.1) (2021-09-16)
|
|
174
|
-
|
|
175
|
-
### [1.39.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.38.1...v1.39.1) (2021-09-15)
|
|
176
|
-
|
|
177
|
-
### [1.38.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.37.1...v1.38.1) (2021-09-14)
|
|
178
|
-
|
|
179
|
-
### [1.37.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.36.1...v1.37.1) (2021-09-14)
|
|
180
|
-
|
|
181
|
-
### [1.36.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.35.1...v1.36.1) (2021-09-14)
|
|
182
|
-
|
|
183
|
-
### [1.35.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.34.1...v1.35.1) (2021-09-10)
|
|
184
|
-
|
|
185
|
-
### [1.34.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.33.1...v1.34.1) (2021-09-10)
|
|
186
|
-
|
|
187
|
-
### [1.33.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.32.1...v1.33.1) (2021-09-09)
|
|
188
|
-
|
|
189
|
-
### [1.32.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.31.1...v1.32.1) (2021-09-09)
|
|
190
|
-
|
|
191
|
-
### [1.31.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.30.1...v1.31.1) (2021-09-09)
|
|
192
|
-
|
|
193
|
-
### [1.30.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.29.1...v1.30.1) (2021-08-29)
|
|
194
|
-
|
|
195
|
-
### [1.29.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.28.1...v1.29.1) (2021-08-27)
|
|
196
|
-
|
|
197
|
-
### [1.28.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.27.1...v1.28.1) (2021-08-26)
|
|
198
|
-
|
|
199
|
-
### [1.27.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.25.1...v1.27.1) (2021-08-26)
|
|
200
|
-
|
|
201
|
-
### [1.26.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.25.1...v1.26.1) (2021-08-26)
|
|
202
|
-
|
|
203
|
-
### [1.25.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.24.1...v1.25.1) (2021-08-23)
|
|
204
|
-
|
|
205
|
-
### [1.24.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.23.1...v1.24.1) (2021-08-12)
|
|
206
|
-
|
|
207
|
-
### [1.23.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.22.1...v1.23.1) (2021-07-29)
|
|
208
|
-
|
|
209
|
-
### [1.22.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.21.1...v1.22.1) (2021-07-29)
|
|
210
|
-
|
|
211
|
-
### [1.21.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.20.1...v1.21.1) (2021-07-29)
|
|
212
|
-
|
|
213
|
-
### [1.20.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.18.1...v1.20.1) (2021-07-27)
|
|
214
|
-
|
|
215
|
-
### [1.19.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.18.1...v1.19.1) (2021-07-26)
|
|
216
|
-
|
|
217
|
-
### [1.18.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.14.1...v1.18.1) (2021-07-26)
|
|
218
|
-
|
|
219
|
-
### [1.17.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.14.1...v1.17.1) (2021-07-23)
|
|
220
|
-
|
|
221
|
-
### [1.16.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.14.1...v1.16.1) (2021-07-22)
|
|
222
|
-
|
|
223
|
-
### [1.15.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.14.1...v1.15.1) (2021-07-21)
|
|
224
|
-
|
|
225
|
-
### [1.14.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.13.1...v1.14.1) (2021-07-20)
|
|
226
|
-
|
|
227
|
-
### [1.13.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.12.1...v1.13.1) (2021-07-19)
|
|
228
|
-
|
|
229
|
-
### [1.12.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.11.1...v1.12.1) (2021-07-19)
|
|
230
|
-
|
|
231
|
-
### [1.11.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.10.1...v1.11.1) (2021-07-14)
|
|
232
|
-
|
|
233
|
-
### [1.10.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.9.1...v1.10.1) (2021-07-14)
|
|
234
|
-
|
|
235
|
-
### [1.9.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.8.1...v1.9.1) (2021-07-05)
|
|
236
|
-
|
|
237
|
-
### [1.8.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.7.1...v1.8.1) (2021-06-28)
|
|
238
|
-
|
|
239
|
-
### [1.7.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.6.1...v1.7.1) (2021-06-27)
|
|
240
|
-
|
|
241
|
-
### [1.6.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.5.3...v1.6.1) (2021-06-26)
|
|
242
|
-
|
|
243
|
-
### [1.5.3](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.5.1...v1.5.3) (2021-06-23)
|
|
244
|
-
|
|
245
|
-
### [1.5.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.4.1...v1.5.1) (2021-06-23)
|
|
246
|
-
|
|
247
|
-
### [1.4.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.3.1...v1.4.1) (2021-06-21)
|
|
248
|
-
|
|
249
|
-
### [1.3.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.2.1...v1.3.1) (2021-06-15)
|
|
250
|
-
|
|
251
|
-
### [1.2.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.1.1...v1.2.1) (2021-06-11)
|
|
252
|
-
|
|
253
|
-
### [1.1.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.0.1...v1.1.1) (2021-06-09)
|
|
254
|
-
|
|
255
|
-
### 1.0.1 (2021-05-06)
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
|
+
|
|
5
|
+
### [3.6.0](https://github.com/Uniswap/smart-order-router/compare/v3.5.0...v3.6.0) (2023-02-24)
|
|
6
|
+
|
|
7
|
+
### [3.0.1](https://github.com/Uniswap/smart-order-router/compare/v2.10.2...v3.0.1) (2022-11-20)
|
|
8
|
+
|
|
9
|
+
### [2.10.2](https://github.com/Uniswap/smart-order-router/compare/v2.10.1...v2.10.2) (2022-11-08)
|
|
10
|
+
|
|
11
|
+
### [2.10.1](https://github.com/Uniswap/smart-order-router/compare/v2.10.0...v2.10.1) (2022-10-12)
|
|
12
|
+
|
|
13
|
+
## [2.10.0](https://github.com/Uniswap/smart-order-router/compare/v2.9.3...v2.10.0) (2022-09-09)
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
- add network context to logs ([#163](https://github.com/Uniswap/smart-order-router/issues/163)) ([d686a14](https://github.com/Uniswap/smart-order-router/commit/d686a14a0d0cf248caf29bc1c0384c4d84719475))
|
|
18
|
+
|
|
19
|
+
### [2.9.3](https://github.com/Uniswap/smart-order-router/compare/v2.9.2...v2.9.3) (2022-08-17)
|
|
20
|
+
|
|
21
|
+
### [2.9.2](https://github.com/Uniswap/smart-order-router/compare/v2.9.1...v2.9.2) (2022-08-10)
|
|
22
|
+
|
|
23
|
+
### [2.9.1](https://github.com/Uniswap/smart-order-router/compare/v2.8.2...v2.9.1) (2022-08-10)
|
|
24
|
+
|
|
25
|
+
### [2.8.2](https://github.com/Uniswap/smart-order-router/compare/v2.8.1...v2.8.2) (2022-08-02)
|
|
26
|
+
|
|
27
|
+
### [2.8.1](https://github.com/Uniswap/smart-order-router/compare/v2.8.0...v2.8.1) (2022-07-31)
|
|
28
|
+
|
|
29
|
+
## [2.8.0](https://github.com/Uniswap/smart-order-router/compare/v2.6.1...v2.8.0) (2022-07-20)
|
|
30
|
+
|
|
31
|
+
### Features
|
|
32
|
+
|
|
33
|
+
- add stale config ([#116](https://github.com/Uniswap/smart-order-router/issues/116)) ([3c4a32f](https://github.com/Uniswap/smart-order-router/commit/3c4a32fc671ee1b57c48f494090caede2d5f776f))
|
|
34
|
+
|
|
35
|
+
## [2.7.0](https://github.com/Uniswap/smart-order-router/compare/v2.6.1...v2.7.0) (2022-07-14)
|
|
36
|
+
|
|
37
|
+
### Features
|
|
38
|
+
|
|
39
|
+
- add stale config ([#116](https://github.com/Uniswap/smart-order-router/issues/116)) ([3c4a32f](https://github.com/Uniswap/smart-order-router/commit/3c4a32fc671ee1b57c48f494090caede2d5f776f))
|
|
40
|
+
|
|
41
|
+
### [2.6.1](https://github.com/Uniswap/smart-order-router/compare/v2.6.0...v2.6.1) (2022-07-12)
|
|
42
|
+
|
|
43
|
+
## [2.6.0](https://github.com/Uniswap/smart-order-router/compare/v2.5.32...v2.6.0) (2022-07-07)
|
|
44
|
+
|
|
45
|
+
### Features
|
|
46
|
+
|
|
47
|
+
- export TokenValidatorProvider ([#110](https://github.com/Uniswap/smart-order-router/issues/110)) ([53c6bef](https://github.com/Uniswap/smart-order-router/commit/53c6befc4a78f814a80d510896e4c15da527151c))
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
- update celo contract addresses ([#109](https://github.com/Uniswap/smart-order-router/issues/109)) ([121e9ba](https://github.com/Uniswap/smart-order-router/commit/121e9ba5fd37afaaeea65d0e92e9fdd599d7cbb2))
|
|
52
|
+
|
|
53
|
+
### [2.5.32](https://github.com/Uniswap/smart-order-router/compare/v2.5.31...v2.5.32) (2022-07-05)
|
|
54
|
+
|
|
55
|
+
### [2.5.31](https://github.com/Uniswap/smart-order-router/compare/v2.5.30...v2.5.31) (2022-07-01)
|
|
56
|
+
|
|
57
|
+
### [2.5.30](https://github.com/Uniswap/smart-order-router/compare/v2.5.29...v2.5.30) (2022-05-14)
|
|
58
|
+
|
|
59
|
+
### [2.5.29](https://github.com/Uniswap/smart-order-router/compare/v2.5.28...v2.5.29) (2022-05-14)
|
|
60
|
+
|
|
61
|
+
### [2.5.28](https://github.com/Uniswap/smart-order-router/compare/v2.5.27...v2.5.28) (2022-05-14)
|
|
62
|
+
|
|
63
|
+
### [2.5.27](https://github.com/Uniswap/smart-order-router/compare/v2.5.26...v2.5.27) (2022-05-13)
|
|
64
|
+
|
|
65
|
+
### [2.5.26](https://github.com/Uniswap/smart-order-router/compare/v2.5.25...v2.5.26) (2022-03-29)
|
|
66
|
+
|
|
67
|
+
### Bug Fixes
|
|
68
|
+
|
|
69
|
+
- split tsconfig to reduce package size ([#85](https://github.com/Uniswap/smart-order-router/issues/85)) ([3ebf637](https://github.com/Uniswap/smart-order-router/commit/3ebf637290a8c3f3e3fef6f2c5f5a488bbc5825c))
|
|
70
|
+
|
|
71
|
+
### [2.5.25](https://github.com/Uniswap/smart-order-router/compare/v2.5.24...v2.5.25) (2022-03-29)
|
|
72
|
+
|
|
73
|
+
### Bug Fixes
|
|
74
|
+
|
|
75
|
+
- retain ethers as dep for factories ([#84](https://github.com/Uniswap/smart-order-router/issues/84)) ([a24b0b2](https://github.com/Uniswap/smart-order-router/commit/a24b0b2d6116fef9a7796cb5e090e8d0f2c956b0))
|
|
76
|
+
|
|
77
|
+
### [2.5.24](https://github.com/Uniswap/smart-order-router/compare/v2.5.23...v2.5.24) (2022-03-28)
|
|
78
|
+
|
|
79
|
+
### Bug Fixes
|
|
80
|
+
|
|
81
|
+
- tree-shake mnemonist ([#83](https://github.com/Uniswap/smart-order-router/issues/83)) ([dc5ce16](https://github.com/Uniswap/smart-order-router/commit/dc5ce16e560ecda5d81a6642ae963add21825d73))
|
|
82
|
+
|
|
83
|
+
### [2.5.23](https://github.com/Uniswap/smart-order-router/compare/v2.5.22...v2.5.23) (2022-03-28)
|
|
84
|
+
|
|
85
|
+
### [2.5.22](https://github.com/Uniswap/smart-order-router/compare/v2.5.21...v2.5.22) (2022-03-18)
|
|
86
|
+
|
|
87
|
+
### [2.5.21](https://github.com/Uniswap/smart-order-router/compare/v2.5.19...v2.5.21) (2022-03-18)
|
|
88
|
+
|
|
89
|
+
### [2.5.19](https://github.com/Uniswap/smart-order-router/compare/v2.5.17...v2.5.19) (2022-02-22)
|
|
90
|
+
|
|
91
|
+
### [2.5.18](https://github.com/Uniswap/smart-order-router/compare/v2.5.17...v2.5.18) (2022-02-17)
|
|
92
|
+
|
|
93
|
+
### [2.5.17](https://github.com/Uniswap/smart-order-router/compare/v2.5.16...v2.5.17) (2022-02-17)
|
|
94
|
+
|
|
95
|
+
### [2.5.16](https://github.com/Uniswap/smart-order-router/compare/v2.5.14...v2.5.16) (2022-02-17)
|
|
96
|
+
|
|
97
|
+
### [2.5.14](https://github.com/Uniswap/smart-order-router/compare/v2.5.13...v2.5.14) (2022-02-01)
|
|
98
|
+
|
|
99
|
+
### [2.5.13](https://github.com/Uniswap/smart-order-router/compare/v2.5.12...v2.5.13) (2022-01-22)
|
|
100
|
+
|
|
101
|
+
### [2.5.12](https://github.com/Uniswap/smart-order-router/compare/v2.5.9...v2.5.12) (2022-01-13)
|
|
102
|
+
|
|
103
|
+
### [2.5.11](https://github.com/Uniswap/smart-order-router/compare/v2.5.9...v2.5.11) (2022-01-11)
|
|
104
|
+
|
|
105
|
+
### [2.5.10](https://github.com/Uniswap/smart-order-router/compare/v2.5.9...v2.5.10) (2022-01-11)
|
|
106
|
+
|
|
107
|
+
### [2.5.9](https://github.com/Uniswap/smart-order-router/compare/v2.5.4...v2.5.9) (2022-01-05)
|
|
108
|
+
|
|
109
|
+
### [2.5.8](https://github.com/Uniswap/smart-order-router/compare/v2.5.4...v2.5.8) (2022-01-04)
|
|
110
|
+
|
|
111
|
+
### [2.5.7](https://github.com/Uniswap/smart-order-router/compare/v2.5.4...v2.5.7) (2021-12-22)
|
|
112
|
+
|
|
113
|
+
### [2.5.5](https://github.com/Uniswap/smart-order-router/compare/v2.5.4...v2.5.5) (2021-12-22)
|
|
114
|
+
|
|
115
|
+
### [2.5.4](https://github.com/Uniswap/smart-order-router/compare/v2.5.1...v2.5.4) (2021-12-15)
|
|
116
|
+
|
|
117
|
+
### [2.5.2](https://github.com/Uniswap/smart-order-router/compare/v2.5.1...v2.5.2) (2021-12-15)
|
|
118
|
+
|
|
119
|
+
### [2.5.1](https://github.com/Uniswap/smart-order-router/compare/v2.4.5...v2.5.1) (2021-12-15)
|
|
120
|
+
|
|
121
|
+
### [2.4.5](https://github.com/Uniswap/smart-order-router/compare/v2.4.1...v2.4.5) (2021-12-15)
|
|
122
|
+
|
|
123
|
+
### Bug Fixes
|
|
124
|
+
|
|
125
|
+
- add export ([609ae40](https://github.com/Uniswap/smart-order-router/commit/609ae40c4bb1af6a6cb682258f19171d427bdbf9))
|
|
126
|
+
|
|
127
|
+
### [2.4.3](https://github.com/Uniswap/smart-order-router/compare/v2.4.1...v2.4.3) (2021-12-14)
|
|
128
|
+
|
|
129
|
+
### Bug Fixes
|
|
130
|
+
|
|
131
|
+
- add export ([609ae40](https://github.com/Uniswap/smart-order-router/commit/609ae40c4bb1af6a6cb682258f19171d427bdbf9))
|
|
132
|
+
|
|
133
|
+
### [2.4.1](https://github.com/Uniswap/smart-order-router/compare/v2.3.1...v2.4.1) (2021-12-14)
|
|
134
|
+
|
|
135
|
+
### [2.3.1](https://github.com/Uniswap/smart-order-router/compare/v2.2.3...v2.3.1) (2021-12-14)
|
|
136
|
+
|
|
137
|
+
### [2.2.3](https://github.com/Uniswap/smart-order-router/compare/v2.2.1...v2.2.3) (2021-12-14)
|
|
138
|
+
|
|
139
|
+
### [2.2.1](https://github.com/Uniswap/smart-order-router/compare/v2.1.1...v2.2.1) (2021-12-14)
|
|
140
|
+
|
|
141
|
+
### [2.1.1](https://github.com/Uniswap/smart-order-router/compare/v2.0.0-beta.18...v2.1.1) (2021-12-13)
|
|
142
|
+
|
|
143
|
+
### [2.0.5](https://github.com/Uniswap/smart-order-router/compare/v2.0.0-beta.18...v2.0.5) (2021-12-13)
|
|
144
|
+
|
|
145
|
+
### [2.0.3](https://github.com/Uniswap/smart-order-router/compare/v2.0.2...v2.0.3) (2021-12-06)
|
|
146
|
+
|
|
147
|
+
### [2.0.2](https://github.com/Uniswap/smart-order-router/compare/v2.0.0-beta.18...v2.0.2) (2021-12-06)
|
|
148
|
+
|
|
149
|
+
### [2.0.1](https://github.com/Uniswap/smart-order-router/compare/v2.0.0-beta.18...v2.0.1) (2021-12-02)
|
|
150
|
+
|
|
151
|
+
### [1.46.5](https://github.com/Uniswap/smart-order-router/compare/v1.46.4...v1.46.5) (2021-11-02)
|
|
152
|
+
|
|
153
|
+
### [1.46.4](https://github.com/Uniswap/smart-order-router/compare/v1.46.3...v1.46.4) (2021-10-25)
|
|
154
|
+
|
|
155
|
+
### [1.46.3](https://github.com/Uniswap/smart-order-router/compare/v1.46.1...v1.46.3) (2021-10-08)
|
|
156
|
+
|
|
157
|
+
### [1.46.1](https://github.com/Uniswap/smart-order-router/compare/v1.45.1...v1.46.1) (2021-10-06)
|
|
158
|
+
|
|
159
|
+
### Bug Fixes
|
|
160
|
+
|
|
161
|
+
- move prettier-plugin-organize-imports and sinon to dev dependencies ([#18](https://github.com/Uniswap/smart-order-router/issues/18)) ([c9514cc](https://github.com/Uniswap/smart-order-router/commit/c9514cc8ba87b62aedf1402cfd8188fc59d4a363))
|
|
162
|
+
|
|
163
|
+
### [1.45.1](https://github.com/Uniswap/smart-order-router/compare/v1.44.1...v1.45.1) (2021-09-28)
|
|
164
|
+
|
|
165
|
+
### [1.44.1](https://github.com/Uniswap/smart-order-router/compare/v1.43.1...v1.44.1) (2021-09-22)
|
|
166
|
+
|
|
167
|
+
### [1.43.1](https://github.com/Uniswap/smart-order-router/compare/v1.42.1...v1.43.1) (2021-09-22)
|
|
168
|
+
|
|
169
|
+
### [1.42.1](https://github.com/Uniswap/smart-order-router/compare/v1.41.1...v1.42.1) (2021-09-21)
|
|
170
|
+
|
|
171
|
+
### [1.41.1](https://github.com/Uniswap/smart-order-router/compare/v1.40.1...v1.41.1) (2021-09-21)
|
|
172
|
+
|
|
173
|
+
### [1.40.1](https://github.com/Uniswap/smart-order-router/compare/v1.39.1...v1.40.1) (2021-09-16)
|
|
174
|
+
|
|
175
|
+
### [1.39.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.38.1...v1.39.1) (2021-09-15)
|
|
176
|
+
|
|
177
|
+
### [1.38.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.37.1...v1.38.1) (2021-09-14)
|
|
178
|
+
|
|
179
|
+
### [1.37.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.36.1...v1.37.1) (2021-09-14)
|
|
180
|
+
|
|
181
|
+
### [1.36.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.35.1...v1.36.1) (2021-09-14)
|
|
182
|
+
|
|
183
|
+
### [1.35.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.34.1...v1.35.1) (2021-09-10)
|
|
184
|
+
|
|
185
|
+
### [1.34.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.33.1...v1.34.1) (2021-09-10)
|
|
186
|
+
|
|
187
|
+
### [1.33.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.32.1...v1.33.1) (2021-09-09)
|
|
188
|
+
|
|
189
|
+
### [1.32.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.31.1...v1.32.1) (2021-09-09)
|
|
190
|
+
|
|
191
|
+
### [1.31.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.30.1...v1.31.1) (2021-09-09)
|
|
192
|
+
|
|
193
|
+
### [1.30.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.29.1...v1.30.1) (2021-08-29)
|
|
194
|
+
|
|
195
|
+
### [1.29.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.28.1...v1.29.1) (2021-08-27)
|
|
196
|
+
|
|
197
|
+
### [1.28.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.27.1...v1.28.1) (2021-08-26)
|
|
198
|
+
|
|
199
|
+
### [1.27.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.25.1...v1.27.1) (2021-08-26)
|
|
200
|
+
|
|
201
|
+
### [1.26.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.25.1...v1.26.1) (2021-08-26)
|
|
202
|
+
|
|
203
|
+
### [1.25.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.24.1...v1.25.1) (2021-08-23)
|
|
204
|
+
|
|
205
|
+
### [1.24.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.23.1...v1.24.1) (2021-08-12)
|
|
206
|
+
|
|
207
|
+
### [1.23.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.22.1...v1.23.1) (2021-07-29)
|
|
208
|
+
|
|
209
|
+
### [1.22.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.21.1...v1.22.1) (2021-07-29)
|
|
210
|
+
|
|
211
|
+
### [1.21.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.20.1...v1.21.1) (2021-07-29)
|
|
212
|
+
|
|
213
|
+
### [1.20.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.18.1...v1.20.1) (2021-07-27)
|
|
214
|
+
|
|
215
|
+
### [1.19.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.18.1...v1.19.1) (2021-07-26)
|
|
216
|
+
|
|
217
|
+
### [1.18.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.14.1...v1.18.1) (2021-07-26)
|
|
218
|
+
|
|
219
|
+
### [1.17.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.14.1...v1.17.1) (2021-07-23)
|
|
220
|
+
|
|
221
|
+
### [1.16.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.14.1...v1.16.1) (2021-07-22)
|
|
222
|
+
|
|
223
|
+
### [1.15.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.14.1...v1.15.1) (2021-07-21)
|
|
224
|
+
|
|
225
|
+
### [1.14.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.13.1...v1.14.1) (2021-07-20)
|
|
226
|
+
|
|
227
|
+
### [1.13.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.12.1...v1.13.1) (2021-07-19)
|
|
228
|
+
|
|
229
|
+
### [1.12.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.11.1...v1.12.1) (2021-07-19)
|
|
230
|
+
|
|
231
|
+
### [1.11.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.10.1...v1.11.1) (2021-07-14)
|
|
232
|
+
|
|
233
|
+
### [1.10.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.9.1...v1.10.1) (2021-07-14)
|
|
234
|
+
|
|
235
|
+
### [1.9.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.8.1...v1.9.1) (2021-07-05)
|
|
236
|
+
|
|
237
|
+
### [1.8.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.7.1...v1.8.1) (2021-06-28)
|
|
238
|
+
|
|
239
|
+
### [1.7.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.6.1...v1.7.1) (2021-06-27)
|
|
240
|
+
|
|
241
|
+
### [1.6.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.5.3...v1.6.1) (2021-06-26)
|
|
242
|
+
|
|
243
|
+
### [1.5.3](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.5.1...v1.5.3) (2021-06-23)
|
|
244
|
+
|
|
245
|
+
### [1.5.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.4.1...v1.5.1) (2021-06-23)
|
|
246
|
+
|
|
247
|
+
### [1.4.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.3.1...v1.4.1) (2021-06-21)
|
|
248
|
+
|
|
249
|
+
### [1.3.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.2.1...v1.3.1) (2021-06-15)
|
|
250
|
+
|
|
251
|
+
### [1.2.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.1.1...v1.2.1) (2021-06-11)
|
|
252
|
+
|
|
253
|
+
### [1.1.1](https://github.com/Uniswap/uniswap-smart-order-router/compare/v1.0.1...v1.1.1) (2021-06-09)
|
|
254
|
+
|
|
255
|
+
### 1.0.1 (2021-05-06)
|