action chaingateway_new_address { label: "newAddress" description: "Generates a new ethereum addresses you can use to send or receive funds. Do not lose the password! We can't restore access to an address if you lose it." provider: chaingateway method: POST path: "/newAddress" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } password: { type: "string" } } required: ["Authorization", "password"] additionalProperties: false } output: { type: "object" required: ["ethereumaddress", "ok", "password"] properties: { ethereumaddress: { type: "string" } ok: { type: "boolean" } password: { type: "string" } } } }