action chaingateway_get_ethereum_balance { label: "getEthereumBalance" description: "Returns the ethereum balance of a given address." provider: chaingateway method: POST path: "/getEthereumBalance" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } ethereumaddress: { type: "string" } } required: ["Authorization", "ethereumaddress"] additionalProperties: false } output: { type: "object" required: ["balance", "ethereumaddress", "ok"] properties: { balance: { type: "number" } ethereumaddress: { type: "string" } ok: { type: "boolean" } } } }