package
0.0.0-20210324054805-140c642b52bc
Repository: https://github.com/evrice/tgeth_alpha.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

Introduction

turbo-geth's rpcdaemon runs in its own seperate process.

This brings many benefits including easier development, the ability to run multiple daemons at once, and the ability to run the daemon remotely. It is possible to run the daemon locally as well (read-only) if both processes have access to the data folder.

Getting Started

The rpcdaemon gets built as part of the main turbo-geth build process, but you can build it directly with this command:

make rpcdaemon

Running locally

If you have direct access to turbo-geth's database folder, you may run the rpcdaemon locally. This may provide faster results.

After building, run this command to start the daemon locally:

./build/bin/rpcdaemon --chaindata ~/Library/TurboGeth/tg/chaindata --http.api=eth,debug,net,web3

Runing RPC daemon locally (with --chaindata option) can only be used when turbo-geth node is not running. This mode is mostly convenient for debugging purposes, because we know that the database does not change as we are sending requests to the RPC daemon.

Note that we've also specified which RPC commands to enable in the above command.

Running remotely

To start the daemon remotely, build it as described above, then run turbo-geth in one terminal window:

./build/bin/tg --private.api.addr=localhost:9090

In another terminal window, start the daemon with the same --private-api setting:

./build/bin/rpcdaemon --private.api.addr=localhost:9090

The daemon should respond with something like:

INFO [date-time] HTTP endpoint opened url=localhost:8545...

Testing

By default, the rpcdaemon serves data from localhost:8545. You may send curl commands to see if things are working.

Try eth_blockNumber for example. In a third terminal window enter this command:

curl -X POST -H "Content-Type: application/json" --data '{"jsonrpc": "2.0", "method": "eth_blockNumber", "params": [], "id":1}' localhost:8545

This should return something along the lines of this (depending on how far your turbo-geth node has synced):

{
    "jsonrpc": "2.0",
    "id": 1,
    "result":" 0xa5b9ba"
}

Also, there are extensive instructions for using Postman to test the RPC.

Open / Known Issues

There are still many open issues with the TurboGeth tracing routines. Please see this issue for the current open / known issues related to tracing.

RPC Implementation Status

The following table shows the current implementation status of turbo-geth's RPC daemon.

CommandAvailNotes
web3_clientVersionYes
web3_sha3Yes
net_listeningHC(remote only hard coded returns true)
net_peerCountHC(hard coded 25 - work continues on Sentry)
net_versionYesremote only
eth_blockNumberYes
eth_chainIDYes
eth_protocolVersionYes
eth_syncingYes
eth_gasPriceYes
eth_getBlockByHashYes
eth_getBlockByNumberYes
eth_getBlockTransactionCountByHashYes
eth_getBlockTransactionCountByNumberYes
eth_getUncleByBlockHashAndIndexYes
eth_getUncleByBlockNumberAndIndexYes
eth_getUncleCountByBlockHashYes
eth_getUncleCountByBlockNumberYes
eth_getTransactionByHashYes
eth_getTransactionByBlockHashAndIndexYes
eth_getTransactionByBlockNumberAndIndexYes
eth_getTransactionReceiptYes
eth_estimateGasYes
eth_getBalanceYes
eth_getCodeYes
eth_getTransactionCountYes
eth_getStorageAtYes
eth_callYes
eth_newFilter-not yet implemented
eth_newBlockFilter-not yet implemented
eth_newPendingTransactionFilter-not yet implemented
eth_getFilterChanges-not yet implemented
eth_uninstallFilter-not yet implemented
eth_getLogsYes
eth_accountsNodeprecated
eth_sendRawTransactionYesremote only
eth_sendTransaction-not yet implemented
eth_signNodeprecated
eth_signTransaction-not yet implemented
eth_signTypedData-????
eth_getProof-not yet implemented
eth_miningYesmining not yet implemented (always false)
eth_coinbase-
eth_hashrate-
eth_submitHashrate-
eth_getWork-
eth_submitWork-
eth_subscribeLimitedWebsock Only - newHeads
eth_unsubscribeYesWebsock Only
debug_accountRangeYesPrivate turbo-geth debug module
debug_getModifiedAccountsByNumberYes
debug_getModifiedAccountsByHashYes
debug_storageRangeAtYes
debug_traceTransactionYes
trace_call-not yet implemented (come help!)
trace_callMany-not yet implemented (come help!)
trace_rawTransaction-not yet implemented (come help!)
trace_replayBlockTransactions-not yet implemented (come help!)
trace_replayTransaction-not yet implemented (come help!)
trace_blockLimitedworking - has known issues
trace_filterLimitedworking - has known issues
trace_getLimitedworking - has known issues
trace_transactionLimitedworking - has known issues
eth_getCompilersNodeprecated
eth_compileLLLNodeprecated
eth_compileSolidityNodeprecated
eth_compileSerpentNodeprecated
db_putStringNodeprecated
db_getStringNodeprecated
db_putHexNodeprecated
db_getHexNodeprecated
shh_postNodeprecated
shh_versionNodeprecated
shh_newIdentityNodeprecated
shh_hasIdentityNodeprecated
shh_newGroupNodeprecated
shh_addToGroupNodeprecated
shh_newFilterNodeprecated
shh_uninstallFilterNodeprecated
shh_getFilterChangesNodeprecated
shh_getMessagesNodeprecated
tg_getHeaderByHashYesturbo-geth only
tg_getHeaderByNumberYesturbo-geth only
tg_getLogsByHashYesturbo-geth only
tg_forksYesturbo-geth only
tg_issuanceYesturbo-geth only

