changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "address": {
+ "description": "Queried address",
+ "type": "string"
+ },
+ "chain_id": {
+ "description": "Numeric chain ID",
+ "type": "number"
+ },
+ "chain_name": {
+ "description": "Human-readable chain name or null if unknown",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "count": {
+ "description": "Number of transactions returned",
+ "type": "number"
+ },
+ "transactions": {
+ "description": "Array of transaction objects from Etherscan API",
+ "items": {
+ "description": "Transaction data (schema varies by type)",
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "type": {
+ "description": "Transaction type requested",
+ "enum": [
+ "normal",
+ "internal",
+ "erc20",
+ "erc721",
+ "erc1155"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "chain_id",
+ "chain_name",
+ "address",
+ "type",
+ "count",
+ "transactions"
+ ],
+ "type": "object"
+}