This method expects a transaction in JSON format and will attempt to apply it to the blockchain.
array of signatures required to authorize transaction
Compression used, usually false
json to hex
Transaction object json to hex
OK
Returns Nothing
const response = await fetch('https://eos.nownodes.io/v1/chain/send_transaction', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();