@cowprotocol/cow-sdk
Version:
<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>
17 lines (16 loc) • 509 B
TypeScript
/**
* How good should the price estimate be?
*
* Fast: The price estimate is chosen among the fastest N price estimates.
* Optimal: The price estimate is chosen among all price estimates.
* Verified: The price estimate is chosen among all verified/simulated
* price estimates.
*
* **NOTE**: Orders are supposed to be created from `verified` or `optimal`
* price estimates.
*/
export declare enum PriceQuality {
FAST = "fast",
OPTIMAL = "optimal",
VERIFIED = "verified"
}