Pendle · Schema

PriceAssetData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
pt number PT price in the market's accounting asset at the time of the transaction
yt number YT price in the market's accounting asset at the time of the transaction
lp number LP price in the market's accounting asset at the time of the transaction
View JSON Schema on GitHub

JSON Schema

PriceAssetData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PriceAssetData",
  "type": "object",
  "properties": {
    "pt": {
      "type": "number",
      "description": "PT price in the market's accounting asset at the time of the transaction"
    },
    "yt": {
      "type": "number",
      "description": "YT price in the market's accounting asset at the time of the transaction"
    },
    "lp": {
      "type": "number",
      "description": "LP price in the market's accounting asset at the time of the transaction"
    }
  },
  "required": [
    "pt",
    "yt",
    "lp"
  ]
}