Pendle · Schema

IntegrationAssetEntity

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
id string Asset address
symbol string Asset symbol
name string Asset name
decimals number Asset decimals
View JSON Schema on GitHub

JSON Schema

IntegrationAssetEntity.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "IntegrationAssetEntity",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Asset address"
    },
    "symbol": {
      "type": "string",
      "description": "Asset symbol"
    },
    "name": {
      "type": "string",
      "description": "Asset name"
    },
    "decimals": {
      "type": "number",
      "description": "Asset decimals"
    }
  },
  "required": [
    "id",
    "symbol",
    "name",
    "decimals"
  ]
}