35 lines
605 B
JSON
35 lines
605 B
JSON
{
|
|
"name": "Stablecoin Hedge",
|
|
"description": "Hedge between stablecoins using Curve",
|
|
"chain": "mainnet",
|
|
"blinds": [
|
|
{
|
|
"name": "amount",
|
|
"type": "uint256",
|
|
"description": "Amount to hedge"
|
|
}
|
|
],
|
|
"guards": [
|
|
{
|
|
"type": "slippage",
|
|
"params": {
|
|
"maxBps": 30
|
|
}
|
|
}
|
|
],
|
|
"steps": [
|
|
{
|
|
"id": "curve_swap",
|
|
"action": {
|
|
"type": "curve.exchange",
|
|
"pool": "0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7",
|
|
"i": 0,
|
|
"j": 1,
|
|
"dx": "{{amount}}",
|
|
"minDy": "{{amount}}"
|
|
}
|
|
}
|
|
]
|
|
}
|
|
|