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) 313 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; });