ipld-eth-server/README.md

152 lines
7.8 KiB
Markdown
Raw Normal View History

2017-10-19 14:45:37 +00:00
# Vulcanize DB
2018-01-25 23:19:15 +00:00
2019-04-01 20:50:43 +00:00
[![Build Status](https://travis-ci.org/vulcanize/vulcanizedb.svg?branch=master)](https://travis-ci.org/vulcanize/vulcanizedb)
2019-04-05 15:10:34 +00:00
[![Go Report Card](https://goreportcard.com/badge/github.com/vulcanize/vulcanizedb)](https://goreportcard.com/report/github.com/vulcanize/vulcanizedb)
2017-10-19 14:38:47 +00:00
2019-04-05 15:10:34 +00:00
> Vulcanize DB is a set of tools that make it easier for developers to write application-specific indexes and caches for dapps built on Ethereum.
## Table of Contents
2019-04-08 16:47:56 +00:00
1. [Background](../staging/README.md#background)
1. [Dependencies](../staging/README.md#dependencies)
1. [Install](../staging/README.md#install)
1. [Usage](../staging/README.md#usage)
1. [Tests](../staging/README.md#tests)
1. [API](../staging/README.md#API)
1. [Contributing](../staging/README.md#contributing)
1. [License](../staging/README.md#license)
2019-04-05 15:10:34 +00:00
## Background
The same data structures and encodings that make Ethereum an effective and trust-less distributed virtual machine
2019-05-08 16:44:04 +00:00
complicate data accessibility and usability for dApp developers. VulcanizeDB improves Ethereum data accessibility by
providing a suite of tools to ease the extraction and transformation of data into a more useful state, including
allowing for exposing aggregate data from a suite of smart contracts.
2019-05-07 21:21:08 +00:00
VulanizeDB includes processes that sync, transform and expose data. Syncing involves
querying an Ethereum node and then persisting core data into a Postgres database. Transforming focuses on using previously synced data to
query for and transform log event and storage data for specifically configured smart contract addresses. Exposing data is a matter of getting
data from VulcanizeDB's underlying Postgres database and making it accessible.
2019-05-08 16:44:04 +00:00
![VulcanizeDB Overview Diagram](../documentation-updates/documentation/diagrams/vdb-overview.png)
## Dependencies
- Go 1.11+
- Postgres 10.6
2018-03-07 21:34:55 +00:00
- Ethereum Node
- [Go Ethereum](https://ethereum.github.io/go-ethereum/downloads/) (1.8.23+)
2018-03-07 21:34:55 +00:00
- [Parity 1.8.11+](https://github.com/paritytech/parity/releases)
2019-04-05 15:10:34 +00:00
## Install
2019-04-08 16:47:56 +00:00
1. [Building the project](../staging/README.md#building-the-project)
1. [Setting up the database](../staging/README.md#setting-up-the-database)
1. [Configuring a synced Ethereum node](../staging/README.md#configuring-a-synced-ethereum-node)
2019-04-08 16:47:56 +00:00
### Building the project
2019-04-05 15:10:34 +00:00
Download the codebase to your local `GOPATH` via:
`go get github.com/vulcanize/vulcanizedb`
2019-04-08 16:47:56 +00:00
Move to the project directory and use [golang/dep](https://github.com/golang/dep) to install the dependencies:
2019-04-08 16:47:56 +00:00
`cd $GOPATH/src/github.com/vulcanize/vulcanizedb`
`dep ensure`
2019-04-08 16:47:56 +00:00
Once the dependencies have been successfully installed, build the executable with:
2019-04-08 16:47:56 +00:00
`make build`
2019-04-08 16:47:56 +00:00
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`.
2019-04-05 15:10:34 +00:00
### Setting up the database
1. Install Postgres
2018-03-21 18:44:01 +00:00
1. Create a superuser for yourself and make sure `psql --list` works without prompting for a password.
1. `createdb vulcanize_public`
2018-03-21 18:44:01 +00:00
1. `cd $GOPATH/src/github.com/vulcanize/vulcanizedb`
1. Run the migrations: `make migrate HOST_NAME=localhost NAME=vulcanize_public PORT=5432`
2019-04-11 17:14:04 +00:00
- There is an optional var `USER=username` if the database user is not the default user `postgres`
- 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
2019-04-05 15:10:34 +00:00
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/<version>/pg_hba.conf
2018-01-26 19:51:13 +00:00
2019-04-05 15:10:34 +00:00
(It should be noted that trusted auth should only be enabled on systems without sensitive data in them: development and local test databases)
2019-04-05 15:10:34 +00:00
### Configuring a synced Ethereum node
- To use a local Ethereum node, copy `environments/public.toml.example` to
`environments/public.toml` and update the `ipcPath` and `levelDbPath`.
2018-05-02 16:17:02 +00:00
- `ipcPath` should match the local node's IPC filepath:
- For Geth:
2018-05-02 16:17:02 +00:00
- The IPC file is called `geth.ipc`.
- The geth IPC file path is printed to the console when you start geth.
- The default location is:
2019-05-07 21:21:08 +00:00
- Mac: `<full home path>/Library/Ethereum/geth.ipc`
- Linux: `<full home path>/ethereum/geth.ipc`
2019-05-07 21:21:08 +00:00
- Note: the geth.ipc file may not exist until you've started the geth process
2018-05-02 16:17:02 +00:00
- For Parity:
2018-05-02 16:17:02 +00:00
- The IPC file is called `jsonrpc.ipc`.
- The default location is:
- Mac: `<full home path>/Library/Application\ Support/io.parity.ethereum/`
- Linux: `<full home path>/local/share/io.parity.ethereum/`
2018-05-02 16:17:02 +00:00
- `levelDbPath` should match Geth's chaindata directory path.
- The geth LevelDB chaindata path is printed to the console when you start geth.
- The default location is:
- Mac: `<full home path>/Library/Ethereum/geth/chaindata`
- Linux: `<full home path>/ethereum/geth/chaindata`
2018-05-02 16:17:02 +00:00
- `levelDbPath` is irrelevant (and `coldImport` is currently unavailable) if only running parity.
2019-04-05 15:10:34 +00:00
## Usage
2019-05-07 21:21:08 +00:00
As mentioned above, VulcanizeDB's processes can be split into three categories: syncing, transforming and exposing data.
2019-04-05 15:10:34 +00:00
### Data syncing
2019-05-07 21:21:08 +00:00
To provide data for transformations, raw Ethereum data must first be synced into VulcanizeDB.
This is accomplished through the use of the `headerSync`, `sync`, or `coldImport` commands.
These commands are described in detail [here](../documentation-updates/documentation/sync.md).
2019-04-05 15:10:34 +00:00
### Data transformation
Data transformation uses the raw data that has been synced into Postgres to filter out and apply transformations to
specific data of interest. Since there are different types of data that may be useful for observing smart contracts, it
follows that there are different ways to transform this data. We've started by categorizing this into Generic and
Custom transformers:
- Generic Contract Transformer: Generic contract transformation can be done using a built-in command,
`contractWatcher`, which transforms contract events provided the contract's ABI is available. It also
provides some state variable coverage by automating polling of public methods, with some restrictions.
`contractWatcher` is described further [here](../documentation-updates/documentation/generic-transformer.md).
- Custom Transformers: In many cases custom transformers will need to be written to provide
more comprehensive coverage of contract data. In this case we have provided the `compose`, `execute`, and
`composeAndExecute` commands for running custom transformers from external repositories. Documentation on how to write,
build and run custom transformers as Go plugins can be found
[here](../documentation-updates/documentation/custom-transformers.md).
2019-04-05 15:10:34 +00:00
2019-05-07 21:21:08 +00:00
### Exposing the data
[Postgraphile](https://www.graphile.org/postgraphile/) is used to expose GraphQL endpoints for our database schemas, this is described in detail [here](../staging/documentation/postgraphile.md).
2019-04-05 15:10:34 +00:00
## Tests
2019-04-08 16:47:56 +00:00
- Replace the empty `ipcPath` in the `environments/infura.toml` with a path to a full node's eth_jsonrpc endpoint (e.g. local geth node ipc path or infura url)
- Note: integration tests require configuration with an archival node
2019-02-25 09:33:05 +00:00
- `createdb vulcanize_private` will create the test db
- `make migrate NAME=vulcanize_private` will run the db migrations
- `make test` will run the unit tests and skip the integration tests
2019-04-05 15:10:34 +00:00
- `make integrationtest` will run just the integration tests
2019-02-25 09:33:05 +00:00
2019-04-05 15:10:34 +00:00
## Contributing
2019-05-08 18:19:32 +00:00
Contributions are welcome!
2019-04-05 15:10:34 +00:00
For more on this, please see [here](../documentation-updates/documentation/contributing.md).
2019-04-05 15:10:34 +00:00
## License
2019-05-08 18:19:32 +00:00
[AGPL-3.0](../staging/LICENSE) © Vulcanize Inc