Skip to content

Commit 79db1cd

Browse files
committed
fix: getblocktime
1 parent 1a063df commit 79db1cd

File tree

3 files changed

+108
-56
lines changed

3 files changed

+108
-56
lines changed

go.mod

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
module github.com/Gearbox-protocol/third-eye
22

3-
go 1.20
3+
go 1.21
4+
5+
toolchain go1.23.2
46

57
require (
6-
github.com/Gearbox-protocol/sdk-go v0.0.0-20250123064548-2b5926faf8ae
8+
github.com/Gearbox-protocol/sdk-go v0.0.0-20250123160244-5b0694965de3
79
github.com/ethereum/go-ethereum v1.13.14
810
github.com/go-playground/validator/v10 v10.4.1
911
github.com/google/go-cmp v0.5.9
@@ -24,18 +26,17 @@ require (
2426
github.com/cespare/xxhash/v2 v2.2.0 // indirect
2527
github.com/consensys/bavard v0.1.13 // indirect
2628
github.com/consensys/gnark-crypto v0.12.1 // indirect
27-
github.com/crate-crypto/go-kzg-4844 v0.7.0 // indirect
29+
github.com/crate-crypto/go-kzg-4844 v1.0.0 // indirect
2830
github.com/davecgh/go-spew v1.1.1 // indirect
2931
github.com/deckarep/golang-set/v2 v2.1.0 // indirect
3032
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.0.1 // indirect
31-
github.com/ethereum/c-kzg-4844 v0.4.0 // indirect
33+
github.com/ethereum/c-kzg-4844 v1.0.0 // indirect
3234
github.com/fsnotify/fsnotify v1.6.0 // indirect
3335
github.com/gammazero/deque v0.2.1 // indirect
3436
github.com/go-ole/go-ole v1.3.0 // indirect
3537
github.com/go-playground/locales v0.13.0 // indirect
3638
github.com/go-playground/universal-translator v0.17.0 // indirect
37-
github.com/go-stack/stack v1.8.1 // indirect
38-
github.com/golang/protobuf v1.5.3 // indirect
39+
github.com/golang/protobuf v1.5.4 // indirect
3940
github.com/google/go-jsonnet v0.18.0 // indirect
4041
github.com/google/uuid v1.3.0 // indirect
4142
github.com/gorilla/websocket v1.4.2 // indirect
@@ -64,15 +65,15 @@ require (
6465
go.uber.org/atomic v1.6.0 // indirect
6566
go.uber.org/dig v1.10.0 // indirect
6667
go.uber.org/multierr v1.5.0 // indirect
67-
golang.org/x/crypto v0.17.0 // indirect
68+
golang.org/x/crypto v0.22.0 // indirect
6869
golang.org/x/exp v0.0.0-20231110203233-9a3e6036ecaa // indirect
69-
golang.org/x/mod v0.14.0 // indirect
70-
golang.org/x/sync v0.5.0 // indirect
71-
golang.org/x/sys v0.16.0 // indirect
72-
golang.org/x/term v0.15.0 // indirect
70+
golang.org/x/mod v0.17.0 // indirect
71+
golang.org/x/sync v0.7.0 // indirect
72+
golang.org/x/sys v0.19.0 // indirect
73+
golang.org/x/term v0.19.0 // indirect
7374
golang.org/x/text v0.14.0 // indirect
74-
golang.org/x/tools v0.15.0 // indirect
75-
google.golang.org/protobuf v1.28.1 // indirect
75+
golang.org/x/tools v0.20.0 // indirect
76+
google.golang.org/protobuf v1.33.0 // indirect
7677
gopkg.in/yaml.v2 v2.4.0 // indirect
7778
gopkg.in/yaml.v3 v3.0.1 // indirect
7879
gorm.io/driver/postgres v1.5.9 // indirect
@@ -82,6 +83,6 @@ require (
8283

8384
replace github.com/btcsuite/btcd => github.com/btcsuite/btcd v0.22.1
8485

85-
replace github.com/Gearbox-protocol/sdk-go v0.0.0-20241126153159-4d2505d49944 => ../sdk-go
86+
replace github.com/Gearbox-protocol/sdk-go v0.0.0-20250123064548-2b5926faf8ae => ../sdk-go
8687

87-
replace github.com/ethereum/go-ethereum v1.13.14 => github.com/OffchainLabs/go-ethereum v1.13.4-0.20240313010929-e5d8587e7227
88+
replace github.com/ethereum/go-ethereum v1.13.14 => github.com/OffchainLabs/go-ethereum v1.13.4-0.20250113203703-7ab015d994e8

0 commit comments

Comments
 (0)