UNPKG

@cowprotocol/cow-sdk

Version:

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

16 lines (15 loc) • 503 B
export type OrderCancellationError = { errorType: OrderCancellationError.errorType; description: string; }; export declare namespace OrderCancellationError { enum errorType { INVALID_SIGNATURE = "InvalidSignature", WRONG_OWNER = "WrongOwner", ORDER_NOT_FOUND = "OrderNotFound", ALREADY_CANCELLED = "AlreadyCancelled", ORDER_FULLY_EXECUTED = "OrderFullyExecuted", ORDER_EXPIRED = "OrderExpired", ON_CHAIN_ORDER = "OnChainOrder" } }