I’ve been digging into the documentation (Public JSON RPC Endpoints | Kaia Docs) and so far, I can’t find a simple straight forward way to obtain all the transactions for a given wallet, I’m able to scan block by block, but that’s definitely not efficient, is there a way to achieve this? also, when I get a transaction for a token that is not klay, it shows the smart contract address as the destination and that’s all I can see, isn’t there a way to know what asset transferred? (how much and the name)
According to Kaia’s KV DB and account model (similar to other EVM chains), it’s very costly to offer APIs like that. Instead, you can use flipside to create simple SQL statements to query data you want to look at.
If token follows ERC-20 standards, you can decode the transfer event of the token and it will also have name()
getter in smart contract. ERC 20 - OpenZeppelin Docs
I checked flipside, they pretty much converted the data in the format I was intending to do it.
I’ll take your comment as the solution, unfortunately not because of flipside, because I found that while flipside did have data for the addresses I was testing with, it failed for ethereum, so it makes me worry about the quality of the data in there, decoding the transaction seems to be the secure path.
Thanks!