Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 47 #1833

Open
wants to merge 59 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
8a82712
v47 init
Mar 7, 2025
acc20b9
icq-relayer builds
Mar 7, 2025
f612c1b
fix proto
Mar 10, 2025
ff387a4
update go and Docker
Mar 11, 2025
cd6661c
fix proto generation
Mar 12, 2025
b7f947d
update makefile
Mar 12, 2025
ea32eae
fix ica modules, tm client, and consensus keeper
joe-bowman Mar 12, 2025
d9f38c1
always use xbuild to build docker container
Mar 13, 2025
9de05d0
set legacy router
Mar 13, 2025
7d7a94e
lint
Mar 13, 2025
fcbc47b
fix potential overflow
Mar 13, 2025
c71b6a5
fix deprecated type usage
Mar 13, 2025
71ad6c2
more tweaks
joe-bowman Mar 12, 2025
8f6887b
ensure we use ordered channels for now
joe-bowman Mar 14, 2025
44b6828
test
joe-bowman Mar 14, 2025
0f1f1e4
utilise ica controller msgserver
joe-bowman Mar 14, 2025
a64c36d
fix iba controller route
joe-bowman Mar 14, 2025
39dd572
fix ibc?
joe-bowman Mar 14, 2025
a9b2808
debug register account callback
joe-bowman Mar 14, 2025
75535c6
fix transposed params
joe-bowman Mar 14, 2025
3fccc2b
revert debug lines
joe-bowman Mar 14, 2025
8e8cc3f
bump go to 1.23.7 everywhere
joe-bowman Mar 17, 2025
40a31de
test
joe-bowman Mar 17, 2025
2373c12
merge icq-relayer/v1.5.0 into update-47
joe-bowman Mar 17, 2025
8a740fd
move to mode_ASYNC
Mar 17, 2025
fd5b46a
switch order of controller and keeper on chanopenack
Mar 24, 2025
4ec4af1
wip
Mar 26, 2025
10d08ee
lint
Mar 26, 2025
5397fd8
dont seal twice
Mar 26, 2025
d09c2ce
enable middleware manually after change to msgServer
Mar 26, 2025
96b97e1
bump deps
Mar 26, 2025
f756f4d
add historical CHANGELOG entries
Mar 26, 2025
2a8f102
remove capability claim in tests
Mar 26, 2025
41433c3
use owner instead of port for SendTx
Mar 26, 2025
4ea3811
fix capabilities on ics and pr tests
Mar 27, 2025
18ca51d
set chain id post 47
Mar 27, 2025
0787d96
fix testchain references, silence logging
Mar 27, 2025
e7bc67b
fix export test
Mar 27, 2025
6f6c742
fix TestIntegrationTestSuite appconstructor
Mar 27, 2025
37b6cc9
linting
Mar 27, 2025
fd4ffe0
update roadmap
Mar 27, 2025
b1f254a
fix icq genesis test; remove redundant code
Mar 27, 2025
5346545
more test fixes
Mar 27, 2025
2ad84c0
add upgrade handler for v1.8.0
ajansari95 Mar 31, 2025
f34fbe9
lint-fix
ajansari95 Mar 31, 2025
099c9a2
more test fixes
joe-bowman Mar 31, 2025
a507f14
bump deps
joe-bowman Mar 31, 2025
9751906
store appCodec in appKeepers, move tm migration into upgrade handler
joe-bowman Mar 31, 2025
bdc4074
ensure we apply key encode fix to local proofs
joe-bowman Mar 31, 2025
2243907
lint fixes
joe-bowman Mar 31, 2025
760c094
bump golangci-lint
joe-bowman Mar 31, 2025
b46ebe7
bump golangci-lint to v2
joe-bowman Mar 31, 2025
0f85514
linut under gci v2
joe-bowman Mar 31, 2025
64a133c
exclude third-party-chains from devskim
joe-bowman Mar 31, 2025
77df5a2
bump to ibc-go 7.10
joe-bowman Mar 31, 2025
a87eadc
bump PFM to v7.3.0
joe-bowman Mar 31, 2025
8c17a99
remove redundant typing with utils.Keys()
joe-bowman Mar 31, 2025
14e5e51
add consensus store
joe-bowman Apr 3, 2025
cbf1d57
test improvements and deps
joe-bowman Apr 3, 2025
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
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.23.3-alpine3.20 AS builder
FROM golang:1.23.7-alpine3.21 AS builder
RUN apk add --no-cache git musl-dev openssl-dev linux-headers ca-certificates build-base

