action chaingateway_get_transactions { label: "getTransactions" description: "Returns information like confirmations, token contract address, amount, gas price and more of a given transaction." provider: chaingateway method: POST path: "/getTransactions" encoding: json input: { type: "object" properties: { Authorization: { type: "string" } txid: { type: "string" } } required: ["Authorization", "txid"] additionalProperties: false } output: { type: "object" required: ["ok", "transactions"] properties: { ok: { type: "boolean" } transactions: { type: "array" items: { type: "object" required: ["txid", "block_number", "contract_address", "type", "token_name", "token_symbol", "token_decimals", "token_supply", "gas", "gas_price", "from", "to", "amount"] properties: { amount: { type: "string" } block_number: { type: "string" } contract_address: { type: "string" } from: { type: "string" } gas: { type: "string" } gas_price: { type: "string" } to: { type: "string" } token_decimals: { type: "string" } token_name: { type: "string" } token_supply: { type: "string" } token_symbol: { type: "string" } txid: { type: "string" } type: { type: "string" } } } } } } }