@cowprotocol/cow-sdk 7.1.0-beta.0 → 7.1.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/README.md CHANGED
@@ -25,6 +25,8 @@ The SDK supports all CoW Protocol enabled networks:
25
25
  - **Avalanche** (43114) - `SupportedChainId.AVALANCHE`
26
26
  - **Lens** (232) - `SupportedChainId.LENS`
27
27
  - **BNB** (56) - `SupportedChainId.BNB`
28
+ - **Linea** (59144) - `SupportedChainId.LINEA` (Under development)
29
+ - **Plasma** (9745) - `SupportedChainId.PLASMA` (Under development)
28
30
  - **Sepolia** (11155111) - `SupportedChainId.SEPOLIA` (Testnet)
29
31
 
30
32
  ## 🔗 **Related Resources**
@@ -32,7 +34,7 @@ The SDK supports all CoW Protocol enabled networks:
32
34
  - **[CoW Protocol Documentation](https://docs.cow.fi/)**
33
35
  - **[API Reference](https://api.cow.fi/docs/)**
34
36
  - **[CoW Protocol Website](https://cow.fi/)**
35
- - **[Examples Repository](../../examples)**
37
+ - **[Examples Repository](https://github.com/cowprotocol/cow-sdk/tree/main/examples)**
36
38
  - **Issues**: [GitHub Issues](https://github.com/cowprotocol/cow-sdk/issues)
37
39
  - **Discord**: [CoW Protocol Discord](https://discord.com/invite/cowprotocol)
38
40
  - **Documentation**: [docs.cow.fi](https://docs.cow.fi/)
@@ -67,20 +69,20 @@ yarn add @cowprotocol/cow-sdk
67
69
  Using CoW Protocol, you can perform swaps, limit orders, TWAP orders, and many other operations.
68
70
  The `@cowprotocol/cow-sdk` provides tools at different abstraction levels, allowing you to conveniently implement basic scenarios while maintaining the flexibility to control all possible cases.
69
71
 
70
- > In most cases, you will only need to use the **[Trading SDK](../trading/README.md)**
72
+ > In most cases, you will only need to use the **[Trading SDK](https://github.com/cowprotocol/cow-sdk/tree/main/packages/trading/README.md)**
71
73
 
72
74
  ## SDK Components
73
75
 
74
76
  ### Core
75
- - **[`TradingSdk`](../trading/README.md)** - Main tool for swap and limit orders with built-in quote fetching, order signing, and posting
76
- - **[`OrderSigningUtils`](../order-signing/README.md)** - Utilities for signing orders and cancellations using cryptographic algorithms
77
- - **[`OrderBookApi`](../order-book/README.md)** - Provides the ability to retrieve orders and trades from the CoW Protocol order book, as well as add and cancel them
78
- - **[`MetadataApi`](../app-data/README.md)** - API for accessing order metadata and additional information
77
+ - **[`TradingSdk`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/trading/README.md)** - Main tool for swap and limit orders with built-in quote fetching, order signing, and posting
78
+ - **[`OrderSigningUtils`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/order-signing/README.md)** - Utilities for signing orders and cancellations using cryptographic algorithms
79
+ - **[`OrderBookApi`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/order-book/README.md)** - Provides the ability to retrieve orders and trades from the CoW Protocol order book, as well as add and cancel them
80
+ - **[`MetadataApi`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/app-data/README.md)** - API for accessing order metadata and additional information
79
81
 
80
82
  ### Advanced
81
- - **[`BridgingSdk`](../bridging/README.md)** - Cross-chain token transfers and bridging functionality
82
- - **[`ConditionalOrder`](../composable/README.md)** - SDK for Programmatic Orders such as TWAP ([Read more](https://docs.cow.fi/cow-protocol/concepts/order-types/programmatic-orders))
83
- - **[`CowShedSdk`](../cow-shed/README.md)** - Account abstraction that leverages EOA with smart contract capabilities
83
+ - **[`BridgingSdk`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/bridging/README.md)** - Cross-chain token transfers and bridging functionality
84
+ - **[`ConditionalOrder`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/composable/README.md)** - SDK for Programmatic Orders such as TWAP ([Read more](https://docs.cow.fi/cow-protocol/concepts/order-types/programmatic-orders))
85
+ - **[`CowShedSdk`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/cow-shed/README.md)** - Account abstraction that leverages EOA with smart contract capabilities
84
86
 
85
87
  ## v6 → v7 Migration Guide
86
88
  The versions are 99% backward compatible. The only difference is that in v7 you need to set an adapter corresponding to the library you use: `Viem`, `Ethers6`, or `Ethers5`.
@@ -232,7 +234,7 @@ if (confirm(`You will receive at least: ${buyAmount}. Proceed?`)) {
232
234
  This example demonstrates the simplest way to trade on CoW Protocol.
233
235
 
234
236
  For more advanced use cases, you can use additional parameters such as `receiver`, `partiallyFillable`, `validTo`, and others.
235
- Refer to the [Trading SDK documentation](packages/trading/README.md) for comprehensive details.
237
+ Refer to the [Trading SDK documentation](https://github.com/cowprotocol/cow-sdk/tree/main/packages/trading/README.md) for comprehensive details.
236
238
 
237
239
 
238
240
  ## Adapters
package/dist/CHANGELOG.md CHANGED
@@ -1,5 +1,248 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.1.0](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.13...cow-sdk-v7.1.0) (2025-11-05)
4
+
5
+
6
+ ### ✨ Features
7
+
8
+ * **new-chains:** add q4 chains ([#606](https://github.com/cowprotocol/cow-sdk/issues/606)) ([2501382](https://github.com/cowprotocol/cow-sdk/commit/2501382e80acb7f6bb0f87adbb5a9325de2c56cc))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @cowprotocol/sdk-app-data bumped to 4.1.6
16
+ * @cowprotocol/sdk-config bumped to 0.3.0
17
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.4
18
+ * @cowprotocol/sdk-order-book bumped to 0.2.0
19
+ * @cowprotocol/sdk-order-signing bumped to 0.1.10
20
+ * @cowprotocol/sdk-trading bumped to 0.4.5
21
+
22
+ ## [7.0.13](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.12...cow-sdk-v7.0.13) (2025-10-30)
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.3
30
+ * @cowprotocol/sdk-order-signing bumped to 0.1.9
31
+ * @cowprotocol/sdk-trading bumped to 0.4.4
32
+
33
+ ## [7.0.12](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.11...cow-sdk-v7.0.12) (2025-10-29)
34
+
35
+
36
+ ### 🔧 Miscellaneous
37
+
38
+ * release main ([#620](https://github.com/cowprotocol/cow-sdk/issues/620)) ([b36394a](https://github.com/cowprotocol/cow-sdk/commit/b36394a2ba38957edb47ffc4451ea6624d66737b))
39
+ * revert release ([#634](https://github.com/cowprotocol/cow-sdk/issues/634)) ([fc7bf61](https://github.com/cowprotocol/cow-sdk/commit/fc7bf61444619d4b2c3a3dd55b7ce52c197b1878))
40
+
41
+
42
+ ### Dependencies
43
+
44
+ * The following workspace dependencies were updated
45
+ * dependencies
46
+ * @cowprotocol/sdk-app-data bumped to 4.1.5
47
+ * @cowprotocol/sdk-common bumped to 0.3.0
48
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.2
49
+ * @cowprotocol/sdk-order-book bumped to 0.1.4
50
+ * @cowprotocol/sdk-order-signing bumped to 0.1.8
51
+ * @cowprotocol/sdk-trading bumped to 0.4.3
52
+
53
+ ## [7.0.11](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.10...cow-sdk-v7.0.11) (2025-10-24)
54
+
55
+
56
+ ### Dependencies
57
+
58
+ * The following workspace dependencies were updated
59
+ * dependencies
60
+ * @cowprotocol/sdk-app-data bumped to 4.1.4
61
+ * @cowprotocol/sdk-common bumped to 0.2.2
62
+ * @cowprotocol/sdk-config bumped to 0.2.0
63
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.1
64
+ * @cowprotocol/sdk-order-book bumped to 0.1.3
65
+ * @cowprotocol/sdk-order-signing bumped to 0.1.7
66
+ * @cowprotocol/sdk-trading bumped to 0.4.2
67
+
68
+ ## [7.0.10](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.9...cow-sdk-v7.0.10) (2025-10-17)
69
+
70
+
71
+ ### 🔧 Miscellaneous
72
+
73
+ * release main ([#592](https://github.com/cowprotocol/cow-sdk/issues/592)) ([e4d7212](https://github.com/cowprotocol/cow-sdk/commit/e4d7212af322beced743e985bd1fbedaef66cdcb))
74
+
75
+
76
+ ### Dependencies
77
+
78
+ * The following workspace dependencies were updated
79
+ * dependencies
80
+ * @cowprotocol/sdk-app-data bumped to 4.1.3
81
+ * @cowprotocol/sdk-trading bumped to 0.4.1
82
+
83
+ ## [7.0.9](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.8...cow-sdk-v7.0.9) (2025-10-15)
84
+
85
+
86
+ ### Dependencies
87
+
88
+ * The following workspace dependencies were updated
89
+ * dependencies
90
+ * @cowprotocol/sdk-app-data bumped to 4.1.2
91
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.0
92
+ * @cowprotocol/sdk-order-signing bumped to 0.1.6
93
+ * @cowprotocol/sdk-trading bumped to 0.4.0
94
+
95
+ ## [7.0.8](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.7...cow-sdk-v7.0.8) (2025-10-08)
96
+
97
+
98
+ ### Dependencies
99
+
100
+ * The following workspace dependencies were updated
101
+ * dependencies
102
+ * @cowprotocol/sdk-app-data bumped to 4.1.1
103
+ * @cowprotocol/sdk-common bumped to 0.2.1
104
+ * @cowprotocol/sdk-contracts-ts bumped to 0.3.1
105
+ * @cowprotocol/sdk-order-book bumped to 0.1.2
106
+ * @cowprotocol/sdk-order-signing bumped to 0.1.5
107
+ * @cowprotocol/sdk-trading bumped to 0.3.2
108
+
109
+ ## [7.0.7](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.6...cow-sdk-v7.0.7) (2025-10-08)
110
+
111
+
112
+ ### Dependencies
113
+
114
+ * The following workspace dependencies were updated
115
+ * dependencies
116
+ * @cowprotocol/sdk-app-data bumped to 4.1.0
117
+ * @cowprotocol/sdk-trading bumped to 0.3.1
118
+
119
+ ## [7.0.6](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.5...cow-sdk-v7.0.6) (2025-10-07)
120
+
121
+
122
+ ### Dependencies
123
+
124
+ * The following workspace dependencies were updated
125
+ * dependencies
126
+ * @cowprotocol/sdk-trading bumped to 0.3.0
127
+
128
+ ## [7.0.5](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.4...cow-sdk-v7.0.5) (2025-10-07)
129
+
130
+
131
+ ### Dependencies
132
+
133
+ * The following workspace dependencies were updated
134
+ * dependencies
135
+ * @cowprotocol/sdk-trading bumped to 0.2.1
136
+
137
+ ## [7.0.4](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.3...cow-sdk-v7.0.4) (2025-10-06)
138
+
139
+
140
+ ### Dependencies
141
+
142
+ * The following workspace dependencies were updated
143
+ * dependencies
144
+ * @cowprotocol/sdk-app-data bumped to 4.0.1
145
+ * @cowprotocol/sdk-common bumped to 0.2.0
146
+ * @cowprotocol/sdk-contracts-ts bumped to 0.3.0
147
+ * @cowprotocol/sdk-order-book bumped to 0.1.1
148
+ * @cowprotocol/sdk-order-signing bumped to 0.1.4
149
+ * @cowprotocol/sdk-trading bumped to 0.2.0
150
+
151
+ ## [7.0.3](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.2...cow-sdk-v7.0.3) (2025-09-24)
152
+
153
+
154
+ ### Dependencies
155
+
156
+ * The following workspace dependencies were updated
157
+ * dependencies
158
+ * @cowprotocol/sdk-contracts-ts bumped to 0.2.1
159
+ * @cowprotocol/sdk-order-signing bumped to 0.1.3
160
+ * @cowprotocol/sdk-trading bumped to 0.1.3
161
+
162
+ ## [7.0.2](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.1...cow-sdk-v7.0.2) (2025-09-23)
163
+
164
+
165
+ ### Dependencies
166
+
167
+ * The following workspace dependencies were updated
168
+ * dependencies
169
+ * @cowprotocol/sdk-contracts-ts bumped to 0.2.0
170
+ * @cowprotocol/sdk-order-signing bumped to 0.1.2
171
+ * @cowprotocol/sdk-trading bumped to 0.1.2
172
+
173
+ ## [7.0.1](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.0...cow-sdk-v7.0.1) (2025-09-22)
174
+
175
+
176
+ ### Dependencies
177
+
178
+ * The following workspace dependencies were updated
179
+ * dependencies
180
+ * @cowprotocol/sdk-contracts-ts bumped to 0.1.1
181
+ * @cowprotocol/sdk-order-signing bumped to 0.1.1
182
+ * @cowprotocol/sdk-trading bumped to 0.1.1
183
+
184
+ ## [7.0.0](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.1.3-beta.0...cow-sdk-v7.0.0) (2025-09-17)
185
+
186
+
187
+ ### ⚠ BREAKING CHANGES
188
+
189
+ * release cow-sdk v7
190
+
191
+ ### ✨ Features
192
+
193
+ * release cow-sdk v7 ([6cd3e57](https://github.com/cowprotocol/cow-sdk/commit/6cd3e573687b1ffdbc0fdcb8cdbb414d88546e38))
194
+
195
+
196
+ ### Dependencies
197
+
198
+ * The following workspace dependencies were updated
199
+ * dependencies
200
+ * @cowprotocol/sdk-app-data bumped to 4.0.0
201
+ * @cowprotocol/sdk-common bumped to 0.1.0
202
+ * @cowprotocol/sdk-config bumped to 0.1.0
203
+ * @cowprotocol/sdk-contracts-ts bumped to 0.1.0
204
+ * @cowprotocol/sdk-order-book bumped to 0.1.0
205
+ * @cowprotocol/sdk-order-signing bumped to 0.1.0
206
+ * @cowprotocol/sdk-trading bumped to 0.1.0
207
+
208
+ ## [7.1.3-beta.0](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.1.2-beta.0...cow-sdk-v7.1.3-beta.0) (2025-09-17)
209
+
210
+
211
+ ### 🔧 Miscellaneous
212
+
213
+ * make doc links absolute ([f03aabb](https://github.com/cowprotocol/cow-sdk/commit/f03aabb745e0cf51e3c9d5d8464f733e2668d544))
214
+
215
+
216
+ ### Dependencies
217
+
218
+ * The following workspace dependencies were updated
219
+ * dependencies
220
+ * @cowprotocol/sdk-app-data bumped to 4.1.7-beta.0
221
+ * @cowprotocol/sdk-common bumped to 0.5.0-beta.0
222
+ * @cowprotocol/sdk-contracts-ts bumped to 2.3.0-beta.0
223
+ * @cowprotocol/sdk-order-book bumped to 0.3.1-beta.0
224
+ * @cowprotocol/sdk-order-signing bumped to 0.2.8-beta.0
225
+ * @cowprotocol/sdk-trading bumped to 0.3.2-beta.0
226
+
227
+ ## [7.1.2-beta.0](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.1.1-beta.0...cow-sdk-v7.1.2-beta.0) (2025-09-16)
228
+
229
+
230
+ ### 🔧 Miscellaneous
231
+
232
+ * fix TypeDoc Entry Point ([#509](https://github.com/cowprotocol/cow-sdk/issues/509)) ([82c2a11](https://github.com/cowprotocol/cow-sdk/commit/82c2a11599e517fee43c9e9506ee64a602160d09))
233
+
234
+ ## [7.1.1-beta.0](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.1.0-beta.0...cow-sdk-v7.1.1-beta.0) (2025-09-16)
235
+
236
+
237
+ ### Dependencies
238
+
239
+ * The following workspace dependencies were updated
240
+ * dependencies
241
+ * @cowprotocol/sdk-app-data bumped to 4.1.6-beta.0
242
+ * @cowprotocol/sdk-contracts-ts bumped to 2.2.1-beta.0
243
+ * @cowprotocol/sdk-order-signing bumped to 0.2.7-beta.0
244
+ * @cowprotocol/sdk-trading bumped to 0.3.1-beta.0
245
+
3
246
  ## [7.1.0-beta.0](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.6-beta.0...cow-sdk-v7.1.0-beta.0) (2025-09-16)
4
247
 
5
248
 
package/dist/README.md CHANGED
@@ -25,6 +25,8 @@ The SDK supports all CoW Protocol enabled networks:
25
25
  - **Avalanche** (43114) - `SupportedChainId.AVALANCHE`
26
26
  - **Lens** (232) - `SupportedChainId.LENS`
27
27
  - **BNB** (56) - `SupportedChainId.BNB`
28
+ - **Linea** (59144) - `SupportedChainId.LINEA` (Under development)
29
+ - **Plasma** (9745) - `SupportedChainId.PLASMA` (Under development)
28
30
  - **Sepolia** (11155111) - `SupportedChainId.SEPOLIA` (Testnet)
29
31
 
30
32
  ## 🔗 **Related Resources**
@@ -32,7 +34,7 @@ The SDK supports all CoW Protocol enabled networks:
32
34
  - **[CoW Protocol Documentation](https://docs.cow.fi/)**
33
35
  - **[API Reference](https://api.cow.fi/docs/)**
34
36
  - **[CoW Protocol Website](https://cow.fi/)**
35
- - **[Examples Repository](../../examples)**
37
+ - **[Examples Repository](https://github.com/cowprotocol/cow-sdk/tree/main/examples)**
36
38
  - **Issues**: [GitHub Issues](https://github.com/cowprotocol/cow-sdk/issues)
37
39
  - **Discord**: [CoW Protocol Discord](https://discord.com/invite/cowprotocol)
38
40
  - **Documentation**: [docs.cow.fi](https://docs.cow.fi/)
@@ -67,20 +69,20 @@ yarn add @cowprotocol/cow-sdk
67
69
  Using CoW Protocol, you can perform swaps, limit orders, TWAP orders, and many other operations.
68
70
  The `@cowprotocol/cow-sdk` provides tools at different abstraction levels, allowing you to conveniently implement basic scenarios while maintaining the flexibility to control all possible cases.
69
71
 
70
- > In most cases, you will only need to use the **[Trading SDK](../trading/README.md)**
72
+ > In most cases, you will only need to use the **[Trading SDK](https://github.com/cowprotocol/cow-sdk/tree/main/packages/trading/README.md)**
71
73
 
72
74
  ## SDK Components
73
75
 
74
76
  ### Core
75
- - **[`TradingSdk`](../trading/README.md)** - Main tool for swap and limit orders with built-in quote fetching, order signing, and posting
76
- - **[`OrderSigningUtils`](../order-signing/README.md)** - Utilities for signing orders and cancellations using cryptographic algorithms
77
- - **[`OrderBookApi`](../order-book/README.md)** - Provides the ability to retrieve orders and trades from the CoW Protocol order book, as well as add and cancel them
78
- - **[`MetadataApi`](../app-data/README.md)** - API for accessing order metadata and additional information
77
+ - **[`TradingSdk`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/trading/README.md)** - Main tool for swap and limit orders with built-in quote fetching, order signing, and posting
78
+ - **[`OrderSigningUtils`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/order-signing/README.md)** - Utilities for signing orders and cancellations using cryptographic algorithms
79
+ - **[`OrderBookApi`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/order-book/README.md)** - Provides the ability to retrieve orders and trades from the CoW Protocol order book, as well as add and cancel them
80
+ - **[`MetadataApi`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/app-data/README.md)** - API for accessing order metadata and additional information
79
81
 
80
82
  ### Advanced
81
- - **[`BridgingSdk`](../bridging/README.md)** - Cross-chain token transfers and bridging functionality
82
- - **[`ConditionalOrder`](../composable/README.md)** - SDK for Programmatic Orders such as TWAP ([Read more](https://docs.cow.fi/cow-protocol/concepts/order-types/programmatic-orders))
83
- - **[`CowShedSdk`](../cow-shed/README.md)** - Account abstraction that leverages EOA with smart contract capabilities
83
+ - **[`BridgingSdk`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/bridging/README.md)** - Cross-chain token transfers and bridging functionality
84
+ - **[`ConditionalOrder`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/composable/README.md)** - SDK for Programmatic Orders such as TWAP ([Read more](https://docs.cow.fi/cow-protocol/concepts/order-types/programmatic-orders))
85
+ - **[`CowShedSdk`](https://github.com/cowprotocol/cow-sdk/tree/main/packages/cow-shed/README.md)** - Account abstraction that leverages EOA with smart contract capabilities
84
86
 
85
87
  ## v6 → v7 Migration Guide
86
88
  The versions are 99% backward compatible. The only difference is that in v7 you need to set an adapter corresponding to the library you use: `Viem`, `Ethers6`, or `Ethers5`.
@@ -232,7 +234,7 @@ if (confirm(`You will receive at least: ${buyAmount}. Proceed?`)) {
232
234
  This example demonstrates the simplest way to trade on CoW Protocol.
233
235
 
234
236
  For more advanced use cases, you can use additional parameters such as `receiver`, `partiallyFillable`, `validTo`, and others.
235
- Refer to the [Trading SDK documentation](packages/trading/README.md) for comprehensive details.
237
+ Refer to the [Trading SDK documentation](https://github.com/cowprotocol/cow-sdk/tree/main/packages/trading/README.md) for comprehensive details.
236
238
 
237
239
 
238
240
  ## Adapters
package/dist/index.d.mts CHANGED
@@ -1,8 +1,8 @@
1
1
  export * from '@cowprotocol/sdk-common';
2
2
  export { Address } from '@cowprotocol/sdk-common';
3
3
  export * from '@cowprotocol/sdk-config';
4
- export * from '@cowprotocol/sdk-app-data';
5
- export * from '@cowprotocol/sdk-order-book';
4
+ export * from '@cowprotocol/sdk-order-signing';
6
5
  export * from '@cowprotocol/sdk-contracts-ts';
6
+ export * from '@cowprotocol/sdk-order-book';
7
+ export * from '@cowprotocol/sdk-app-data';
7
8
  export * from '@cowprotocol/sdk-trading';
8
- export * from '@cowprotocol/sdk-order-signing';
package/dist/index.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  export * from '@cowprotocol/sdk-common';
2
2
  export { Address } from '@cowprotocol/sdk-common';
3
3
  export * from '@cowprotocol/sdk-config';
4
- export * from '@cowprotocol/sdk-app-data';
5
- export * from '@cowprotocol/sdk-order-book';
4
+ export * from '@cowprotocol/sdk-order-signing';
6
5
  export * from '@cowprotocol/sdk-contracts-ts';
6
+ export * from '@cowprotocol/sdk-order-book';
7
+ export * from '@cowprotocol/sdk-app-data';
7
8
  export * from '@cowprotocol/sdk-trading';
8
- export * from '@cowprotocol/sdk-order-signing';
package/dist/index.js CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  var sdkCommon = require('@cowprotocol/sdk-common');
4
4
  var sdkConfig = require('@cowprotocol/sdk-config');
5
- var sdkAppData = require('@cowprotocol/sdk-app-data');
6
- var sdkOrderBook = require('@cowprotocol/sdk-order-book');
5
+ var sdkOrderSigning = require('@cowprotocol/sdk-order-signing');
7
6
  var sdkContractsTs = require('@cowprotocol/sdk-contracts-ts');
7
+ var sdkOrderBook = require('@cowprotocol/sdk-order-book');
8
+ var sdkAppData = require('@cowprotocol/sdk-app-data');
8
9
  var sdkTrading = require('@cowprotocol/sdk-trading');
9
- var sdkOrderSigning = require('@cowprotocol/sdk-order-signing');
10
10
 
11
11
 
12
12
 
@@ -22,33 +22,33 @@ Object.keys(sdkConfig).forEach(function (k) {
22
22
  get: function () { return sdkConfig[k]; }
23
23
  });
24
24
  });
25
- Object.keys(sdkAppData).forEach(function (k) {
25
+ Object.keys(sdkOrderSigning).forEach(function (k) {
26
26
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
27
27
  enumerable: true,
28
- get: function () { return sdkAppData[k]; }
28
+ get: function () { return sdkOrderSigning[k]; }
29
29
  });
30
30
  });
31
- Object.keys(sdkOrderBook).forEach(function (k) {
31
+ Object.keys(sdkContractsTs).forEach(function (k) {
32
32
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
33
33
  enumerable: true,
34
- get: function () { return sdkOrderBook[k]; }
34
+ get: function () { return sdkContractsTs[k]; }
35
35
  });
36
36
  });
37
- Object.keys(sdkContractsTs).forEach(function (k) {
37
+ Object.keys(sdkOrderBook).forEach(function (k) {
38
38
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
39
39
  enumerable: true,
40
- get: function () { return sdkContractsTs[k]; }
40
+ get: function () { return sdkOrderBook[k]; }
41
41
  });
42
42
  });
43
- Object.keys(sdkTrading).forEach(function (k) {
43
+ Object.keys(sdkAppData).forEach(function (k) {
44
44
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
45
45
  enumerable: true,
46
- get: function () { return sdkTrading[k]; }
46
+ get: function () { return sdkAppData[k]; }
47
47
  });
48
48
  });
49
- Object.keys(sdkOrderSigning).forEach(function (k) {
49
+ Object.keys(sdkTrading).forEach(function (k) {
50
50
  if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
51
51
  enumerable: true,
52
- get: function () { return sdkOrderSigning[k]; }
52
+ get: function () { return sdkTrading[k]; }
53
53
  });
54
54
  });
package/dist/index.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  export * from '@cowprotocol/sdk-common';
2
2
  export * from '@cowprotocol/sdk-config';
3
- export * from '@cowprotocol/sdk-app-data';
4
- export * from '@cowprotocol/sdk-order-book';
3
+ export * from '@cowprotocol/sdk-order-signing';
5
4
  export * from '@cowprotocol/sdk-contracts-ts';
5
+ export * from '@cowprotocol/sdk-order-book';
6
+ export * from '@cowprotocol/sdk-app-data';
6
7
  export * from '@cowprotocol/sdk-trading';
7
- export * from '@cowprotocol/sdk-order-signing';
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cowprotocol/cow-sdk",
3
- "version": "7.1.0-beta.0",
3
+ "version": "7.1.0",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "description": "CoW Protocol SDK - get quote, configure your order, and trade",
6
6
  "main": "./dist/index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cowprotocol/cow-sdk",
3
- "version": "7.1.0-beta.0",
3
+ "version": "7.1.0",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "description": "CoW Protocol SDK - get quote, configure your order, and trade",
6
6
  "main": "./dist/index.js",
@@ -30,13 +30,13 @@
30
30
  "@cow-sdk/typescript-config": "0.0.0-beta.0"
31
31
  },
32
32
  "dependencies": {
33
- "@cowprotocol/sdk-app-data": "4.1.5-beta.0",
34
- "@cowprotocol/sdk-common": "0.4.0-beta.0",
35
- "@cowprotocol/sdk-config": "0.3.3-beta.0",
36
- "@cowprotocol/sdk-contracts-ts": "2.2.0-beta.0",
37
- "@cowprotocol/sdk-order-signing": "0.2.6-beta.0",
38
- "@cowprotocol/sdk-order-book": "0.3.0-beta.0",
39
- "@cowprotocol/sdk-trading": "0.3.0-beta.0"
33
+ "@cowprotocol/sdk-app-data": "4.1.6",
34
+ "@cowprotocol/sdk-common": "0.3.0",
35
+ "@cowprotocol/sdk-contracts-ts": "0.4.4",
36
+ "@cowprotocol/sdk-config": "0.3.0",
37
+ "@cowprotocol/sdk-order-book": "0.2.0",
38
+ "@cowprotocol/sdk-trading": "0.4.5",
39
+ "@cowprotocol/sdk-order-signing": "0.1.10"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@openzeppelin/merkle-tree": "^1.x",