Pendle · Schema

RollOverPtData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
amountPtOut string
priceImpact number
priceImpactBreakDown object
effectiveApy number
fee object Fee in USD
View JSON Schema on GitHub

JSON Schema

RollOverPtData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "RollOverPtData",
  "type": "object",
  "properties": {
    "amountPtOut": {
      "type": "string"
    },
    "priceImpact": {
      "type": "number"
    },
    "priceImpactBreakDown": {
      "$ref": "#/components/schemas/PriceImpactBreakDownData"
    },
    "effectiveApy": {
      "type": "number"
    },
    "fee": {
      "description": "Fee in USD",
      "allOf": [
        {
          "$ref": "#/components/schemas/FeeUsd"
        }
      ]
    }
  },
  "required": [
    "amountPtOut",
    "priceImpact",
    "priceImpactBreakDown",
    "fee"
  ]
}