@shardeum-foundation/json-rpc-server v1.1.0-prerelease.2
Overview
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
Docker setup
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.
Start json-rpc-server
# Run services in detach mode
docker compose up -dCheck the logs
docker compose logs -fClean the setup
docker compose downDeveloper Environment Setup
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.
Requirements
If you are using Docker, in order to run the Shardeum JSON-RPC server, you must have the Docker daemon installed.
Installing project source code
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 devIf you are building using Docker, run the below command:
make buildThis 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 installStarting JSON-RPC Server
If you are building using Docker, you can start the JSON-RPC server by running the following command:
make runThis 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 startIf you want to modify the chainId or the port number, go to src/config.ts file:
chainId: 8082
port: 8080The 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
Cleanup
If you are using Docker, you can stop the server by running:
make stopAdditionally, you can remove the docker images by running:
make cleanThis will remove all docker images created by the server during the build process.
Request Logging
Request logging can be enabled by setting SHARDEUM_JSONRPC_ENABLE_REQUEST_LOGGING=true in your environment. When enabled:
- File logging is enabled by default and logs are written to
logs/requests.log- Can be disabled by explicitly setting
SHARDEUM_JSONRPC_FILE_LOGGING=false - The logging directory can be configured using
SHARDEUM_JSONRPC_LOGGING_DIR(defaults tologs) - The logs can be viewed by running
npm run tail-request-logs
- Can be disabled by explicitly setting
- Console logging is disabled by default
- Can be enabled by setting
SHARDEUM_JSONRPC_CONSOLE_LOGGING=true
- Can be enabled by setting
DEBUG Endpoints
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.
Health Check
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.
Contributing
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.