Send external message to TON network.
Successful Response
Hash of sent message in hex format
const response = await fetch('https://ton-index.nownodes.io/message', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "boc": "text" }), }); const data = await response.json();
{ "message_hash": "text" }