Avalanche · Schema

TransactionVertexDetail

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
hash string Vertex ID of the vertex this transaction belongs to.
height number Vertex height of the vertex this transaction belongs to.
timestamp number Timestamp in seconds this vertex was accepted.
View JSON Schema on GitHub

JSON Schema

TransactionVertexDetail.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/TransactionVertexDetail.json",
  "title": "TransactionVertexDetail",
  "type": "object",
  "properties": {
    "hash": {
      "type": "string",
      "description": "Vertex ID of the vertex this transaction belongs to.",
      "examples": [
        "82qPRREHmh8Cfta4PGD6GymY9ZLyvgYugqW6hj9FykpMVRz1S"
      ]
    },
    "height": {
      "type": "number",
      "description": "Vertex height of the vertex this transaction belongs to.",
      "examples": [
        1961
      ]
    },
    "timestamp": {
      "type": "number",
      "description": "Timestamp in seconds this vertex was accepted.",
      "examples": [
        1600762738
      ]
    }
  },
  "required": [
    "hash",
    "height",
    "timestamp"
  ]
}