UNPKG

@cowprotocol/cow-sdk

Version:

<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>

19 lines (18 loc) 528 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; };