aave-automation-subgraph/README.md
2022-08-04 18:35:36 +05:30

1.2 KiB

AAVE Automation Subgraph

Tracks the data related to Submit, Execute and Cancel automation.

Subgraph deployment:

Query Structure

{
  accounts{
    id
    submitAutomation{
      id
      user
      userId
      safeHF
      thresholdHF
      currentHf
    }
    executeMetaData{
      id
      isSafe
      metadata
    }
    executeAutomation{
      id
      finalHf
      initialHf
      automationFee
      params{
        id
        collateralToken
  			debtToken
  			collateralAmount
  			debtAmount
  			collateralAmountWithTotalFee
  			swap{
          id
          buyToken
          sellToken
          sellAmt
          unitAmt
          callData
        }
  			route
  			rateMode
      }
      spells{
        id
        _targets
        _datas
      }
    }
    cancelData{
      id
      user
      userId
      nonce
    }
    systemCancelData{
      id
      userId
      user
      nonce
      errorCode
    }
  }
  # executors{
  #   id
  #   executors
  #   status
  # }
}