Pendle · Schema

AddLiquidityData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

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

JSON Schema

AddLiquidityData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AddLiquidityData",
  "type": "object",
  "properties": {
    "amountLpOut": {
      "type": "string"
    },
    "amountYtOut": {
      "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": [
    "amountLpOut",
    "amountYtOut",
    "priceImpact",
    "priceImpactBreakDown",
    "fee"
  ]
}