Pendle · Schema

TransactionsV4Response

Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools

Properties

Name Type Description
total number
limit number
skip number
results array
resumeToken string Resume token for pagination. Use this to continue a previous query. Use this token in the next request. Can be undefined if the query is at the end of the results.
View JSON Schema on GitHub

JSON Schema

TransactionsV4Response.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TransactionsV4Response",
  "type": "object",
  "properties": {
    "total": {
      "type": "number"
    },
    "limit": {
      "type": "number"
    },
    "skip": {
      "type": "number"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "resumeToken": {
      "type": "string",
      "description": "Resume token for pagination. Use this to continue a previous query. Use this token in the next request. Can be undefined if the query is at the end of the results."
    }
  },
  "required": [
    "total",
    "limit",
    "skip",
    "results"
  ]
}