@cowprotocol/cow-sdk
Version:
## 📚 [Docs website](https://docs.cow.fi/)
17 lines (16 loc) • 493 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"
}