Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion core/contractsapi/abstract_api.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions core/contractsapi/batch_deploy_streams.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion core/contractsapi/composed_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
2 changes: 1 addition & 1 deletion core/contractsapi/decode_call_results.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions core/contractsapi/deploy_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
6 changes: 3 additions & 3 deletions core/contractsapi/destroy_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
4 changes: 2 additions & 2 deletions core/contractsapi/primitive_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
6 changes: 3 additions & 3 deletions core/contractsapi/role_management.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
4 changes: 2 additions & 2 deletions core/contractsapi/stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
10 changes: 5 additions & 5 deletions core/contractsapi/stream_procedures.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down Expand Up @@ -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)
}
Expand Down Expand Up @@ -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)
}
Expand Down
12 changes: 6 additions & 6 deletions core/tnclient/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion core/types/composed_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions core/types/primitive_stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
4 changes: 2 additions & 2 deletions core/types/role_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
4 changes: 2 additions & 2 deletions core/types/stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
4 changes: 2 additions & 2 deletions core/types/tsn_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)

Expand Down
2 changes: 1 addition & 1 deletion examples/complex_stream_example/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.24.1

require (
github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e
Comment thread
williamrusdyputra marked this conversation as resolved.
github.com/trufnetwork/sdk-go main
github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953
)

require (
Expand Down
1 change: 1 addition & 0 deletions examples/complex_stream_example/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_procedure_example/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.24.1

require (
github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e
Comment thread
williamrusdyputra marked this conversation as resolved.
github.com/trufnetwork/sdk-go main
github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953
)

require (
Expand Down
1 change: 1 addition & 0 deletions examples/custom_procedure_example/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
2 changes: 1 addition & 1 deletion examples/custom_procedure_with_prefix_example/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.24.1

require (
github.com/kwilteam/kwil-db/core v0.4.2-0.20250506000241-da9d3ddea45e
Comment thread
williamrusdyputra marked this conversation as resolved.
github.com/trufnetwork/sdk-go main
github.com/trufnetwork/sdk-go v0.3.2-0.20250620093045-0155e2dac953
)

require (
Expand Down
1 change: 1 addition & 0 deletions examples/custom_procedure_with_prefix_example/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
4 changes: 2 additions & 2 deletions examples/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
)
Expand Down
8 changes: 3 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

Expand All @@ -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
Expand Down
14 changes: 4 additions & 10 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand All @@ -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=
Expand All @@ -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=
Expand All @@ -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=
Expand Down
6 changes: 3 additions & 3 deletions tests/integration/batch_operations_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading