diff --git a/internal/v1_1/generator.go b/internal/v1_1/generator.go index d423d47..ad91e42 100644 --- a/internal/v1_1/generator.go +++ b/internal/v1_1/generator.go @@ -6,10 +6,10 @@ import ( "fmt" "strings" - "github.com/onflow/cadence/runtime/ast" - "github.com/onflow/cadence/runtime/cmd" - "github.com/onflow/cadence/runtime/common" - "github.com/onflow/cadence/runtime/parser" + "github.com/onflow/cadence/ast" + "github.com/onflow/cadence/cmd" + "github.com/onflow/cadence/common" + "github.com/onflow/cadence/parser" "github.com/onflow/flow-go-sdk" "github.com/onflow/flowkit/v2" "github.com/onflow/flowkit/v2/config" diff --git a/internal/v1_1/types.go b/internal/v1_1/types.go index 2d17c52..8da351b 100644 --- a/internal/v1_1/types.go +++ b/internal/v1_1/types.go @@ -11,9 +11,10 @@ import ( "strings" "github.com/ethereum/go-ethereum/rlp" - "github.com/onflow/cadence/runtime/ast" - "github.com/onflow/flixkit-go/v2/internal/contracts" + "github.com/onflow/cadence/ast" "golang.org/x/crypto/sha3" + + "github.com/onflow/flixkit-go/v2/internal/contracts" ) type InteractionTemplate struct { diff --git a/internal/v1_1/types_test.go b/internal/v1_1/types_test.go index 00469a3..1cd59c3 100644 --- a/internal/v1_1/types_test.go +++ b/internal/v1_1/types_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/hexops/autogold/v2" - "github.com/onflow/cadence/runtime/parser" + "github.com/onflow/cadence/parser" "github.com/stretchr/testify/assert" )