diff --git a/Gododir/main.go b/Gododir/main.go index 6acd911b..cf9e69c3 100644 --- a/Gododir/main.go +++ b/Gododir/main.go @@ -5,8 +5,8 @@ import ( "fmt" - "github.com/8thlight/vulcanizedb/cmd" - "github.com/8thlight/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/cmd" + "github.com/vulcanize/vulcanizedb/pkg/config" do "gopkg.in/godo.v2" ) diff --git a/README.md b/README.md index 5af21eaa..ae38cd45 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Vulcanize DB -[![Build Status](https://travis-ci.com/8thlight/vulcanizedb.svg?token=GKv2Y33qsFnfYgejjvYx&branch=master)](https://travis-ci.com/8thlight/vulcanizedb) +[![Build Status](https://travis-ci.com/vulcanize/vulcanizedb.svg?token=GKv2Y33qsFnfYgejjvYx&branch=master)](https://travis-ci.com/vulcanize/vulcanizedb) ## Development Setup @@ -19,8 +19,8 @@ 1. `git config --global url."git@github.com:".insteadOf "https://github.com/"` - By default, `go get` does not work for private GitHub repos. This will fix that. -2. `go get github.com/8thlight/vulcanizedb` -3. `cd $GOPATH/src/github.com/8thlight/vulcanizedb` +2. `go get github.com/vulcanize/vulcanizedb` +3. `cd $GOPATH/src/github.com/vulcanize/vulcanizedb` 4. `dep ensure` ### Setting up the Databases @@ -30,7 +30,7 @@ 3. `go get -u -d github.com/mattes/migrate/cli github.com/lib/pq` 4. `go build -tags 'postgres' -o /usr/local/bin/migrate github.com/mattes/migrate/cli` 5. `createdb vulcanize_private` -6. `cd $GOPATH/src/github.com/8thlight/vulcanizedb` +6. `cd $GOPATH/src/github.com/vulcanize/vulcanizedb` 7. `godo migrate -- --environment=` * See below for configuring additional environments @@ -55,7 +55,7 @@ Here are some instructions for creating a private blockchain that does not depen The default location for Ethereum is: - `$HOME/Library/Ethereum` for Mac - `$HOME/.ethereum` for Ubuntu - - `$GOPATH/src/gihub.com/8thlight/vulcanizedb/test_data_dir/geth.ipc` for private blockchain. + - `$GOPATH/src/gihub.com/vulcanize/vulcanizedb/test_data_dir/geth.ipc` for private blockchain. **Note the location of the ipc file is outputted when you connect to a blockchain. It is needed to for configuration** diff --git a/cmd/get_logs/main.go b/cmd/get_logs/main.go index 465349f9..ca79bd25 100644 --- a/cmd/get_logs/main.go +++ b/cmd/get_logs/main.go @@ -9,9 +9,9 @@ import ( "time" - "github.com/8thlight/vulcanizedb/cmd" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/cmd" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth" ) func min(a, b int64) int64 { diff --git a/cmd/populate_blocks/main.go b/cmd/populate_blocks/main.go index 966b98e6..f402b23d 100644 --- a/cmd/populate_blocks/main.go +++ b/cmd/populate_blocks/main.go @@ -5,9 +5,9 @@ import ( "fmt" - "github.com/8thlight/vulcanizedb/cmd" - "github.com/8thlight/vulcanizedb/pkg/geth" - "github.com/8thlight/vulcanizedb/pkg/history" + "github.com/vulcanize/vulcanizedb/cmd" + "github.com/vulcanize/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/history" ) func main() { diff --git a/cmd/run/main.go b/cmd/run/main.go index 2fd84573..e9c5ae8d 100644 --- a/cmd/run/main.go +++ b/cmd/run/main.go @@ -7,9 +7,9 @@ import ( "os" - "github.com/8thlight/vulcanizedb/cmd" - "github.com/8thlight/vulcanizedb/pkg/geth" - "github.com/8thlight/vulcanizedb/pkg/history" + "github.com/vulcanize/vulcanizedb/cmd" + "github.com/vulcanize/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/history" ) const ( diff --git a/cmd/show_contract_summary/main.go b/cmd/show_contract_summary/main.go index 2b2a5e52..24e83cf2 100644 --- a/cmd/show_contract_summary/main.go +++ b/cmd/show_contract_summary/main.go @@ -7,9 +7,9 @@ import ( "fmt" - "github.com/8thlight/vulcanizedb/cmd" - "github.com/8thlight/vulcanizedb/pkg/contract_summary" - "github.com/8thlight/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/cmd" + "github.com/vulcanize/vulcanizedb/pkg/contract_summary" + "github.com/vulcanize/vulcanizedb/pkg/geth" ) func main() { diff --git a/cmd/utils.go b/cmd/utils.go index f4963b04..8c1543a7 100644 --- a/cmd/utils.go +++ b/cmd/utils.go @@ -9,10 +9,10 @@ import ( "math/big" - "github.com/8thlight/vulcanizedb/pkg/config" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/repositories" ) func LoadConfig(environment string) config.Config { diff --git a/cmd/vulcanize_db/main.go b/cmd/vulcanize_db/main.go index 1b5ee7be..2cf8cb42 100644 --- a/cmd/vulcanize_db/main.go +++ b/cmd/vulcanize_db/main.go @@ -7,11 +7,11 @@ import ( "os" - "github.com/8thlight/vulcanizedb/cmd" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth" - "github.com/8thlight/vulcanizedb/pkg/history" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/cmd" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/history" + "github.com/vulcanize/vulcanizedb/pkg/repositories" ) const ( diff --git a/cmd/watch_contract/main.go b/cmd/watch_contract/main.go index 5bd35cb5..4b1451e8 100644 --- a/cmd/watch_contract/main.go +++ b/cmd/watch_contract/main.go @@ -3,9 +3,9 @@ package main import ( "flag" - "github.com/8thlight/vulcanizedb/cmd" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/cmd" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth" ) func main() { diff --git a/integration_test/block_rewards_test.go b/integration_test/block_rewards_test.go index 255a7988..5cc18efe 100644 --- a/integration_test/block_rewards_test.go +++ b/integration_test/block_rewards_test.go @@ -3,8 +3,8 @@ package integration import ( "log" - cfg "github.com/8thlight/vulcanizedb/pkg/config" - "github.com/8thlight/vulcanizedb/pkg/geth" + cfg "github.com/vulcanize/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/pkg/geth" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/integration_test/contract_test.go b/integration_test/contract_test.go index e0155f64..4aa65846 100644 --- a/integration_test/contract_test.go +++ b/integration_test/contract_test.go @@ -5,10 +5,10 @@ import ( "log" - cfg "github.com/8thlight/vulcanizedb/pkg/config" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth" - "github.com/8thlight/vulcanizedb/pkg/geth/testing" + cfg "github.com/vulcanize/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/geth/testing" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/integration_test/geth_blockchain_test.go b/integration_test/geth_blockchain_test.go index 279fbef5..99631e7a 100644 --- a/integration_test/geth_blockchain_test.go +++ b/integration_test/geth_blockchain_test.go @@ -4,10 +4,10 @@ import ( "io/ioutil" "log" - "github.com/8thlight/vulcanizedb/pkg/config" - "github.com/8thlight/vulcanizedb/pkg/geth" - "github.com/8thlight/vulcanizedb/pkg/history" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/history" + "github.com/vulcanize/vulcanizedb/pkg/repositories" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/pkg/config/config_test.go b/pkg/config/config_test.go index 0504e8a1..89936906 100644 --- a/pkg/config/config_test.go +++ b/pkg/config/config_test.go @@ -3,7 +3,7 @@ package config_test import ( "path/filepath" - cfg "github.com/8thlight/vulcanizedb/pkg/config" + cfg "github.com/vulcanize/vulcanizedb/pkg/config" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/pkg/contract_summary/console_presenter.go b/pkg/contract_summary/console_presenter.go index b577a769..6197ed3d 100644 --- a/pkg/contract_summary/console_presenter.go +++ b/pkg/contract_summary/console_presenter.go @@ -3,7 +3,7 @@ package contract_summary import ( "fmt" - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/ethereum/go-ethereum/common" ) diff --git a/pkg/contract_summary/summary.go b/pkg/contract_summary/summary.go index 98e26ee5..fc15aea0 100644 --- a/pkg/contract_summary/summary.go +++ b/pkg/contract_summary/summary.go @@ -3,8 +3,8 @@ package contract_summary import ( "math/big" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/repositories" ) type ContractSummary struct { diff --git a/pkg/contract_summary/summary_test.go b/pkg/contract_summary/summary_test.go index 80d53c8a..7add215d 100644 --- a/pkg/contract_summary/summary_test.go +++ b/pkg/contract_summary/summary_test.go @@ -3,10 +3,10 @@ package contract_summary_test import ( "math/big" - "github.com/8thlight/vulcanizedb/pkg/contract_summary" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/fakes" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/contract_summary" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/fakes" + "github.com/vulcanize/vulcanizedb/pkg/repositories" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/pkg/fakes/blockchain.go b/pkg/fakes/blockchain.go index 2af3a024..9c8738bb 100644 --- a/pkg/fakes/blockchain.go +++ b/pkg/fakes/blockchain.go @@ -5,7 +5,7 @@ import ( "math/big" - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" ) type Blockchain struct { diff --git a/pkg/geth/abi_test.go b/pkg/geth/abi_test.go index 6a89faa9..1098f640 100644 --- a/pkg/geth/abi_test.go +++ b/pkg/geth/abi_test.go @@ -9,8 +9,8 @@ import ( "log" - cfg "github.com/8thlight/vulcanizedb/pkg/config" - "github.com/8thlight/vulcanizedb/pkg/geth" + cfg "github.com/vulcanize/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/pkg/geth" "github.com/ethereum/go-ethereum/accounts/abi" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" diff --git a/pkg/geth/block_rewards.go b/pkg/geth/block_rewards.go index f6c662df..9d9a439d 100644 --- a/pkg/geth/block_rewards.go +++ b/pkg/geth/block_rewards.go @@ -1,7 +1,7 @@ package geth import ( - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/params" ) diff --git a/pkg/geth/block_to_core_block.go b/pkg/geth/block_to_core_block.go index c82000dd..ee883bee 100644 --- a/pkg/geth/block_to_core_block.go +++ b/pkg/geth/block_to_core_block.go @@ -5,7 +5,7 @@ import ( "log" - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core/types" diff --git a/pkg/geth/block_to_core_block_test.go b/pkg/geth/block_to_core_block_test.go index 22c0276b..3cbe30e9 100644 --- a/pkg/geth/block_to_core_block_test.go +++ b/pkg/geth/block_to_core_block_test.go @@ -5,7 +5,7 @@ import ( "context" - "github.com/8thlight/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/geth" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core/types" diff --git a/pkg/geth/blockchain.go b/pkg/geth/blockchain.go index a7bba5f0..7c8aaa47 100644 --- a/pkg/geth/blockchain.go +++ b/pkg/geth/blockchain.go @@ -3,8 +3,8 @@ package geth import ( "math/big" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth/node" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth/node" "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core/types" diff --git a/pkg/geth/contract.go b/pkg/geth/contract.go index 59bae464..4900ee71 100644 --- a/pkg/geth/contract.go +++ b/pkg/geth/contract.go @@ -8,7 +8,7 @@ import ( "context" "math/big" - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/ethereum/go-ethereum" "github.com/ethereum/go-ethereum/common" ) diff --git a/pkg/geth/log_to_core_log.go b/pkg/geth/log_to_core_log.go index f40983f4..2652898b 100644 --- a/pkg/geth/log_to_core_log.go +++ b/pkg/geth/log_to_core_log.go @@ -1,7 +1,7 @@ package geth import ( - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core/types" ) diff --git a/pkg/geth/log_to_core_log_test.go b/pkg/geth/log_to_core_log_test.go index 44448ce3..daf91958 100644 --- a/pkg/geth/log_to_core_log_test.go +++ b/pkg/geth/log_to_core_log_test.go @@ -1,8 +1,8 @@ package geth_test import ( - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core/types" diff --git a/pkg/geth/node/node.go b/pkg/geth/node/node.go index 38fcfe6d..372cbfaa 100644 --- a/pkg/geth/node/node.go +++ b/pkg/geth/node/node.go @@ -3,7 +3,7 @@ package node import ( "context" - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/ethereum/go-ethereum/p2p" "github.com/ethereum/go-ethereum/rpc" ) diff --git a/pkg/geth/receipt_to_core_receipt.go b/pkg/geth/receipt_to_core_receipt.go index b9130f4b..a597fd2e 100644 --- a/pkg/geth/receipt_to_core_receipt.go +++ b/pkg/geth/receipt_to_core_receipt.go @@ -5,7 +5,7 @@ import ( "bytes" - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core/types" diff --git a/pkg/geth/receipt_to_core_receipt_test.go b/pkg/geth/receipt_to_core_receipt_test.go index b1f3c2c5..596e4c9d 100644 --- a/pkg/geth/receipt_to_core_receipt_test.go +++ b/pkg/geth/receipt_to_core_receipt_test.go @@ -3,8 +3,8 @@ package geth_test import ( "math/big" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common/hexutil" "github.com/ethereum/go-ethereum/core/types" diff --git a/pkg/geth/testing/helpers.go b/pkg/geth/testing/helpers.go index 224cbee7..9b737c00 100644 --- a/pkg/geth/testing/helpers.go +++ b/pkg/geth/testing/helpers.go @@ -3,9 +3,9 @@ package testing import ( "path/filepath" - "github.com/8thlight/vulcanizedb/pkg/config" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/geth" + "github.com/vulcanize/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/geth" ) func FindAttribute(contractAttributes core.ContractAttributes, attributeName string) *core.ContractAttribute { diff --git a/pkg/history/populate_blocks.go b/pkg/history/populate_blocks.go index f681cf50..deb5192a 100644 --- a/pkg/history/populate_blocks.go +++ b/pkg/history/populate_blocks.go @@ -3,8 +3,8 @@ package history import ( "log" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/repositories" ) func PopulateMissingBlocks(blockchain core.Blockchain, repository repositories.Repository, startingBlockNumber int64) int { diff --git a/pkg/history/populate_blocks_test.go b/pkg/history/populate_blocks_test.go index a24e4817..5466c62c 100644 --- a/pkg/history/populate_blocks_test.go +++ b/pkg/history/populate_blocks_test.go @@ -1,10 +1,10 @@ package history_test import ( - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/fakes" - "github.com/8thlight/vulcanizedb/pkg/history" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/fakes" + "github.com/vulcanize/vulcanizedb/pkg/history" + "github.com/vulcanize/vulcanizedb/pkg/repositories" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/pkg/history/validate_blocks.go b/pkg/history/validate_blocks.go index b542f099..e0f6ebcb 100644 --- a/pkg/history/validate_blocks.go +++ b/pkg/history/validate_blocks.go @@ -4,8 +4,8 @@ import ( "io" "text/template" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/repositories" ) const WindowTemplate = `Validating Blocks diff --git a/pkg/history/validate_blocks_test.go b/pkg/history/validate_blocks_test.go index 7d9b7e6f..6e8dee4a 100644 --- a/pkg/history/validate_blocks_test.go +++ b/pkg/history/validate_blocks_test.go @@ -6,10 +6,10 @@ import ( "io/ioutil" "log" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/fakes" - "github.com/8thlight/vulcanizedb/pkg/history" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/fakes" + "github.com/vulcanize/vulcanizedb/pkg/history" + "github.com/vulcanize/vulcanizedb/pkg/repositories" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" ) diff --git a/pkg/repositories/in_memory.go b/pkg/repositories/in_memory.go index 58cf4fe1..1148e1c4 100644 --- a/pkg/repositories/in_memory.go +++ b/pkg/repositories/in_memory.go @@ -3,7 +3,7 @@ package repositories import ( "fmt" - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/core" ) type InMemory struct { diff --git a/pkg/repositories/in_memory_test.go b/pkg/repositories/in_memory_test.go index 333a5d68..f3db3f29 100644 --- a/pkg/repositories/in_memory_test.go +++ b/pkg/repositories/in_memory_test.go @@ -1,9 +1,9 @@ package repositories_test import ( - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/repositories" - "github.com/8thlight/vulcanizedb/pkg/repositories/testing" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/repositories/testing" _ "github.com/lib/pq" . "github.com/onsi/ginkgo" ) diff --git a/pkg/repositories/postgres.go b/pkg/repositories/postgres.go index de8b8128..5166b003 100644 --- a/pkg/repositories/postgres.go +++ b/pkg/repositories/postgres.go @@ -9,8 +9,8 @@ import ( "fmt" - "github.com/8thlight/vulcanizedb/pkg/config" - "github.com/8thlight/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/jmoiron/sqlx" _ "github.com/lib/pq" ) diff --git a/pkg/repositories/postgres_test.go b/pkg/repositories/postgres_test.go index 7768d907..04f3121c 100644 --- a/pkg/repositories/postgres_test.go +++ b/pkg/repositories/postgres_test.go @@ -7,10 +7,10 @@ import ( "io/ioutil" "log" - "github.com/8thlight/vulcanizedb/pkg/config" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/repositories" - "github.com/8thlight/vulcanizedb/pkg/repositories/testing" + "github.com/vulcanize/vulcanizedb/pkg/config" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/repositories/testing" "github.com/jmoiron/sqlx" _ "github.com/lib/pq" . "github.com/onsi/ginkgo" diff --git a/pkg/repositories/repository.go b/pkg/repositories/repository.go index df9a8172..74f1f24e 100644 --- a/pkg/repositories/repository.go +++ b/pkg/repositories/repository.go @@ -1,6 +1,6 @@ package repositories -import "github.com/8thlight/vulcanizedb/pkg/core" +import "github.com/vulcanize/vulcanizedb/pkg/core" const ( blocksFromHeadBeforeFinal = 20 diff --git a/pkg/repositories/testing/helpers.go b/pkg/repositories/testing/helpers.go index 784217b1..6ebc35aa 100644 --- a/pkg/repositories/testing/helpers.go +++ b/pkg/repositories/testing/helpers.go @@ -4,8 +4,8 @@ import ( "sort" "strconv" - "github.com/8thlight/vulcanizedb/pkg/core" - "github.com/8thlight/vulcanizedb/pkg/repositories" + "github.com/vulcanize/vulcanizedb/pkg/core" + "github.com/vulcanize/vulcanizedb/pkg/repositories" . "github.com/onsi/ginkgo" . "github.com/onsi/gomega" )