action chaingateway_clear_address { label: "clearAddress" description: "Sends all available ethereum funds of an address to a specified receiver address." provider: chaingateway method: POST path: "/clearAddress" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } ethereumaddress: { type: "string" } newaddress: { type: "string" } password: { type: "string" } } required: ["Authorization", "ethereumaddress", "newaddress", "password"] additionalProperties: false } output: { type: "object" required: ["amount", "ethereumaddress", "gas", "newaddress", "ok", "total", "txid"] properties: { amount: { type: "number" } ethereumaddress: { type: "string" } gas: { type: "number" } newaddress: { type: "string" } ok: { type: "boolean" } total: { type: "string" } txid: { type: "string" } } } }