2017-10-19 14:45:37 +00:00
# Vulcanize DB
2018-01-25 23:19:15 +00:00
2018-04-19 14:49:56 +00:00
[![Join the chat at https://gitter.im/vulcanizeio/VulcanizeDB ](https://badges.gitter.im/vulcanizeio/VulcanizeDB.svg )](https://gitter.im/vulcanizeio/VulcanizeDB?utm_source=badge& utm_medium=badge& utm_campaign=pr-badge& utm_content=badge)
2019-01-23 06:55:26 +00:00
[![Build Status ](https://travis-ci.com/vulcanize/maker-vulcanizedb.svg?token=MKcE2K7CRvKtdxSSnbap&branch=staging )](https://travis-ci.com/vulcanize/maker-vulcanizedb)
2017-10-19 14:38:47 +00:00
2018-06-20 21:55:33 +00:00
## About
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.
2018-04-09 16:51:21 +00:00
## Dependencies
2018-11-24 04:26:07 +00:00
- Go 1.11+
2019-02-28 17:51:54 +00:00
- Postgres 10.6
2018-03-07 21:34:55 +00:00
- Ethereum Node
2019-03-03 09:37:27 +00:00
- [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 )
2018-01-29 19:44:18 +00:00
2018-08-06 15:25:31 +00:00
## Project Setup
Using Vulcanize for the first time requires several steps be done in order to allow use of the software. The following instructions will offer a guide through the steps of the process:
1. Fetching the project
2. Installing dependencies
3. Configuring shell environment
4. Database setup
5. Configuring synced Ethereum node integration
6. Data syncing
2019-02-18 10:32:20 +00:00
### Installation
2018-08-06 15:25:31 +00:00
In order to fetch the project codebase for local use or modification, install it to your `GOPATH` via:
2018-04-09 16:51:21 +00:00
`go get github.com/vulcanize/vulcanizedb`
2017-10-25 15:05:29 +00:00
2018-08-06 15:25:31 +00:00
Once fetched, dependencies can be installed via `go get` or (the preferred method) at specific versions via `golang/dep` , the prototype golang pakcage manager. Installation instructions are [here ](https://golang.github.io/dep/docs/installation.html ).
In order to install packages with `dep` , ensure you are in the project directory now within your `GOPATH` (default location is `~/go/src/github.com/vulcanize/vulcanizedb/` ) and run:
`dep ensure`
After `dep` finishes, dependencies should be installed within your `GOPATH` at the versions specified in `Gopkg.toml` .
2019-03-08 18:35:50 +00:00
Because we are working with a modified version of the go-ethereum accounts/abi package, after running `dep ensure` you will need to run `git checkout vendor/github/ethereum/go-ethereum/accounts/abi` to checkout the modified dependency.
This is explained in greater detail [here ](https://github.com/vulcanize/maker-vulcanizedb/issues/41 ).
2019-02-28 17:51:54 +00:00
2018-08-06 15:25:31 +00:00
Lastly, 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-02-18 10:32:20 +00:00
### Setting up the Database
2017-10-25 15:05:29 +00:00
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.
2018-04-09 16:51:21 +00:00
1. `createdb vulcanize_public`
2018-03-21 18:44:01 +00:00
1. `cd $GOPATH/src/github.com/vulcanize/vulcanizedb`
2018-04-11 16:00:25 +00:00
1. Run the migrations: `make migrate HOST_NAME=localhost NAME=vulcanize_public PORT=5432`
2019-01-24 10:54:25 +00:00
- 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`
2018-01-26 19:38:14 +00:00
2017-11-03 21:52:19 +00:00
* See below for configuring additional environments
2018-01-26 19:51:13 +00:00
2019-02-18 10:32:20 +00:00
### Create a migration file
2019-01-24 10:54:25 +00:00
1. `make new_migration NAME=add_columnA_to_table1`
- This will create a new timestamped migration file in `db/migrations`
1. Write the migration code in the created file, under the respective `goose` pragma
- Goose automatically runs each migration in a transaction; don't add `BEGIN` and `COMMIT` statements.
2018-08-22 17:44:35 +00:00
2019-02-18 10:32:20 +00:00
### Configuration
2018-04-09 16:51:21 +00:00
- To use a local Ethereum node, copy `environments/public.toml.example` to
2018-08-14 21:59:41 +00:00
`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:
2018-08-06 15:25:31 +00:00
- 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:
2018-08-06 15:25:31 +00:00
- Mac: `<full home path>/Library/Ethereum`
- Linux: `<full home path>/ethereum/geth.ipc`
2018-05-02 16:17:02 +00:00
2018-08-06 15:25:31 +00:00
- For Parity:
2018-05-02 16:17:02 +00:00
- The IPC file is called `jsonrpc.ipc` .
- The default location is:
2018-08-06 15:25:31 +00:00
- Mac: `<full home path>/Library/Application\ Support/io.parity.ethereum/`
- Linux: `<full home path>/local/share/io.parity.ethereum/`
2019-02-28 14:59:04 +00:00
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:
2018-08-06 15:25:31 +00:00
- 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.
2018-04-09 16:51:21 +00:00
2018-08-14 21:59:41 +00:00
- See `environments/infura.toml` to configure commands to run against infura, if a local node is unavailable.
2018-08-07 20:17:29 +00:00
- Copy `environments/local.toml.example` to `environments/local.toml` to configure commands to run against a local node such as [Ganache ](https://truffleframework.com/ganache ) or [ganache-cli ](https://github.com/trufflesuite/ganache-clihttps://github.com/trufflesuite/ganache-cli ).
2017-10-25 15:05:29 +00:00
2019-02-18 10:32:20 +00:00
### Start syncing with postgres
2018-07-17 21:23:07 +00:00
Syncs VulcanizeDB with the configured Ethereum node, populating blocks, transactions, receipts, and logs.
This command is useful when you want to maintain a broad cache of what's happening on the blockchain.
1. Start Ethereum node (**if fast syncing your Ethereum node, wait for initial sync to finish**)
1. In a separate terminal start VulcanizeDB:
2018-05-02 16:17:02 +00:00
- `./vulcanizedb sync --config <config.toml> --starting-block-number <block-number>`
2019-02-18 10:32:20 +00:00
### Alternatively, sync from Geth's underlying LevelDB
2018-05-02 16:17:02 +00:00
Sync VulcanizeDB from the LevelDB underlying a Geth node.
1. Assure node is not running, and that it has synced to the desired block height.
1. Start vulcanize_db
2018-08-06 15:25:31 +00:00
- `./vulcanizedb coldImport --config <config.toml>`
2018-05-07 15:41:02 +00:00
1. Optional flags:
2018-08-06 15:25:31 +00:00
- `--starting-block-number <block number>` /`-s < block number > `: block number to start syncing from
- `--ending-block-number <block number>` /`-e < block number > `: block number to sync to
2018-05-07 15:41:02 +00:00
- `--all` /`-a`: sync all missing blocks
2017-12-20 20:06:22 +00:00
2019-02-18 10:32:20 +00:00
### Alternatively, sync in "light" mode
2018-07-17 21:23:07 +00:00
Syncs VulcanizeDB with the configured Ethereum node, populating only block headers.
This command is useful when you want a minimal baseline from which to track targeted data on the blockchain (e.g. individual smart contract storage values).
1. Start Ethereum node
2018-07-26 22:01:24 +00:00
1. In a separate terminal start VulcanizeDB:
2019-02-28 14:59:04 +00:00
- `./vulcanizedb lightSync --config <config.toml> --starting-block-number <block-number>`
2018-06-21 19:21:34 +00:00
## Start full environment in docker by single command
### Geth Rinkeby
make command | description
------------------- | ----------------
rinkeby_env_up | start geth, postgres and rolling migrations, after migrations done starting vulcanizedb container
rinkeby_env_deploy | build and run vulcanizedb container in rinkeby environment
rinkeby_env_migrate | build and run rinkeby env migrations
rinkeby_env_down | stop and remove all rinkeby env containers
Success run of the VulcanizeDB container require full geth state sync,
attach to geth console and check sync state:
```bash
$ docker exec -it rinkeby_vulcanizedb_geth geth --rinkeby attach
...
> eth.syncing
false
```
If you have full rinkeby chaindata you can move it to `rinkeby_vulcanizedb_geth_data` docker volume to skip long wait of sync.
2017-10-19 14:45:37 +00:00
## Running the Tests
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
2018-10-17 18:04:55 +00:00
- `make test` will run the unit tests and skip the integration tests
- `make integrationtest` will run the just the integration tests
2018-09-17 03:44:58 +00:00
## Deploying
2018-09-19 17:08:22 +00:00
1. you will need to make sure you have ssh agent running and your ssh key added to it. instructions [here ](https://developer.github.com/v3/guides/using-ssh-agent-forwarding/#your-key-must-be-available-to-ssh-agent )
2018-09-17 03:44:58 +00:00
1. `go get -u github.com/pressly/sup/cmd/sup`
1. `sup staging deploy`
2019-01-23 06:37:26 +00:00
2019-02-18 10:32:20 +00:00
## Contract Watchers
Contract watchers work with a light or full sync vDB to fetch raw ethereum data and execute a set of transformations over them, persisting the output.
2019-02-28 14:59:04 +00:00
2019-02-18 10:32:20 +00:00
A watcher is composed of at least a fetcher and a transformer or set of transformers, where a fetcher is an interface for retrieving raw Ethereum data from some source (e.g. eth_jsonrpc, IPFS)
and a transformer is an interface for filtering through that raw Ethereum data to extract, process, and persist data for specific contracts or accounts.
2019-02-28 14:59:04 +00:00
### omniWatcher
2019-02-18 10:32:20 +00:00
The `omniWatcher` command is a built-in generic contract watcher. It can watch any and all events for a given contract provided the contract's ABI is available.
2019-02-28 14:59:04 +00:00
It also provides some state variable coverage by automating polling of public methods, with some restrictions.
2019-02-18 10:32:20 +00:00
This command requires a pre-synced (full or light) vulcanizeDB (see above sections) and currently requires the contract ABI be available on etherscan or provided by the user.
2019-02-28 14:59:04 +00:00
To watch all events of a contract using a light synced vDB:
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --contract-address <contract address>`
Or if you are using a full synced vDB, change the mode to full:
- Execute `./vulcanizedb omniWatcher --mode full --config <path to config.toml> --contract-address <contract address>`
To watch contracts on a network other than mainnet, use the network flag:
2018-12-19 18:42:59 +00:00
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --contract-address <contract address> --network <ropsten, kovan, or rinkeby>`
2019-02-28 14:59:04 +00:00
2019-01-04 18:15:22 +00:00
To watch events starting at a certain block use the starting block flag:
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --contract-address <contract address> --starting-block-number <#>`
2019-02-28 14:59:04 +00:00
To watch only specified events use the events flag:
2018-12-19 18:42:59 +00:00
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --contract-address <contract address> --events <EventName1> --events <EventName2>`
2019-02-28 14:59:04 +00:00
2018-12-19 18:42:59 +00:00
To watch events and poll the specified methods with any addresses and hashes emitted by the watched events utilize the methods flag:
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --contract-address <contract address> --methods <methodName1> --methods <methodName2>`
2019-02-28 14:59:04 +00:00
To watch specified events and poll the specified method with any addresses and hashes emitted by the watched events:
2018-12-19 18:42:59 +00:00
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --contract-address <contract address> --events <EventName1> --events <EventName2> --methods <methodName>`
2019-02-28 14:59:04 +00:00
2018-12-19 18:42:59 +00:00
To turn on method piping so that values returned from previous method calls are cached and used as arguments in subsequent method calls:
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --piping true --contract-address <contract address> --events <EventName1> --events <EventName2> --methods <methodName>`
2019-02-28 14:59:04 +00:00
To watch all types of events of the contract but only persist the ones that emit one of the filtered-for argument values:
2018-12-19 18:42:59 +00:00
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --contract-address <contract address> --event-args <arg1> --event-args <arg2>`
2019-02-28 14:59:04 +00:00
2018-12-19 18:42:59 +00:00
To watch all events of the contract but only poll the specified method with specified argument values (if they are emitted from the watched events):
- Execute `./vulcanizedb omniWatcher --config <path to config.toml> --contract-address <contract address> --methods <methodName> --method-args <arg1> --method-args <arg2>`
2019-01-23 06:37:26 +00:00
2019-02-28 14:59:04 +00:00
#### omniWatcher output
2019-02-18 10:32:20 +00:00
Transformed events and polled method results are committed to Postgres in schemas and tables generated according to the contract abi.
2019-02-28 14:59:04 +00:00
Schemas are created for each contract using the naming convention `<sync-type>_<lowercase contract-address>`
2019-02-18 10:32:20 +00:00
Under this schema, tables are generated for watched events as `<lowercase event name>_event` and for polled methods as `<lowercase method name>_method`
The 'method' and 'event' identifiers are tacked onto the end of the table names to prevent collisions between methods and events of the same lowercase name
2019-02-28 14:59:04 +00:00
Example:
2019-02-18 10:32:20 +00:00
Running `./vulcanizedb omniWatcher --config <path to config> --starting-block-number=5197514 --contract-address=0x8dd5fbce2f6a956c3022ba3663759011dd51e73e --events=Transfer --events=Mint --methods=balanceOf`
watches Transfer and Mint events of the TrueUSD contract and polls its balanceOf method using the addresses we find emitted from those events
2019-02-28 14:59:04 +00:00
It produces and populates a schema with three tables:
2019-02-18 10:32:20 +00:00
2019-02-28 14:59:04 +00:00
`light_0x8dd5fbce2f6a956c3022ba3663759011dd51e73e.transfer_event`
`light_0x8dd5fbce2f6a956c3022ba3663759011dd51e73e.mint_event`
`light_0x8dd5fbce2f6a956c3022ba3663759011dd51e73e.balanceof_method`
2019-02-18 10:32:20 +00:00
2019-02-28 17:51:54 +00:00
Column ids and types for these tables are generated based on the event and method argument names and types and method return types, resulting in tables such as:
2019-02-18 10:32:20 +00:00
2019-02-28 14:59:04 +00:00
Table "light_0x8dd5fbce2f6a956c3022ba3663759011dd51e73e.transfer_event"
2019-02-18 10:32:20 +00:00
| Column | Type | Collation | Nullable | Default | Storage | Stats target | Description
|:----------:|:---------------------:|:---------:|:--------:|:-------------------------------------------------------------------------------------------:|:--------:|:------------:|:-----------:|
| id | integer | | not null | nextval('light_0x8dd5fbce2f6a956c3022ba3663759011dd51e73e.transfer_event_id_seq'::regclass) | plain | | |
| header_id | integer | | not null | | plain | | |
| token_name | character varying(66) | | not null | | extended | | |
| raw_log | jsonb | | | | extended | | |
| log_idx | integer | | not null | | plain | | |
| tx_idx | integer | | not null | | plain | | |
| from_ | character varying(66) | | not null | | extended | | |
| to_ | character varying(66) | | not null | | extended | | |
| value_ | numeric | | not null | | main | | |
2019-02-28 14:59:04 +00:00
Table "light_0x8dd5fbce2f6a956c3022ba3663759011dd51e73e.balanceof_method"
2019-02-18 10:32:20 +00:00
| Column | Type | Collation | Nullable | Default | Storage | Stats target | Description |
|:----------:|:---------------------:|:---------:|:--------:|:-------------------------------------------------------------------------------------------:|:--------:|:------------:|:-----------:|
| id | integer | | not null | nextval('light_0x8dd5fbce2f6a956c3022ba3663759011dd51e73e.balanceof_method_id_seq'::regclass) | plain | | |
| token_name | character varying(66) | | not null | | extended | | |
| block | integer | | not null | | plain | | |
| who_ | character varying(66) | | not null | | extended | | |
| returned | numeric | | not null | | main | | |
2019-02-28 14:59:04 +00:00
The addition of '_' after table names is to prevent collisions with reserved Postgres words
2019-02-18 10:32:20 +00:00
2019-02-28 14:59:04 +00:00
### composeAndExecute
2019-02-18 10:32:20 +00:00
The `composeAndExecute` command is used to compose and execute over an arbitrary set of custom transformers.
This is accomplished by generating a Go pluggin which allows our `vulcanizedb` binary to link to external transformers, so
2019-02-25 04:26:42 +00:00
long as they abide by our standard [interfaces ](https://github.com/vulcanize/maker-vulcanizedb/tree/compose_and_execute/libraries/shared/transformer ).
2019-02-25 09:33:05 +00:00
2019-02-28 14:59:04 +00:00
This command requires Go 1.11+ and [Go plugins ](https://golang.org/pkg/plugin/ ) only work on Unix based systems.
2019-02-18 10:32:20 +00:00
2019-02-28 14:59:04 +00:00
#### Writing custom transformers
Storage Transformers
2019-02-25 09:33:05 +00:00
* [Guide ](https://github.com/vulcanize/maker-vulcanizedb/blob/compose_and_execute/libraries/shared/factories/storage/README.md )
* [Example ](https://github.com/vulcanize/maker-vulcanizedb/blob/compose_and_execute/libraries/shared/factories/storage/EXAMPLE.md )
Event Transformers
2019-03-07 04:26:24 +00:00
* [Guide ](https://github.com/vulcanize/maker-vulcanizedb/blob/event_docs/libraries/shared/factories/README.md )
* [Example ](https://github.com/vulcanize/ens_transformers/tree/working )
2019-02-25 09:33:05 +00:00
2019-02-18 10:32:20 +00:00
#### composeAndExecute configuration
2019-02-28 14:59:04 +00:00
A .toml config file is specified when executing the command:
`./vulcanizedb composeAndExecute --config=./environments/config_name.toml`
2019-02-18 10:32:20 +00:00
2019-02-28 14:59:04 +00:00
The config provides information for composing a set of transformers:
2019-02-18 10:32:20 +00:00
2019-02-28 14:59:04 +00:00
```toml
2019-02-18 10:32:20 +00:00
[database]
name = "vulcanize_public"
hostname = "localhost"
user = "vulcanize"
password = "vulcanize"
port = 5432
[client]
ipcPath = "http://kovan0.vulcanize.io:8545"
[exporter]
2019-02-18 11:23:36 +00:00
home = "github.com/vulcanize/vulcanizedb"
2019-02-25 09:33:05 +00:00
name = "exampleTransformerExporter"
2019-02-18 10:32:20 +00:00
save = false
transformerNames = [
"transformer1",
"transformer2",
"transformer3",
"transformer4",
]
[exporter.transformer1]
path = "path/to/transformer1"
type = "eth_event"
repository = "github.com/account/repo"
migrations = "db/migrations"
[exporter.transformer2]
path = "path/to/transformer2"
type = "eth_event"
repository = "github.com/account/repo"
migrations = "db/migrations"
[exporter.transformer3]
path = "path/to/transformer3"
type = "eth_event"
repository = "github.com/account/repo"
migrations = "db/migrations"
[exporter.transformer4]
path = "path/to/transformer4"
type = "eth_storage"
repository = "github.com/account2/repo2"
migrations = "to/db/migrations"
```
2019-02-18 11:23:36 +00:00
- `home` is the name of the package you are building the plugin for, in most cases this is github.com/vulcanize/vulcanizedb
2019-02-18 10:32:20 +00:00
- `name` is the name used for the plugin files (.so and .go)
2019-02-18 11:23:36 +00:00
- `save` indicates whether or not the user wants to save the .go file instead of removing it after .so compilation. Sometimes useful for debugging/trouble-shooting purposes.
- `transformerNames` is the list of the names of the transformers we are composing together, so we know how to access their submaps in the exporter map
- `exporter.<transformerName>` s are the sub-mappings containing config info for the transformers
2019-02-18 10:32:20 +00:00
- `repository` is the path for the repository which contains the transformer and its `TransformerInitializer`
2019-03-05 20:49:31 +00:00
- `path` is the relative path from `repository` to the transformer's `TransformerInitializer` directory (initializer package).
- Transformer repositories need to be cloned into the user's $GOPATH (`go get`)
2019-02-18 11:23:36 +00:00
- `type` is the type of the transformer; indicating which type of watcher it works with (for now, there are only two options: `eth_event` and `eth_storage` )
2019-03-07 04:26:24 +00:00
- `eth_storage` indicates the transformer works with the [storage watcher ](https://github.com/vulcanize/maker-vulcanizedb/blob/staging/libraries/shared/watcher/storage_watcher.go )
2019-02-18 11:23:36 +00:00
that fetches state and storage diffs from an ETH node (instead of, for example, from IPFS)
2019-03-07 04:26:24 +00:00
- `eth_event` indicates the transformer works with the [event watcher ](https://github.com/vulcanize/maker-vulcanizedb/blob/staging/libraries/shared/watcher/event_watcher.go )
2019-02-18 11:23:36 +00:00
that fetches event logs from an ETH node
- `migrations` is the relative path from `repository` to the db migrations directory for the transformer
2019-02-28 14:59:04 +00:00
- Note: If any of the imported transformers need additional config variables those need to be included as well
2019-02-18 10:32:20 +00:00
2019-02-25 09:33:05 +00:00
This information is used to write and build a Go plugin which exports the configured transformers.
2019-02-28 14:59:04 +00:00
These transformers are loaded onto their specified watchers and executed.
2019-02-18 10:32:20 +00:00
2019-02-25 09:33:05 +00:00
Transformers of different types can be run together in the same command using a single config file or in separate instances using different config files
2019-02-18 10:32:20 +00:00
2019-02-28 14:59:04 +00:00
The general structure of a plugin .go file, and what we would see built with the above config is shown below
2019-02-18 10:32:20 +00:00
```go
package main
import (
interface1 "github.com/vulcanize/vulcanizedb/libraries/shared/transformer"
transformer1 "github.com/account/repo/path/to/transformer1"
transformer2 "github.com/account/repo/path/to/transformer2"
transformer3 "github.com/account/repo/path/to/transformer3"
transformer4 "github.com/account2/repo2/path/to/transformer4"
)
type exporter string
var Exporter exporter
func (e exporter) Export() []interface1.TransformerInitializer, []interface1.StorageTransformerInitializer {
return []interface1.TransformerInitializer{
transformer1.TransformerInitializer,
transformer2.TransformerInitializer,
transformer3.TransformerInitializer,
}, []interface1.StorageTransformerInitializer{
transformer4.StorageTransformerInitializer,
}
}
```
#### Preparing transformer(s) to work as pluggins for composeAndExecute
2019-02-28 14:59:04 +00:00
To plug in an external transformer we need to:
2019-02-18 10:32:20 +00:00
2019-03-07 04:26:24 +00:00
* Create a [package ](https://github.com/vulcanize/ens_transformers/blob/working/transformers/registry/new_owner/initializer/initializer.go )
that exports a variable `TransformerInitializer` or `StorageTransformerInitializer` that are of type [TransformerInitializer ](https://github.com/vulcanize/maker-vulcanizedb/blob/staging/libraries/shared/transformer/event_transformer.go#L33 )
or [StorageTransformerInitializer ](https://github.com/vulcanize/maker-vulcanizedb/blob/staging/libraries/shared/transformer/storage_transformer.go#L31 ), respectively
* Design the transformers to work in the context of their [event ](https://github.com/vulcanize/maker-vulcanizedb/blob/staging/libraries/shared/watcher/event_watcher.go#L83 )
or [storage ](https://github.com/vulcanize/maker-vulcanizedb/blob/staging/libraries/shared/watcher/storage_watcher.go#L58 ) watcher execution modes
2019-02-28 17:51:54 +00:00
* Create db migrations to run against vulcanizeDB so that we can store the transformer output
* Do not `goose fix` the transformer migrations
* Specify migration locations for each transformer in the config with the `exporter.transformer.migrations` fields
2019-03-08 16:38:35 +00:00
* If the base vDB migrations occupy this path as well, they need to be in their `goose fix` ed form
as they are [here ](https://github.com/vulcanize/vulcanizedb/tree/master/db/migrations )
2019-02-28 17:51:54 +00:00
To update a plugin repository with changes to the core vulcanizedb repository, replace the vulcanizedb vendored in the plugin repo (`plugin_repo/vendor/github.com/vulcanize/vulcanizedb`)
with the newly updated version
* The entire vendor lib within the vendored vulcanizedb needs to be deleted (`plugin_repo/vendor/github.com/vulcanize/vulcanizedb/vendor`)
* These complications arise due to this [conflict ](https://github.com/golang/go/issues/20481 ) between `dep` and Go plugins