Pendle · Schema

MarketExtendedInfoResponse

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
floatingPt number
floatingSy number
sySupplyCap number Sy supply cap. Only available for sy with cap, otherwise null. Number is in decimal format
syCurrentSupply number Sy current supply. Only available for sy with cap, otherwise null. Number is in decimal format
pyUnit string
ptEqualsPyUnit boolean
underlyingAssetWorthMore string
nativeWithdrawalURL string
nativeDepositURL string
defaultMigratePool string
feeRate number
yieldRange object
View JSON Schema on GitHub

JSON Schema

MarketExtendedInfoResponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MarketExtendedInfoResponse",
  "type": "object",
  "properties": {
    "floatingPt": {
      "type": "number"
    },
    "floatingSy": {
      "type": "number"
    },
    "sySupplyCap": {
      "type": "number",
      "description": "Sy supply cap. Only available for sy with cap, otherwise null. Number is in decimal format",
      "nullable": true
    },
    "syCurrentSupply": {
      "type": "number",
      "description": "Sy current supply. Only available for sy with cap, otherwise null. Number is in decimal format",
      "nullable": true
    },
    "pyUnit": {
      "type": "string"
    },
    "ptEqualsPyUnit": {
      "type": "boolean"
    },
    "underlyingAssetWorthMore": {
      "type": "string"
    },
    "nativeWithdrawalURL": {
      "type": "string"
    },
    "nativeDepositURL": {
      "type": "string"
    },
    "defaultMigratePool": {
      "type": "string"
    },
    "feeRate": {
      "type": "number"
    },
    "yieldRange": {
      "$ref": "#/components/schemas/YieldRangeResponse"
    }
  },
  "required": [
    "floatingPt",
    "floatingSy",
    "pyUnit",
    "ptEqualsPyUnit"
  ]
}