Hi all,
Iโve been trying to get Transactions of a big wallet with 3000 erc tokens, 10.000.000+ transactions.
I receive http error 400 with response:
Error {"message": "[object object]", "code":141}
address in question: 0x631fc1ea2270e98fbd9d92658ece0f5a269aa161
Please advice
let tAddress = '0x631fc1ea2270e98fbd9d92658ece0f5a269aa161';
Moralis.Web3API.account.getTokenBalances({ chain: 'bsc', address: tAddress }).then(function (tokens) {
///check for length and process
}).catch(function (error) {
console.log('getTokenbalances Error: ');
console.log(error);
});
Moralis.Web3API.account.getTransactions({ chain: 'bsc', address: tAddress }) .then(function (transactions) {
//check for length and process
}).catch(function (error) {
console.log('getTransactions Error: ');
console.log(error);
});