curl --request POST \
--url https://tars.loopscale.com/v1/markets/lending_vaults/timelock/create \
--header 'Content-Type: application/json' \
--header 'user-wallet: <user-wallet>' \
--data '
{
"vaultAddress": "<string>",
"collateralUpdates": {
"addCollateral": {},
"removeCollateral": {},
"updateCollateral": {},
"updateAssetAllocation": [
{
"assetIdentifier": "<string>",
"maxAllocationPct": "<string>"
}
]
},
"editStrategyArgs": {
"originationsEnabled": true,
"liquidityBuffer": 123,
"interestFee": 123,
"originationFee": 123,
"principalFee": 123,
"originationCap": 123
}
}
'