-
Notifications
You must be signed in to change notification settings - Fork 63
contract.ExchangeOrdersHolderV1
Aleksey Bykhun edited this page Jan 18, 2023
·
1 revision
mapping(bytes32 => OrderParams) internal orders;
function add(ExchangeDomainV1.Order calldata order) external;
function exists(ExchangeDomainV1.Order calldata order) external view returns (bool);
function prepareKey(ExchangeDomainV1.Order memory order) internal pure returns (bytes32);
struct OrderParams {
uint256 selling;
uint256 buying;
uint256 sellerFee;
}