@cowprotocol/cow-sdk
Version:
## 📚 [Docs website](https://docs.cow.fi/)
15 lines (14 loc) • 431 B
TypeScript
import type { EcdsaSignature } from './EcdsaSignature';
import type { EcdsaSigningScheme } from './EcdsaSigningScheme';
/**
* [EIP-712](https://eips.ethereum.org/EIPS/eip-712) signature of struct
* `OrderCancellation(bytes orderUid)` from the order's owner.
*
*/
export type OrderCancellation = {
/**
* OrderCancellation signed by owner
*/
signature: EcdsaSignature;
signingScheme: EcdsaSigningScheme;
};