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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@ jobs:
# sentinel value to run all other tests.
- package: "unit"
# split the heaviest ones
- package: "github.com/celestiaorg/celestia-app/v6/app/test"
- package: "github.com/celestiaorg/celestia-app-fibre/v6/app/test"
pattern: "TestIntegration.*"
- package: "github.com/celestiaorg/celestia-app/v6/app/test"
- package: "github.com/celestiaorg/celestia-app-fibre/v6/app/test"
pattern: "TestBigBlob.*|TestStandardSDK.*"
- package: "github.com/celestiaorg/celestia-app/v6/app/test"
- package: "github.com/celestiaorg/celestia-app-fibre/v6/app/test"
pattern: "TestSquareSize.*|TestPriority.*"
- package: "github.com/celestiaorg/celestia-app/v6/test/txsim"
- package: "github.com/celestiaorg/celestia-app/v6/pkg/user"
- package: "github.com/celestiaorg/celestia-app-fibre/v6/test/txsim"
- package: "github.com/celestiaorg/celestia-app-fibre/v6/pkg/user"
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 #v5.0.0

Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ PROJECTNAME=$(shell basename "$(PWD)")
DOCKER_GOOS ?= linux
DOCKER_GOARCH ?= amd64
HTTPS_GIT := https://github.com/celestiaorg/celestia-app.git
PACKAGE_NAME := github.com/celestiaorg/celestia-app/v6
PACKAGE_NAME := github.com/celestiaorg/celestia-app-fibre/v6
# Before upgrading the GOLANG_CROSS_VERSION, please verify that a Docker image exists with the new tag.
# See https://github.com/goreleaser/goreleaser-cross/pkgs/container/goreleaser-cross
GOLANG_CROSS_VERSION ?= v1.24.6
Expand All @@ -23,7 +23,7 @@ V2_UPGRADE_HEIGHT ?= 0
BUILD_TAGS_STANDALONE := ledger
BUILD_TAGS_MULTIPLEXER := ledger,multiplexer

LDFLAGS_COMMON := -X github.com/cosmos/cosmos-sdk/version.Name=celestia-app -X github.com/cosmos/cosmos-sdk/version.AppName=celestia-appd -X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) -X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) -X github.com/celestiaorg/celestia-app/v6/cmd/celestia-appd/cmd.v2UpgradeHeight=$(V2_UPGRADE_HEIGHT)
LDFLAGS_COMMON := -X github.com/cosmos/cosmos-sdk/version.Name=celestia-app -X github.com/cosmos/cosmos-sdk/version.AppName=celestia-appd -X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) -X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) -X github.com/celestiaorg/celestia-app-fibre/v6/cmd/celestia-appd/cmd.v2UpgradeHeight=$(V2_UPGRADE_HEIGHT)
LDFLAGS_STANDALONE := $(LDFLAGS_COMMON) -X github.com/cosmos/cosmos-sdk/version.BuildTags=$(BUILD_TAGS_STANDALONE)
LDFLAGS_MULTIPLEXER := $(LDFLAGS_COMMON) -X github.com/cosmos/cosmos-sdk/version.BuildTags=$(BUILD_TAGS_MULTIPLEXER)

Expand Down
6 changes: 3 additions & 3 deletions app/ante/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
circuitante "cosmossdk.io/x/circuit/ante"
circuitkeeper "cosmossdk.io/x/circuit/keeper"
txsigning "cosmossdk.io/x/tx/signing"
blobante "github.com/celestiaorg/celestia-app/v6/x/blob/ante"
blob "github.com/celestiaorg/celestia-app/v6/x/blob/keeper"
minfeekeeper "github.com/celestiaorg/celestia-app/v6/x/minfee/keeper"
blobante "github.com/celestiaorg/celestia-app-fibre/v6/x/blob/ante"
blob "github.com/celestiaorg/celestia-app-fibre/v6/x/blob/keeper"
minfeekeeper "github.com/celestiaorg/celestia-app-fibre/v6/x/minfee/keeper"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/auth/ante"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
Expand Down
10 changes: 5 additions & 5 deletions app/ante/ante_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"fmt"
"testing"

