Send serialized boc file: fully packed and serialized external message to blockchain.
b64 encoded bag of cells
Successful Response
const response = await fetch('https://ton.nownodes.io/sendBoc', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "boc": "text" }), }); const data = await response.json();
{ "ok": false, "result": "text", "error": "text", "code": 0 }