Help

Dial / Accept, what does it mean?

There's a few mentions of "Dial" and "Accept" on the website. This is referring to the crawler dialing (connecting to) a node, or accepting a connection from a node.

The "Dial Success" value used in a few places means that the crawler was able to connect to the node in the last 14 days.

Add your node

If your node is not found, it can be easily added.

The crawler runs multiple nodes. You can select one to use at random:

enode://6c35ff4edc1be29d8f9bb7c16ffc8773eafdd488b2239dd5b8400c4a5f723cef473b7423a397cb76dfa368e943c15a7b5f943936faff79e4ce28c64a44ec3eb7@35.178.174.46:30303
enode://5f67525442216f39d7371826fe1158b8458686958a0a3e58daf8198fa4b5dd45fcb03141e05dfdec6e36da61af62eb6b065ca825a56c9217e531d1b36447fef4@35.178.174.46:30304
enode://ff39c9025b4ec3e7cfa6eaaf7d5e0356ea0ad96187ea24075328ed128df82315e3abea60f260f01847b7fc03909ab0d9ea30b0c7764fbed350ad2fc6072d4208@35.178.174.46:30305
enode://130bce4e70347c182fee96d2e09406af534db976499b2416f308fcd040814f6c6fe77e7afdec071f8a4b154976991773a34c1dcd48efe62b5f9804517ebd3b39@35.178.174.46:30306
enode://25b663f4199eee2490ff82110fce5fc2051d3808a18bb79e7ee410bdddca18e67bfb5710ddebb8469a36fa6867d374c0c0f89aa40ba2ff311a3e87ee9fe6b827@35.178.174.46:30307
enode://fea359e2843059d4f99bb09da45400a6b3f145e80218a1769b86c31362269795cccb1981e87733e45ce4300af01ec524ba28344df293823a262f6add3cfa7af7@35.178.174.46:30308
enode://df7ac5ee488b74924bdb861350f174764014ded895332e61d7d8f7672d5b8421e73549bb9b71f0ec2509d179eceac9f5673cb3f69bc5ae2008da3633b17b22bd@35.178.174.46:30309
enode://6b5af7bc909b209c2a3be9bbb5a11bb49aa833dd62e8f153c38c0ccea5e5090c5604a99f7c92b072792357f5ad803ea62ee69115378417281a3515e7b5543936@35.178.174.46:30310
enode://22c8ea45116d19e4ebc4bbb59be76d84f4fe0215c7d924fbae68d7c85ea8d685feb8805095ce94130d9cd4fe153bcb2a8494a3c6b5b06d785d74e6934439a0cc@35.178.174.46:30311
enode://fca3cd08796058cb0e2eabf559084ac45c241cdf6e47d82b327ee1b169cadfefedf6d984ab0e9a8393263a781cced325c31eb9cc08931a9eeebbbc81d6aa17b6@35.178.174.46:30312
enode://9d2a8051ae2c3b7fb611a6768c3791ebb36b19276009ea83188df66e2c893893228c4b19b0b99904b0e1e0f0844bba754a74bb2c370da3a9360ccdee21af1fef@35.178.174.46:30313
enode://61a4c0e9858f3afef9120f04064412715bbff99497df81903d48060a9da2c110121a347ad511bbeccb8601dce062d1dd7f5a97a7d1871d9c5b6a77b80f251795@35.178.174.46:30314
enode://d5398f686987676813800e16c74b746f1436ffffa607091090db91923c974f2b237e747aba119f5cbb879475629c3d1e71989c4e5276d6f3fc19091d1a40700e@35.178.174.46:30315
enode://dec4910b03c1f6069b41ec38d4cb2cdfe607a27244455bcd5764b62ab6dec9dbfb925bdf5a609a274d3940489605b05901db015b5bea43368cdbc12acca647b9@35.178.174.46:30316
enode://cd3032f9fc0155810701568db0f0fe7e5414e158b510bd3932db8400184fdd96bbf214de801612c0a128ca429d662cb6f810c96ba79de8403132239c8868d35d@35.178.174.46:30317
enode://1cf7db662897dcd2af946fdd47e5b6d8273846e6a6bef4f1f3ec1f2b38c77c6a2382fb9409e43681c15cc043298d9476f2faa14c1adb805c15559e616ff4c361@35.178.174.46:30318

RPC (All Clients)

This is an admin method, to use it, you need to enable the admin API:

Besu

Add the startup flag: --rpc-http-api

Erigon

Add the startup flag: --private.api.addr=localhost:8545

Geth

Add the startup flags: --http --http.api admin

Nethermind

Add the startup flags: --JsonRpc.Enabled true --JsonRpc.EnabledModules admin

Reth

Add the startup flags: --http --http.api admin

Then you can add the peer with a curl command

curl -X POST --data '{"jsonrpc":"2.0","method":"admin_addPeer","params":["enode://dec4910b03c1f6069b41ec38d4cb2cdfe607a27244455bcd5764b62ab6dec9dbfb925bdf5a609a274d3940489605b05901db015b5bea43368cdbc12acca647b9@35.178.174.46:30316"],"id":1}' http://127.0.0.1:8545

Geth

Run the following command in the JavaScript console:

admin.addPeer('enode://dec4910b03c1f6069b41ec38d4cb2cdfe607a27244455bcd5764b62ab6dec9dbfb925bdf5a609a274d3940489605b05901db015b5bea43368cdbc12acca647b9@35.178.174.46:30316')

Or, as a command:

geth --exec "admin.addPeer('enode://dec4910b03c1f6069b41ec38d4cb2cdfe607a27244455bcd5764b62ab6dec9dbfb925bdf5a609a274d3940489605b05901db015b5bea43368cdbc12acca647b9@35.178.174.46:30316')"

If you run Geth in a container:

docker exec CONTAINER_NAME geth --exec "admin.addPeer('enode://dec4910b03c1f6069b41ec38d4cb2cdfe607a27244455bcd5764b62ab6dec9dbfb925bdf5a609a274d3940489605b05901db015b5bea43368cdbc12acca647b9@35.178.174.46:30316')" attach /ethclient/geth/geth.ipc

Find your node ID / Pubkey

Find your node ID so you can find your node on the website

RPC (All Clients)

Follow the instructions here for your client

Then get the data with a curl command

curl -X POST --data '{"jsonrpc":"2.0","method":"admin_nodeInfo","params":[],"id":1}' http://127.0.0.1:8545

In the response, you should see your node's Enode, and ID. Both of these start with your node's public key.

Geth

Run the following command in the JavaScript console:

admin.nodeInfo.id

Or, as a command:

geth --exec "admin.nodeInfo.id"

If you run Geth in a container:

docker exec CONTAINER_NAME geth --exec "admin.nodeInfo.id" attach /ethclient/geth/geth.ipc