UNPKG

@f5i23q999d/cow-sdk

Version:

<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>

24 lines 839 B
"use strict"; /* istanbul ignore file */ /* tslint:disable */ /* eslint-disable */ Object.defineProperty(exports, "__esModule", { value: true }); exports.PriceQuality = void 0; /** * 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. */ var PriceQuality; (function (PriceQuality) { PriceQuality["FAST"] = "fast"; PriceQuality["OPTIMAL"] = "optimal"; PriceQuality["VERIFIED"] = "verified"; })(PriceQuality = exports.PriceQuality || (exports.PriceQuality = {})); //# sourceMappingURL=PriceQuality.js.map