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>

15 lines (14 loc) 350 B
import type { AuctionPrices } from './AuctionPrices.js'; import type { UID } from './UID.js'; /** * 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; };