Pendle · Schema

RemoveLiquidityData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

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

JSON Schema

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