Pendle · Schema

PendleSwapInput

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
token string Input token address
amount string Amount of input tokens used for swapping
View JSON Schema on GitHub

JSON Schema

PendleSwapInput.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PendleSwapInput",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "Input token address"
    },
    "amount": {
      "type": "string",
      "description": "Amount of input tokens used for swapping"
    }
  },
  "required": [
    "token",
    "amount"
  ]
}