The Contract Stack
Never send funds directly to a settlement address. Value moves only through a signed order’s flow - the quote response and preflight
nextActions tell you exactly what to sign and where funds travel.Your Deployment, Your Addresses
Your workspace router’s address is deterministic and predicted before deployment - it is provisioned automatically when your workspace is created, and it belongs to your workspace permanently. Module and escrow addresses vary by chain and version. Never hardcode any of them: the addresses carried in quote responses and preflight plans are authoritative for every trade. See Supported Chains for network coverage.Settlement Lifecycle
Every quote arrives carrying its own EIP-712escrow-v0 payload - the trade’s complete terms (which assets, how much, who receives, until when) in signable form. Your signature authorizes it; your router locks the input into escrow on exactly those terms; and only a delivery proof can move the funds onward to the counterparty.
Should the expiry pass without a delivery proof, the escrow hands your input straight back - via a refund path that is permissionless and unpausable by anyone. There is never a half-settled state, never a stranded balance, never custody.
Funding Locks
How your input funds enter escrow depends on the lock type available for the corridor and token:
The preflight
nextActions select the lock for you - see Token Approvals for the check-and-approve flow.
Signed Payloads
Each quote carries its complete typed payload - domain, types, and message - in theorder field:
Sign exactly what the quote returns. The
integrityChecksum binds your submission to the quote you were shown, so any mutation of the payload is rejected at submission.
See the RFQ Order Submission guide and the Router API quickstart for the full signing flows.