UNPKG

@cowprotocol/cow-sdk

Version:

## 📚 [Docs website](https://docs.cow.fi/)

20 lines (19 loc) • 390 B
import type { TokenAmount } from './TokenAmount'; /** * A calculated order quote. * */ export type Quote = { /** * The amount of the sell token. */ sellAmount?: TokenAmount; /** * The amount of the buy token. */ buyAmount?: TokenAmount; /** * The amount that needs to be paid, denominated in the sell token. */ fee?: TokenAmount; };