trongrid-js
trongrid-js copied to clipboard
tronGrid.account.getTransactions skips some USDT transactions
Hey there!
I've tried to get the full list of transactions from one account. But can't find some USDT transactions in the response. Tronscan shows me the real amount of transactions — 10. (Prove) But Trongrid shows only 8 txs. (Prove)
Example of my code:
tronGrid.account.getTransactions(address, {}, (err, transactions) => {
if (err)
return console.error(err);
console.dir(transactions)
});
How it's possible to fix it? Thanks!