changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "chains": {
+ "description": "Array of summarized chain objects",
+ "items": {
+ "properties": {
+ "chainId": {
+ "description": "EVM chain ID",
+ "type": "integer"
+ },
+ "explorers": {
+ "description": "Block explorer URLs",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "name": {
+ "description": "Full chain name",
+ "type": "string"
+ },
+ "nativeCurrency": {
+ "description": "Native currency details",
+ "properties": {
+ "decimals": {
+ "description": "Number of decimals",
+ "type": "integer"
+ },
+ "name": {
+ "description": "Currency name",
+ "type": "string"
+ },
+ "symbol": {
+ "description": "Currency symbol",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "rpc_count": {
+ "description": "Number of available RPC endpoints",
+ "type": "integer"
+ },
+ "shortName": {
+ "description": "Short chain identifier (e.g. eth, matic)",
+ "type": "string"
+ },
+ "status": {
+ "description": "Chain status (active, deprecated, incubating)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "chainId",
+ "name",
+ "shortName",
+ "rpc_count",
+ "explorers",
+ "status"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "count": {
+ "description": "Number of chains matching the filter criteria",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "count",
+ "chains"
+ ],
+ "type": "object"
+}