chaind-eth

Queue server for ethereum
Log | Files | Refs | README | LICENSE

commit 683351211ff28e06f4a3095ef1fbfe1525dd1873
parent 93c6ed78772651a9005e67b15f603bec3f403893
Author: nolash <dev@holbrook.no>
Date:   Tue, 20 Jul 2021 17:07:23 +0200

Upgrade readme

Diffstat:
MREADME.md | 21++++++++++++---------
1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/README.md b/README.md @@ -14,6 +14,9 @@ It capabilities are (unchecked box means feature not yet completed): * [x] only show transaction with errors * [x] only show transaction that have not yet completed - [x] systemd unit / socket service +- [x] sql storage backend +- [ ] filesystem storage backend + ## prerequisites @@ -26,18 +29,13 @@ For these examples you need: - sqlite - an EVM RPC endpoint -For any python command / executable use: - -* `-v` or `-vv` to get more information about what is going on -* `--help` for information on how to use and parameters that can be passed - - -## usage example +For any python command / executable used below: +* add `-v` or `-vv` to get more information about what is going on +* use with `--help` for information on how to use and parameters that can be passed -### set up database -In terminal window A +## setting up the database backend Currently there is no more practical way of setting up the database backend :/ @@ -51,8 +49,13 @@ pip install --extra-index-url https://pip.grassrootseconomics.net:8433 -r requir PYTHONPATH=. CHAIND_DOMAIN=eth DATABASE_ENGINE=sqlite python scripts/migrate.py ``` + +## usage example + ### create an empty working directory +In terminal window A + ``` d=$(mktemp -d) && cd $d ```