Avalanche · Schema

EVMAddressActivityRequest

BlockchainWeb3AvalancheNFTDeFiCross-Chain

Properties

Name Type Description
eventType string
url string
name string
description string
chainId string
metadata object
includeInternalTxs boolean Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114.
includeLogs boolean Whether to include logs in the webhook payload.
View JSON Schema on GitHub

JSON Schema

EVMAddressActivityRequest.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/EVMAddressActivityRequest.json",
  "title": "EVMAddressActivityRequest",
  "type": "object",
  "properties": {
    "eventType": {
      "type": "string",
      "enum": [
        "address_activity"
      ]
    },
    "url": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "chainId": {
      "type": "string"
    },
    "metadata": {
      "oneOf": [
        {
          "$ref": "#/components/schemas/AddressActivityMetadata"
        }
      ]
    },
    "includeInternalTxs": {
      "type": "boolean",
      "description": "Whether to include traces in the webhook payload. Traces are only available for C-Chain on chainId 43113 and 43114."
    },
    "includeLogs": {
      "type": "boolean",
      "description": "Whether to include logs in the webhook payload."
    }
  },
  "required": [
    "eventType",
    "url",
    "chainId",
    "metadata"
  ]
}