Output Settlement
Catalyst’s initial filler – CoinFiller.sol
– supports two order types: simple limit orders and Dutch auctions. For more about the specific order details, see the section on Auctions
CoinFiller
To configure whether to use a limit order or a Dutch auction, set the associated fulfillmentContext
on the OutputDescription
.
struct OutputDescription { ... bytes remoteCall; bytes fulfillmentContext;}
Use the following pseudocode:
uint256 slope;uint256 stopTime;string orderType; // "limit" or "dutch"
if (orderType == "limit") fulfillmentContext = "0x" || fulfillmentContext = "0x00";if (orderType == "dutch") fulfillmentContext = abi.encodePacked(0x01, slope, stopTime);
Specifically for Dutch auctions, if the order contains multiple outputs, only the first one will work as an auction, and the rest will resolve to the worst price. This is because solvers are only incentivized to compete on the first output in an order, since the winner of that order is the winner of the entire order once anyone fills the rest of the outputs.