Avalanche · Schema

GetTransactionResponse

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
erc20Transfers array The list of ERC-20 transfers.
erc721Transfers array The list of ERC-721 transfers.
erc1155Transfers array The list of ERC-1155 transfers.
internalTransactions array The list of internal transactions. Note that this list only includes CALL and CALLCODE internal transactions that had a non-zero value and CREATE/CREATE2/CREATE3 calls. Use a client provider to reciev
networkTokenDetails object
nativeTransaction object
teleporterMessageInfo object Corresponding teleporter message info if available.
View JSON Schema on GitHub

JSON Schema

GetTransactionResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/GetTransactionResponse.json",
  "title": "GetTransactionResponse",
  "type": "object",
  "properties": {
    "erc20Transfers": {
      "description": "The list of ERC-20 transfers.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Erc20TransferDetails"
      }
    },
    "erc721Transfers": {
      "description": "The list of ERC-721 transfers.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Erc721TransferDetails"
      }
    },
    "erc1155Transfers": {
      "description": "The list of ERC-1155 transfers.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Erc1155TransferDetails"
      }
    },
    "internalTransactions": {
      "description": "The list of internal transactions. Note that this list only includes CALL and CALLCODE internal transactions that had a non-zero value and CREATE/CREATE2/CREATE3  calls. Use a client provider to recieve a full debug trace of the transaction.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/InternalTransactionDetails"
      }
    },
    "networkTokenDetails": {
      "$ref": "#/components/schemas/NetworkTokenDetails"
    },
    "nativeTransaction": {
      "$ref": "#/components/schemas/FullNativeTransactionDetails"
    },
    "teleporterMessageInfo": {
      "description": "Corresponding teleporter message info if available.",
      "allOf": [
        {
          "$ref": "#/components/schemas/TeleporterMessageInfo"
        }
      ]
    }
  },
  "required": [
    "networkTokenDetails",
    "nativeTransaction"
  ]
}