changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "address": {
+ "description": "The queried address",
+ "type": "string"
+ },
+ "balance": {
+ "description": "Formatted balance with decimals",
+ "type": "string"
+ },
+ "chain_id": {
+ "description": "Numeric chain ID",
+ "type": "number"
+ },
+ "chain_name": {
+ "description": "Human-readable chain name or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "symbol": {
+ "description": "Native token symbol or null",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "wei": {
+ "description": "Balance in wei (raw units)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "chain_id",
+ "chain_name",
+ "address",
+ "wei",
+ "balance",
+ "symbol"
+ ],
+ "type": "object"
+}