pointing to unpublished versions
This commit is contained in:
parent
de813d73e6
commit
a23e02aa0c
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
[](https://goreportcard.com/report/github.com/vulcanize/eth-ipfs-state-validator)
|
[](https://goreportcard.com/report/github.com/vulcanize/eth-ipfs-state-validator)
|
||||||
|
|
||||||
> Uses [ipfs-ethdb](https://github.com/vulcanize/ipfs-ethdb/tree/master/postgres) to validate completeness of IPFS Ethereum state data
|
> Uses [ipfs-ethdb](https://github.com/cerc-io/ipfs-ethdb/tree/master/postgres) to validate completeness of IPFS Ethereum state data
|
||||||
|
|
||||||
## Background
|
## Background
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@ import (
|
|||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
|
|
||||||
validator "github.com/vulcanize/eth-ipfs-state-validator/v4/pkg"
|
validator "github.com/cerc-io/eth-ipfs-state-validator/v4/pkg"
|
||||||
)
|
)
|
||||||
|
|
||||||
// validateTrieCmd represents the validateTrie command
|
// validateTrieCmd represents the validateTrie command
|
||||||
|
8
go.mod
8
go.mod
@ -1,4 +1,4 @@
|
|||||||
module github.com/vulcanize/eth-ipfs-state-validator/v4
|
module github.com/cerc-io/eth-ipfs-state-validator/v4
|
||||||
|
|
||||||
go 1.18
|
go 1.18
|
||||||
|
|
||||||
@ -18,8 +18,8 @@ require (
|
|||||||
github.com/sirupsen/logrus v1.9.0
|
github.com/sirupsen/logrus v1.9.0
|
||||||
github.com/spf13/cobra v1.4.0
|
github.com/spf13/cobra v1.4.0
|
||||||
github.com/spf13/viper v1.11.0
|
github.com/spf13/viper v1.11.0
|
||||||
github.com/vulcanize/go-eth-state-node-iterator v1.1.6
|
github.com/cerc-io/go-eth-state-node-iterator v1.1.7
|
||||||
github.com/vulcanize/ipfs-ethdb/v4 v4.0.5-alpha
|
github.com/cerc-io/ipfs-ethdb/v4 v4.0.6-alpha
|
||||||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -236,4 +236,4 @@ require (
|
|||||||
lukechampine.com/blake3 v1.1.7 // indirect
|
lukechampine.com/blake3 v1.1.7 // indirect
|
||||||
)
|
)
|
||||||
|
|
||||||
replace github.com/ethereum/go-ethereum v1.10.23 => github.com/vulcanize/go-ethereum v1.10.23-statediff-4.2.0-alpha
|
replace github.com/ethereum/go-ethereum v1.10.23 => github.com/cerc-io/go-ethereum v1.10.23-statediff-4.2.0-alpha
|
||||||
|
2
main.go
2
main.go
@ -18,7 +18,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"github.com/sirupsen/logrus"
|
"github.com/sirupsen/logrus"
|
||||||
|
|
||||||
"github.com/vulcanize/eth-ipfs-state-validator/v4/cmd"
|
"github.com/cerc-io/eth-ipfs-state-validator/v4/cmd"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
|
@ -35,10 +35,10 @@ import (
|
|||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"golang.org/x/sync/errgroup"
|
"golang.org/x/sync/errgroup"
|
||||||
|
|
||||||
nodeiter "github.com/vulcanize/go-eth-state-node-iterator"
|
nodeiter "github.com/cerc-io/go-eth-state-node-iterator"
|
||||||
"github.com/vulcanize/go-eth-state-node-iterator/tracker"
|
"github.com/cerc-io/go-eth-state-node-iterator/tracker"
|
||||||
ipfsethdb "github.com/vulcanize/ipfs-ethdb/v4"
|
ipfsethdb "github.com/cerc-io/ipfs-ethdb/v4"
|
||||||
pgipfsethdb "github.com/vulcanize/ipfs-ethdb/v4/postgres"
|
pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v4/postgres"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Validator is used for validating Ethereum state and storage tries on PG-IPFS
|
// Validator is used for validating Ethereum state and storage tries on PG-IPFS
|
||||||
|
@ -32,8 +32,8 @@ import (
|
|||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
|
|
||||||
validator "github.com/vulcanize/eth-ipfs-state-validator/v4/pkg"
|
validator "github.com/cerc-io/eth-ipfs-state-validator/v4/pkg"
|
||||||
pgipfsethdb "github.com/vulcanize/ipfs-ethdb/v4/postgres"
|
pgipfsethdb "github.com/cerc-io/ipfs-ethdb/v4/postgres"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
Loading…
Reference in New Issue
Block a user