diff --git a/README.md b/README.md index 1ef912d..13fbefb 100644 --- a/README.md +++ b/README.md @@ -69,8 +69,8 @@ import ( "log" "time" - "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" + "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" ) @@ -154,8 +154,8 @@ import ( "fmt" "log" - "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" + "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" ) diff --git a/core/contractsapi/abstract_api.go b/core/contractsapi/abstract_api.go index cf05814..a203830 100644 --- a/core/contractsapi/abstract_api.go +++ b/core/contractsapi/abstract_api.go @@ -2,8 +2,8 @@ package contractsapi import ( "context" - kwiltypes "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" "strconv" diff --git a/core/contractsapi/batch_deploy_streams.go b/core/contractsapi/batch_deploy_streams.go index d06e09f..28ba56f 100644 --- a/core/contractsapi/batch_deploy_streams.go +++ b/core/contractsapi/batch_deploy_streams.go @@ -3,10 +3,10 @@ package contractsapi import ( "context" - kwilClientType "github.com/kwilteam/kwil-db/core/client/types" - "github.com/kwilteam/kwil-db/core/gatewayclient" - kwilType "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + kwilClientType "github.com/trufnetwork/kwil-db/core/client/types" + "github.com/trufnetwork/kwil-db/core/gatewayclient" + kwilType "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/types" ) diff --git a/core/contractsapi/composed_stream.go b/core/contractsapi/composed_stream.go index 9e0567f..0de88a6 100644 --- a/core/contractsapi/composed_stream.go +++ b/core/contractsapi/composed_stream.go @@ -4,8 +4,8 @@ import ( "context" "strconv" - kwiltypes "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" ) diff --git a/core/contractsapi/decode_call_results.go b/core/contractsapi/decode_call_results.go index a9fa0e0..545e197 100644 --- a/core/contractsapi/decode_call_results.go +++ b/core/contractsapi/decode_call_results.go @@ -4,8 +4,8 @@ import ( "reflect" "strings" - kwiltypes "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" ) // fieldMappingInfo holds information about how a QueryResult column maps to a struct field. diff --git a/core/contractsapi/deploy_stream.go b/core/contractsapi/deploy_stream.go index 7800a18..e7f00db 100644 --- a/core/contractsapi/deploy_stream.go +++ b/core/contractsapi/deploy_stream.go @@ -2,8 +2,8 @@ package contractsapi import ( "context" - "github.com/kwilteam/kwil-db/core/gatewayclient" - kwilTypes "github.com/kwilteam/kwil-db/core/types" + "github.com/trufnetwork/kwil-db/core/gatewayclient" + kwilTypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" ) diff --git a/core/contractsapi/destroy_stream.go b/core/contractsapi/destroy_stream.go index 878cacb..3e3723b 100644 --- a/core/contractsapi/destroy_stream.go +++ b/core/contractsapi/destroy_stream.go @@ -2,9 +2,9 @@ package contractsapi import ( "context" - "github.com/kwilteam/kwil-db/core/crypto/auth" - "github.com/kwilteam/kwil-db/core/gatewayclient" - "github.com/kwilteam/kwil-db/core/types" + "github.com/trufnetwork/kwil-db/core/crypto/auth" + "github.com/trufnetwork/kwil-db/core/gatewayclient" + "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/util" ) diff --git a/core/contractsapi/primitive_stream.go b/core/contractsapi/primitive_stream.go index 26f0508..ae5b6b8 100644 --- a/core/contractsapi/primitive_stream.go +++ b/core/contractsapi/primitive_stream.go @@ -2,9 +2,9 @@ package contractsapi import ( "context" - client "github.com/kwilteam/kwil-db/core/client/types" - kwiltypes "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + client "github.com/trufnetwork/kwil-db/core/client/types" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/types" "strconv" ) diff --git a/core/contractsapi/role_management.go b/core/contractsapi/role_management.go index adaaed6..6999aed 100644 --- a/core/contractsapi/role_management.go +++ b/core/contractsapi/role_management.go @@ -3,10 +3,10 @@ package contractsapi import ( "context" - kwilClientType "github.com/kwilteam/kwil-db/core/client/types" - "github.com/kwilteam/kwil-db/core/gatewayclient" - kwiltypes "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + kwilClientType "github.com/trufnetwork/kwil-db/core/client/types" + "github.com/trufnetwork/kwil-db/core/gatewayclient" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" ) diff --git a/core/contractsapi/stream.go b/core/contractsapi/stream.go index 9e3a6f9..fcac8fc 100644 --- a/core/contractsapi/stream.go +++ b/core/contractsapi/stream.go @@ -3,10 +3,10 @@ package contractsapi import ( "context" "encoding/hex" - "github.com/kwilteam/kwil-db/core/gatewayclient" + "github.com/trufnetwork/kwil-db/core/gatewayclient" - kwilTypes "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + kwilTypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/types" ) diff --git a/core/contractsapi/stream_procedures.go b/core/contractsapi/stream_procedures.go index ac26fc8..d58be08 100644 --- a/core/contractsapi/stream_procedures.go +++ b/core/contractsapi/stream_procedures.go @@ -6,8 +6,8 @@ import ( "strconv" "github.com/cockroachdb/apd/v3" - kwiltypes "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" ) @@ -148,10 +148,10 @@ func (s *Action) GetRecord(ctx context.Context, input types.GetRecordInput) ([]t prefix := "" if input.Prefix != nil { - prefix = *input.Prefix + prefix = *input.Prefix } - results, err := s.call(ctx, prefix + "get_record", args) + results, err := s.call(ctx, prefix+"get_record", args) if err != nil { return nil, errors.WithStack(err) } @@ -200,10 +200,10 @@ func (s *Action) GetIndex(ctx context.Context, input types.GetIndexInput) ([]typ prefix := "" if input.Prefix != nil { - prefix = *input.Prefix + prefix = *input.Prefix } - results, err := s.call(ctx, prefix + "get_index", args) + results, err := s.call(ctx, prefix+"get_index", args) if err != nil { return nil, errors.WithStack(err) } diff --git a/core/tnclient/client.go b/core/tnclient/client.go index 1c83c0a..646c674 100644 --- a/core/tnclient/client.go +++ b/core/tnclient/client.go @@ -5,13 +5,13 @@ import ( "time" "github.com/go-playground/validator/v10" - kwilClientType "github.com/kwilteam/kwil-db/core/client/types" - "github.com/kwilteam/kwil-db/core/crypto/auth" - "github.com/kwilteam/kwil-db/core/gatewayclient" - "github.com/kwilteam/kwil-db/core/log" - kwilType "github.com/kwilteam/kwil-db/core/types" - "github.com/kwilteam/kwil-db/node/types" "github.com/pkg/errors" + kwilClientType "github.com/trufnetwork/kwil-db/core/client/types" + "github.com/trufnetwork/kwil-db/core/crypto/auth" + "github.com/trufnetwork/kwil-db/core/gatewayclient" + "github.com/trufnetwork/kwil-db/core/log" + kwilType "github.com/trufnetwork/kwil-db/core/types" + "github.com/trufnetwork/kwil-db/node/types" tn_api "github.com/trufnetwork/sdk-go/core/contractsapi" "github.com/trufnetwork/sdk-go/core/logging" clientType "github.com/trufnetwork/sdk-go/core/types" diff --git a/core/types/composed_stream.go b/core/types/composed_stream.go index de5f212..0675f31 100644 --- a/core/types/composed_stream.go +++ b/core/types/composed_stream.go @@ -4,8 +4,8 @@ import ( "context" "encoding/json" "fmt" - "github.com/kwilteam/kwil-db/core/types" "github.com/pkg/errors" + "github.com/trufnetwork/kwil-db/core/types" ) type Taxonomy struct { diff --git a/core/types/primitive_stream.go b/core/types/primitive_stream.go index 08361a9..02d03ab 100644 --- a/core/types/primitive_stream.go +++ b/core/types/primitive_stream.go @@ -2,9 +2,9 @@ package types import ( "context" - "github.com/kwilteam/kwil-db/node/types" + "github.com/trufnetwork/kwil-db/node/types" - kwilClientType "github.com/kwilteam/kwil-db/core/client/types" + kwilClientType "github.com/trufnetwork/kwil-db/core/client/types" ) type InsertRecordInput struct { diff --git a/core/types/role_types.go b/core/types/role_types.go index 9bfd8c8..ae21a3b 100644 --- a/core/types/role_types.go +++ b/core/types/role_types.go @@ -3,8 +3,8 @@ package types import ( "context" - kwilClientType "github.com/kwilteam/kwil-db/core/client/types" // for TxOpt - "github.com/kwilteam/kwil-db/node/types" + kwilClientType "github.com/trufnetwork/kwil-db/core/client/types" // for TxOpt + "github.com/trufnetwork/kwil-db/node/types" "github.com/trufnetwork/sdk-go/core/util" ) diff --git a/core/types/stream.go b/core/types/stream.go index 18cff65..53fc502 100644 --- a/core/types/stream.go +++ b/core/types/stream.go @@ -4,8 +4,8 @@ import ( "context" "github.com/cockroachdb/apd/v3" - kwilType "github.com/kwilteam/kwil-db/core/types" - "github.com/kwilteam/kwil-db/node/types" + kwilType "github.com/trufnetwork/kwil-db/core/types" + "github.com/trufnetwork/kwil-db/node/types" "github.com/trufnetwork/sdk-go/core/util" ) diff --git a/core/types/tsn_client.go b/core/types/tsn_client.go index 80f802f..c827487 100644 --- a/core/types/tsn_client.go +++ b/core/types/tsn_client.go @@ -2,10 +2,10 @@ package types import ( "context" - "github.com/kwilteam/kwil-db/core/gatewayclient" + "github.com/trufnetwork/kwil-db/core/gatewayclient" "time" - "github.com/kwilteam/kwil-db/core/types" + "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/util" ) diff --git a/examples/complex_stream_example/go.mod b/examples/complex_stream_example/go.mod index 9f0177e..48dc663 100644 --- a/examples/complex_stream_example/go.mod +++ b/examples/complex_stream_example/go.mod @@ -4,7 +4,7 @@ go 1.24.1 require ( github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e - github.com/trufnetwork/sdk-go main + github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953 ) require ( diff --git a/examples/complex_stream_example/go.sum b/examples/complex_stream_example/go.sum index f250907..c285dce 100644 --- a/examples/complex_stream_example/go.sum +++ b/examples/complex_stream_example/go.sum @@ -38,6 +38,7 @@ github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOf github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/trufnetwork/sdk-go v0.3.1 h1:sAdRwzoXe8uz8KaKmP3az/DBhmeHIY+BO86W+ZjXw1A= github.com/trufnetwork/sdk-go v0.3.1/go.mod h1:vcSgIR+ZRpkUJZ3DWaQVj0YSaPYkfcCPLd332Oo6RUM= +github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953/go.mod h1:vcSgIR+ZRpkUJZ3DWaQVj0YSaPYkfcCPLd332Oo6RUM= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/examples/custom_procedure_example/go.mod b/examples/custom_procedure_example/go.mod index 92cee2b..2137f4f 100644 --- a/examples/custom_procedure_example/go.mod +++ b/examples/custom_procedure_example/go.mod @@ -4,7 +4,7 @@ go 1.24.1 require ( github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e - github.com/trufnetwork/sdk-go main + github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953 ) require ( diff --git a/examples/custom_procedure_example/go.sum b/examples/custom_procedure_example/go.sum index f250907..c285dce 100644 --- a/examples/custom_procedure_example/go.sum +++ b/examples/custom_procedure_example/go.sum @@ -38,6 +38,7 @@ github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOf github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/trufnetwork/sdk-go v0.3.1 h1:sAdRwzoXe8uz8KaKmP3az/DBhmeHIY+BO86W+ZjXw1A= github.com/trufnetwork/sdk-go v0.3.1/go.mod h1:vcSgIR+ZRpkUJZ3DWaQVj0YSaPYkfcCPLd332Oo6RUM= +github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953/go.mod h1:vcSgIR+ZRpkUJZ3DWaQVj0YSaPYkfcCPLd332Oo6RUM= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/examples/custom_procedure_with_prefix_example/go.mod b/examples/custom_procedure_with_prefix_example/go.mod index 92cee2b..2137f4f 100644 --- a/examples/custom_procedure_with_prefix_example/go.mod +++ b/examples/custom_procedure_with_prefix_example/go.mod @@ -4,7 +4,7 @@ go 1.24.1 require ( github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e - github.com/trufnetwork/sdk-go main + github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953 ) require ( diff --git a/examples/custom_procedure_with_prefix_example/go.sum b/examples/custom_procedure_with_prefix_example/go.sum index ace102e..ea70b20 100644 --- a/examples/custom_procedure_with_prefix_example/go.sum +++ b/examples/custom_procedure_with_prefix_example/go.sum @@ -38,6 +38,7 @@ github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOf github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= github.com/trufnetwork/sdk-go v0.3.2-0.20250619042418-ab1467f1b8a4 h1:J8Y90u9CZCy/12GEJpw+i2WjQaBRxZonZiDqRucNwR0= github.com/trufnetwork/sdk-go v0.3.2-0.20250619042418-ab1467f1b8a4/go.mod h1:vcSgIR+ZRpkUJZ3DWaQVj0YSaPYkfcCPLd332Oo6RUM= +github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953/go.mod h1:vcSgIR+ZRpkUJZ3DWaQVj0YSaPYkfcCPLd332Oo6RUM= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/examples/main.go b/examples/main.go index ef2acf7..769f089 100644 --- a/examples/main.go +++ b/examples/main.go @@ -6,8 +6,8 @@ import ( "log" "time" - "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" + "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" ) diff --git a/go.mod b/go.mod index d4eef13..7a0728c 100644 --- a/go.mod +++ b/go.mod @@ -4,12 +4,13 @@ go 1.24.1 require ( github.com/cockroachdb/apd/v3 v3.2.1 - github.com/ethereum/go-ethereum v1.14.13 github.com/go-playground/validator/v10 v10.22.0 github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 - github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e + github.com/joho/godotenv v1.5.1 github.com/pkg/errors v0.9.1 github.com/stretchr/testify v1.10.0 + github.com/trufnetwork/kwil-db v0.10.3-0.20250629214713-33a43e717089 + github.com/trufnetwork/kwil-db/core v0.4.3-0.20250629214713-33a43e717089 go.uber.org/zap v1.27.0 ) @@ -21,10 +22,7 @@ require ( github.com/go-playground/locales v0.14.1 // indirect github.com/go-playground/universal-translator v0.18.1 // indirect github.com/google/uuid v1.6.0 // indirect - github.com/holiman/uint256 v1.3.2 // indirect - github.com/joho/godotenv v1.5.1 // indirect github.com/jrick/logrotate v1.1.2 // indirect - github.com/kwilteam/kwil-db v0.10.2 // indirect github.com/leodido/go-urn v1.4.0 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/rogpeppe/go-internal v1.13.1 // indirect diff --git a/go.sum b/go.sum index b1aec88..a61d080 100644 --- a/go.sum +++ b/go.sum @@ -8,8 +8,6 @@ github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 h1:NMZiJj8QnKe1LgsbDayM4UoHwbvw github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0/go.mod h1:ZXNYxsqcloTdSy/rNShjYzMhyjf0LaoftYK0p+A3h40= github.com/decred/slog v1.2.0 h1:soHAxV52B54Di3WtKLfPum9OFfWqwtf/ygf9njdfnPM= github.com/decred/slog v1.2.0/go.mod h1:kVXlGnt6DHy2fV5OjSeuvCJ0OmlmTF6LFpEPMu/fOY0= -github.com/ethereum/go-ethereum v1.14.13 h1:L81Wmv0OUP6cf4CW6wtXsr23RUrDhKs2+Y9Qto+OgHU= -github.com/ethereum/go-ethereum v1.14.13/go.mod h1:RAC2gVMWJ6FkxSPESfbshrcKpIokgQKsVKmAuqdekDY= github.com/gabriel-vasile/mimetype v1.4.6 h1:3+PzJTKLkvgjeTbts6msPJt4DixhT4YtFNf1gtGe3zc= github.com/gabriel-vasile/mimetype v1.4.6/go.mod h1:JX1qVKqZd40hUPpAfiNTe0Sne7hdfKSbOqqmkq8GCXc= github.com/go-playground/assert/v2 v2.2.0 h1:JvknZsQTYeFEAhQwI4qEt9cyV5ONwRHC+lYKSsYSR8s= @@ -24,8 +22,6 @@ github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 h1:au07oEsX2xN0kt github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9/go.mod h1:8vg3r2VgvsThLBIFL93Qb5yWzgyZWhEmBwUJWevAkK0= github.com/google/uuid v1.6.0 h1:NIvaJDMOsjHA8n1jAhLSgzrAzy1Hgr+hNrb57e+94F0= github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo= -github.com/holiman/uint256 v1.3.2 h1:a9EgMPSC1AAaj1SZL5zIQD3WbwTuHrMGOerLjGmM/TA= -github.com/holiman/uint256 v1.3.2/go.mod h1:EOMSn4q6Nyt9P6efbI3bueV4e1b3dGlUCXeiRV4ng7E= github.com/joho/godotenv v1.5.1 h1:7eLL/+HRGLY0ldzfGMeQkb7vMd0as4CfYvUVzLqw0N0= github.com/joho/godotenv v1.5.1/go.mod h1:f4LDr5Voq0i2e/R5DDNOoa2zzDfwtkZa6DnEwAbqwq4= github.com/jrick/logrotate v1.1.2 h1:6ePk462NCX7TfKtNp5JJ7MbA2YIslkpfgP03TlTYMN0= @@ -34,12 +30,6 @@ github.com/kr/pretty v0.3.1 h1:flRD4NNwYAUpkphVc1HcthR4KEIFJ65n8Mw5qdRn3LE= github.com/kr/pretty v0.3.1/go.mod h1:hoEshYVHaxMs3cyo3Yncou5ZscifuDolrwPKZanG3xk= github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY= github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE= -github.com/kwilteam/kwil-db v0.10.2 h1:EEEJ5h2hYnPLsAVSHVSsH1OegzgDU/EKSeer41bJg8s= -github.com/kwilteam/kwil-db v0.10.2/go.mod h1:46IO8tO8gCBgETv90Lwscx1wDtYOBMxVHhlO8OAjfdc= -github.com/kwilteam/kwil-db/core v0.4.1 h1:6ZOCLBMvO6EnVfsgwP2KxD0yWF2lIvmismSfRZLDXkc= -github.com/kwilteam/kwil-db/core v0.4.1/go.mod h1:clG9Pk1NNs83dbIZZZn/6I+F4C9xntYTHbMFjL1HQ0w= -github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e h1:v0spmBGP7AGA/NBoW3CSbXUd+AGZMIzguNuS6Oppd/c= -github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e/go.mod h1:clG9Pk1NNs83dbIZZZn/6I+F4C9xntYTHbMFjL1HQ0w= github.com/leodido/go-urn v1.4.0 h1:WT9HwE9SGECu3lg4d/dIA+jxlljEa1/ffXKmRjqdmIQ= github.com/leodido/go-urn v1.4.0/go.mod h1:bvxc+MVxLKB4z00jd1z+Dvzr47oO32F/QSNjSBOlFxI= github.com/lib/pq v1.10.7 h1:p7ZhMD+KsSRozJr34udlUrhboJwWAgCg34+/ZZNvZZw= @@ -52,6 +42,10 @@ github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/trufnetwork/kwil-db v0.10.3-0.20250629214713-33a43e717089 h1:2yXvbpP27eNqb7Yo0lET/ClC3FczddAO/YeMT2Ayksk= +github.com/trufnetwork/kwil-db v0.10.3-0.20250629214713-33a43e717089/go.mod h1:xskYWZKkPSQOpSo7yqcqpZzcqIRw06dRgLb9TwIvtAI= +github.com/trufnetwork/kwil-db/core v0.4.3-0.20250629214713-33a43e717089 h1:v7LVR01m5ftmO0PvHQosvG0aKvE864js9wZk+YvK4a8= +github.com/trufnetwork/kwil-db/core v0.4.3-0.20250629214713-33a43e717089/go.mod h1:HnOsh9+BN13LJCjiH0+XKaJzyjWKf+H9AofFFp90KwQ= go.uber.org/goleak v1.3.0 h1:2K3zAYmnTNqV73imy9J1T3WC+gmCePx2hEGkimedGto= go.uber.org/goleak v1.3.0/go.mod h1:CoHD4mav9JJNrW/WLlf7HGZPjdw8EucARQHekz1X6bE= go.uber.org/multierr v1.11.0 h1:blXXJkSxSSfBVBlC76pxqeO+LN3aDfLQo+309xJstO0= diff --git a/tests/integration/batch_operations_test.go b/tests/integration/batch_operations_test.go index 164abe4..bf872d1 100644 --- a/tests/integration/batch_operations_test.go +++ b/tests/integration/batch_operations_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" - kwiltypes "github.com/kwilteam/kwil-db/core/types" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/tests/integration/batch_stream_creation_test.go b/tests/integration/batch_stream_creation_test.go index fc71c87..5dadf3d 100644 --- a/tests/integration/batch_stream_creation_test.go +++ b/tests/integration/batch_stream_creation_test.go @@ -7,11 +7,11 @@ import ( "testing" "time" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" - kwiltypes "github.com/kwilteam/kwil-db/core/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" diff --git a/tests/integration/composed_actions_test.go b/tests/integration/composed_actions_test.go index 46871c2..577480d 100644 --- a/tests/integration/composed_actions_test.go +++ b/tests/integration/composed_actions_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" diff --git a/tests/integration/deploy_composed_streams_with_taxonomy_test.go b/tests/integration/deploy_composed_streams_with_taxonomy_test.go index 3856c5a..9a99169 100644 --- a/tests/integration/deploy_composed_streams_with_taxonomy_test.go +++ b/tests/integration/deploy_composed_streams_with_taxonomy_test.go @@ -6,10 +6,10 @@ import ( "time" "github.com/golang-sql/civil" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" diff --git a/tests/integration/list_streams_test.go b/tests/integration/list_streams_test.go index 4b527c3..3b65048 100644 --- a/tests/integration/list_streams_test.go +++ b/tests/integration/list_streams_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" diff --git a/tests/integration/permission_test.go b/tests/integration/permission_test.go index 371cbd3..27cd176 100644 --- a/tests/integration/permission_test.go +++ b/tests/integration/permission_test.go @@ -6,11 +6,11 @@ import ( "time" "github.com/golang-sql/civil" - "github.com/kwilteam/kwil-db/core/crypto" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "github.com/trufnetwork/kwil-db/core/crypto" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" diff --git a/tests/integration/primitive_actions_test.go b/tests/integration/primitive_actions_test.go index 633efe6..5aafb7f 100644 --- a/tests/integration/primitive_actions_test.go +++ b/tests/integration/primitive_actions_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" diff --git a/tests/integration/role_management_test.go b/tests/integration/role_management_test.go index 6c5e589..366b53b 100644 --- a/tests/integration/role_management_test.go +++ b/tests/integration/role_management_test.go @@ -4,10 +4,10 @@ import ( "context" "testing" - "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" "github.com/trufnetwork/sdk-go/core/tnclient" apitypes "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util" diff --git a/tests/integration/server_fixture.go b/tests/integration/server_fixture.go index a70bdc6..1a4d2c4 100644 --- a/tests/integration/server_fixture.go +++ b/tests/integration/server_fixture.go @@ -12,8 +12,8 @@ import ( "time" "github.com/joho/godotenv" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" ) // Constants for the test setup diff --git a/tests/integration/util.go b/tests/integration/util.go index 84364af..0b642cc 100644 --- a/tests/integration/util.go +++ b/tests/integration/util.go @@ -5,11 +5,11 @@ import ( "testing" "time" - kwilcrypto "github.com/kwilteam/kwil-db/core/crypto" - "github.com/kwilteam/kwil-db/core/crypto/auth" - kwiltypes "github.com/kwilteam/kwil-db/core/types" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + kwilcrypto "github.com/trufnetwork/kwil-db/core/crypto" + "github.com/trufnetwork/kwil-db/core/crypto/auth" + kwiltypes "github.com/trufnetwork/kwil-db/core/types" "github.com/trufnetwork/sdk-go/core/tnclient" "github.com/trufnetwork/sdk-go/core/types" "github.com/trufnetwork/sdk-go/core/util"