有人可以帮助跟踪 elrond 网络上价值转移的交易状态吗?
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'
}
});
我目前正在使用sendTransactions
发送我的交易。