@cowprotocol/cow-sdk 0.0.13 → 0.0.14
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/dist/api/cow/types.d.ts +9 -3
- package/dist/api/cow-subgraph/graphql.d.ts +132 -0
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +2 -2
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +2 -2
- package/dist/index.module.js.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/utils/sign.d.ts +1 -1
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
package/dist/utils/sign.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Order, OrderCancellation as OrderCancellationGp, SigningScheme } from '@
|
|
1
|
+
import { Order, OrderCancellation as OrderCancellationGp, SigningScheme } from '@cowprotocol/contracts';
|
|
2
2
|
import { SupportedChainId as ChainId } from '../constants/chains';
|
|
3
3
|
import { Signer } from '@ethersproject/abstract-signer';
|
|
4
4
|
export declare type UnsignedOrder = Omit<Order, 'receiver'> & {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cowprotocol/cow-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"graphql:codegen": "graphql-codegen --config graphql-codegen.yml"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@
|
|
28
|
+
"@cowprotocol/contracts": "^1.3.1",
|
|
29
29
|
"ajv": "^8.8.2",
|
|
30
30
|
"cross-fetch": "^3.1.5",
|
|
31
31
|
"ethers": "^5.5.3",
|