const response = await fetch('https://alephium.nownodes.io/transactions/build-chained', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify([
{
"type": "Transfer",
"value": {
"fromPublicKey": "d1b70d2226308b46da297486adb6b4f1a8c1842cb159ac5ec04f384fe2d6f5da28",
"destinations": [
{
"address": "1AujpupFP4KWeZvqA7itsHY9cLJmx4qTzojVZrg8W9y",
"attoAlphAmount": "2000000000000000000"
}
]
}
},
{
"type": "ExecuteScript",
"value": {
"fromPublicKey": "d1b70d2226308b46da297486adb6b4f1a8c1842cb159ac5ec04f384fe2d6f5da28",
"bytecode": "35d1b2a520a0da34c5eb8d712aa9cc"
}
}
]),
});
const data = await response.json();