UNPKG

evx-sdk

Version:

The Evx SDK is a developer toolkit designed to simplify interaction with the Evx decentralized liquidity protocol. It provides an abstraction layer over the smart contracts, allowing developers to easily build applications, integrate liquidity pools, fetc

8 lines (7 loc) 179 B
/** * @notice Output for canceling an order * @dev Contains confirmation that the order was cancelled */ export interface ICancelOrderCommandOutput { cancelled: boolean; }