Pendle · Schema

CurrenyAmountEntity

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
currency string
amount number
View JSON Schema on GitHub

JSON Schema

CurrenyAmountEntity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CurrenyAmountEntity",
  "type": "object",
  "properties": {
    "currency": {
      "type": "string"
    },
    "amount": {
      "type": "number",
      "nullable": true
    }
  },
  "required": [
    "currency"
  ]
}