bitmover what about using a random block to add privacy?
When someone hits the page, you use JS to reach out to an API and grab a random block. Then use addresses from that block to salt the address list the user has provided. Then you get the results back from the sochain API and remove the salted addresses from what is shown to the user.
You can even show the user the block/addresses that will be used to augment the sochain api call so they know it's on the up and up.
Edit: Obviously check that none of their addresses are part of what got salted in before you remove it from what is show in the balance haha, could see that being a weird collision that might not ever happen
Well, that is certainly an interesting approach and something I can do easily.
I could make a request to some other API to get like 10-20 random address. I would mix that 20 address to the API request to sochain, get the results and delete those random address from the output.
Easily done. I will implement it in the next days when i get more time.
Thanks