WORKDIR /src/app/
Expand Down
42 changes: 13 additions & 29 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ PACKAGES_SIM=github.com/quicksilver-zone/quicksilver/test/simulation
PACKAGES_E2E=$(shell go list ./... | grep '/e2e')
VERSION=$(shell git describe --tags --exclude "icq-relayer/*" --exclude "fe/*" --match "v*" | head -n1 | sed 's/.*\///')
DOCKER_VERSION ?= $(VERSION)
TMVERSION := $(shell go list -m github.com/tendermint/tendermint | sed 's:.* ::')
TMVERSION := $(shell go list -m github.com/cometbft/cometbft | sed 's:.* ::')
COMMIT := $(shell git log -1 --format='%H')
LEDGER_ENABLED ?= true
BINDIR ?= $(GOPATH)/bin
Expand Down Expand Up @@ -69,7 +69,7 @@ ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=quicksilver \
-X github.com/cosmos/cosmos-sdk/version.AppName=$(QS_BINARY) \
-X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \
-X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \
-X github.com/tendermint/tendermint/version.TMCoreSemVer=$(TMVERSION)
-X github.com/cometbft/cometbft/version.TMCoreSemVer=$(TMVERSION)

ifeq ($(LINK_STATICALLY),true)
ldflags += -linkmode=external -extldflags "-Wl,-z,muldefs -static"
Expand Down Expand Up @@ -121,12 +121,9 @@ $(BUILDDIR)/:
mkdir -p $(BUILDDIR)/

build-docker:
$(DOCKER) build . -f Dockerfile -t quicksilverzone/quicksilver:$(DOCKER_VERSION) -t quicksilverzone/quicksilver:latest

build-docker-xbuild:
$(DOCKER) buildx build --platform linux/amd64 . -f Dockerfile -t quicksilverzone/quicksilver:$(DOCKER_VERSION) -t quicksilverzone/quicksilver:latest

build-docker-release: build-docker-xbuild
build-docker-release: build-docker
$(DOCKER) run -v /tmp:/tmp quicksilverzone/quicksilver:$(DOCKER_VERSION) cp /usr/local/bin/quicksilverd /tmp/quicksilverd
mv /tmp/quicksilverd build/quicksilverd-$(DOCKER_VERSION)-amd64

Expand Down Expand Up @@ -424,43 +421,30 @@ mdlint-fix:
### Protobuf ###
###############################################################################

BUF_VERSION=1.35.1
protoVer=0.15.0
protoImageName=ghcr.io/cosmos/proto-builder:$(protoVer)
protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(protoImageName)

proto-all: proto-gen
proto-all: proto-format proto-lint proto-gen

proto-gen: proto-format
proto-gen:
@echo "🤖 Generating code from protobuf..."
@$(DOCKER) run --rm --volume "$(PWD)":/workspace --workdir /workspace \
quicksilver-proto sh ./proto/generate.sh
@$(protoImage) sh ./proto/proto-gen.sh
@echo "✅ Completed code generation!"

proto-lint:
@echo "🤖 Running protobuf linter..."
@$(DOCKER) run --volume "$(PWD)":/workspace --workdir /workspace \
bufbuild/buf:$(BUF_VERSION) lint
@$(protoImage) buf lint
@echo "✅ Completed protobuf linting!"

proto-format:
@echo "🤖 Running protobuf format..."
@$(DOCKER) run --volume "$(PWD)":/workspace --workdir /workspace \
bufbuild/buf:$(BUF_VERSION) format -w
@$(protoImage) buf format -w
@echo "✅ Completed protobuf format!"

proto-breaking-check:
@echo "🤖 Running protobuf breaking check against develop branch..."
@$(DOCKER) run --volume "$(PWD)":/workspace --workdir /workspace \
bufbuild/buf:$(BUF_VERSION) breaking --against '.git#branch=develop'
@echo "🤖 Running protobuf breaking check against main branch..."
@$(protoImage) buf breaking --against '.git#branch=main'
@echo "✅ Completed protobuf breaking check!"

# proto-setup:
# @echo "🤖 Setting up protobuf environment..."
# @$(DOCKER) build --rm --tag quicksilver-proto:latest --file proto/Dockerfile .
# @echo "✅ Setup protobuf environment!"

### Other tools
.PHONY: hermes-build

hermes-build:
docker buildx build --platform linux/amd64 --build-arg VERSION=$HERMES_VERSION -f Dockerfile.hermes . -t quicksilverzone/hermes:$HERMES_VERSION
docker push quicksilverzone/hermes:$HERMES_VERSION

