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>

15 lines (14 loc) 358 B
import type { AuctionPrices } from './AuctionPrices'; import type { UID } from './UID'; /** * The components that describe a batch auction for the solver competition. * */ export type CompetitionAuction = { /** * The UIDs of the orders included in the auction. * */ orders?: Array<UID>; prices?: AuctionPrices; };