Closed ncsft closed 3 months ago
Solution is
// nft payload
const transferNftBody = beginCell()
.storeUint(0x5fcc3d14, 32)
.storeUint(0, 64)
.storeAddress(destinationAddress)
.storeAddress(walletAddress)
.storeBit(0)
.storeCoins(toNano('0'))
.storeBit(1)
.storeRef(forwardPayload)
.endCell();
// send
const res = await contract.sendTransfer({
secretKey: key.secretKey,
messages: [
internal({
to: nftAddress,
value: '0.04',
body: transferNftBody,
}),
],
});
How to create body and send it? I get 130 error in blockchain transaction.