action chaingateway_get_gas_price { label: "getGasPrice" description: "Returns the current gas price in GWEI." provider: chaingateway method: POST path: "/getGasPrice" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } "Content-Type": { type: "string" } } required: ["Authorization", "Content-Type"] additionalProperties: false } output: { type: "object" required: ["gasprice", "ok"] properties: { gasprice: { type: "integer" format: "int32" } ok: { type: "boolean" } } } }