Skip to content

Commit 3661491

Browse files
committed
use a fork of substrate rpc client
1 parent bb04c00 commit 3661491

File tree

4 files changed

+87
-594
lines changed

4 files changed

+87
-594
lines changed

clients/tfchain-client-go/go.mod

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
module github.com/threefoldtech/tfchain/clients/tfchain-client-go
22

3-
go 1.17
3+
go 1.21
4+
5+
toolchain go1.21.3
46

57
require (
68
github.com/cenkalti/backoff v2.2.1+incompatible
79
github.com/centrifuge/go-substrate-rpc-client/v4 v4.0.12
810
github.com/jbenet/go-base58 v0.0.0-20150317085156-6237cf65f3a6
911
github.com/pkg/errors v0.9.1
1012
github.com/rs/zerolog v1.26.0
11-
github.com/stretchr/testify v1.7.0
13+
github.com/stretchr/testify v1.7.2
1214
github.com/vedhavyas/go-subkey v1.0.3
13-
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
15+
golang.org/x/crypto v0.7.0
1416
)
1517

1618
require (
@@ -19,20 +21,24 @@ require (
1921
github.com/cosmos/go-bip39 v1.0.0 // indirect
2022
github.com/davecgh/go-spew v1.1.1 // indirect
2123
github.com/deckarep/golang-set v1.8.0 // indirect
22-
github.com/decred/base58 v1.0.3 // indirect
24+
github.com/decred/base58 v1.0.4 // indirect
2325
github.com/decred/dcrd/crypto/blake256 v1.0.0 // indirect
24-
github.com/ethereum/go-ethereum v1.10.17 // indirect
26+
github.com/ethereum/go-ethereum v1.10.20 // indirect
2527
github.com/go-ole/go-ole v1.2.6 // indirect
2628
github.com/go-stack/stack v1.8.1 // indirect
2729
github.com/gorilla/websocket v1.5.0 // indirect
2830
github.com/gtank/merlin v0.1.1 // indirect
2931
github.com/gtank/ristretto255 v0.1.2 // indirect
30-
github.com/mimoo/StrobeGo v0.0.0-20210601165009-122bf33a46e0 // indirect
32+
github.com/kr/pretty v0.3.1 // indirect
33+
github.com/mimoo/StrobeGo v0.0.0-20220103164710-9a04d6ca976b // indirect
3134
github.com/pierrec/xxHash v0.1.5 // indirect
3235
github.com/pmezard/go-difflib v1.0.0 // indirect
3336
github.com/rs/cors v1.8.2 // indirect
3437
github.com/tklauser/go-sysconf v0.3.9 // indirect
35-
golang.org/x/sys v0.0.0-20211124211545-fe61309f8881 // indirect
38+
github.com/vedhavyas/go-subkey/v2 v2.0.0 // indirect
39+
golang.org/x/sys v0.6.0 // indirect
3640
gopkg.in/natefinch/npipe.v2 v2.0.0-20160621034901-c1b8fa8bdcce // indirect
37-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
41+
gopkg.in/yaml.v3 v3.0.1 // indirect
3842
)
43+
44+
replace github.com/centrifuge/go-substrate-rpc-client/v4 => github.com/threefoldtech/go-substrate-rpc-client/v4 v4.0.0-20240916115924-b6e9bfa88b8a

0 commit comments

Comments
 (0)