Last updated 8 months ago
Terms and Disclaimers
"WETH"
"USDC"
"03NOV23"
^\d\d\w\w\w\d\d$
1700
"C"
^C$|^P$
Positions settled
const response = await fetch('/pool/settle', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify([ { "base": "WETH", "quote": "USDC", "expiration": "03NOV23", "strike": 1700, "type": "C" } ]), }); const data = await response.json();
{ "success": [ { "base": "WETH", "quote": "USDC", "expiration": "03NOV23", "strike": 1700, "type": "P" } ], "failed": [ { "failedOption": { "base": "WETH", "quote": "USDC", "expiration": "03NOV23", "strike": 1700, "type": "P" }, "reason": "text" } ] }