UNPKG

@cowprotocol/cow-sdk

Version:

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

20 lines (19 loc) 409 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; };