UNPKG

@cowprotocol/cow-sdk

Version:

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

15 lines (14 loc) • 299 B
/** * The validity for the order. */ export type OrderQuoteValidity = ({ /** * Unix timestamp (`uint32`) until which the order is valid. */ validTo?: number; } | { /** * Number (`uint32`) of seconds that the order should be valid for. */ validFor?: number; });