@cowprotocol/cow-sdk
Version:
<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>
15 lines (14 loc) • 445 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;
};