@cowprotocol/cow-sdk
Version:
<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>
13 lines (12 loc) • 390 B
TypeScript
export type PriceEstimationError = {
errorType: PriceEstimationError.errorType;
description: string;
};
export declare namespace PriceEstimationError {
enum errorType {
QUOTE_NOT_VERIFIED = "QuoteNotVerified",
UNSUPPORTED_TOKEN = "UnsupportedToken",
ZERO_AMOUNT = "ZeroAmount",
UNSUPPORTED_ORDER_TYPE = "UnsupportedOrderType"
}
}