Skip to content

Commit 0ade537

Browse files
author
gojuukaze
committed
upgrade package
1 parent 5d01446 commit 0ade537

File tree

3 files changed

+83
-33
lines changed

3 files changed

+83
-33
lines changed

crypto/ckd/child_key_derivation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
"github.com/bnb-chain/tss-lib/v2/common"
1818
"github.com/bnb-chain/tss-lib/v2/crypto"
1919
"github.com/btcsuite/btcd/btcec/v2"
20-
"github.com/btcsuite/btcutil/base58"
20+
"github.com/btcsuite/btcd/btcutil/base58"
2121
"golang.org/x/crypto/ripemd160"
2222
)
2323

go.mod

Lines changed: 27 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,38 @@
1-
module github.com/bnb-chain/tss-lib/v2
1+
module github.com/gojuukaze/tss-lib/v2
22

3-
go 1.16
3+
go 1.22
44

55
require (
66
github.com/agl/ed25519 v0.0.0-20200225211852-fd4d107ace12
7-
github.com/btcsuite/btcd v0.23.4
8-
github.com/btcsuite/btcd/btcec/v2 v2.3.2
9-
github.com/btcsuite/btcutil v1.0.2
7+
github.com/bnb-chain/tss-lib/v2 v2.0.2
8+
github.com/btcsuite/btcd v0.24.2
9+
github.com/btcsuite/btcd/btcec/v2 v2.3.4
10+
github.com/btcsuite/btcd/btcutil v1.1.5
1011
github.com/decred/dcrd/dcrec/edwards/v2 v2.0.3
1112
github.com/hashicorp/go-multierror v1.1.1
1213
github.com/ipfs/go-log v1.0.5
13-
github.com/otiai10/primes v0.0.0-20210501021515-f1b2be525a11
14+
github.com/otiai10/primes v0.4.0
1415
github.com/pkg/errors v0.9.1
15-
github.com/stretchr/testify v1.8.4
16-
golang.org/x/crypto v0.13.0
17-
google.golang.org/protobuf v1.31.0
16+
github.com/stretchr/testify v1.10.0
17+
golang.org/x/crypto v0.32.0
18+
google.golang.org/protobuf v1.36.3
19+
)
20+
21+
require (
22+
github.com/btcsuite/btcd/chaincfg/chainhash v1.1.0 // indirect
23+
github.com/btcsuite/btcutil v1.0.2 // indirect
24+
github.com/davecgh/go-spew v1.1.1 // indirect
25+
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.3.0 // indirect
26+
github.com/gogo/protobuf v1.3.2 // indirect
27+
github.com/hashicorp/errwrap v1.1.0 // indirect
28+
github.com/ipfs/go-log/v2 v2.5.1 // indirect
29+
github.com/mattn/go-isatty v0.0.20 // indirect
30+
github.com/opentracing/opentracing-go v1.2.0 // indirect
31+
github.com/pmezard/go-difflib v1.0.0 // indirect
32+
go.uber.org/multierr v1.11.0 // indirect
33+
go.uber.org/zap v1.27.0 // indirect
34+
golang.org/x/sys v0.29.0 // indirect
35+
gopkg.in/yaml.v3 v3.0.1 // indirect
1836
)
1937

2038
replace github.com/agl/ed25519 => github.com/binance-chain/edwards25519 v0.0.0-20200305024217-f36fc4b53d43

0 commit comments

Comments
 (0)