@cowprotocol/cow-sdk 7.1.1-beta.0 → 7.1.1

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,247 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.1.1](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.1.0...cow-sdk-v7.1.1) (2025-11-07)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @cowprotocol/sdk-contracts-ts bumped to 0.5.0
11
+ * @cowprotocol/sdk-order-signing bumped to 0.1.11
12
+ * @cowprotocol/sdk-trading bumped to 0.4.6
13
+
14
+ ## [7.1.0](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.13...cow-sdk-v7.1.0) (2025-11-05)
15
+
16
+
17
+ ### ✨ Features
18
+
19
+ * **new-chains:** add q4 chains ([#606](https://github.com/cowprotocol/cow-sdk/issues/606)) ([2501382](https://github.com/cowprotocol/cow-sdk/commit/2501382e80acb7f6bb0f87adbb5a9325de2c56cc))
20
+
21
+
22
+ ### Dependencies
23
+
24
+ * The following workspace dependencies were updated
25
+ * dependencies
26
+ * @cowprotocol/sdk-app-data bumped to 4.1.6
27
+ * @cowprotocol/sdk-config bumped to 0.3.0
28
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.4
29
+ * @cowprotocol/sdk-order-book bumped to 0.2.0
30
+ * @cowprotocol/sdk-order-signing bumped to 0.1.10
31
+ * @cowprotocol/sdk-trading bumped to 0.4.5
32
+
33
+ ## [7.0.13](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.12...cow-sdk-v7.0.13) (2025-10-30)
34
+
35
+
36
+ ### Dependencies
37
+
38
+ * The following workspace dependencies were updated
39
+ * dependencies
40
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.3
41
+ * @cowprotocol/sdk-order-signing bumped to 0.1.9
42
+ * @cowprotocol/sdk-trading bumped to 0.4.4
43
+
44
+ ## [7.0.12](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.11...cow-sdk-v7.0.12) (2025-10-29)
45
+
46
+
47
+ ### 🔧 Miscellaneous
48
+
49
+ * release main ([#620](https://github.com/cowprotocol/cow-sdk/issues/620)) ([b36394a](https://github.com/cowprotocol/cow-sdk/commit/b36394a2ba38957edb47ffc4451ea6624d66737b))
50
+ * revert release ([#634](https://github.com/cowprotocol/cow-sdk/issues/634)) ([fc7bf61](https://github.com/cowprotocol/cow-sdk/commit/fc7bf61444619d4b2c3a3dd55b7ce52c197b1878))
51
+
52
+
53
+ ### Dependencies
54
+
55
+ * The following workspace dependencies were updated
56
+ * dependencies
57
+ * @cowprotocol/sdk-app-data bumped to 4.1.5
58
+ * @cowprotocol/sdk-common bumped to 0.3.0
59
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.2
60
+ * @cowprotocol/sdk-order-book bumped to 0.1.4
61
+ * @cowprotocol/sdk-order-signing bumped to 0.1.8
62
+ * @cowprotocol/sdk-trading bumped to 0.4.3
63
+
64
+ ## [7.0.11](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.10...cow-sdk-v7.0.11) (2025-10-24)
65
+
66
+
67
+ ### Dependencies
68
+
69
+ * The following workspace dependencies were updated
70
+ * dependencies
71
+ * @cowprotocol/sdk-app-data bumped to 4.1.4
72
+ * @cowprotocol/sdk-common bumped to 0.2.2
73
+ * @cowprotocol/sdk-config bumped to 0.2.0
74
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.1
75
+ * @cowprotocol/sdk-order-book bumped to 0.1.3
76
+ * @cowprotocol/sdk-order-signing bumped to 0.1.7
77
+ * @cowprotocol/sdk-trading bumped to 0.4.2
78
+
79
+ ## [7.0.10](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.9...cow-sdk-v7.0.10) (2025-10-17)
80
+
81
+
82
+ ### 🔧 Miscellaneous
83
+
84
+ * release main ([#592](https://github.com/cowprotocol/cow-sdk/issues/592)) ([e4d7212](https://github.com/cowprotocol/cow-sdk/commit/e4d7212af322beced743e985bd1fbedaef66cdcb))
85
+
86
+
87
+ ### Dependencies
88
+
89
+ * The following workspace dependencies were updated
90
+ * dependencies
91
+ * @cowprotocol/sdk-app-data bumped to 4.1.3
92
+ * @cowprotocol/sdk-trading bumped to 0.4.1
93
+
94
+ ## [7.0.9](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.8...cow-sdk-v7.0.9) (2025-10-15)
95
+
96
+
97
+ ### Dependencies
98
+
99
+ * The following workspace dependencies were updated
100
+ * dependencies
101
+ * @cowprotocol/sdk-app-data bumped to 4.1.2
102
+ * @cowprotocol/sdk-contracts-ts bumped to 0.4.0
103
+ * @cowprotocol/sdk-order-signing bumped to 0.1.6
104
+ * @cowprotocol/sdk-trading bumped to 0.4.0
105
+
106
+ ## [7.0.8](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.7...cow-sdk-v7.0.8) (2025-10-08)
107
+
108
+
109
+ ### Dependencies
110
+
111
+ * The following workspace dependencies were updated
112
+ * dependencies
113
+ * @cowprotocol/sdk-app-data bumped to 4.1.1
114
+ * @cowprotocol/sdk-common bumped to 0.2.1
115
+ * @cowprotocol/sdk-contracts-ts bumped to 0.3.1
116
+ * @cowprotocol/sdk-order-book bumped to 0.1.2
117
+ * @cowprotocol/sdk-order-signing bumped to 0.1.5
118
+ * @cowprotocol/sdk-trading bumped to 0.3.2
119
+
120
+ ## [7.0.7](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.6...cow-sdk-v7.0.7) (2025-10-08)
121
+
122
+
123
+ ### Dependencies
124
+
125
+ * The following workspace dependencies were updated
126
+ * dependencies
127
+ * @cowprotocol/sdk-app-data bumped to 4.1.0
128
+ * @cowprotocol/sdk-trading bumped to 0.3.1
129
+
130
+ ## [7.0.6](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.5...cow-sdk-v7.0.6) (2025-10-07)
131
+
132
+
133
+ ### Dependencies
134
+
135
+ * The following workspace dependencies were updated
136
+ * dependencies
137
+ * @cowprotocol/sdk-trading bumped to 0.3.0
138
+
139
+ ## [7.0.5](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.4...cow-sdk-v7.0.5) (2025-10-07)
140
+
141
+
142
+ ### Dependencies
143
+
144
+ * The following workspace dependencies were updated
145
+ * dependencies
146
+ * @cowprotocol/sdk-trading bumped to 0.2.1
147
+
148
+ ## [7.0.4](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.3...cow-sdk-v7.0.4) (2025-10-06)
149
+
150
+
151
+ ### Dependencies
152
+
153
+ * The following workspace dependencies were updated
154
+ * dependencies
155
+ * @cowprotocol/sdk-app-data bumped to 4.0.1
156
+ * @cowprotocol/sdk-common bumped to 0.2.0
157
+ * @cowprotocol/sdk-contracts-ts bumped to 0.3.0
158
+ * @cowprotocol/sdk-order-book bumped to 0.1.1
159
+ * @cowprotocol/sdk-order-signing bumped to 0.1.4
160
+ * @cowprotocol/sdk-trading bumped to 0.2.0
161
+
162
+ ## [7.0.3](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.2...cow-sdk-v7.0.3) (2025-09-24)
163
+
164
+
165
+ ### Dependencies
166
+
167
+ * The following workspace dependencies were updated
168
+ * dependencies
169
+ * @cowprotocol/sdk-contracts-ts bumped to 0.2.1
170
+ * @cowprotocol/sdk-order-signing bumped to 0.1.3
171
+ * @cowprotocol/sdk-trading bumped to 0.1.3
172
+
173
+ ## [7.0.2](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.1...cow-sdk-v7.0.2) (2025-09-23)
174
+
175
+
176
+ ### Dependencies
177
+
178
+ * The following workspace dependencies were updated
179
+ * dependencies
180
+ * @cowprotocol/sdk-contracts-ts bumped to 0.2.0
181
+ * @cowprotocol/sdk-order-signing bumped to 0.1.2
182
+ * @cowprotocol/sdk-trading bumped to 0.1.2
183
+
184
+ ## [7.0.1](https://github.com/cowprotocol/cow-sdk/compare/cow-sdk-v7.0.0...cow-sdk-v7.0.1) (2025-09-22)
185
+
186
+
187
+ ### Dependencies
188
+
189
+ * The following workspace dependencies were updated
190
+ * dependencies
191
+ * @cowprotocol/sdk-contracts-ts bumped to 0.1.1
192
+ * @cowprotocol/sdk-order-signing bumped to 0.1.1
193
+ * @cowprotocol/sdk-trading bumped to 0.1.1
194
+
195
+ ## [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)
196
+
197
+
198
+ ### ⚠ BREAKING CHANGES
199
+
200
+ * release cow-sdk v7
201
+
202
+ ### ✨ Features
203
+
204
+ * release cow-sdk v7 ([6cd3e57](https://github.com/cowprotocol/cow-sdk/commit/6cd3e573687b1ffdbc0fdcb8cdbb414d88546e38))
205
+
206
+
207
+ ### Dependencies
208
+
209
+ * The following workspace dependencies were updated
210
+ * dependencies
211
+ * @cowprotocol/sdk-app-data bumped to 4.0.0
212
+ * @cowprotocol/sdk-common bumped to 0.1.0
213
+ * @cowprotocol/sdk-config bumped to 0.1.0
214
+ * @cowprotocol/sdk-contracts-ts bumped to 0.1.0
215
+ * @cowprotocol/sdk-order-book bumped to 0.1.0
216
+ * @cowprotocol/sdk-order-signing bumped to 0.1.0
217
+ * @cowprotocol/sdk-trading bumped to 0.1.0
218
+
219
+ ## [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)
220
+
221
+
222
+ ### 🔧 Miscellaneous
223
+
224
+ * make doc links absolute ([f03aabb](https://github.com/cowprotocol/cow-sdk/commit/f03aabb745e0cf51e3c9d5d8464f733e2668d544))
225
+
226
+
227
+ ### Dependencies
228
+
229
+ * The following workspace dependencies were updated
230
+ * dependencies
231
+ * @cowprotocol/sdk-app-data bumped to 4.1.7-beta.0
232
+ * @cowprotocol/sdk-common bumped to 0.5.0-beta.0
233
+ * @cowprotocol/sdk-contracts-ts bumped to 2.3.0-beta.0
234
+ * @cowprotocol/sdk-order-book bumped to 0.3.1-beta.0
235
+ * @cowprotocol/sdk-order-signing bumped to 0.2.8-beta.0
236
+ * @cowprotocol/sdk-trading bumped to 0.3.2-beta.0
237
+
238
+ ## [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)
239
+
240
+
241
+ ### 🔧 Miscellaneous
242
+
243
+ * fix TypeDoc Entry Point ([#509](https://github.com/cowprotocol/cow-sdk/issues/509)) ([82c2a11](https://github.com/cowprotocol/cow-sdk/commit/82c2a11599e517fee43c9e9506ee64a602160d09))
244
+
3
245
  ## [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)
4
246
 
5
247
 
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.1-beta.0",
3
+ "version": "7.1.1",
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.1-beta.0",
3
+ "version": "7.1.1",
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.6-beta.0",
34
- "@cowprotocol/sdk-common": "0.4.0-beta.0",
35
- "@cowprotocol/sdk-contracts-ts": "2.2.1-beta.0",
36
- "@cowprotocol/sdk-config": "0.3.3-beta.0",
37
- "@cowprotocol/sdk-order-book": "0.3.0-beta.0",
38
- "@cowprotocol/sdk-trading": "0.3.1-beta.0",
39
- "@cowprotocol/sdk-order-signing": "0.2.7-beta.0"
33
+ "@cowprotocol/sdk-app-data": "4.1.6",
34
+ "@cowprotocol/sdk-config": "0.3.0",
35
+ "@cowprotocol/sdk-order-signing": "0.1.11",
36
+ "@cowprotocol/sdk-contracts-ts": "0.5.0",
37
+ "@cowprotocol/sdk-order-book": "0.2.0",
38
+ "@cowprotocol/sdk-trading": "0.4.6",
39
+ "@cowprotocol/sdk-common": "0.3.0"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@openzeppelin/merkle-tree": "^1.x",