github.com/status-im/status-go@v1.1.0/integration-tests/schemas/wallet_getEthereumChains (about) 1 { 2 "$schema": "http://json-schema.org/schema#", 3 "properties": { 4 "id": { 5 "type": "string" 6 }, 7 "jsonrpc": { 8 "type": "string" 9 }, 10 "result": { 11 "items": { 12 "properties": { 13 "Prod": { 14 "properties": { 15 "chainColor": { 16 "type": "string" 17 }, 18 "chainId": { 19 "type": "integer" 20 }, 21 "chainName": { 22 "type": "string" 23 }, 24 "enabled": { 25 "type": "boolean" 26 }, 27 "fallbackURL": { 28 "type": "string" 29 }, 30 "isTest": { 31 "type": "boolean" 32 }, 33 "layer": { 34 "type": "integer" 35 }, 36 "nativeCurrencyDecimals": { 37 "type": "integer" 38 }, 39 "originalFallbackURL": { 40 "type": "string" 41 }, 42 "originalRpcUrl": { 43 "type": "string" 44 }, 45 "relatedChainId": { 46 "type": "integer" 47 }, 48 "rpcUrl": { 49 "type": "string" 50 }, 51 "shortName": { 52 "type": "string" 53 }, 54 "tokenOverrides": { 55 "type": "null" 56 } 57 }, 58 "required": [ 59 "chainColor", 60 "chainId", 61 "chainName", 62 "enabled", 63 "fallbackURL", 64 "isTest", 65 "layer", 66 "nativeCurrencyDecimals", 67 "originalFallbackURL", 68 "originalRpcUrl", 69 "relatedChainId", 70 "rpcUrl", 71 "shortName", 72 "tokenOverrides" 73 ], 74 "type": "object" 75 }, 76 "Test": { 77 "type": "null" 78 } 79 }, 80 "required": [ 81 "Prod", 82 "Test" 83 ], 84 "type": "object" 85 }, 86 "type": "array" 87 } 88 }, 89 "required": [ 90 "id", 91 "jsonrpc", 92 "result" 93 ], 94 "type": "object" 95 }