Get account's NFT history in 80 ms.
That's the new baseline we have just released.
Post #137
728

- 🔥 6
- ❤ 4
- 👌 3
- 🗿 3
TO @tonconsole_com


offset parameter will be limited soon.offset parameter that users can use to traverse the top 10k holders./v2/jettons, we introduce two new parameters to the GetJettonHolders method: sort_by and last_account_id./holders like before to get top holders (sort_by=balance is default). Offset can't be more than 9000./holders?sort_by=address to scan through the whole holders set. Here is how it looks:
# get first page
% time curl -s 'https://tonapi.io/v2/jettons/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/holders?sort_by=address' | jq -r '.addresses | last | .address'
0:9dfaaafbc46bad3c46d9362d8e5d99f993e953034212c5f34689cac419ea9d2c
curl -s 0.02s user 0.02s system 5% cpu 0.670 total
# get second page
% time curl -s 'https://tonapi.io/v2/jettons/EQCxE6mUtQJKFnGfaROTKOt1lZbDiiX1kCixRv7Nw2Id_sDs/holders?sort_by=address&last_account_id=0:9dfaaafbc46bad3c46d9362d8e5d99f993e953034212c5f34689cac419ea9d2c' | jq -r '.addresses | last | .address'
0:b6a096bdc189790abde43c11041f1f5a72daa92fa0ed24e918e7187515dce53b
curl -s 0.01s user 0.01s system 4% cpu 0.533 total

tonconsole.com admin panel and analytics queries may be unavailable during this time. The functionality of the main API will not be affected.decoded_body field for external messages in raw transactions or traces.Forwarded from Keeper News

TONAPI and TON Console Tracking Transactions on TON Just Got Easier! 🎉 Tracking external transactions (external-in) on the TON blockchain was challenging for all of us due to minor metadata differences. Now TonAPI solves this with the normalized hash. With this method, tracking…