4 changes: 2 additions & 2 deletions app/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
import (
sdkioerrors "cosmossdk.io/errors"

storetypes "github.com/cosmos/cosmos-sdk/store/types"

Check failure on line 6 in app/ante.go

View workflow job for this annotation

GitHub Actions / Analyze

cannot find module providing package github.com/cosmos/cosmos-sdk/store/types: import lookup disabled by -mod=readonly
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
"github.com/cosmos/cosmos-sdk/x/auth/ante"

ibcante "github.com/cosmos/ibc-go/v6/modules/core/ante"
ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper"
ibcante "github.com/cosmos/ibc-go/v7/modules/core/ante"
ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"
)

// HandlerOptions extend the SDK's AnteHandler options by requiring the IBC
Expand Down
55 changes: 40 additions & 15 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,40 +2,46 @@

import (
"context"
"encoding/json"
"io"
"net/http"
"os"
"path/filepath"

"github.com/spf13/cast"
abci "github.com/tendermint/tendermint/abci/types"
"github.com/tendermint/tendermint/libs/log"
tmos "github.com/tendermint/tendermint/libs/os"
dbm "github.com/tendermint/tm-db"

autocliv1 "cosmossdk.io/api/cosmos/autocli/v1"
reflectionv1 "cosmossdk.io/api/cosmos/reflection/v1"

"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/client"
nodeservice "github.com/cosmos/cosmos-sdk/client/grpc/node"
"github.com/cosmos/cosmos-sdk/client/grpc/tmservice"

Check failure on line 18 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze

cannot find module providing package github.com/cosmos/cosmos-sdk/client/grpc/tmservice: import lookup disabled by -mod=readonly
"github.com/cosmos/cosmos-sdk/codec"
"github.com/cosmos/cosmos-sdk/codec/types"
"github.com/cosmos/cosmos-sdk/runtime"
runtimeservices "github.com/cosmos/cosmos-sdk/runtime/services"
"github.com/cosmos/cosmos-sdk/server/api"
"github.com/cosmos/cosmos-sdk/server/config"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
"github.com/cosmos/cosmos-sdk/simapp"
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/cosmos/cosmos-sdk/types/module"
"github.com/cosmos/cosmos-sdk/version"
"github.com/cosmos/cosmos-sdk/x/auth/ante"
authtx "github.com/cosmos/cosmos-sdk/x/auth/tx"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
capabilitykeeper "github.com/cosmos/cosmos-sdk/x/capability/keeper"

Check failure on line 32 in app/app.go

View workflow job for this annotation

GitHub Actions / Analyze

cannot find module providing package github.com/cosmos/cosmos-sdk/x/capability/keeper: import lookup disabled by -mod=readonly
"github.com/cosmos/cosmos-sdk/x/crisis"
distrtypes "github.com/cosmos/cosmos-sdk/x/distribution/types"
paramstypes "github.com/cosmos/cosmos-sdk/x/params/types"

ibckeeper "github.com/cosmos/ibc-go/v6/modules/core/keeper"
ibctestingtypes "github.com/cosmos/ibc-go/v6/testing/types"
dbm "github.com/cometbft/cometbft-db"
abci "github.com/cometbft/cometbft/abci/types"
tmjson "github.com/cometbft/cometbft/libs/json"
"github.com/cometbft/cometbft/libs/log"
tmos "github.com/cometbft/cometbft/libs/os"

ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper"
ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types"

"github.com/quicksilver-zone/quicksilver/app/keepers"
"github.com/quicksilver-zone/quicksilver/docs"
Expand Down Expand Up @@ -70,7 +76,7 @@

var (
_ servertypes.Application = (*Quicksilver)(nil)
_ simapp.App = (*Quicksilver)(nil)
_ runtime.AppI = (*Quicksilver)(nil)
)

// Quicksilver implements an extended ABCI application.
Expand Down Expand Up @@ -130,6 +136,7 @@
bApp.SetCommitMultiStoreTracer(traceStore)
bApp.SetVersion(version.Version)
bApp.SetInterfaceRegistry(interfaceRegistry)
bApp.SetTxEncoder(encodingConfig.TxConfig.TxEncoder())

app := &Quicksilver{
BaseApp: bApp,
Expand All @@ -152,6 +159,7 @@
invCheckPeriod,
appOpts,
enableSupplyEndpoint,
logger,
)

// **** Module Options ****/
Expand All @@ -165,8 +173,7 @@
app.mm.SetOrderEndBlockers(orderEndBlockers()...)
app.mm.SetOrderInitGenesis(orderInitBlockers()...)

app.mm.RegisterInvariants(&app.CrisisKeeper)
app.mm.RegisterRoutes(app.Router(), app.QueryRouter(), encodingConfig.Amino)
app.mm.RegisterInvariants(app.CrisisKeeper)
app.configurator = module.NewConfigurator(app.appCodec, app.MsgServiceRouter(), app.GRPCQueryRouter())
app.mm.RegisterServices(app.configurator)

Expand All @@ -178,6 +185,14 @@
// NOTE: this is not required apps that don't use the simulator for fuzz testing
// transactions
app.sm = module.NewSimulationManager(simulationModules(app, encodingConfig)...)

autocliv1.RegisterQueryServer(app.GRPCQueryRouter(), runtimeservices.NewAutoCLIQueryService(app.mm.Modules))
reflectionSvc, err := runtimeservices.NewReflectionService()
if err != nil {
panic(err)
}
reflectionv1.RegisterReflectionServiceServer(app.GRPCQueryRouter(), reflectionSvc)

app.sm.RegisterStoreDecoders()

// initialize stores
Expand Down Expand Up @@ -257,7 +272,7 @@
// InitChainer updates at chain initialization.
func (app *Quicksilver) InitChainer(ctx sdk.Context, req abci.RequestInitChain) abci.ResponseInitChain {
var genesisState GenesisState
if err := json.Unmarshal(req.AppStateBytes, &genesisState); err != nil {
if err := tmjson.Unmarshal(req.AppStateBytes, &genesisState); err != nil {
panic(err)
}
app.UpgradeKeeper.SetModuleVersionMap(ctx, app.mm.GetVersionMap())
Expand All @@ -270,7 +285,7 @@
}

// ModuleAccountAddrs returns all the app's module account addresses.
func (*Quicksilver) ModuleAccountAddrs() map[string]bool {
func (app *Quicksilver) ModuleAccountAddrs() map[string]bool {
modAccAddrs := make(map[string]bool)
for acc := range maccPerms {
modAccAddrs[authtypes.NewModuleAddress(acc).String()] = true
Expand All @@ -281,7 +296,7 @@

// BlockedAddrs returns all the app's module account addresses that are not
// allowed to receive external tokens.
func (*Quicksilver) BlockedAddrs() map[string]bool {
func (app *Quicksilver) BlockedAddrs() map[string]bool {
blockedAddrs := make(map[string]bool)
for acc := range maccPerms {
blockedAddrs[authtypes.NewModuleAddress(acc).String()] = !allowedReceivingModAcc[acc]
Expand Down Expand Up @@ -338,8 +353,12 @@
// Register new tendermint queries routes from grpc-gateway.
tmservice.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter)

// Register legacy and grpc-gateway routes for all modules.
ModuleBasics.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter)

// Register node gRPC service for grpc-gateway.
nodeservice.RegisterGRPCGatewayRoutes(clientCtx, apiSvr.GRPCGatewayRouter)

// register swagger API
if apiConfig.Swagger {
apiSvr.Router.Handle("/swagger.yml", http.FileServer(http.FS(docs.Swagger)))
Expand All @@ -361,6 +380,12 @@
)
}

// RegisterNodeService registers the node gRPC service on the provided
// application gRPC query router.
func (app *Quicksilver) RegisterNodeService(clientCtx client.Context) {
nodeservice.RegisterNodeService(clientCtx, app.GRPCQueryRouter())
}

// IBC Go TestingApp functions

// GetBaseApp implements the TestingApp interface.
Expand Down Expand Up @@ -389,7 +414,7 @@
}

// GetTxConfig implements the TestingApp interface.
func (*Quicksilver) GetTxConfig() client.TxConfig {
func (app *Quicksilver) GetTxConfig() client.TxConfig {
cfg := MakeEncodingConfig()
return cfg.TxConfig
}
Expand Down
13 changes: 7 additions & 6 deletions app/app_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ import (
"testing"

"github.com/stretchr/testify/require"
abci "github.com/tendermint/tendermint/abci/types"
"github.com/tendermint/tendermint/crypto/secp256k1"
"github.com/tendermint/tendermint/libs/log"
tmtypes "github.com/tendermint/tendermint/types"
dbm "github.com/tendermint/tm-db"

cosmossecp256k1 "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1"
"github.com/cosmos/cosmos-sdk/testutil/mock"
sdk "github.com/cosmos/cosmos-sdk/types"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
banktypes "github.com/cosmos/cosmos-sdk/x/bank/types"

dbm "github.com/cometbft/cometbft-db"
abci "github.com/cometbft/cometbft/abci/types"
"github.com/cometbft/cometbft/crypto/secp256k1"
"github.com/cometbft/cometbft/libs/log"
tmtypes "github.com/cometbft/cometbft/types"

"github.com/quicksilver-zone/quicksilver/app"
)

Expand Down Expand Up @@ -87,6 +88,6 @@ func TestQuicksilverExport(t *testing.T) {
false,
"",
)
_, err = app2.ExportAppStateAndValidators(false, []string{})
_, err = app2.ExportAppStateAndValidators(false, []string{}, []string{})
require.NoError(t, err, "ExportAppStateAndValidators should not have an error")
}
71 changes: 33 additions & 38 deletions app/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,8 @@ import (
"fmt"
"time"

dbm "github.com/tendermint/tm-db"

"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/crypto/hd"
"github.com/cosmos/cosmos-sdk/crypto/keyring"
purningtypes "github.com/cosmos/cosmos-sdk/pruning/types"
servertypes "github.com/cosmos/cosmos-sdk/server/types"
"github.com/cosmos/cosmos-sdk/testutil/network"
sdk "github.com/cosmos/cosmos-sdk/types"
authtypes "github.com/cosmos/cosmos-sdk/x/auth/types"
Expand All @@ -27,39 +22,39 @@ func DefaultConfig() network.Config {
LegacyAmino: encCfg.Amino,
InterfaceRegistry: encCfg.InterfaceRegistry,
AccountRetriever: authtypes.AccountRetriever{},
AppConstructor: NewAppConstructor(encCfg),
GenesisState: ModuleBasics.DefaultGenesis(encCfg.Marshaler),
TimeoutCommit: 1 * time.Second / 2,
ChainID: "quicktest-1",
NumValidators: 1,
BondDenom: sdk.DefaultBondDenom,
MinGasPrices: fmt.Sprintf("0.000006%s", sdk.DefaultBondDenom),
AccountTokens: sdk.TokensFromConsensusPower(1000, sdk.DefaultPowerReduction),
StakingTokens: sdk.TokensFromConsensusPower(500, sdk.DefaultPowerReduction),
BondedTokens: sdk.TokensFromConsensusPower(100, sdk.DefaultPowerReduction),
CleanupDir: true,
SigningAlgo: string(hd.Secp256k1Type),
KeyringOptions: []keyring.Option{},
// AppConstructor: NewAppConstructor(encCfg),
GenesisState: ModuleBasics.DefaultGenesis(encCfg.Marshaler),
TimeoutCommit: 1 * time.Second / 2,
ChainID: "quicktest-1",
NumValidators: 1,
BondDenom: sdk.DefaultBondDenom,
MinGasPrices: fmt.Sprintf("0.000006%s", sdk.DefaultBondDenom),
AccountTokens: sdk.TokensFromConsensusPower(1000, sdk.DefaultPowerReduction),
StakingTokens: sdk.TokensFromConsensusPower(500, sdk.DefaultPowerReduction),
BondedTokens: sdk.TokensFromConsensusPower(100, sdk.DefaultPowerReduction),
CleanupDir: true,
SigningAlgo: string(hd.Secp256k1Type),
KeyringOptions: []keyring.Option{},
}
}

func NewAppConstructor(encCfg EncodingConfig) network.AppConstructor {
return func(val network.Validator) servertypes.Application {
return NewQuicksilver(
val.Ctx.Logger,
dbm.NewMemDB(),
nil,
true,
map[int64]bool{},
DefaultNodeHome,
0,
encCfg,
EmptyAppOptions{},
false,
false,
"",
baseapp.SetPruning(purningtypes.NewPruningOptionsFromString(val.AppConfig.Pruning)),
// baseapp.SetMinGasPrices(val.AppConfig.MinGasPrices),
)
}
}
// func NewAppConstructor(encCfg EncodingConfig) network.AppConstructor {
// return func(val network.Validator) servertypes.Application {
// return NewQuicksilver(
// val.Ctx.Logger,
// dbm.NewMemDB(),
// nil,
// true,
// map[int64]bool{},
// DefaultNodeHome,
// 0,
// encCfg,
// EmptyAppOptions{},
// false,
// false,
// "",
// //baseapp.SetPruning(purningtypes.NewPruningOptionsFromString(val.AppConfig.Pruning)),
// // baseapp.SetMinGasPrices(val.AppConfig.MinGasPrices),
// )
// }
// }
Loading
Loading