Forcefully set the bootstrapped flag of the node
A chain identifier. This is either a chain hash in Base58Check notation or a one the predefined aliases: 'main', 'test'.
const response = await fetch('https://xtz.nownodes.io/chains/{chain_id}', { method: 'PATCH', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "bootstrapped": false }), }); const data = await response.json();