For the complete documentation index, see llms.txt. This page is also available as Markdown.

OrderHashParams

Git Source

Struct that defines the key for storing an order.

Includes all order parameters except the allowances and creation timestamp.

struct OrderHashParams {
address owner;
address sellToken;
address buyToken;
uint256 sellAmount;
uint256 minBuyAmount;
uint32 maxGas;
uint32 startMidPriceDelta;
uint32 endMidPriceDelta;
uint32 startTime;
uint32 endTime;
bytes32 salt;
bool partialFill;
bytes callData;
address callDataTarget;
}

Last updated

Was this helpful?