"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
testutil "github.com/celestiaorg/celestia-app/v6/test/util"
"github.com/celestiaorg/celestia-app/v6/x/blob/types"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
testutil "github.com/celestiaorg/celestia-app-fibre/v6/test/util"
"github.com/celestiaorg/celestia-app-fibre/v6/x/blob/types"
"github.com/celestiaorg/go-square/v4/share"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/tx/signing"
Expand Down
4 changes: 2 additions & 2 deletions app/ante/circuit_breaker_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import (

circuitante "cosmossdk.io/x/circuit/ante"
upgradetypes "cosmossdk.io/x/upgrade/types"
"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/test/util"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util"
cmtproto "github.com/cometbft/cometbft/proto/tendermint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
Expand Down
4 changes: 2 additions & 2 deletions app/ante/fee.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package ante
import (
"cosmossdk.io/errors"
"cosmossdk.io/math"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
minfeekeeper "github.com/celestiaorg/celestia-app/v6/x/minfee/keeper"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
minfeekeeper "github.com/celestiaorg/celestia-app-fibre/v6/x/minfee/keeper"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerror "github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/x/auth/ante"
Expand Down
14 changes: 7 additions & 7 deletions app/ante/fee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ import (
"cosmossdk.io/store"
"cosmossdk.io/store/metrics"
storetypes "cosmossdk.io/store/types"
"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/ante"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app/v6/test/util/testnode"
minfeekeeper "github.com/celestiaorg/celestia-app/v6/x/minfee/keeper"
minfeetypes "github.com/celestiaorg/celestia-app/v6/x/minfee/types"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/ante"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testnode"
minfeekeeper "github.com/celestiaorg/celestia-app-fibre/v6/x/minfee/keeper"
minfeetypes "github.com/celestiaorg/celestia-app-fibre/v6/x/minfee/types"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
dbm "github.com/cosmos/cosmos-db"
"github.com/cosmos/cosmos-sdk/codec"
Expand Down
2 changes: 1 addition & 1 deletion app/ante/get_tx_priority_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package ante
import (
"testing"

"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion app/ante/msg_exec.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package ante

import (
blobtypes "github.com/celestiaorg/celestia-app/v6/x/blob/types"
blobtypes "github.com/celestiaorg/celestia-app-fibre/v6/x/blob/types"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/x/authz"
Expand Down
8 changes: 4 additions & 4 deletions app/ante/msg_exec_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package ante_test
import (
"testing"

"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/ante"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
blobtypes "github.com/celestiaorg/celestia-app/v6/x/blob/types"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/ante"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
blobtypes "github.com/celestiaorg/celestia-app-fibre/v6/x/blob/types"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
Expand Down
10 changes: 5 additions & 5 deletions app/ante/panic_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import (
"fmt"
"testing"

"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/ante"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/app/params"
"github.com/celestiaorg/celestia-app/v6/test/util/testnode"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/ante"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/app/params"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testnode"
sdk "github.com/cosmos/cosmos-sdk/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
"github.com/stretchr/testify/require"
Expand Down
2 changes: 1 addition & 1 deletion app/ante/params_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"testing"

"github.com/celestiaorg/celestia-app/v6/app/ante"
"github.com/celestiaorg/celestia-app-fibre/v6/app/ante"
codectypes "github.com/cosmos/cosmos-sdk/codec/types"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/x/authz"
Expand Down
2 changes: 1 addition & 1 deletion app/ante/tx_size_gas.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (

"cosmossdk.io/errors"
storetypes "cosmossdk.io/store/types"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
"github.com/cosmos/cosmos-sdk/codec/legacy"
"github.com/cosmos/cosmos-sdk/crypto/keys/multisig"
"github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
Expand Down
10 changes: 5 additions & 5 deletions app/ante/tx_size_gas_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"testing"

storetypes "cosmossdk.io/store/types"
"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/ante"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
testutil "github.com/celestiaorg/celestia-app/v6/test/util"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/ante"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
testutil "github.com/celestiaorg/celestia-app-fibre/v6/test/util"
"github.com/cosmos/cosmos-sdk/client"
"github.com/cosmos/cosmos-sdk/client/tx"
cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types"
Expand Down
48 changes: 24 additions & 24 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,30 +29,30 @@ import (
"github.com/bcp-innovations/hyperlane-cosmos/x/warp"
warpkeeper "github.com/bcp-innovations/hyperlane-cosmos/x/warp/keeper"
warptypes "github.com/bcp-innovations/hyperlane-cosmos/x/warp/types"
"github.com/celestiaorg/celestia-app/v6/app/ante"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/app/grpc/gasestimation"
celestiatx "github.com/celestiaorg/celestia-app/v6/app/grpc/tx"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app/v6/pkg/proof"
"github.com/celestiaorg/celestia-app/v6/pkg/wrapper"
"github.com/celestiaorg/celestia-app/v6/x/blob"
blobkeeper "github.com/celestiaorg/celestia-app/v6/x/blob/keeper"
blobtypes "github.com/celestiaorg/celestia-app/v6/x/blob/types"
"github.com/celestiaorg/celestia-app/v6/x/fibre"
fibrekeeper "github.com/celestiaorg/celestia-app/v6/x/fibre/keeper"
fibretypes "github.com/celestiaorg/celestia-app/v6/x/fibre/types"
"github.com/celestiaorg/celestia-app/v6/x/minfee"
minfeekeeper "github.com/celestiaorg/celestia-app/v6/x/minfee/keeper"
minfeetypes "github.com/celestiaorg/celestia-app/v6/x/minfee/types"
"github.com/celestiaorg/celestia-app/v6/x/mint"
mintkeeper "github.com/celestiaorg/celestia-app/v6/x/mint/keeper"
minttypes "github.com/celestiaorg/celestia-app/v6/x/mint/types"
"github.com/celestiaorg/celestia-app/v6/x/signal"
signaltypes "github.com/celestiaorg/celestia-app/v6/x/signal/types"
"github.com/celestiaorg/celestia-app/v6/x/valaddr"
valaddrkeeper "github.com/celestiaorg/celestia-app/v6/x/valaddr/keeper"
valaddrtypes "github.com/celestiaorg/celestia-app/v6/x/valaddr/types"
"github.com/celestiaorg/celestia-app-fibre/v6/app/ante"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/app/grpc/gasestimation"
celestiatx "github.com/celestiaorg/celestia-app-fibre/v6/app/grpc/tx"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/proof"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/wrapper"
"github.com/celestiaorg/celestia-app-fibre/v6/x/blob"
blobkeeper "github.com/celestiaorg/celestia-app-fibre/v6/x/blob/keeper"
blobtypes "github.com/celestiaorg/celestia-app-fibre/v6/x/blob/types"
"github.com/celestiaorg/celestia-app-fibre/v6/x/fibre"
fibrekeeper "github.com/celestiaorg/celestia-app-fibre/v6/x/fibre/keeper"
fibretypes "github.com/celestiaorg/celestia-app-fibre/v6/x/fibre/types"
"github.com/celestiaorg/celestia-app-fibre/v6/x/minfee"
minfeekeeper "github.com/celestiaorg/celestia-app-fibre/v6/x/minfee/keeper"
minfeetypes "github.com/celestiaorg/celestia-app-fibre/v6/x/minfee/types"
"github.com/celestiaorg/celestia-app-fibre/v6/x/mint"
mintkeeper "github.com/celestiaorg/celestia-app-fibre/v6/x/mint/keeper"
minttypes "github.com/celestiaorg/celestia-app-fibre/v6/x/mint/types"
"github.com/celestiaorg/celestia-app-fibre/v6/x/signal"
signaltypes "github.com/celestiaorg/celestia-app-fibre/v6/x/signal/types"
"github.com/celestiaorg/celestia-app-fibre/v6/x/valaddr"
valaddrkeeper "github.com/celestiaorg/celestia-app-fibre/v6/x/valaddr/keeper"
valaddrtypes "github.com/celestiaorg/celestia-app-fibre/v6/x/valaddr/types"
"github.com/celestiaorg/go-square/v4/share"
abci "github.com/cometbft/cometbft/abci/types"
tmjson "github.com/cometbft/cometbft/libs/json"
Expand Down
10 changes: 5 additions & 5 deletions app/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import (
"time"

"cosmossdk.io/log"
"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/test/util"
"github.com/celestiaorg/celestia-app/v6/test/util/testfactory"
"github.com/celestiaorg/celestia-app/v6/test/util/testnode"
minfeetypes "github.com/celestiaorg/celestia-app/v6/x/minfee/types"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testfactory"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testnode"
minfeetypes "github.com/celestiaorg/celestia-app-fibre/v6/x/minfee/types"
abci "github.com/cometbft/cometbft/abci/types"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
tmdb "github.com/cosmos/cosmos-db"
Expand Down
12 changes: 6 additions & 6 deletions app/benchmarks/benchmark_ibc_update_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ import (
"testing"
"time"

"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app/v6/pkg/user"
testutil "github.com/celestiaorg/celestia-app/v6/test/util"
"github.com/celestiaorg/celestia-app/v6/test/util/testfactory"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/user"
testutil "github.com/celestiaorg/celestia-app-fibre/v6/test/util"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testfactory"
dbm "github.com/cometbft/cometbft-db"
"github.com/cometbft/cometbft/abci/types"
"github.com/cometbft/cometbft/crypto"
Expand Down
14 changes: 7 additions & 7 deletions app/benchmarks/benchmark_msg_send_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import (
"testing"
"time"

"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app/v6/pkg/user"
testutil "github.com/celestiaorg/celestia-app/v6/test/util"
"github.com/celestiaorg/celestia-app/v6/test/util/testfactory"
"github.com/celestiaorg/celestia-app/v6/test/util/testnode"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/user"
testutil "github.com/celestiaorg/celestia-app-fibre/v6/test/util"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testfactory"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testnode"
"github.com/cometbft/cometbft/abci/types"
sdk "github.com/cosmos/cosmos-sdk/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"
Expand Down
10 changes: 5 additions & 5 deletions app/benchmarks/benchmark_pfb_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ import (
"time"

"cosmossdk.io/log"
"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/pkg/user"
testutil "github.com/celestiaorg/celestia-app/v6/test/util"
"github.com/celestiaorg/celestia-app/v6/test/util/testfactory"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/user"
testutil "github.com/celestiaorg/celestia-app-fibre/v6/test/util"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testfactory"
"github.com/celestiaorg/go-square/v4/share"
blobtx "github.com/celestiaorg/go-square/v4/tx"
"github.com/cometbft/cometbft/abci/types"
Expand Down
20 changes: 10 additions & 10 deletions app/benchmarks/gas_estimator_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@ import (
"context"
"testing"

"github.com/celestiaorg/celestia-app/v6/app"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/app/grpc/gasestimation"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app/v6/pkg/user"
testutil "github.com/celestiaorg/celestia-app/v6/test/util"
"github.com/celestiaorg/celestia-app/v6/test/util/blobfactory"
"github.com/celestiaorg/celestia-app/v6/test/util/random"
"github.com/celestiaorg/celestia-app/v6/test/util/testfactory"
blobtypes "github.com/celestiaorg/celestia-app/v6/x/blob/types"
"github.com/celestiaorg/celestia-app-fibre/v6/app"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/app/grpc/gasestimation"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/user"
testutil "github.com/celestiaorg/celestia-app-fibre/v6/test/util"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/blobfactory"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/random"
"github.com/celestiaorg/celestia-app-fibre/v6/test/util/testfactory"
blobtypes "github.com/celestiaorg/celestia-app-fibre/v6/x/blob/types"
"github.com/celestiaorg/go-square/v4/share"
"github.com/cometbft/cometbft/rpc/client"
rpctypes "github.com/cometbft/cometbft/rpc/core/types"
Expand Down
6 changes: 3 additions & 3 deletions app/check_tx.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import (
"fmt"

"cosmossdk.io/errors"
apperr "github.com/celestiaorg/celestia-app/v6/app/errors"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
blobtypes "github.com/celestiaorg/celestia-app/v6/x/blob/types"
apperr "github.com/celestiaorg/celestia-app-fibre/v6/app/errors"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
blobtypes "github.com/celestiaorg/celestia-app-fibre/v6/x/blob/types"
blobtx "github.com/celestiaorg/go-square/v4/tx"
abci "github.com/cometbft/cometbft/abci/types"
)
Expand Down
8 changes: 4 additions & 4 deletions app/default_overrides.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ import (
"cosmossdk.io/x/circuit"
circuittypes "cosmossdk.io/x/circuit/types"
upgradetypes "cosmossdk.io/x/upgrade/types"
"github.com/celestiaorg/celestia-app/v6/app/params"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app/v6/x/mint"
minttypes "github.com/celestiaorg/celestia-app/v6/x/mint/types"
"github.com/celestiaorg/celestia-app-fibre/v6/app/params"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/x/mint"
minttypes "github.com/celestiaorg/celestia-app-fibre/v6/x/mint/types"
tmcfg "github.com/cometbft/cometbft/config"
tmproto "github.com/cometbft/cometbft/proto/tendermint/types"
coretypes "github.com/cometbft/cometbft/types"
Expand Down
6 changes: 3 additions & 3 deletions app/default_overrides_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
"time"

"cosmossdk.io/math"
"github.com/celestiaorg/celestia-app/v6/app/encoding"
"github.com/celestiaorg/celestia-app/v6/app/params"
"github.com/celestiaorg/celestia-app/v6/pkg/appconsts"
"github.com/celestiaorg/celestia-app-fibre/v6/app/encoding"
"github.com/celestiaorg/celestia-app-fibre/v6/app/params"
"github.com/celestiaorg/celestia-app-fibre/v6/pkg/appconsts"
tmcfg "github.com/cometbft/cometbft/config"
"github.com/cosmos/cosmos-sdk/types"
govtypes "github.com/cosmos/cosmos-sdk/x/gov/types/v1"
Expand Down
Loading
Loading