// Preparing the transaction from expand.networkconstpreparedTx= { from:"SENDER_WALLET_ADDRESS", to:"RECEIVER_WALLET_ADDRESS", value:"1000000", chainId:'1100', message:"Hi from expand.network" }
Step 4: Sign Transaction
// Sign the transaction locally using sdk clientconstsignedTx=awaitwallet.signTransaction(preparedTx);console.log(signedTx);
Step 5: Send Transaction
// Send the signed transactionconsttx=awaitwallet.sendTransaction(signedTx);console.log(tx);
Sample code for native token transfer using Ton Wallet: