POST
/
v0
/
multicall
/
aave
/
loop
from compass_api_sdk import CompassAPI, models


with CompassAPI(
    api_key_auth="<YOUR_API_KEY_HERE>",
) as compass_api:

    res = compass_api.transaction_batching.aave_loop(chain=models.Chain.BASE_MAINNET, sender="0x29F20a192328eF1aD35e1564aBFf4Be9C5ce5f7B", signed_authorization={
        "nonce": 1000,
        "address": "0xcA11bde05977b3631167028862bE2a173976CA11",
        "chain_id": 42161,
        "r": 4.3251085460800106e+76,
        "s": 5.471500338403868e+76,
        "y_parity": 0,
    }, collateral_token=models.TokenEnum.MKR, borrow_token=models.TokenEnum.FXS, collateral_amount="1000", loop_count=2, max_slippage_percent=2.5, loan_to_value=20.5)

    # Handle response
    print(res)
{
  "chainId": 123,
  "data": "<string>",
  "from": "<string>",
  "gas": 123,
  "to": "<string>",
  "value": 123,
  "nonce": 123,
  "maxFeePerGas": 123,
  "maxPriorityFeePerGas": 123,
  "authorizationList": []
}

Authorizations

x-api-key
string
header
required

Your Compass API Key. Get your key here.

Body

application/json

Request model for executing an Aave loop strategy.

Response

200
application/json

Successful Response

The response is of type object.