changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "chain": {
+ "description": "Chain identifier",
+ "type": "string"
+ },
+ "chainId": {
+ "description": "EVM chain ID",
+ "type": "integer"
+ },
+ "explorers": {
+ "description": "Block explorers",
+ "items": {
+ "properties": {
+ "name": {
+ "description": "Explorer name",
+ "type": "string"
+ },
+ "standard": {
+ "description": "Standard type (optional)",
+ "type": "string"
+ },
+ "url": {
+ "description": "Explorer URL",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "faucets": {
+ "description": "Faucet URLs for testnet tokens",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "infoURL": {
+ "description": "Chain information URL (optional)",
+ "type": "string"
+ },
+ "name": {
+ "description": "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"
+ },
+ "networkId": {
+ "description": "Network ID (optional)",
+ "type": "integer"
+ },
+ "rpc": {
+ "description": "RPC endpoint URLs",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "shortName": {
+ "description": "Short chain name",
+ "type": "string"
+ },
+ "status": {
+ "description": "Chain status (active, deprecated, incubating)",
+ "type": "string"
+ }
+ },
+ "required": [
+ "name",
+ "chain",
+ "shortName",
+ "chainId"
+ ],
+ "type": "object"
+}