diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 786c566d6..5db628ebc 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,5 +10,5 @@ updates: schedule: interval: "weekly" ignore: - - dependency-name: "github.com/onflow/crypto" + - dependency-name: "github.com/onflow/flow-go/crypto" - dependency-name: "github.com/onflow/cadence" diff --git a/crypto/crypto.go b/crypto/crypto.go index 0f12bd511..72b48cb48 100644 --- a/crypto/crypto.go +++ b/crypto/crypto.go @@ -26,7 +26,7 @@ import ( "errors" "fmt" - "github.com/onflow/crypto" + "github.com/onflow/flow-go/crypto" ) // SignatureAlgorithm is an identifier for a signature algorithm (and parameters if applicable). diff --git a/crypto/crypto_test.go b/crypto/crypto_test.go index 06b953d7c..62b463ec7 100644 --- a/crypto/crypto_test.go +++ b/crypto/crypto_test.go @@ -29,8 +29,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - fgcrypto "github.com/onflow/crypto" "github.com/onflow/flow-go-sdk/crypto" + fgcrypto "github.com/onflow/flow-go/crypto" ) func TestGeneratePrivateKey(t *testing.T) { diff --git a/crypto/hash.go b/crypto/hash.go index 862972d3c..76c963b6f 100644 --- a/crypto/hash.go +++ b/crypto/hash.go @@ -21,7 +21,7 @@ package crypto import ( "fmt" - "github.com/onflow/crypto/hash" + "github.com/onflow/flow-go/crypto/hash" ) type Hasher = hash.Hasher diff --git a/event.go b/event.go index 5832e8fa6..e49ca3e65 100644 --- a/event.go +++ b/event.go @@ -23,8 +23,8 @@ import ( "time" "github.com/onflow/cadence" - "github.com/onflow/crypto/hash" "github.com/onflow/flow-go-sdk/crypto" + "github.com/onflow/flow-go/crypto/hash" ) // List of built-in account event types. diff --git a/go.mod b/go.mod index a2da9c899..d0d54c329 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/kms v1.20.1 github.com/ethereum/go-ethereum v1.9.13 github.com/onflow/cadence v0.39.14 - github.com/onflow/crypto v0.24.9 + github.com/onflow/flow-go/crypto v0.24.7 github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288 github.com/onflow/sdks v0.5.0 github.com/pkg/errors v0.9.1 diff --git a/go.sum b/go.sum index a5b02a8d6..a085d7457 100644 --- a/go.sum +++ b/go.sum @@ -189,8 +189,8 @@ github.com/onflow/atree v0.6.0 h1:j7nQ2r8npznx4NX39zPpBYHmdy45f4xwoi+dm37Jk7c= github.com/onflow/atree v0.6.0/go.mod h1:gBHU0M05qCbv9NN0kijLWMgC47gHVNBIp4KmsVFi0tc= github.com/onflow/cadence v0.39.14 h1:YoR3YFUga49rqzVY1xwI6I2ZDBmvwGh13jENncsleC8= github.com/onflow/cadence v0.39.14/go.mod h1:OIJLyVBPa339DCBQXBfGaorT4tBjQh9gSKe+ZAIyyh0= -github.com/onflow/crypto v0.24.9 h1:jYP1qdwid0qCineFzBFlxBchg710A7RuSWpTqxaOdog= -github.com/onflow/crypto v0.24.9/go.mod h1:J/V7IEVaqjDajvF8K0B/SJPJDgAOP2G+LVLeb0hgmbg= +github.com/onflow/flow-go/crypto v0.24.7 h1:RCLuB83At4z5wkAyUCF7MYEnPoIIOHghJaODuJyEoW0= +github.com/onflow/flow-go/crypto v0.24.7/go.mod h1:fqCzkIBBMRRkciVrvW21rECKq1oD7Q6u+bCI78lfNX0= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288 h1:haWv3D5loiH+zcOoWEvDXtWQvXt5U8PLliQjwhv9sfw= github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20221202093946-932d1c70e288/go.mod h1:gQxYqCfkI8lpnKsmIjwtN2mV/N2PIwc1I+RUK4HPIc8= github.com/onflow/sdks v0.5.0 h1:2HCRibwqDaQ1c9oUApnkZtEAhWiNY2GTpRD5+ftdkN8=