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