const response = await fetch('https://alephium.nownodes.io/infos/misbehaviors', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"type": "Unban",
"peers": [
"1.2.3.4"
]
}),
});
const data = await response.json();