Open SukhachevN opened 4 months ago
Hello! trying to get last user transaction, but getTransactions request failing with 500 error for some addresses
address example
UQCPm2mjnfNmOHfyCghFUdg1q0YTDSOCOUfOa0hep6gXrvqp
UQDtRXJVdg-rkd80JikHMJsUE6cE_0YFP6Va-e9efJCZ5vC2
UQBJMuq9lGa0zVo04NRjTkIiC8ZStvNTdKth_ZAu4RfjpEZ2
code
import { TonClient, Address } from '@ton/ton'; import { getHttpEndpoint } from '@orbs-network/ton-access'; const client = new TonClient({ endpoint: await getHttpEndpoint({ network: 'mainnet', }), }); const lastTx = ( await client.getTransactions(Address.parse(address), { limit: 1, }) )[0];
Hello! trying to get last user transaction, but getTransactions request failing with 500 error for some addresses
address example
UQCPm2mjnfNmOHfyCghFUdg1q0YTDSOCOUfOa0hep6gXrvqp
UQDtRXJVdg-rkd80JikHMJsUE6cE_0YFP6Va-e9efJCZ5vC2
UQBJMuq9lGa0zVo04NRjTkIiC8ZStvNTdKth_ZAu4RfjpEZ2
code