Readme updates

This commit is contained in:
Supragya Raj 2021-10-25 14:39:24 +02:00
parent 75ac0ea618
commit 2f1d8262ae

View File

@ -41,7 +41,7 @@ Example:
export RPC_URL="http://111.111.111.111:8546" export RPC_URL="http://111.111.111.111:8546"
``` ```
**Note**: mev-inspect-py currently requires an RPC of a full archive node with support for Erigon traces and receipts (not geth 😔). **Note**: mev-inspect-py currently requires an RPC of a full archive node with support for Erigon traces and receipts. Geth additions have been added to translate geth traces and receipts to Erigon ones and can be accessed using `--geth` flag.
Next, start all services with: Next, start all services with:
@ -62,6 +62,7 @@ kubectl exec deploy/mev-inspect -- alembic upgrade head
### Inspect a single block ### Inspect a single block
Inspecting block [12914944](https://twitter.com/mevalphaleak/status/1420416437575901185): Inspecting block [12914944](https://twitter.com/mevalphaleak/status/1420416437575901185):
**Note**: Add `--geth` at the end if RPC_URL points to a geth / geth like node.
``` ```
kubectl exec deploy/mev-inspect -- poetry run inspect-block 12914944 kubectl exec deploy/mev-inspect -- poetry run inspect-block 12914944
@ -70,6 +71,7 @@ kubectl exec deploy/mev-inspect -- poetry run inspect-block 12914944
### Inspect many blocks ### Inspect many blocks
Inspecting blocks 12914944 to 12914954: Inspecting blocks 12914944 to 12914954:
**Note**: Add `--geth` at the end if RPC_URL points to a geth / geth like node.
``` ```
kubectl exec deploy/mev-inspect -- poetry run inspect-many-blocks 12914944 12914954 kubectl exec deploy/mev-inspect -- poetry run inspect-many-blocks 12914944 12914954