Avalanche · Schema

LastActivityTimestamp

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
timestamp number Unix timestamp in seconds at which the last activity occurred.
blockNumber string Block height at which the last activity occurred.
txHash string Transaction hash of the transaction that created or consumed the address' UTXOs.
utxoId string UTXO ID of the UTXO that was created or consumed.
isConsumed boolean Whether the last activity was a consumption of an existing UTXO.
chainName object
network object
View JSON Schema on GitHub

JSON Schema

LastActivityTimestamp.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/LastActivityTimestamp.json",
  "title": "LastActivityTimestamp",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "number",
      "description": "Unix timestamp in seconds at which the last activity occurred."
    },
    "blockNumber": {
      "type": "string",
      "description": "Block height at which the last activity occurred."
    },
    "txHash": {
      "type": "string",
      "description": "Transaction hash of the transaction that created or consumed the address' UTXOs."
    },
    "utxoId": {
      "type": "string",
      "description": "UTXO ID of the UTXO that was created or consumed."
    },
    "isConsumed": {
      "type": "boolean",
      "description": "Whether the last activity was a consumption of an existing UTXO."
    },
    "chainName": {
      "$ref": "#/components/schemas/PrimaryNetworkChainName"
    },
    "network": {
      "$ref": "#/components/schemas/PrimaryNetworkType"
    }
  },
  "required": [
    "timestamp",
    "blockNumber",
    "txHash",
    "utxoId",
    "isConsumed",
    "chainName",
    "network"
  ]
}