From dddb6eb44f59651c57de9405bee495a86fa9d31b Mon Sep 17 00:00:00 2001 From: bt3gl <1130416+bt3gl@users.noreply.github.com> Date: Fri, 23 Sep 2022 05:35:37 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=8D=AD=20clean=20up=20readme=20and=20docs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- geth_and_k8s/README.md | 38 ++++++++++++++++++++++++++------------ 1 file changed, 26 insertions(+), 12 deletions(-) diff --git a/geth_and_k8s/README.md b/geth_and_k8s/README.md index 57fb9dd..b72f3eb 100644 --- a/geth_and_k8s/README.md +++ b/geth_and_k8s/README.md @@ -15,6 +15,25 @@ * a custom data directory, which we define with `GETH_DATADIR` * a custom `NetworkID` , which we set `137` +
+ +--- + +
+ +### documentation for this work + +
+ +* [genesis block explanation](https://github.com/bt3gl-labs/1337_mev_toolkit/blob/main/geth_and_k8s/genesis_block_explanation.md) +* [deployment on gcp and docker](https://github.com/bt3gl-labs/1337_mev_toolkit/blob/main/geth_and_k8s/deployment_gcp_docker.md) +* [deployment of geth in gcp + kubernetex](https://github.com/bt3gl-labs/1337_mev_toolkit/blob/main/geth_and_k8s/deployment_gcp_k8s.md) +* [running a node in ethereum with geth](https://github.com/bt3gl-labs/1337_mev_toolkit/blob/main/geth_and_k8s/running-a-node-geth.md) +* [geth creation commands](https://github.com/bt3gl-labs/1337_mev_toolkit/blob/main/geth_and_k8s/geth_creation_commands.md) + +
+ +---
@@ -28,10 +47,7 @@ - serve the network and provides data on request. -
- - -### interacting with the client +* interacting with the client:
@@ -51,7 +67,7 @@ web3.fromWei(eth.getBalance("2ee8D80de1c389f1254e94bc44D2d1Bc391eD402"), "ether" ``` -#### txpool api +##### txpool api * access to several non-standard RPC methods to inspect the contents of the transaction pool containing all the currently pending transactions as well as the ones queued for future processing: @@ -60,20 +76,15 @@ txpool ``` -
- - -#### useful checks +##### useful checks ```bash admin.nodeInfo ``` -
- -### setting this chain on metamask +##### setting this chain on metamask @@ -87,6 +98,9 @@ Chain ID: 137
+--- + +
### references