The Shardeum JSON-RPC Server enables developers to interact with the Shardeum blockchain network. It allows dapps to post request, retrieve information, and other related operations, using JSON-RPC over HTTP. Additionally, the Shardeum JSON-RPC Server comes with an added REST API for debugging and monitoring purposes.
For running existing dapps on Shardeum, refer to EVM JSON-RPC API
For developers deploying to production environments, simply use docker compose
command.
env NO_OF_RPC_SERVERS
creates replicas of rpc servers using pm2. default is 1. Default port is 8080, port for each replicas will increment by 1 on default port. i.e 8081, 8082, 8083, etc.
# Run services in detach mode
docker compose up -d
docker compose logs -f
docker compose down
For end users, such as exchanges and large decentralized applications (dApps), seeking to deploy their own RPC server, it is recommended to run the Shardeum JSON-RPC server using Docker. It ensures all dependencies are installed and the server is running in a consistent environment. For developers who want to contribute to this project, running the server from source is recommended. You can use npm
for installing the server locally.
If you are using Docker
, in order to run the Shardeum JSON-RPC server, you must have the Docker daemon installed.
Let’s install the project source code, switch to dev
branch and follow the below instructions:
git clone https://github.com/shardeum/json-rpc-server.git
cd shardeum-json-rpc
git switch dev
If you are building using Docker
, run the below command:
make build
This command will build Docker images for the service.
If you are building using NPM
, run the below command, it will install all the required dependencies
npm install
If you are building using Docker
, you can start the JSON-RPC server by running the following command:
make run
This will start a container running the shardeum-json-rpc
server image, available on port 8080
. The servers configuration fields can be viewed and edited in the src/config.ts
file. Additionally, you can manage the server's access control lists by editing the whitelist.json
, blacklist.json
and spammerlist.json
.
But if you are using NPM, use the below command to run the server:
npm run start
If you want to modify the chainId or the port number, go to src/config.ts
file:
chainId: 8082
port: 8080
The RPC URL for using Metamask with Remix IDE and for running scripts is http://localhost:port (default: http://localhost:8080)
If you are contributing to this project, use Shardeum server to create the network from within the validator repo. You can find more details here
If you are using Docker
, you can stop the server by running:
make stop
Additionally, you can remove the docker images by running:
make clean
This will remove all docker images created by the server during the build process.
These api are protected preventing general public to wiping out debug data to authenticate use /authenticate/:passphrase
. passphrase
is set in config.ts
config file or within the system env variable.
GET /log/api-stats
this endpoint emits the rpc interface call counts and avg tps along with a few a other information. This endpoint support query by time range. i.e /log/api-stats?start={x}&end={x}
. The parameter value can be either yyyy-mm-dd
or unix epoch in millisecond. (NOTE standard unix epoch is in seconds which does not work, it has to be in millisecond accuracy). Not setting any timestamp parameter will returns paginated json of all the entry in db.
GET /log/txs
this endpoint return the txs it has been made through rpc server. This endpoint support dynmaic pagination. i.e /log/txs?max=30&page=9
.
Default values are 1000
for max
and 0
for page.
GET /log/status
this endpint return status of logging such as date of recording start and whether or not recording is enabled.
GET /log/startTxCapture
this endpoint set the config value to true which control whether to capture incoming txs and store in database.
GET /log/stopTxCapture
this endpoint set the config value to false which control whether to capture incoming txs and store in database.
GET /log/stopRPCCapture
this endpoint set the config value to false which control whether to capture incoming rpc interface call stat and store in database.
GET /log/startRPCCapture
this endpoint set the config value to true which control whether to capture rpc interface call stat and store in database.
GET /log/cleanStatTable
this endpoint trigger purging of table that store interface stats.
GET /log/cleanTxTable
this endpoint trigger purging of table that store transaction logging.
GET /counts
this endpoint emits the nestedCounters report as an array.
GET /counts-reset
this endpoint resets the internal nestedCounters object.
GET /api/subscribe
this endpoint changes the subscribed validator node to the ip and port specified in the ip
and port
query parameters.
GET /is-alive
this endpoint returns 200 if the server is running.
GET /is-healthy
currently the same as /is-alive
but will be expanded.
Contributions are very welcome! Everyone interacting in our codebases, issue trackers, and any other form of communication, including chat rooms and mailing lists, is expected to follow our code of conduct so we can all enjoy the effort we put into this project.