@cowprotocol/cow-sdk
Version:
## 📚 [Docs website](https://docs.cow.fi/)
13 lines (12 loc) • 339 B
TypeScript
import type { Quote } from './Quote';
/**
* The protocol fee is taken as a percent of the order price improvement which is a difference between the executed price and the best quote.
*/
export type PriceImprovement = {
factor: number;
maxVolumeFactor: number;
/**
* The best quote received.
*/
quote: Quote;
};