Indexer for the ethereum blockchain
Project description
eth-index
eth-index is an indexer for events on the ethereum blockchain. It imports events into a postgresql database. It’s a companion to the trustlines project relay server component.
Installation
Before trying to install py-eth-index, make sure you have the postgresql development header files and library installed. On debian based systems this can be done by running:
apt install libpq-dev
eth-index uses python 3.8 or up. Please make sure you have the required version installed.
Please checkout the source code from github, cd into the checked out repo and run the folllowing pip command with a fresh virtualenv:
pip install -c constraints.txt .
Development
A complete development environment can be installed with:
pip install -c constraints.txt -r requirements.txt pip install -c constraints.txt -e .
This installs black, flake8, mypy and tox among other things.
black
The source code is formatted with black. If you choose not to use the pre-commit hook, you should be able to format the source code with black setup.py src.
flake8
We use flake8 to check for errors. Run flake8 src to check for errors.
mypy
mypy is used to check for type errors. Run mypy --ignore-missing-imports src to check manually.
tox
Running tox will run black, flake8, mypy and pytest locally.
Since we also do run some tests for postgres, the postgres database server must be installed on the local machine. It doesn’t have to be started though, since the tests do start postgres with a temporary data directory.
On a debian based system apt install postgresql will install the postgresql database.
pre-commit
The repository comes with a configuration file for pre-commit. pre-commit will be installed as part of the development dependencies specified in requirements.txt. The git commit hooks can be activated with pre-commit install inside the py-eth-index repository.
Initializing the database
Please setup a working postgres environment, i.e. set the PG* environment variables and configure ~/.pgpass.
Then run
ethindex createtables
to create the database tables.
ethindex
ethindex is a command line program that is being used to run the actual syncing process. It also uses the PG* variables in order to determine the postgres server to connect to.
ethindex importabi
Before importing events into the postgres database, the ABIs must be known.
ethindex importabi can be used to import ABIs into the postgres database. By default it reads the json file addresses.json from the current directory and adds the default abi for currency networks to the abis table. A custom abi file can be provided via --contracts option. The location of the addresses.json file can be specified via the --addresses command line argument.
Usage:
Usage: ethindex importabi [OPTIONS] Options: --addresses TEXT --contracts TEXT --help Show this message and exit.
ethindex runsync
ethindex runsync will start the actual synchronization process. On the first start it will read all of the abis and create one entry in the sync table containing all contract addresses. It then imports all of the events into the postgres table events.
Usage
Usage: ethindex runsync [OPTIONS] Options: --jsonrpc TEXT jsonrpc URL to use --required-confirmations INTEGER number of confirmations until we consider a block final --waittime INTEGER time to sleep in milliseconds waiting for a new block --startblock INTEGER Block from where events should be synced --syncid TEXT syncid to use --merge-with-syncid TEXT syncid to merge with --help Show this message and exit.
Adding new contracts
Import the contracts using the ethindex importabi command. Then synchronize these contracts and merge them with the default syncid with something like the following command:
ethindex runsync --syncid new --merge-with-syncid default
This command will synchronize all contracts, which aren’t already synchronized for the default syncid and will merge the new syncid into the default syncid, when both of them are fully synchronized with the chain. This means that a runsync job has to be running for default.
Status and Limitations
ethindex is alpha software.
Change log
See CHANGELOG.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file eth-index-0.4.1.tar.gz
.
File metadata
- Download URL: eth-index-0.4.1.tar.gz
- Upload date:
- Size: 24.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/54.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c45074364d562246881874f3dee8bb4f88dc1555d797f6559cb2c0c1ef5017c |
|
MD5 | 65b0d69526e25949ed8d0a6a8efe5566 |
|
BLAKE2b-256 | 60d42d531933532fe367195fb1965b26d496444283cbc24aec1aa5c583c6fa2f |
File details
Details for the file eth_index-0.4.1-py3-none-any.whl
.
File metadata
- Download URL: eth_index-0.4.1-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/54.0.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d04803cad8babf7bbce037613743ed3534e71b61527530034a010cd0c14d8a08 |
|
MD5 | d7c96d13a4a015804e0f48f239d2eb48 |
|
BLAKE2b-256 | 91afb1fd1350a5971ed2319d656cf2ca37217b4e6565f11ea4d2064624628b75 |