Can someone help with tracking the transaction status of a value transfer on the elrond network?
const testTransaction = new Transaction({
value: Balance.egld(1),
data: new TransactionPayload('Test Transfer'),
receiver: new Address(ownerWallet),
nonce: sender.nonce,
gasPrice: new GasPrice(10000000000,
gasLimit: new GasLimit(1000000)
});
await refreshAccount();
const { sessionId } = await sendTransactions({
transactions: testTransaction,
transactionsDisplayInfo: {
processingMessage: 'Processing transaction',
errorMessage: 'An error has occured during Transaction',
successMessage: 'Transaction successful'
}
});
I am currently using sendTransactions
to send my transaction.