UNPKG

@cowprotocol/cow-sdk

Version:

## 📚 [Docs website](https://docs.cow.fi/)

19 lines (18 loc) • 510 B
import type { EcdsaSignature } from './EcdsaSignature'; import type { EcdsaSigningScheme } from './EcdsaSigningScheme'; import type { UID } from './UID'; /** * EIP-712 signature of struct OrderCancellations { orderUid: bytes[] } from the order's owner. * */ export type OrderCancellations = { /** * UIDs of orders to cancel. */ orderUids?: Array<UID>; /** * `OrderCancellation` signed by the owner. */ signature: EcdsaSignature; signingScheme: EcdsaSigningScheme; };