curl -X POST https://api.stableyard.fi/sdk/v1/settle \
-H "x-sdk-key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"payload": {
"quoteId": "quote_xyz789",
"nonce": "123456",
"deadline": 1705315200
},
"signature": "0x...",
"domain": {
"name": "Stableyard",
"version": "1",
"chainId": 8453,
"verifyingContract": "0x..."
},
"types": {
"Settlement": [
{ "name": "quoteId", "type": "string" },
{ "name": "nonce", "type": "uint256" },
{ "name": "deadline", "type": "uint256" }
]
}
}'