This table is constantly updated. Please visit again.

Securing the communication between RPC daemon and TG instance via TLS and authentication

In some cases, it is useful to run Turbo-Geth nodes in a different network (for example, in a Public cloud), but RPC daemon locally. To ensure the integrity of communication and access control to the Turbo-Geth node, TLS authentication can be enabled. On the high level, the process consists of these steps (this process needs to be done for any "cluster" of turbo-geth and RPC daemon nodes that are supposed to work together):

  1. Generate key pair for the Certificate Authority (CA). The private key of CA will be used to authorise new turbo-geth instances as well as new RPC daemon instances, so that they can mutually authenticate.
  2. Create CA certificate file that needs to be deployed on any turbo-geth instance and any RPC daemon. This CA cerf file is used as a "root of trust", whatever is in it, will be trusted by the participants when they authenticate their counterparts.
  3. For each turbo-geth instance and each RPC daemon instance, generate a key pair. If you are lazy, you can generate one pair for all turbo-geth nodes, and one pair for all RPC daemons, and copy these keys around.
  4. Using the CA private key, create cerificate file for each public key generated on the previous step. This effectively "inducts" these keys into the "cluster of trust".
  5. On each instance, deploy 3 files - CA certificate, instance key, and certificate signed by CA for this instance key.

Following is the detailed description of how it can be done using openssl suite of tools.

Generate CA key pair using Elliptic Curve (as opposed to RSA). The generated CA key will be in the file CA-key.pem. Access to this file will allow anyone to later include any new instance key pair into the "cluster of trust", so keep it secure.

openssl ecparam -name prime256v1 -genkey -noout -out CA-key.pem

