go-ethereum/docs
Ferran Borreguero d5d639d0df
Feature grpc status (#224)
* Add status grpc command

* Add command to cli

* Update docs

* Add more fields to status
2021-12-14 10:35:54 +01:00
..
audits Update Bor to geth-v1.9.16 (#78) 2020-07-24 19:01:41 +05:30
cli Feature grpc status (#224) 2021-12-14 10:35:54 +01:00
postmortems docs: fix spelling on 2021-08-22 postmortem (#23595) 2021-09-20 13:33:15 +02:00
config.md Add docs for cli and config file (#218) 2021-10-26 14:09:11 +02:00
README.md Add docs for cli and config file (#218) 2021-10-26 14:09:11 +02:00

Documentation

Deprecation notes

  • The new entrypoint to run the Bor client is server.
$ bor server
  • Toml files to configure nodes are being deprecated. Currently, we only allow for static and trusted nodes to be configured using toml files.
$ bor server --config ./legacy.toml
  • Modules, vhost and Cors configuration are common for all jsonrpc endpoints.

Before:

$ bor --http --http.modules "eth,web" --ws --ws.modules "eth,web"

Now:

$ bor server --http --ws --jsonrpc.modules "eth,web"
  • Admin, Personal and account related endpoints in Eth are being removed from the JsonRPC interface. Some of this functionality will be moved to the new GRPC server for operational tasks.