action chaingateway_send_ethereum { label: "sendEthereum" description: "Sends ethereum from an address controlled by the account to a specified receiver address." provider: chaingateway method: POST path: "/sendEthereum" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } amount: { type: "number" } from: { type: "string" } password: { type: "string" } to: { type: "string" } } required: ["Authorization", "amount", "from", "password", "to"] additionalProperties: false } output: { type: "object" required: ["amount", "from", "ok", "to", "txid"] properties: { amount: { type: "string" } from: { type: "string" } ok: { type: "boolean" } to: { type: "string" } txid: { type: "string" } } } }