Pendle · Schema

SupportedAggregator

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
name string Name of the aggregator, e.g., kyberswap, okx, odos, paraswap
computingUnit number Computing unit required for the aggregator
View JSON Schema on GitHub

JSON Schema

SupportedAggregator.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "SupportedAggregator",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the aggregator, e.g., kyberswap, okx, odos, paraswap",
      "example": "kyberswap"
    },
    "computingUnit": {
      "type": "number",
      "description": "Computing unit required for the aggregator",
      "example": 5
    }
  },
  "required": [
    "name",
    "computingUnit"
  ]
}