changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "address": {
+ "description": "Holder 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"
+ ]
+ },
+ "contract_address": {
+ "description": "ERC-20 token contract address",
+ "type": "string"
+ },
+ "note": {
+ "description": "Reminder to use token decimals for conversion",
+ "type": "string"
+ },
+ "raw_balance": {
+ "description": "Token balance in raw units (unadjusted for decimals)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "chain_id",
+ "chain_name",
+ "address",
+ "contract_address",
+ "raw_balance",
+ "note"
+ ],
+ "type": "object"
+}