-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
filecoin-chain-archiver does not seem to work with lotus v1.20 nodes, so upgrade the lotus module, to ensure compatibility
- Loading branch information
Showing
3 changed files
with
461 additions
and
836 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ successfully. | |
|
||
## Building & Dependencies | ||
|
||
- Go 1.16 or higher | ||
- Go 1.19 or higher | ||
|
||
``` | ||
make all | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,188 @@ | ||
module github.com/filecoin-project/filecoin-chain-archiver | ||
|
||
go 1.16 | ||
go 1.19 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.4.1 | ||
github.com/filecoin-project/go-jsonrpc v0.1.5 | ||
github.com/filecoin-project/go-state-types v0.1.3 | ||
github.com/filecoin-project/lotus v1.15.1 | ||
github.com/BurntSushi/toml v1.1.0 | ||
github.com/filecoin-project/go-jsonrpc v0.2.1 | ||
github.com/filecoin-project/go-state-types v0.10.0 | ||
github.com/filecoin-project/lotus v1.20.3 | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/ipfs/go-log/v2 v2.5.1 | ||
github.com/klauspost/compress v1.13.6 | ||
github.com/klauspost/compress v1.15.10 | ||
github.com/minio/minio-go/v7 v7.0.24 | ||
github.com/prometheus/client_golang v1.11.0 | ||
github.com/prometheus/client_golang v1.13.0 | ||
github.com/slok/go-http-metrics v0.10.0 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/urfave/cli/v2 v2.4.0 | ||
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c | ||
golang.org/x/xerrors v0.0.0-20220411194840-2f41105eb62f | ||
github.com/stretchr/testify v1.8.1 | ||
github.com/urfave/cli/v2 v2.16.3 | ||
golang.org/x/sync v0.0.0-20220907140024-f12130a52804 | ||
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 | ||
) | ||
|
||
require ( | ||
github.com/DataDog/zstd v1.4.5 // indirect | ||
github.com/GeertJohan/go.incremental v1.0.0 // indirect | ||
github.com/GeertJohan/go.rice v1.0.3 // indirect | ||
github.com/StackExchange/wmi v1.2.1 // indirect | ||
github.com/akavel/rsrc v0.8.0 // indirect | ||
github.com/benbjohnson/clock v1.3.0 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/crackcomm/go-gitignore v0.0.0-20170627025303-887ab5e44cc3 // indirect | ||
github.com/daaku/go.zipexe v1.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.1.0 // indirect | ||
github.com/dgraph-io/badger/v2 v2.2007.3 // indirect | ||
github.com/dgraph-io/ristretto v0.1.0 // indirect | ||
github.com/dgryski/go-farm v0.0.0-20190423205320-6a90982ecee2 // indirect | ||
github.com/dustin/go-humanize v1.0.0 // indirect | ||
github.com/filecoin-project/go-address v1.1.0 // indirect | ||
github.com/filecoin-project/go-amt-ipld/v2 v2.1.0 // indirect | ||
github.com/filecoin-project/go-amt-ipld/v3 v3.1.0 // indirect | ||
github.com/filecoin-project/go-amt-ipld/v4 v4.0.0 // indirect | ||
github.com/filecoin-project/go-bitfield v0.2.4 // indirect | ||
github.com/filecoin-project/go-cbor-util v0.0.1 // indirect | ||
github.com/filecoin-project/go-crypto v0.0.1 // indirect | ||
github.com/filecoin-project/go-data-transfer v1.15.2 // indirect | ||
github.com/filecoin-project/go-fil-markets v1.25.2 // indirect | ||
github.com/filecoin-project/go-hamt-ipld v0.1.5 // indirect | ||
github.com/filecoin-project/go-hamt-ipld/v2 v2.0.0 // indirect | ||
github.com/filecoin-project/go-hamt-ipld/v3 v3.1.0 // indirect | ||
github.com/filecoin-project/go-padreader v0.0.1 // indirect | ||
github.com/filecoin-project/go-statestore v0.2.0 // indirect | ||
github.com/filecoin-project/specs-actors v0.9.15 // indirect | ||
github.com/filecoin-project/specs-actors/v2 v2.3.6 // indirect | ||
github.com/filecoin-project/specs-actors/v3 v3.1.2 // indirect | ||
github.com/filecoin-project/specs-actors/v4 v4.0.2 // indirect | ||
github.com/filecoin-project/specs-actors/v5 v5.0.6 // indirect | ||
github.com/filecoin-project/specs-actors/v6 v6.0.2 // indirect | ||
github.com/filecoin-project/specs-actors/v7 v7.0.1 // indirect | ||
github.com/gbrlsnchs/jwt/v3 v3.0.1 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-ole/go-ole v1.2.5 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/glog v1.0.0 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/mock v1.6.0 // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 // indirect | ||
github.com/hako/durafmt v0.0.0-20200710122514-c0fb7b4da026 // indirect | ||
github.com/hannahhoward/cbor-gen-for v0.0.0-20200817222906-ea96cece81f1 // indirect | ||
github.com/hannahhoward/go-pubsub v0.0.0-20200423002714-8d62886cc36e // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/icza/backscanner v0.0.0-20210726202459-ac2ffc679f94 // indirect | ||
github.com/ipfs/bbloom v0.0.4 // indirect | ||
github.com/ipfs/go-block-format v0.1.1 // indirect | ||
github.com/ipfs/go-blockservice v0.4.0 // indirect | ||
github.com/ipfs/go-cid v0.3.2 // indirect | ||
github.com/ipfs/go-datastore v0.6.0 // indirect | ||
github.com/ipfs/go-ds-badger2 v0.1.2 // indirect | ||
github.com/ipfs/go-ds-leveldb v0.5.0 // indirect | ||
github.com/ipfs/go-ds-measure v0.2.0 // indirect | ||
github.com/ipfs/go-fs-lock v0.0.7 // indirect | ||
github.com/ipfs/go-graphsync v0.13.2 // indirect | ||
github.com/ipfs/go-ipfs-blockstore v1.2.0 // indirect | ||
github.com/ipfs/go-ipfs-cmds v0.7.0 // indirect | ||
github.com/ipfs/go-ipfs-ds-help v1.1.0 // indirect | ||
github.com/ipfs/go-ipfs-exchange-interface v0.2.0 // indirect | ||
github.com/ipfs/go-ipfs-files v0.1.1 // indirect | ||
github.com/ipfs/go-ipfs-http-client v0.4.0 // indirect | ||
github.com/ipfs/go-ipfs-util v0.0.2 // indirect | ||
github.com/ipfs/go-ipld-cbor v0.0.6 // indirect | ||
github.com/ipfs/go-ipld-format v0.4.0 // indirect | ||
github.com/ipfs/go-ipld-legacy v0.1.1 // indirect | ||
github.com/ipfs/go-libipfs v0.4.1 // indirect | ||
github.com/ipfs/go-log v1.0.5 // indirect | ||
github.com/ipfs/go-merkledag v0.8.1 // indirect | ||
github.com/ipfs/go-metrics-interface v0.0.1 // indirect | ||
github.com/ipfs/go-path v0.3.0 // indirect | ||
github.com/ipfs/go-unixfs v0.4.0 // indirect | ||
github.com/ipfs/go-verifcid v0.0.2 // indirect | ||
github.com/ipfs/interface-go-ipfs-core v0.7.0 // indirect | ||
github.com/ipld/go-car v0.4.0 // indirect | ||
github.com/ipld/go-codec-dagpb v1.5.0 // indirect | ||
github.com/ipld/go-ipld-prime v0.20.0 // indirect | ||
github.com/ipld/go-ipld-selector-text-lite v0.0.1 // indirect | ||
github.com/ipsn/go-secp256k1 v0.0.0-20180726113642-9d62b9f0bc52 // indirect | ||
github.com/jbenet/goprocess v0.1.4 // indirect | ||
github.com/jessevdk/go-flags v1.4.0 // indirect | ||
github.com/jpillora/backoff v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/kelseyhightower/envconfig v1.4.0 // indirect | ||
github.com/klauspost/cpuid v1.3.1 // indirect | ||
github.com/klauspost/cpuid/v2 v2.1.1 // indirect | ||
github.com/libp2p/go-buffer-pool v0.1.0 // indirect | ||
github.com/libp2p/go-flow-metrics v0.1.0 // indirect | ||
github.com/libp2p/go-libp2p v0.23.4 // indirect | ||
github.com/libp2p/go-libp2p-core v0.20.1 // indirect | ||
github.com/libp2p/go-libp2p-pubsub v0.8.2 // indirect | ||
github.com/libp2p/go-msgio v0.2.0 // indirect | ||
github.com/libp2p/go-openssl v0.1.0 // indirect | ||
github.com/magefile/mage v1.9.0 // indirect | ||
github.com/mattn/go-isatty v0.0.16 // indirect | ||
github.com/mattn/go-pointer v0.0.1 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/miekg/dns v1.1.50 // indirect | ||
github.com/minio/blake2b-simd v0.0.0-20160723061019-3f5f724cb5b1 // indirect | ||
github.com/minio/md5-simd v1.1.0 // indirect | ||
github.com/minio/sha256-simd v1.0.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/mr-tron/base58 v1.2.0 // indirect | ||
github.com/multiformats/go-base32 v0.1.0 // indirect | ||
github.com/multiformats/go-base36 v0.1.0 // indirect | ||
github.com/multiformats/go-multiaddr v0.8.0 // indirect | ||
github.com/multiformats/go-multiaddr-dns v0.3.1 // indirect | ||
github.com/multiformats/go-multibase v0.1.1 // indirect | ||
github.com/multiformats/go-multicodec v0.8.0 // indirect | ||
github.com/multiformats/go-multihash v0.2.1 // indirect | ||
github.com/multiformats/go-varint v0.0.6 // indirect | ||
github.com/nkovacs/streamquote v1.0.0 // indirect | ||
github.com/opentracing/opentracing-go v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/polydawn/refmt v0.0.0-20201211092308-30ac6d18308e // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.37.0 // indirect | ||
github.com/prometheus/procfs v0.8.0 // indirect | ||
github.com/raulk/clock v1.1.0 // indirect | ||
github.com/rs/cors v1.7.0 // indirect | ||
github.com/rs/xid v1.2.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/shirou/gopsutil v2.18.12+incompatible // indirect | ||
github.com/sirupsen/logrus v1.8.1 // indirect | ||
github.com/spacemonkeygo/spacelog v0.0.0-20180420211403-2296661a0572 // indirect | ||
github.com/spaolacci/murmur3 v1.1.0 // indirect | ||
github.com/syndtr/goleveldb v1.0.1-0.20210819022825-2ae1ddf74ef7 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.1 // indirect | ||
github.com/whyrusleeping/bencher v0.0.0-20190829221104-bb6607aa8bba // indirect | ||
github.com/whyrusleeping/cbor-gen v0.0.0-20221021053955-c138aae13722 // indirect | ||
github.com/whyrusleeping/timecache v0.0.0-20160911033111-cfcb2f1abfee // indirect | ||
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
go.opentelemetry.io/otel v1.11.1 // indirect | ||
go.opentelemetry.io/otel/trace v1.11.1 // indirect | ||
go.uber.org/atomic v1.10.0 // indirect | ||
go.uber.org/multierr v1.8.0 // indirect | ||
go.uber.org/zap v1.23.0 // indirect | ||
go4.org v0.0.0-20200411211856-f5505b9728dd // indirect | ||
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 // indirect | ||
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect | ||
golang.org/x/net v0.0.0-20220920183852-bf014ff85ad5 // indirect | ||
golang.org/x/sys v0.0.0-20220919091848-fb04ddd9f9c8 // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/tools v0.1.12 // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
gopkg.in/ini.v1 v1.57.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
lukechampine.com/blake3 v1.1.7 // indirect | ||
) | ||
|
||
replace github.com/filecoin-project/filecoin-ffi => github.com/filecoin-project/ffi-stub v0.3.0 |
Oops, something went wrong.