This method expects a transaction in JSON format and will attempt to apply it to the blockchain.
Time that transaction must be confirmed by.
^[0-9]{4}-[0-9]{2}-[0-9]{2}T[0-9]{2}:[0-9]{2}:[0-9]{2}$
32-bit portion of block ID
OK
Returns Nothing
const response = await fetch('https://eos.nownodes.io/v1/chain/push_transactions', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify([ { "expiration": "text", "ref_block_num": 0, "ref_block_prefix": 0, "delay_sec": 0, "context_free_actions": [], "actions": [ { "authorization": [], "hex_data": "text" } ] } ]), }); const data = await response.json();