Pendle · Schema

FeaturedMarketEntity

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
marketAddress string
icon string
tokenSymbol string
symbol string
accentColor string
discountedPrice object
fixedApy number
currentPrice object
View JSON Schema on GitHub

JSON Schema

FeaturedMarketEntity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "FeaturedMarketEntity",
  "type": "object",
  "properties": {
    "marketAddress": {
      "type": "string"
    },
    "icon": {
      "type": "string"
    },
    "tokenSymbol": {
      "type": "string"
    },
    "symbol": {
      "type": "string"
    },
    "accentColor": {
      "type": "string"
    },
    "discountedPrice": {
      "$ref": "#/components/schemas/CurrenyAmountEntity"
    },
    "fixedApy": {
      "type": "number"
    },
    "currentPrice": {
      "$ref": "#/components/schemas/CurrenyAmountEntity"
    }
  },
  "required": [
    "marketAddress",
    "icon",
    "tokenSymbol",
    "symbol",
    "accentColor",
    "discountedPrice",
    "fixedApy",
    "currentPrice"
  ]
}