Pendle · Schema

SyPosition

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
syId string Unique identifier of the market
balance string Sy token (SY) balance in wei
claimTokenAmounts array Array of claimable rewards
View JSON Schema on GitHub

JSON Schema

SyPosition.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SyPosition",
  "type": "object",
  "properties": {
    "syId": {
      "type": "string",
      "description": "Unique identifier of the market",
      "example": "1-0xabc"
    },
    "balance": {
      "type": "string",
      "description": "Sy token (SY) balance in wei",
      "example": "1000000000000000000"
    },
    "claimTokenAmounts": {
      "description": "Array of claimable rewards",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ClaimTokenAmount"
      }
    }
  },
  "required": [
    "syId",
    "balance"
  ]
}