Returns an object containing the serialized action data.
json object of the action parameters that will be serialized.
OK
const response = await fetch('https://eos.nownodes.io/v1/chain/abi_json_to_bin', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({}), }); const data = await response.json();
{}