Create CA self-signed certificate (this command will ask questions, answers aren't important for now). The file created by this command is CA-cert.pem

openssl req -x509 -new -nodes -key CA-key.pem -sha256 -days 3650 -out CA-cert.pem

For turbo-geth node, generate a key pair:

openssl ecparam -name prime256v1 -genkey -noout -out TG-key.pem

Also, generate one for the RPC daemon:

openssl ecparam -name prime256v1 -genkey -noout -out RPC-key.pem

Now create cerificate signing request for turbo-geth key pair:

openssl req -new -key TG-key.pem -out TG.csr

And from this request, produce the certificate (signed by CA), proving that this key is now part of the "cluster of trust"

openssl x509 -req -in TG.csr -CA CA-cert.pem -CAkey CA-key.pem -CAcreateserial -out TG.crt -days 3650 -sha256

Then, produce the certificate signing request for RPC daemon key pair:

openssl req -new -key RPC-key.pem -out RPC.csr

And from this request, produce the certificate (signed by CA), proving that this key is now part of the "cluster of trust"

openssl x509 -req -in RPC.csr -CA CA-cert.pem -CAkey CA-key.pem -CAcreateserial -out RPC.crt -days 3650 -sha256

When this is all done, these three files need to be placed on the machine where turbo-geth is running: CA-cert.pem, TG-key.pem, TG.crt. And turbo-geth needs to be run with these extra options:

--tls --tls.cacert CA-cert.pem --tls.key TG-key.pem --tls.cert TG.crt

On the RPC daemon machine, these three files need to be placed: CA-cert.pem, RPC-key.pem, and RPC.crt. And RPC daemon needs to be started with these extra options:

--tls.key RPC-key.pem --tls.cacert CA-cert.pem --tls.cert RPC.crt

WARNING Normally, the "client side" (which in our case is RPC daemon), verifies that the host name of the server matches the "Common Name" attribute of the "server" cerificate. At this stage, this verification is turned off, and it will be turned on again once we have updated the instruction above on how to properly generate cerificates with "Common Name".

When running turbo-geth instance in the Google Cloud, for example, you need to specify the Internal IP in the --private.api.addr option. And, you will need to open the firewall on the port you are using, to that connection to the turbo-geth instances can be made.

Ethstats

This version of the RPC daemon is compatible with ethstats-client.

To run ethstats, run the RPC daemon remotely and open some of the APIs.

./build/bin/rpcdaemon --private.api.addr=localhost:9090 --http.api=net,eth,web3

Then update your app.json for ethstats-client like that:

[
  {
    "name"              : "ethstats",
    "script"            : "app.js",
    "log_date_format"   : "YYYY-MM-DD HH:mm Z",
    "merge_logs"        : false,
    "watch"             : false,
    "max_restarts"      : 10,
    "exec_interpreter"  : "node",
    "exec_mode"         : "fork_mode",
    "env":
    {
      "NODE_ENV"        : "production",
      "RPC_HOST"        : "localhost",
      "RPC_PORT"        : "8545",
      "LISTENING_PORT"  : "30303",
      "INSTANCE_NAME"   : "turbo-geth node",
      "CONTACT_DETAILS" : <your twitter handle>,
      "WS_SERVER"       : "wss://ethstats.net/api",
      "WS_SECRET"       : <put your secret key there>,
      "VERBOSITY"       : 2
    }
  }
]

Run ethstats-client through pm2 as usual.

You will see these warnings in the RPC daemon output, but they are expected

WARN [11-05|09:03:47.911] Served                                   conn=127.0.0.1:59753 method=eth_newBlockFilter reqid=5 t="21.194µs" err="the method eth_newBlockFilter does not exist/is not available"
WARN [11-05|09:03:47.911] Served                                   conn=127.0.0.1:59754 method=eth_newPendingTransactionFilter reqid=6 t="9.053µs"  err="the method eth_newPendingTransactionFilter does not exist/is not available"

Allowing only specific methods (Allowlist)

In some cases you might want to only allow certain methods in the namespaces and hide others. That is possible with rpc.accessList flag.

  1. Create a file, say, rules.json

  2. Add the following content

{
    "allow": [
                "net_version",
                "web3_eth_getBlockByHash"
            ]
}
  1. Provide this file to the rpcdaemon using --rpc.accessList flag
> rpcdaemon --private.api.addr=localhost:9090 --http.api=eth,debug,net,web3 --rpc.accessList=rules.json

Now only these two methods are available.

For Developers

Code generation

go.mod stores right version of generators, use make grpc to install it and generate code.

Recommended protoc version is 3.x. Installation instructions