Settling Orders
To settle Catalyst orders, up to 2 transactions may be required:
- Submission of self-serve message validation
- Finalizing the order on the resource lock.
If the validation layer is not self-serve or is being sponsored, only 1 transaction is needed. You can listen to the OutputProven
event to discover when your payload has been verified.
event OutputProven(uint256 chainid, bytes32 remoteIdentifier, bytes32 application, bytes32 payloadHash);
Self-serve (in-progress)
For instructions on how to relay proof for self-serve systems, please refer to their section in validation.
Finalizing Orders
The finalize call depends on the Input Settlement, but generally, there are multiple interfaces available:
- finaliseSelf: A self-serve interface to withdraw the claim to the solver address.
- finaliseTo: A self-serve interface that allows you to send tokens elsewhere.
- finaliseFor: An interface that allows someone to finalize for you, requiring a signature from you.
CompactSettler
For the CompactSettler (and compliant settlers), you need to deliver the order as you originally received it in CatalystCompactOrder
, the attached signatures as bytes.concat(sponsor, allocator)
, the timestamps of the fills (which can be read from the OutputFilled event), and the solver’s identifier or address. If there are multiple outputs, always index lists by their position in the order.
Then, finalize can be called:
function finaliseSelf(CatalystCompactOrder calldata order, bytes calldata signatures, uint32[] calldata timestamps, bytes32 solver) external;
function finaliseTo(CatalystCompactOrder calldata order, bytes calldata signatures, uint32[] calldata timestamps, bytes32 solver, address destination, bytes calldata call) external;
function finaliseFor( CatalystCompactOrder calldata order, bytes calldata signatures, uint32[] calldata timestamps, bytes32 solver, address destination, bytes calldata call, bytes calldata orderOwnerSignature) external;