const response = await fetch('/v1/contracts/add', {
method: 'POST',
headers: {
"Authorization": "Bearer Bearer",
"Content-Type": "application/json"
},
body: JSON.stringify({
"address": "text",
"blockchainId": "text",
"abi": "text"
}),
});
const data = await response.json();