Overview
This service provides dedicated access to the blockchain.
As a developer, if you are looking to build something on the
, this RPC service can
jumpstart your development.
The node is fully indexed and is running on
.
You can send remote procedure calls (RPCs) in the same way as if you had a local node. Whitelisted procedure calls are listed below.
To report problems or solutions, please create Issues or Pull Requests
in the Github repository. The code is all open source.
Open source on GitHub https://github.com/EvrmoreOrg/evrmore-rpc-proxy
Notes about performance:
To get low latency and to support a massive amount of concurrent
requests we Cache and Queue
Queue-Based Load Leveling
The queue serves as a buffer between the public API endpoint and the
blockchain node, aiming to smooth out intermittent heavy loads that
could cause the node to fail. This approach minimizes the impact of
peak demand on system availability and responsiveness.
Cache
Requests are cached for the duration of the current block, ensuring
that the cache remains completely consistent with the data on the
blockchain