RPC Proxy #17
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
To best serve our users, we want to query our own fast RPC server instead of using the wallet's slow public version. However, we do not want to allow anyone with a web browser to abuse our RPC server with unlimited denial of service requests.
We can build a simple public-facing proxy server which receives RPC requests and filters them to only the requests we expect to be making from the browser: queries to one of the known pools, queries for user token balances, etc. We should also impose rate limits.