Skip to content

Commit

Permalink
Support lotus 1.29.0 (#260)
Browse files Browse the repository at this point in the history
* Support lotus 1.29.0

* update calib test config

* update ci config

* Update mock
  • Loading branch information
lucaslopezf authored Sep 4, 2024
1 parent 90d75bd commit bb268e4
Show file tree
Hide file tree
Showing 5 changed files with 111 additions and 47 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: zondax-runners
container:
image: golang:1.21
image: golang:1.22
options: --tty
steps:
- name: Checkout
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
submodules: true
- uses: actions/setup-go@v5
with:
go-version: '1.21' # The Go version to download (if necessary) and use.
go-version: '1.22' # The Go version to download (if necessary) and use.
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down
25 changes: 13 additions & 12 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
module github.com/zondax/rosetta-filecoin-proxy

go 1.21
go 1.22

toolchain go1.21.3
toolchain go1.23.0

require (
github.com/coinbase/rosetta-sdk-go v0.8.5
github.com/coinbase/rosetta-sdk-go/types v1.0.0
github.com/filecoin-project/go-address v1.1.0
github.com/filecoin-project/go-address v1.2.0
github.com/filecoin-project/go-bitfield v0.2.4
github.com/filecoin-project/go-f3 v0.2.0
github.com/filecoin-project/go-jsonrpc v0.6.0
github.com/filecoin-project/go-state-types v0.14.0
github.com/filecoin-project/lotus v1.28.2
github.com/filecoin-project/lotus v1.29.0
github.com/filecoin-project/specs-actors/v8 v8.0.1
github.com/google/uuid v1.6.0
github.com/ipfs/go-block-format v0.2.0
Expand All @@ -22,7 +22,7 @@ require (
github.com/multiformats/go-multihash v0.2.3
github.com/orcaman/concurrent-map v1.0.0
github.com/stretchr/testify v1.9.0
github.com/zondax/rosetta-filecoin-lib v1.2802.0
github.com/zondax/rosetta-filecoin-lib v1.2900.0
gotest.tools v2.2.0+incompatible
)

Expand All @@ -40,10 +40,10 @@ require (
github.com/filecoin-project/go-amt-ipld/v2 v2.1.1-0.20201006184820-924ee87a1349 // indirect
github.com/filecoin-project/go-amt-ipld/v3 v3.1.0 // indirect
github.com/filecoin-project/go-amt-ipld/v4 v4.3.0 // indirect
github.com/filecoin-project/go-crypto v0.0.1 // indirect
github.com/filecoin-project/go-crypto v0.1.0 // 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-hamt-ipld/v3 v3.4.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
Expand Down Expand Up @@ -83,11 +83,10 @@ require (
github.com/ipld/go-car v0.6.2 // indirect
github.com/ipld/go-codec-dagpb v1.6.0 // indirect
github.com/ipld/go-ipld-prime v0.21.0 // 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/klauspost/compress v1.17.9 // indirect
github.com/klauspost/cpuid/v2 v2.2.7 // indirect
github.com/klauspost/cpuid/v2 v2.2.8 // 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-pubsub v0.11.0 // indirect
Expand Down Expand Up @@ -125,21 +124,23 @@ require (
github.com/whyrusleeping/bencher v0.0.0-20190829221104-bb6607aa8bba // indirect
github.com/whyrusleeping/cbor-gen v0.1.2 // indirect
github.com/wk8/go-ordered-map/v2 v2.1.8 // indirect
gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b // indirect
gitlab.com/yawning/tuplehash v0.0.0-20230713102510-df83abbf9a02 // indirect
go.opencensus.io v0.24.0 // indirect
go.opentelemetry.io/otel v1.28.0 // indirect
go.opentelemetry.io/otel/metric v1.28.0 // indirect
go.opentelemetry.io/otel/trace v1.28.0 // indirect
go.uber.org/atomic v1.11.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/crypto v0.24.0 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
golang.org/x/mod v0.17.0 // indirect
golang.org/x/net v0.26.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.21.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
golang.org/x/xerrors v0.0.0-20240716161551-93cc26a95ae9 // indirect
google.golang.org/protobuf v1.34.2 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
lukechampine.com/blake3 v1.3.0 // indirect
Expand Down
Loading

0 comments on commit bb268e4

Please sign in to comment.