Skip to main content
Avant is a yield strategy protocol on Avalanche. The API exposes a single vault (savUSD) where depositors earn yield from the protocol’s strategy.

Supported chains

Chain IDNetwork
43114Avalanche

Position types

Type identifierDescriptionKey fields
avant-savusdsavUSD vault depositbalance, balanceUsd, apy, exchangeRate, vaultMetrics

walletPositions example

query {
  walletPositions(inputs: [
    { protocol: "avant", chainId: 43114, walletAddress: "0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b6" }
  ]) {
    data {
      ... on AvantWalletPositions {
        protocol walletAddress chainId
        vaultPosition {
          type vaultAddress
          underlyingAsset { address symbol decimals }
          balance balanceUsd apy exchangeRate
          vaultMetrics { totalAssets totalSupply decimals }
        }
      }
    }
    errors { protocol chainId walletAddress error { code message retryable } }
  }
}

Notes

  • vaultPosition is null when the wallet has no position or when querying a non-supported chain
  • APY is a decimal (e.g., 0.0612 = 6.12%)