Pendle · Schema

VoteData

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
txHash string
timestamp string
poolChainId number
poolAddress string
user string
weight number
vePendleVote number
View JSON Schema on GitHub

JSON Schema

VoteData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "VoteData",
  "type": "object",
  "properties": {
    "txHash": {
      "type": "string"
    },
    "timestamp": {
      "format": "date-time",
      "type": "string"
    },
    "poolChainId": {
      "type": "number"
    },
    "poolAddress": {
      "type": "string"
    },
    "user": {
      "type": "string"
    },
    "weight": {
      "type": "number"
    },
    "vePendleVote": {
      "type": "number"
    }
  },
  "required": [
    "txHash",
    "timestamp",
    "poolChainId",
    "poolAddress",
    "user",
    "weight",
    "vePendleVote"
  ]
}