diff --git a/common/hash_utils_test.go b/common/hash_utils_test.go index b89310e0..11b2cb6b 100644 --- a/common/hash_utils_test.go +++ b/common/hash_utils_test.go @@ -12,7 +12,7 @@ import ( "reflect" "testing" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) func TestRejectionSample(t *testing.T) { diff --git a/common/random_test.go b/common/random_test.go index ac898c8b..fd1b62e6 100644 --- a/common/random_test.go +++ b/common/random_test.go @@ -13,7 +13,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) const ( diff --git a/crypto/ckd/child_key_derivation.go b/crypto/ckd/child_key_derivation.go index 422cffed..6f7d010a 100644 --- a/crypto/ckd/child_key_derivation.go +++ b/crypto/ckd/child_key_derivation.go @@ -14,10 +14,10 @@ import ( "hash" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" "github.com/btcsuite/btcd/btcec/v2" "github.com/btcsuite/btcutil/base58" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" "golang.org/x/crypto/ripemd160" ) diff --git a/crypto/ckd/child_key_derivation_test.go b/crypto/ckd/child_key_derivation_test.go index 6511e4ef..1b9d44bd 100644 --- a/crypto/ckd/child_key_derivation_test.go +++ b/crypto/ckd/child_key_derivation_test.go @@ -9,7 +9,6 @@ package ckd_test import ( "testing" - . "github.com/bnb-chain/tss-lib/v2/crypto/ckd" "github.com/btcsuite/btcd/btcec/v2" ) diff --git a/crypto/commitments/commitment.go b/crypto/commitments/commitment.go index 6d7fa836..cca5bf60 100644 --- a/crypto/commitments/commitment.go +++ b/crypto/commitments/commitment.go @@ -13,7 +13,7 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) const ( diff --git a/crypto/commitments/commitment_test.go b/crypto/commitments/commitment_test.go index f400528c..c939dc9b 100644 --- a/crypto/commitments/commitment_test.go +++ b/crypto/commitments/commitment_test.go @@ -12,8 +12,6 @@ import ( "testing" "github.com/stretchr/testify/assert" - - . "github.com/bnb-chain/tss-lib/v2/crypto/commitments" ) func TestCreateVerify(t *testing.T) { diff --git a/crypto/dlnproof/proof.go b/crypto/dlnproof/proof.go index e41dbeff..1b8bcf07 100644 --- a/crypto/dlnproof/proof.go +++ b/crypto/dlnproof/proof.go @@ -16,8 +16,8 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - cmts "github.com/bnb-chain/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/common" + cmts "github.com/yossigi/tss-lib/v2/crypto/commitments" ) const Iterations = 128 diff --git a/crypto/ecpoint.go b/crypto/ecpoint.go index d0248398..b78a1952 100644 --- a/crypto/ecpoint.go +++ b/crypto/ecpoint.go @@ -18,7 +18,7 @@ import ( "github.com/decred/dcrd/dcrec/edwards/v2" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/tss" ) // ECPoint convenience helper diff --git a/crypto/ecpoint_test.go b/crypto/ecpoint_test.go index 5f745dbc..ae40a8f4 100644 --- a/crypto/ecpoint_test.go +++ b/crypto/ecpoint_test.go @@ -17,8 +17,7 @@ import ( "github.com/decred/dcrd/dcrec/edwards/v2" "github.com/stretchr/testify/assert" - . "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/tss" ) func TestFlattenECPoints(t *testing.T) { diff --git a/crypto/facproof/proof.go b/crypto/facproof/proof.go index f2c7ac56..baeaf3e4 100644 --- a/crypto/facproof/proof.go +++ b/crypto/facproof/proof.go @@ -13,7 +13,7 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) const ( diff --git a/crypto/facproof/proof_test.go b/crypto/facproof/proof_test.go index a6af7d61..6d9a5cdb 100644 --- a/crypto/facproof/proof_test.go +++ b/crypto/facproof/proof_test.go @@ -13,10 +13,9 @@ import ( "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - . "github.com/bnb-chain/tss-lib/v2/crypto/facproof" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/tss" ) // Using a modulus length of 2048 is recommended in the GG18 spec diff --git a/crypto/modproof/proof.go b/crypto/modproof/proof.go index 8ec8a270..c3986ebf 100644 --- a/crypto/modproof/proof.go +++ b/crypto/modproof/proof.go @@ -11,7 +11,7 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) const ( diff --git a/crypto/modproof/proof_test.go b/crypto/modproof/proof_test.go index 9d800df7..91032896 100644 --- a/crypto/modproof/proof_test.go +++ b/crypto/modproof/proof_test.go @@ -11,9 +11,8 @@ import ( "testing" "time" - . "github.com/bnb-chain/tss-lib/v2/crypto/modproof" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" "github.com/stretchr/testify/assert" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" ) var Session = []byte("session") diff --git a/crypto/mta/proofs.go b/crypto/mta/proofs.go index bf1809d2..aa07e43a 100644 --- a/crypto/mta/proofs.go +++ b/crypto/mta/proofs.go @@ -13,10 +13,10 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/crypto/mta/range_proof.go b/crypto/mta/range_proof.go index dfd43257..fa48293e 100644 --- a/crypto/mta/range_proof.go +++ b/crypto/mta/range_proof.go @@ -13,8 +13,8 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto/paillier" ) const ( diff --git a/crypto/mta/range_proof_test.go b/crypto/mta/range_proof_test.go index 151126fe..e46cb318 100644 --- a/crypto/mta/range_proof_test.go +++ b/crypto/mta/range_proof_test.go @@ -16,10 +16,10 @@ import ( "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/tss" ) // Using a modulus length of 2048 is recommended in the GG18 spec diff --git a/crypto/mta/share_protocol.go b/crypto/mta/share_protocol.go index 035f8d92..4ff40cb5 100644 --- a/crypto/mta/share_protocol.go +++ b/crypto/mta/share_protocol.go @@ -12,9 +12,9 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/paillier" ) func AliceInit( diff --git a/crypto/mta/share_protocol_test.go b/crypto/mta/share_protocol_test.go index fa4f80b8..ec8d983b 100644 --- a/crypto/mta/share_protocol_test.go +++ b/crypto/mta/share_protocol_test.go @@ -15,11 +15,11 @@ import ( "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) // Using a modulus length of 2048 is recommended in the GG18 spec diff --git a/crypto/paillier/paillier.go b/crypto/paillier/paillier.go index 846d0392..0d595318 100644 --- a/crypto/paillier/paillier.go +++ b/crypto/paillier/paillier.go @@ -27,8 +27,8 @@ import ( "github.com/otiai10/primes" - "github.com/bnb-chain/tss-lib/v2/common" - crypto2 "github.com/bnb-chain/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/common" + crypto2 "github.com/yossigi/tss-lib/v2/crypto" ) const ( diff --git a/crypto/paillier/paillier_test.go b/crypto/paillier/paillier_test.go index 97c4d05d..2673f3ab 100644 --- a/crypto/paillier/paillier_test.go +++ b/crypto/paillier/paillier_test.go @@ -15,10 +15,9 @@ import ( "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - . "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/tss" ) // Using a modulus length of 2048 is recommended in the GG18 spec diff --git a/crypto/schnorr/schnorr_proof.go b/crypto/schnorr/schnorr_proof.go index 8c1bedcd..f00df952 100644 --- a/crypto/schnorr/schnorr_proof.go +++ b/crypto/schnorr/schnorr_proof.go @@ -11,8 +11,8 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" ) type ( diff --git a/crypto/schnorr/schnorr_proof_test.go b/crypto/schnorr/schnorr_proof_test.go index 89a7e964..95feec45 100644 --- a/crypto/schnorr/schnorr_proof_test.go +++ b/crypto/schnorr/schnorr_proof_test.go @@ -12,10 +12,9 @@ import ( "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - . "github.com/bnb-chain/tss-lib/v2/crypto/schnorr" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/tss" ) var Session = []byte("session") diff --git a/crypto/utils.go b/crypto/utils.go index 2277a395..e3250c00 100644 --- a/crypto/utils.go +++ b/crypto/utils.go @@ -11,7 +11,7 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) func GenerateNTildei(rand io.Reader, safePrimes [2]*big.Int) (NTildei, h1i, h2i *big.Int, err error) { diff --git a/crypto/vss/feldman_vss.go b/crypto/vss/feldman_vss.go index 347af09c..8972551f 100644 --- a/crypto/vss/feldman_vss.go +++ b/crypto/vss/feldman_vss.go @@ -17,8 +17,8 @@ import ( "io" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" ) type ( diff --git a/crypto/vss/feldman_vss_test.go b/crypto/vss/feldman_vss_test.go index 7e12fff0..46d94b78 100644 --- a/crypto/vss/feldman_vss_test.go +++ b/crypto/vss/feldman_vss_test.go @@ -13,9 +13,8 @@ import ( "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - . "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/tss" ) func TestCheckIndexesDup(t *testing.T) { diff --git a/ecdsa/ethereum/utils.go b/ecdsa/ethereum/utils.go index 26b21143..6684afe8 100644 --- a/ecdsa/ethereum/utils.go +++ b/ecdsa/ethereum/utils.go @@ -11,10 +11,10 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/crypto" "github.com/ethereum/go-ethereum/common" ethcommon "github.com/ethereum/go-ethereum/common" ethcrypto "github.com/ethereum/go-ethereum/crypto" + "github.com/yossigi/tss-lib/v2/crypto" ) var ( diff --git a/ecdsa/keygen/dln_verifier.go b/ecdsa/keygen/dln_verifier.go index c6ec68d7..18ea581f 100644 --- a/ecdsa/keygen/dln_verifier.go +++ b/ecdsa/keygen/dln_verifier.go @@ -10,7 +10,7 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/crypto/dlnproof" + "github.com/yossigi/tss-lib/v2/crypto/dlnproof" ) type DlnProofVerifier struct { diff --git a/ecdsa/keygen/dln_verifier_test.go b/ecdsa/keygen/dln_verifier_test.go index 5b9f65aa..02fb2583 100644 --- a/ecdsa/keygen/dln_verifier_test.go +++ b/ecdsa/keygen/dln_verifier_test.go @@ -12,7 +12,7 @@ import ( "runtime" "testing" - "github.com/bnb-chain/tss-lib/v2/crypto/dlnproof" + "github.com/yossigi/tss-lib/v2/crypto/dlnproof" ) func BenchmarkDlnProof_Verify(b *testing.B) { diff --git a/ecdsa/keygen/local_party.go b/ecdsa/keygen/local_party.go index 93d39f02..e3362e81 100644 --- a/ecdsa/keygen/local_party.go +++ b/ecdsa/keygen/local_party.go @@ -11,10 +11,10 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) // Implements Party diff --git a/ecdsa/keygen/local_party_test.go b/ecdsa/keygen/local_party_test.go index ac9d4e2a..236ef9db 100644 --- a/ecdsa/keygen/local_party_test.go +++ b/ecdsa/keygen/local_party_test.go @@ -20,13 +20,13 @@ import ( "github.com/ipfs/go-log" "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/dlnproof" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/dlnproof" + "github.com/yossigi/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/ecdsa/keygen/messages.go b/ecdsa/keygen/messages.go index b4d6062c..e3662afb 100644 --- a/ecdsa/keygen/messages.go +++ b/ecdsa/keygen/messages.go @@ -7,16 +7,17 @@ package keygen import ( - "github.com/bnb-chain/tss-lib/v2/crypto/facproof" - "github.com/bnb-chain/tss-lib/v2/crypto/modproof" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/dlnproof" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto/facproof" + "github.com/yossigi/tss-lib/v2/crypto/modproof" + + "github.com/yossigi/tss-lib/v2/common" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/dlnproof" + "github.com/yossigi/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) // These messages were generated from Protocol Buffers definitions into ecdsa-keygen.pb.go diff --git a/ecdsa/keygen/prepare.go b/ecdsa/keygen/prepare.go index 0f5e6603..3a82ba31 100644 --- a/ecdsa/keygen/prepare.go +++ b/ecdsa/keygen/prepare.go @@ -15,8 +15,8 @@ import ( "runtime" "time" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto/paillier" ) const ( diff --git a/ecdsa/keygen/round_1.go b/ecdsa/keygen/round_1.go index f7c4f6cb..674fca21 100644 --- a/ecdsa/keygen/round_1.go +++ b/ecdsa/keygen/round_1.go @@ -11,12 +11,12 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmts "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/dlnproof" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmts "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/dlnproof" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) var zero = big.NewInt(0) diff --git a/ecdsa/keygen/round_2.go b/ecdsa/keygen/round_2.go index b1d58e35..0b0d239a 100644 --- a/ecdsa/keygen/round_2.go +++ b/ecdsa/keygen/round_2.go @@ -12,11 +12,11 @@ import ( "math/big" "sync" - "github.com/bnb-chain/tss-lib/v2/crypto/facproof" - "github.com/bnb-chain/tss-lib/v2/crypto/modproof" + "github.com/yossigi/tss-lib/v2/crypto/facproof" + "github.com/yossigi/tss-lib/v2/crypto/modproof" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/ecdsa/keygen/round_3.go b/ecdsa/keygen/round_3.go index f6b14155..2adcd661 100644 --- a/ecdsa/keygen/round_3.go +++ b/ecdsa/keygen/round_3.go @@ -13,11 +13,11 @@ import ( "github.com/hashicorp/go-multierror" errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round3) Start() *tss.Error { diff --git a/ecdsa/keygen/round_4.go b/ecdsa/keygen/round_4.go index 17bfd949..975edd4c 100644 --- a/ecdsa/keygen/round_4.go +++ b/ecdsa/keygen/round_4.go @@ -9,9 +9,9 @@ package keygen import ( "errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round4) Start() *tss.Error { diff --git a/ecdsa/keygen/rounds.go b/ecdsa/keygen/rounds.go index 2d3e76fc..a3c57fd8 100644 --- a/ecdsa/keygen/rounds.go +++ b/ecdsa/keygen/rounds.go @@ -9,8 +9,8 @@ package keygen import ( "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/ecdsa/keygen/save_data.go b/ecdsa/keygen/save_data.go index ec43d436..c12a247b 100644 --- a/ecdsa/keygen/save_data.go +++ b/ecdsa/keygen/save_data.go @@ -11,9 +11,9 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/tss" ) type ( diff --git a/ecdsa/keygen/test_utils.go b/ecdsa/keygen/test_utils.go index 3f5d9691..e5421ee8 100644 --- a/ecdsa/keygen/test_utils.go +++ b/ecdsa/keygen/test_utils.go @@ -18,8 +18,8 @@ import ( "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/ecdsa/party/api.go b/ecdsa/party/api.go index 52924853..70d6902c 100644 --- a/ecdsa/party/api.go +++ b/ecdsa/party/api.go @@ -7,9 +7,9 @@ import ( "sync" "time" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) type Parameters struct { diff --git a/ecdsa/party/fullparty_test.go b/ecdsa/party/fullparty_test.go index 0ad5faad..0039deb3 100644 --- a/ecdsa/party/fullparty_test.go +++ b/ecdsa/party/fullparty_test.go @@ -13,12 +13,12 @@ import ( "testing" "time" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" "github.com/ethereum/go-ethereum/crypto" "github.com/stretchr/testify/assert" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) func getProjectRootDir() string { diff --git a/ecdsa/party/implementation.go b/ecdsa/party/implementation.go index 10d49bc3..90ebb776 100644 --- a/ecdsa/party/implementation.go +++ b/ecdsa/party/implementation.go @@ -13,10 +13,10 @@ import ( "sync" "time" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/ecdsa/signing" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/ecdsa/signing" + "github.com/yossigi/tss-lib/v2/tss" ) type KeygenHandler struct { diff --git a/ecdsa/party/util.go b/ecdsa/party/util.go index 18370fff..7f4b96a6 100644 --- a/ecdsa/party/util.go +++ b/ecdsa/party/util.go @@ -1,9 +1,9 @@ package party import ( - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/ecdsa/signing" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/ecdsa/signing" + "github.com/yossigi/tss-lib/v2/tss" ) type protocolType int diff --git a/ecdsa/resharing/local_party.go b/ecdsa/resharing/local_party.go index 85faf4c5..b1b96143 100644 --- a/ecdsa/resharing/local_party.go +++ b/ecdsa/resharing/local_party.go @@ -10,12 +10,12 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) // Implements Party diff --git a/ecdsa/resharing/local_party_test.go b/ecdsa/resharing/local_party_test.go index e205c5e1..f1d43e33 100644 --- a/ecdsa/resharing/local_party_test.go +++ b/ecdsa/resharing/local_party_test.go @@ -17,13 +17,12 @@ import ( "github.com/ipfs/go-log" "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - . "github.com/bnb-chain/tss-lib/v2/ecdsa/resharing" - "github.com/bnb-chain/tss-lib/v2/ecdsa/signing" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/ecdsa/signing" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/ecdsa/resharing/messages.go b/ecdsa/resharing/messages.go index e9f3b3cb..a4df1682 100644 --- a/ecdsa/resharing/messages.go +++ b/ecdsa/resharing/messages.go @@ -10,15 +10,15 @@ import ( "crypto/elliptic" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/dlnproof" - "github.com/bnb-chain/tss-lib/v2/crypto/facproof" - "github.com/bnb-chain/tss-lib/v2/crypto/modproof" - "github.com/bnb-chain/tss-lib/v2/crypto/paillier" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/dlnproof" + "github.com/yossigi/tss-lib/v2/crypto/facproof" + "github.com/yossigi/tss-lib/v2/crypto/modproof" + "github.com/yossigi/tss-lib/v2/crypto/paillier" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) // These messages were generated from Protocol Buffers definitions into ecdsa-resharing.pb.go diff --git a/ecdsa/resharing/round_1_old_step_1.go b/ecdsa/resharing/round_1_old_step_1.go index 43494fcf..5703a3ea 100644 --- a/ecdsa/resharing/round_1_old_step_1.go +++ b/ecdsa/resharing/round_1_old_step_1.go @@ -11,12 +11,12 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/ecdsa/signing" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/ecdsa/signing" + "github.com/yossigi/tss-lib/v2/tss" ) // round 1 represents round 1 of the keygen part of the GG18 ECDSA TSS spec (Gennaro, Goldfeder; 2018) diff --git a/ecdsa/resharing/round_2_new_step_1.go b/ecdsa/resharing/round_2_new_step_1.go index 45b3a302..f53690a3 100644 --- a/ecdsa/resharing/round_2_new_step_1.go +++ b/ecdsa/resharing/round_2_new_step_1.go @@ -11,11 +11,11 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/crypto/modproof" + "github.com/yossigi/tss-lib/v2/crypto/modproof" - "github.com/bnb-chain/tss-lib/v2/crypto/dlnproof" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto/dlnproof" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) var zero = big.NewInt(0) diff --git a/ecdsa/resharing/round_3_old_step_2.go b/ecdsa/resharing/round_3_old_step_2.go index f222290e..89b794e9 100644 --- a/ecdsa/resharing/round_3_old_step_2.go +++ b/ecdsa/resharing/round_3_old_step_2.go @@ -9,7 +9,7 @@ package resharing import ( "errors" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round3) Start() *tss.Error { diff --git a/ecdsa/resharing/round_4_new_step_2.go b/ecdsa/resharing/round_4_new_step_2.go index 5453bc62..67127bd4 100644 --- a/ecdsa/resharing/round_4_new_step_2.go +++ b/ecdsa/resharing/round_4_new_step_2.go @@ -12,16 +12,16 @@ import ( "math/big" "sync" - "github.com/bnb-chain/tss-lib/v2/crypto/facproof" + "github.com/yossigi/tss-lib/v2/crypto/facproof" errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round4) Start() *tss.Error { diff --git a/ecdsa/resharing/round_5_new_step_3.go b/ecdsa/resharing/round_5_new_step_3.go index 9f46ed20..1fbe28a0 100644 --- a/ecdsa/resharing/round_5_new_step_3.go +++ b/ecdsa/resharing/round_5_new_step_3.go @@ -10,8 +10,8 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round5) Start() *tss.Error { diff --git a/ecdsa/resharing/rounds.go b/ecdsa/resharing/rounds.go index a76b1998..86e04259 100644 --- a/ecdsa/resharing/rounds.go +++ b/ecdsa/resharing/rounds.go @@ -10,10 +10,10 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/ecdsa/signing/finalize.go b/ecdsa/signing/finalize.go index 91f65c44..490be3ba 100644 --- a/ecdsa/signing/finalize.go +++ b/ecdsa/signing/finalize.go @@ -12,8 +12,8 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *finalization) Start() *tss.Error { diff --git a/ecdsa/signing/key_derivation_util.go b/ecdsa/signing/key_derivation_util.go index 668d9d4f..6663ce6e 100644 --- a/ecdsa/signing/key_derivation_util.go +++ b/ecdsa/signing/key_derivation_util.go @@ -7,10 +7,10 @@ import ( "crypto/elliptic" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/ckd" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/ckd" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" "github.com/btcsuite/btcd/chaincfg" ) diff --git a/ecdsa/signing/local_party.go b/ecdsa/signing/local_party.go index 5d343055..419c64c4 100644 --- a/ecdsa/signing/local_party.go +++ b/ecdsa/signing/local_party.go @@ -11,12 +11,12 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/mta" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/mta" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) // Implements Party diff --git a/ecdsa/signing/local_party_test.go b/ecdsa/signing/local_party_test.go index a43187ca..38a5fa00 100644 --- a/ecdsa/signing/local_party_test.go +++ b/ecdsa/signing/local_party_test.go @@ -18,16 +18,16 @@ import ( "sync/atomic" "testing" - "github.com/bnb-chain/tss-lib/v2/common" - utils "github.com/bnb-chain/tss-lib/v2/ecdsa/ethereum" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" "github.com/btcsuite/btcd/btcec/v2" ethcommon "github.com/ethereum/go-ethereum/common" ethcrypto "github.com/ethereum/go-ethereum/crypto" "github.com/ipfs/go-log" "github.com/stretchr/testify/assert" + "github.com/yossigi/tss-lib/v2/common" + utils "github.com/yossigi/tss-lib/v2/ecdsa/ethereum" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/ecdsa/signing/messages.go b/ecdsa/signing/messages.go index 6d5029f7..b0a04588 100644 --- a/ecdsa/signing/messages.go +++ b/ecdsa/signing/messages.go @@ -10,12 +10,12 @@ import ( "crypto/elliptic" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/mta" - "github.com/bnb-chain/tss-lib/v2/crypto/schnorr" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/mta" + "github.com/yossigi/tss-lib/v2/crypto/schnorr" + "github.com/yossigi/tss-lib/v2/tss" ) // These messages were generated from Protocol Buffers definitions into ecdsa-signing.pb.go diff --git a/ecdsa/signing/prepare.go b/ecdsa/signing/prepare.go index ae6d186c..c3a09cd3 100644 --- a/ecdsa/signing/prepare.go +++ b/ecdsa/signing/prepare.go @@ -11,8 +11,8 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" ) // PrepareForSigning(), GG18Spec (11) Fig. 14 diff --git a/ecdsa/signing/round_1.go b/ecdsa/signing/round_1.go index b57fe0a6..d0994462 100644 --- a/ecdsa/signing/round_1.go +++ b/ecdsa/signing/round_1.go @@ -11,12 +11,12 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/mta" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/mta" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) var zero = big.NewInt(0) diff --git a/ecdsa/signing/round_2.go b/ecdsa/signing/round_2.go index c5c21037..a74e73b4 100644 --- a/ecdsa/signing/round_2.go +++ b/ecdsa/signing/round_2.go @@ -13,8 +13,8 @@ import ( errorspkg "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/crypto/mta" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto/mta" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round2) Start() *tss.Error { diff --git a/ecdsa/signing/round_3.go b/ecdsa/signing/round_3.go index 6dc1b3a0..9cbdd5c1 100644 --- a/ecdsa/signing/round_3.go +++ b/ecdsa/signing/round_3.go @@ -13,9 +13,9 @@ import ( errorspkg "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto/mta" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto/mta" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round3) Start() *tss.Error { diff --git a/ecdsa/signing/round_4.go b/ecdsa/signing/round_4.go index 9385a4d3..0639ea2f 100644 --- a/ecdsa/signing/round_4.go +++ b/ecdsa/signing/round_4.go @@ -12,9 +12,9 @@ import ( errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto/schnorr" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto/schnorr" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round4) Start() *tss.Error { diff --git a/ecdsa/signing/round_5.go b/ecdsa/signing/round_5.go index 5af63fe7..9c8701d8 100644 --- a/ecdsa/signing/round_5.go +++ b/ecdsa/signing/round_5.go @@ -12,10 +12,10 @@ import ( errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round5) Start() *tss.Error { diff --git a/ecdsa/signing/round_6.go b/ecdsa/signing/round_6.go index 109bf007..54c3759e 100644 --- a/ecdsa/signing/round_6.go +++ b/ecdsa/signing/round_6.go @@ -12,8 +12,8 @@ import ( errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/crypto/schnorr" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto/schnorr" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round6) Start() *tss.Error { diff --git a/ecdsa/signing/round_7.go b/ecdsa/signing/round_7.go index 1a8b20a0..27e0b817 100644 --- a/ecdsa/signing/round_7.go +++ b/ecdsa/signing/round_7.go @@ -12,10 +12,10 @@ import ( errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round7) Start() *tss.Error { diff --git a/ecdsa/signing/round_8.go b/ecdsa/signing/round_8.go index d20c44d4..87dcb8f5 100644 --- a/ecdsa/signing/round_8.go +++ b/ecdsa/signing/round_8.go @@ -9,7 +9,7 @@ package signing import ( "errors" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round8) Start() *tss.Error { diff --git a/ecdsa/signing/round_9.go b/ecdsa/signing/round_9.go index b5941d8a..5d16f3c6 100644 --- a/ecdsa/signing/round_9.go +++ b/ecdsa/signing/round_9.go @@ -9,8 +9,8 @@ package signing import ( "errors" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round9) Start() *tss.Error { diff --git a/ecdsa/signing/rounds.go b/ecdsa/signing/rounds.go index 86d01407..20a7e68f 100644 --- a/ecdsa/signing/rounds.go +++ b/ecdsa/signing/rounds.go @@ -10,10 +10,10 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/ecdsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/ecdsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/eddsa/keygen/local_party.go b/eddsa/keygen/local_party.go index 11601e0b..72ee874c 100644 --- a/eddsa/keygen/local_party.go +++ b/eddsa/keygen/local_party.go @@ -11,10 +11,10 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) // Implements Party diff --git a/eddsa/keygen/local_party_test.go b/eddsa/keygen/local_party_test.go index 119371f6..c3ddbef6 100644 --- a/eddsa/keygen/local_party_test.go +++ b/eddsa/keygen/local_party_test.go @@ -19,11 +19,11 @@ import ( "github.com/ipfs/go-log" "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/eddsa/keygen/messages.go b/eddsa/keygen/messages.go index d6667073..760818b8 100644 --- a/eddsa/keygen/messages.go +++ b/eddsa/keygen/messages.go @@ -10,12 +10,12 @@ import ( "crypto/elliptic" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/schnorr" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/schnorr" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) // These messages were generated from Protocol Buffers definitions into eddsa-keygen.pb.go diff --git a/eddsa/keygen/round_1.go b/eddsa/keygen/round_1.go index 39894848..93d3f14b 100644 --- a/eddsa/keygen/round_1.go +++ b/eddsa/keygen/round_1.go @@ -10,11 +10,11 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmts "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmts "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) var zero = big.NewInt(0) diff --git a/eddsa/keygen/round_2.go b/eddsa/keygen/round_2.go index 072721e8..bb3e0551 100644 --- a/eddsa/keygen/round_2.go +++ b/eddsa/keygen/round_2.go @@ -12,8 +12,8 @@ import ( errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/crypto/schnorr" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto/schnorr" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round2) Start() *tss.Error { diff --git a/eddsa/keygen/round_3.go b/eddsa/keygen/round_3.go index 476ab3d3..3b01173a 100644 --- a/eddsa/keygen/round_3.go +++ b/eddsa/keygen/round_3.go @@ -13,11 +13,11 @@ import ( "github.com/hashicorp/go-multierror" errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round3) Start() *tss.Error { diff --git a/eddsa/keygen/rounds.go b/eddsa/keygen/rounds.go index cc880508..4db8dc9b 100644 --- a/eddsa/keygen/rounds.go +++ b/eddsa/keygen/rounds.go @@ -9,8 +9,8 @@ package keygen import ( "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/eddsa/keygen/save_data.go b/eddsa/keygen/save_data.go index a7be639f..e8855415 100644 --- a/eddsa/keygen/save_data.go +++ b/eddsa/keygen/save_data.go @@ -10,8 +10,8 @@ import ( "encoding/hex" "math/big" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/tss" ) type ( diff --git a/eddsa/keygen/test_utils.go b/eddsa/keygen/test_utils.go index c6d8e985..55496160 100644 --- a/eddsa/keygen/test_utils.go +++ b/eddsa/keygen/test_utils.go @@ -17,8 +17,8 @@ import ( "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/eddsa/resharing/local_party.go b/eddsa/resharing/local_party.go index 5e7aebf9..cc9d1ef0 100644 --- a/eddsa/resharing/local_party.go +++ b/eddsa/resharing/local_party.go @@ -10,12 +10,12 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/eddsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/eddsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) // Implements Party diff --git a/eddsa/resharing/local_party_test.go b/eddsa/resharing/local_party_test.go index 72411c0c..184c0319 100644 --- a/eddsa/resharing/local_party_test.go +++ b/eddsa/resharing/local_party_test.go @@ -15,13 +15,12 @@ import ( "github.com/ipfs/go-log" "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/eddsa/keygen" - . "github.com/bnb-chain/tss-lib/v2/eddsa/resharing" - "github.com/bnb-chain/tss-lib/v2/eddsa/signing" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/eddsa/keygen" + "github.com/yossigi/tss-lib/v2/eddsa/signing" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/eddsa/resharing/messages.go b/eddsa/resharing/messages.go index abf45bb4..6fc2387c 100644 --- a/eddsa/resharing/messages.go +++ b/eddsa/resharing/messages.go @@ -10,11 +10,11 @@ import ( "crypto/elliptic" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) // These messages were generated from Protocol Buffers definitions into eddsa-resharing.pb.go diff --git a/eddsa/resharing/round_1_old_step_1.go b/eddsa/resharing/round_1_old_step_1.go index a594ad7d..eed0386d 100644 --- a/eddsa/resharing/round_1_old_step_1.go +++ b/eddsa/resharing/round_1_old_step_1.go @@ -10,12 +10,12 @@ import ( "errors" "fmt" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/eddsa/keygen" - "github.com/bnb-chain/tss-lib/v2/eddsa/signing" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/eddsa/keygen" + "github.com/yossigi/tss-lib/v2/eddsa/signing" + "github.com/yossigi/tss-lib/v2/tss" ) // round 1 represents round 1 of the keygen part of the EDDSA TSS spec diff --git a/eddsa/resharing/round_2_new_step_1.go b/eddsa/resharing/round_2_new_step_1.go index 703d154a..ceb150b7 100644 --- a/eddsa/resharing/round_2_new_step_1.go +++ b/eddsa/resharing/round_2_new_step_1.go @@ -9,7 +9,7 @@ package resharing import ( "errors" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round2) Start() *tss.Error { diff --git a/eddsa/resharing/round_3_old_step_2.go b/eddsa/resharing/round_3_old_step_2.go index db2e1112..3234cad4 100644 --- a/eddsa/resharing/round_3_old_step_2.go +++ b/eddsa/resharing/round_3_old_step_2.go @@ -9,7 +9,7 @@ package resharing import ( "errors" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round3) Start() *tss.Error { diff --git a/eddsa/resharing/round_4_new_step_2.go b/eddsa/resharing/round_4_new_step_2.go index 9911142f..166fd892 100644 --- a/eddsa/resharing/round_4_new_step_2.go +++ b/eddsa/resharing/round_4_new_step_2.go @@ -11,11 +11,11 @@ import ( "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/vss" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/vss" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round4) Start() *tss.Error { diff --git a/eddsa/resharing/round_5_new_step_3.go b/eddsa/resharing/round_5_new_step_3.go index 3abc2f28..2c75f904 100644 --- a/eddsa/resharing/round_5_new_step_3.go +++ b/eddsa/resharing/round_5_new_step_3.go @@ -9,7 +9,7 @@ package resharing import ( "errors" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round5) Start() *tss.Error { diff --git a/eddsa/resharing/rounds.go b/eddsa/resharing/rounds.go index 07d1f90e..e953f485 100644 --- a/eddsa/resharing/rounds.go +++ b/eddsa/resharing/rounds.go @@ -7,8 +7,8 @@ package resharing import ( - "github.com/bnb-chain/tss-lib/v2/eddsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/eddsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/eddsa/signing/finalize.go b/eddsa/signing/finalize.go index f01e8890..6aa77b6c 100644 --- a/eddsa/signing/finalize.go +++ b/eddsa/signing/finalize.go @@ -12,8 +12,8 @@ import ( "math/big" "github.com/agl/ed25519/edwards25519" - "github.com/bnb-chain/tss-lib/v2/tss" "github.com/decred/dcrd/dcrec/edwards/v2" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *finalization) Start() *tss.Error { diff --git a/eddsa/signing/local_party.go b/eddsa/signing/local_party.go index 52e474dc..400f58cf 100644 --- a/eddsa/signing/local_party.go +++ b/eddsa/signing/local_party.go @@ -11,11 +11,11 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/eddsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/eddsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) // Implements Party diff --git a/eddsa/signing/local_party_test.go b/eddsa/signing/local_party_test.go index a2c573e8..169f7bfb 100644 --- a/eddsa/signing/local_party_test.go +++ b/eddsa/signing/local_party_test.go @@ -18,10 +18,10 @@ import ( "github.com/ipfs/go-log" "github.com/stretchr/testify/assert" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/eddsa/keygen" - "github.com/bnb-chain/tss-lib/v2/test" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/eddsa/keygen" + "github.com/yossigi/tss-lib/v2/test" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/eddsa/signing/messages.go b/eddsa/signing/messages.go index c60e1880..a352c6fa 100644 --- a/eddsa/signing/messages.go +++ b/eddsa/signing/messages.go @@ -10,11 +10,11 @@ import ( "crypto/elliptic" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - cmt "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/crypto/schnorr" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + cmt "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/crypto/schnorr" + "github.com/yossigi/tss-lib/v2/tss" ) // These messages were generated from Protocol Buffers definitions into eddsa-signing.pb.go diff --git a/eddsa/signing/prepare.go b/eddsa/signing/prepare.go index 1e86b437..ce8db669 100644 --- a/eddsa/signing/prepare.go +++ b/eddsa/signing/prepare.go @@ -11,7 +11,7 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) // PrepareForSigning(), Fig. 7 diff --git a/eddsa/signing/round_1.go b/eddsa/signing/round_1.go index 63d40f6c..d4c1b1a7 100644 --- a/eddsa/signing/round_1.go +++ b/eddsa/signing/round_1.go @@ -11,11 +11,11 @@ import ( "fmt" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/eddsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/eddsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) // round 1 represents round 1 of the signing part of the EDDSA TSS spec diff --git a/eddsa/signing/round_2.go b/eddsa/signing/round_2.go index cd0b0d83..544ab017 100644 --- a/eddsa/signing/round_2.go +++ b/eddsa/signing/round_2.go @@ -12,8 +12,8 @@ import ( errors2 "github.com/pkg/errors" - "github.com/bnb-chain/tss-lib/v2/crypto/schnorr" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto/schnorr" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round2) Start() *tss.Error { diff --git a/eddsa/signing/round_3.go b/eddsa/signing/round_3.go index 6880e6bf..e355961d 100644 --- a/eddsa/signing/round_3.go +++ b/eddsa/signing/round_3.go @@ -11,12 +11,12 @@ import ( "math/big" "github.com/agl/ed25519/edwards25519" - "github.com/bnb-chain/tss-lib/v2/common" "github.com/pkg/errors" + "github.com/yossigi/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/crypto/commitments" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/crypto/commitments" + "github.com/yossigi/tss-lib/v2/tss" ) func (round *round3) Start() *tss.Error { diff --git a/eddsa/signing/rounds.go b/eddsa/signing/rounds.go index 81723c0d..9251e53d 100644 --- a/eddsa/signing/rounds.go +++ b/eddsa/signing/rounds.go @@ -10,10 +10,10 @@ import ( "errors" "math/big" - "github.com/bnb-chain/tss-lib/v2/common" - "github.com/bnb-chain/tss-lib/v2/crypto" - "github.com/bnb-chain/tss-lib/v2/eddsa/keygen" - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/crypto" + "github.com/yossigi/tss-lib/v2/eddsa/keygen" + "github.com/yossigi/tss-lib/v2/tss" ) const ( diff --git a/eddsa/signing/utils.go b/eddsa/signing/utils.go index 1aa44769..fa73b5ad 100644 --- a/eddsa/signing/utils.go +++ b/eddsa/signing/utils.go @@ -13,7 +13,7 @@ import ( "github.com/agl/ed25519/edwards25519" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) func encodedBytesToBigInt(s *[32]byte) *big.Int { diff --git a/go.mod b/go.mod index 010d5b93..16885caf 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/bnb-chain/tss-lib/v2 +module github.com/yossigi/tss-lib/v2 go 1.21 diff --git a/test/utils.go b/test/utils.go index 633d34ec..d6321c18 100644 --- a/test/utils.go +++ b/test/utils.go @@ -7,7 +7,7 @@ package test import ( - "github.com/bnb-chain/tss-lib/v2/tss" + "github.com/yossigi/tss-lib/v2/tss" ) func SharedPartyUpdater(party tss.Party, msg tss.Message, errCh chan<- *tss.Error) { diff --git a/tss/party.go b/tss/party.go index 0009fc5c..7815370c 100644 --- a/tss/party.go +++ b/tss/party.go @@ -11,7 +11,7 @@ import ( "fmt" "sync" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) type Party interface { diff --git a/tss/party_id.go b/tss/party_id.go index 08ec9a5a..2f31750e 100644 --- a/tss/party_id.go +++ b/tss/party_id.go @@ -12,7 +12,7 @@ import ( "math/big" "sort" - "github.com/bnb-chain/tss-lib/v2/common" + "github.com/yossigi/tss-lib/v2/common" ) type (