UNPKG

@f5i23q999d/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) 519 B
import type { EcdsaSignature } from './EcdsaSignature.js'; import type { EcdsaSigningScheme } from './EcdsaSigningScheme.js'; import type { UID } from './UID.js'; /** * 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; };