Pendle · Schema

ClaimTokenAmount

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
token string Token id
amount string Amount of tokens
View JSON Schema on GitHub

JSON Schema

ClaimTokenAmount.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ClaimTokenAmount",
  "type": "object",
  "properties": {
    "token": {
      "type": "string",
      "description": "Token id",
      "example": "1-0x123..."
    },
    "amount": {
      "type": "string",
      "description": "Amount of tokens",
      "example": "1000000000000000000"
    }
  },
  "required": [
    "token",
    "amount"
  ]
}