From 1d8513a40f2486609865e77a7c30920813df2e32 Mon Sep 17 00:00:00 2001 From: Joe Date: Mon, 19 Sep 2022 10:25:29 +0100 Subject: [PATCH] apply review changes to FAQs --- src/pages/docs/faq.md | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/src/pages/docs/faq.md b/src/pages/docs/faq.md index a2be123f8c..5436680cd0 100644 --- a/src/pages/docs/faq.md +++ b/src/pages/docs/faq.md @@ -3,12 +3,17 @@ title: FAQ description: Frequently asked questions related to Geth --- -This page contains answers to common questions about Geth. The Geth team have also recently started to run AMA's on Reddit: +### Where can I get more information? -[Aug 2022 AMA](https://www.reddit.com/r/ethereum/comments/wpqmo1/ama_we_are_the_go_ethereum_geth_team_18_august/) +This page contains answers to common questions about Geth. Source code and README documentation can be found on the Geth [Github](https://github.com/ethereum/go-ethereum). You can also ask questions on Geth's [Discord channel](https://discord.gg/WHNkYDsAKU) or keep up to date with Geth on [Twitter](https://twitter.com/go_ethereum). Information about Ethereum in general can be found at [ethereum.org](https://ethereum.org). + +The Geth team have also recently started to run AMA's on Reddit: + +- [Aug 2022 AMA](https://www.reddit.com/r/ethereum/comments/wpqmo1/ama_we_are_the_go_ethereum_geth_team_18_august/) It is also recommended to search for 'Geth' and 'go-ethereum' on [ethereum.stackexchange](ethereum.stackexchange.com). + ## What are RPC and IPC? IPC stands for Inter-Process Communications. Geth creates a `geth.ipc` file on startup that other processes on the same computer can use to communicate with Geth. @@ -16,7 +21,7 @@ RPC stands for Remote Procedure Call. RPC is a mode of communication between pro ## What is `jwtsecret`? -The `jwtsecret` file is required to create an authenticated connection between Geth and a consensus client. JWT stands for JSON Web Token - it is signed using a secret key, proving each party's identity. Read about how to create `jwt-secret` in Geth on our [Connecting to consensus clients](/content/docs/getting_started/consensus-clients.md) page. +The `jwtsecret` file is required to create an authenticated connection between Geth and a consensus client. JWT stands for JSON Web Token - it is signed using a secret key. The signed token acts as a shared secret used to check that information is sent to and received from the correct peer. Read about how to create `jwt-secret` in Geth on our [Connecting to consensus clients](/content/docs/getting_started/consensus-clients.md) page. ## I noticed my peercount slowly decreasing, and now it is at 0. Restarting doesn't get any peers. @@ -44,9 +49,9 @@ Additional details and/or any updates on more robust handling are at