⛔️ DEPRECATED: This repository is no longer maintained.
eth-header-sync
Tool for syncing Ethereum headers into a Postgres database
Table of Contents
Background
Ethereum data is natively stored in key-value databases such as leveldb (geth) and rocksdb (openethereum). Storage of Ethereum in these KV databases is optimized for scalability and ideal for the purposes of consensus, it is not necessarily ideal for use by external applications. Moving Ethereum data into a relational database can provide many advantages for downstream data consumers.
eth-header-sync validates and syncs Ethereum headers into Postgres. It syncs headers from both tail and head, at the head it maintains a validation window (default size of 15) to handle chain reorgs.
This is useful when you want a minimal baseline from which to track and hash-link targeted data on the blockchain (e.g. individual smart contract storage values or event logs). Examples of this usage are eth-contract-watcher and eth-account-watcher.
Headers are fetched from the standard eth_getBlockByNumber
JSON-RPC endpoint.
Install
Dependencies
- Go 1.12+
- Postgres 11.2
- Ethereum Node
- Go Ethereum (1.8.23+)
- Open Ethereum (1.8.11+)
Building the project
Download the codebase to your local GOPATH
via:
go get github.com/vulcanize/eth-header-sync
Move to the project directory:
cd $GOPATH/src/github.com/vulcanize/eth-header-sync
Be sure you have enabled Go Modules (export GO111MODULE=on
), and build the executable with:
make build
If you need to use a different dependency than what is currently defined in go.mod
, it may helpful to look into the replace directive.
This instruction enables you to point at a fork or the local filesystem for dependency resolution.
If you are running into issues at this stage, ensure that GOPATH
is defined in your shell.
If necessary, GOPATH
can be set in ~/.bashrc
or ~/.bash_profile
, depending upon your system.
It can be additionally helpful to add $GOPATH/bin
to your shell's $PATH
.
Setting up the database
-
Install Postgres
-
Create a superuser for yourself and make sure
psql --list
works without prompting for a password. -
createdb vulcanize_public
-
cd $GOPATH/src/github.com/vulcanize/eth-header-sync
-
Run the migrations:
make migrate HOST_NAME=localhost NAME=vulcanize_public PORT=5432
- There are optional vars
USER=username
andPASS=password
if the database user is not the default userpostgres
and/or a password is present - To rollback a single step:
make rollback NAME=vulcanize_public
- To rollback to a certain migration:
make rollback_to MIGRATION=n NAME=vulcanize_public
- To see status of migrations:
make migration_status NAME=vulcanize_public
- See below for configuring additional environments
- There are optional vars
In some cases (such as recent Ubuntu systems), it may be necessary to overcome failures of password authentication from localhost. To allow access on Ubuntu, set localhost connections via hostname, ipv4, and ipv6 from peer/md5 to trust in: /etc/postgresql//pg_hba.conf
(It should be noted that trusted auth should only be enabled on systems without sensitive data in them: development and local test databases)
Usage
./eth-header-sync sync --config <config.toml> --starting-block-number <block-number>
The config file must be formatted as follows, and should contain an RPC path to a running Ethereum full node:
[database]
name = "vulcanize_public"
hostname = "localhost"
user = "postgres"
password = ""
port = 5432
[client]
rpcPath = "http://127.0.0.1:8545"
Testing
- Replace the empty
rpcPath
in theenvironments/testing.toml
with a path to a full node's eth_jsonrpc endpoint (e.g. local geth node ipc path or infura url)- Note: must be mainnet
- Note: integration tests require configuration with an archival node
make test
will run the unit tests and skip the integration testsmake integrationtest
will run just the integration testsmake test
andmake integrationtest
setup a cleanvulcanize_testing
db
Maintainers
@vulcanize @AFDudley @i-norden
Contributing
Contributions are welcome!
VulcanizeDB follows the Contributor Covenant Code of Conduct.
License
AGPL-3.0 © Vulcanize Inc