Skip to main content
Neutrl is a delta-neutral yield vault on Ethereum. It exposes a single vault (sNUSD) that earns yield through a market-neutral strategy.

Supported chains

Chain IDNetwork
1Ethereum

Position types

Type identifierDescriptionKey fields
neutrl-snusdsNUSD vault depositbalance, balanceUsd, apy, exchangeRate, vaultMetrics

walletPositions example

query {
  walletPositions(inputs: [
    { protocol: "neutrl", chainId: 1, walletAddress: "0x742d35Cc6634C0532925a3b8D4C9db96C4b4d8b6" }
  ]) {
    data {
      ... on NeutrlWalletPositions {
        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.0485 = 4.85%), calculated from historical exchange rate changes
  • APY may be null if insufficient historical data is available