Skip to content

Commit

Permalink
chore: change module path to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
johnletey authored and agouin committed Sep 26, 2023
1 parent e3f8baa commit b23ad83
Show file tree
Hide file tree
Showing 351 changed files with 1,080 additions and 1,076 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ proto-all: proto-format proto-lint proto-gen

proto-gen:
@echo "Generating Protobuf files"
@if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoGen}$$"; then docker start -a $(containerProtoGen); else docker run --name $(containerProtoGen) -v $(CURDIR):/workspace --workdir /workspace $(containerProtoImage) \
@if docker ps -a --format '{{.Names}}' | grep -Eq "^${containerProtoGen}$$"; then docker start -a $(containerProtoGen); else docker run --name $(containerProtoGen) -v $(PWD):/workspace --workdir /workspace $(containerProtoImage) \
sh ./scripts/protocgen.sh; fi

proto-format:
Expand Down
10 changes: 5 additions & 5 deletions app/ante.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ package app

import (
"github.com/cosmos/cosmos-sdk/types/bech32"
fiattokenfactory "github.com/strangelove-ventures/noble/x/fiattokenfactory/keeper"
fiattokenfactorytypes "github.com/strangelove-ventures/noble/x/fiattokenfactory/types"
tokenfactory "github.com/strangelove-ventures/noble/x/tokenfactory/keeper"
tokenfactorytypes "github.com/strangelove-ventures/noble/x/tokenfactory/types"
fiattokenfactory "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/keeper"
fiattokenfactorytypes "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types"
tokenfactory "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper"
tokenfactorytypes "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"

sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
Expand All @@ -16,7 +16,7 @@ import (
ibcante "github.com/cosmos/ibc-go/v3/modules/core/ante"
ibckeeper "github.com/cosmos/ibc-go/v3/modules/core/keeper"

feeante "github.com/strangelove-ventures/noble/x/globalfee/ante"
feeante "github.com/strangelove-ventures/noble/v4/x/globalfee/ante"
)

type HandlerOptions struct {
Expand Down
36 changes: 18 additions & 18 deletions app/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,24 +90,24 @@ import (
"github.com/cosmos/cosmos-sdk/x/staking"
stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper"
stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types"
"github.com/strangelove-ventures/noble/app/upgrades/argon"
"github.com/strangelove-ventures/noble/app/upgrades/argon4"
"github.com/strangelove-ventures/noble/app/upgrades/neon"
"github.com/strangelove-ventures/noble/app/upgrades/radon"
v3m1p0 "github.com/strangelove-ventures/noble/app/upgrades/v3.1.0"
"github.com/strangelove-ventures/noble/cmd"
"github.com/strangelove-ventures/noble/docs"
"github.com/strangelove-ventures/noble/x/blockibc"
fiattokenfactorymodule "github.com/strangelove-ventures/noble/x/fiattokenfactory"
fiattokenfactorymodulekeeper "github.com/strangelove-ventures/noble/x/fiattokenfactory/keeper"
fiattokenfactorymoduletypes "github.com/strangelove-ventures/noble/x/fiattokenfactory/types"
"github.com/strangelove-ventures/noble/x/globalfee"
tariff "github.com/strangelove-ventures/noble/x/tariff"
tariffkeeper "github.com/strangelove-ventures/noble/x/tariff/keeper"
tarifftypes "github.com/strangelove-ventures/noble/x/tariff/types"
tokenfactorymodule "github.com/strangelove-ventures/noble/x/tokenfactory"
tokenfactorymodulekeeper "github.com/strangelove-ventures/noble/x/tokenfactory/keeper"
tokenfactorymoduletypes "github.com/strangelove-ventures/noble/x/tokenfactory/types"
"github.com/strangelove-ventures/noble/v4/app/upgrades/argon"
"github.com/strangelove-ventures/noble/v4/app/upgrades/argon4"
"github.com/strangelove-ventures/noble/v4/app/upgrades/neon"
"github.com/strangelove-ventures/noble/v4/app/upgrades/radon"
v3m1p0 "github.com/strangelove-ventures/noble/v4/app/upgrades/v3.1.0"
"github.com/strangelove-ventures/noble/v4/cmd"
"github.com/strangelove-ventures/noble/v4/docs"
"github.com/strangelove-ventures/noble/v4/x/blockibc"
fiattokenfactorymodule "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory"
fiattokenfactorymodulekeeper "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/keeper"
fiattokenfactorymoduletypes "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types"
"github.com/strangelove-ventures/noble/v4/x/globalfee"
tariff "github.com/strangelove-ventures/noble/v4/x/tariff"
tariffkeeper "github.com/strangelove-ventures/noble/v4/x/tariff/keeper"
tarifftypes "github.com/strangelove-ventures/noble/v4/x/tariff/types"
tokenfactorymodule "github.com/strangelove-ventures/noble/v4/x/tokenfactory"
tokenfactorymodulekeeper "github.com/strangelove-ventures/noble/v4/x/tokenfactory/keeper"
tokenfactorymoduletypes "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"

cctp "github.com/circlefin/noble-cctp/x/cctp"
cctpkeeper "github.com/circlefin/noble-cctp/x/cctp/keeper"
Expand Down
4 changes: 2 additions & 2 deletions app/simulation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"os"
"testing"

"github.com/strangelove-ventures/noble/app"
"github.com/strangelove-ventures/noble/cmd"
"github.com/strangelove-ventures/noble/v4/app"
"github.com/strangelove-ventures/noble/v4/cmd"

"github.com/cosmos/cosmos-sdk/baseapp"
"github.com/cosmos/cosmos-sdk/codec"
Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/argon/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
upgradeTypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
routerkeeper "github.com/strangelove-ventures/noble-router/x/router/keeper"
routertypes "github.com/strangelove-ventures/noble-router/x/router/types"
fiattokenfactorykeeper "github.com/strangelove-ventures/noble/x/fiattokenfactory/keeper"
fiattokenfactorykeeper "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/keeper"
paramauthoritykeeper "github.com/strangelove-ventures/paramauthority/x/params/keeper"
)

Expand Down
2 changes: 1 addition & 1 deletion app/upgrades/neon/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
storeTypes "github.com/cosmos/cosmos-sdk/store/types"

// FiatTokenFactory
fiatTokenFactoryTypes "github.com/strangelove-ventures/noble/x/fiattokenfactory/types"
fiatTokenFactoryTypes "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types"
// Upgrade
upgradeTypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
)
Expand Down
6 changes: 3 additions & 3 deletions app/upgrades/neon/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ import (
upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"

authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper"
"github.com/strangelove-ventures/noble/x/fiattokenfactory"
fiattokenfactorykeeper "github.com/strangelove-ventures/noble/x/fiattokenfactory/keeper"
fiattokenfactorytypes "github.com/strangelove-ventures/noble/x/fiattokenfactory/types"
"github.com/strangelove-ventures/noble/v4/x/fiattokenfactory"
fiattokenfactorykeeper "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/keeper"
fiattokenfactorytypes "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types"
)

func initialFiatTokenFactoryState() fiattokenfactorytypes.GenesisState {
Expand Down
4 changes: 2 additions & 2 deletions app/upgrades/radon/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import (
storeTypes "github.com/cosmos/cosmos-sdk/store/types"

// GlobalFee
globalFeeTypes "github.com/strangelove-ventures/noble/x/globalfee/types"
globalFeeTypes "github.com/strangelove-ventures/noble/v4/x/globalfee/types"
// Tariff
tariffTypes "github.com/strangelove-ventures/noble/x/tariff/types"
tariffTypes "github.com/strangelove-ventures/noble/v4/x/tariff/types"
// Upgrade
upgradeTypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
)
Expand Down
6 changes: 3 additions & 3 deletions app/upgrades/radon/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import (
paramauthoritykeeper "github.com/strangelove-ventures/paramauthority/x/params/keeper"

upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types"
fiattokenfactorykeeper "github.com/strangelove-ventures/noble/x/fiattokenfactory/keeper"
globalfeetypes "github.com/strangelove-ventures/noble/x/globalfee/types"
fiattokenfactorykeeper "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/keeper"
globalfeetypes "github.com/strangelove-ventures/noble/v4/x/globalfee/types"

tarifftypes "github.com/strangelove-ventures/noble/x/tariff/types"
tarifftypes "github.com/strangelove-ventures/noble/v4/x/tariff/types"
)

func CreateRadonUpgradeHandler(
Expand Down
4 changes: 2 additions & 2 deletions cmd/nobled/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (

svrcmd "github.com/cosmos/cosmos-sdk/server/cmd"

"github.com/strangelove-ventures/noble/app"
"github.com/strangelove-ventures/noble/cmd"
"github.com/strangelove-ventures/noble/v4/app"
"github.com/strangelove-ventures/noble/v4/cmd"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/strangelove-ventures/noble
module github.com/strangelove-ventures/noble/v4

go 1.21

Expand Down
2 changes: 1 addition & 1 deletion interchaintest/genesis_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/strangelove-ventures/interchaintest/v3/ibc"
"github.com/strangelove-ventures/interchaintest/v3/relayer"
"github.com/strangelove-ventures/interchaintest/v3/relayer/rly"
tokenfactorytypes "github.com/strangelove-ventures/noble/x/tokenfactory/types"
tokenfactorytypes "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"
proposaltypes "github.com/strangelove-ventures/paramauthority/x/params/types/proposal"
upgradetypes "github.com/strangelove-ventures/paramauthority/x/upgrade/types"
)
Expand Down
2 changes: 1 addition & 1 deletion interchaintest/globalfee_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/strangelove-ventures/interchaintest/v3"
"github.com/strangelove-ventures/interchaintest/v3/chain/cosmos"
"github.com/strangelove-ventures/interchaintest/v3/testreporter"
"github.com/strangelove-ventures/noble/cmd"
"github.com/strangelove-ventures/noble/v4/cmd"
proposaltypes "github.com/strangelove-ventures/paramauthority/x/params/types/proposal"
"github.com/stretchr/testify/require"
"go.uber.org/zap/zaptest"
Expand Down
4 changes: 2 additions & 2 deletions interchaintest/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ require (
github.com/ethereum/go-ethereum v1.12.2
github.com/icza/dyno v0.0.0-20220812133438-f0b6f8a18845
github.com/strangelove-ventures/interchaintest/v3 v3.0.0-20230622221919-28c608364e27
github.com/strangelove-ventures/noble v1.0.1-0.20230717234609-400609f26a31
github.com/strangelove-ventures/noble-router v0.0.0-20230926014033-6b65b68f8d24
github.com/strangelove-ventures/paramauthority v1.0.0
github.com/strangelove-ventures/noble/v4 v4.0.0-00010101000000-000000000000
github.com/stretchr/testify v1.8.4
go.uber.org/zap v1.24.0
)
Expand Down Expand Up @@ -188,7 +188,7 @@ replace (
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1

// For this nested module, you always want to replace the parent reference with the current worktree.
github.com/strangelove-ventures/noble => ../
github.com/strangelove-ventures/noble/v4 => ../

// cometbft
github.com/tendermint/tendermint => github.com/cometbft/cometbft v0.34.27
Expand Down
2 changes: 1 addition & 1 deletion interchaintest/noble_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/strangelove-ventures/interchaintest/v3/chain/cosmos"
"github.com/strangelove-ventures/interchaintest/v3/ibc"
"github.com/strangelove-ventures/interchaintest/v3/testreporter"
"github.com/strangelove-ventures/noble/x/tokenfactory/types"
"github.com/strangelove-ventures/noble/v4/x/tokenfactory/types"
"github.com/stretchr/testify/require"
"go.uber.org/zap/zaptest"
)
Expand Down
2 changes: 1 addition & 1 deletion interchaintest/paramauthority_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/strangelove-ventures/interchaintest/v3/chain/cosmos"
"github.com/strangelove-ventures/interchaintest/v3/ibc"
"github.com/strangelove-ventures/interchaintest/v3/testreporter"
"github.com/strangelove-ventures/noble/cmd"
"github.com/strangelove-ventures/noble/v4/cmd"
proposaltypes "github.com/strangelove-ventures/paramauthority/x/params/types/proposal"
"github.com/stretchr/testify/require"
"go.uber.org/zap/zaptest"
Expand Down
4 changes: 2 additions & 2 deletions interchaintest/upgrade_radon_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
sdk "github.com/cosmos/cosmos-sdk/types"
"github.com/strangelove-ventures/interchaintest/v3/chain/cosmos"
"github.com/strangelove-ventures/interchaintest/v3/ibc"
fiattokenfactorytypes "github.com/strangelove-ventures/noble/x/fiattokenfactory/types"
globalfeetypes "github.com/strangelove-ventures/noble/x/globalfee/types"
fiattokenfactorytypes "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types"
globalfeetypes "github.com/strangelove-ventures/noble/v4/x/globalfee/types"
"github.com/stretchr/testify/require"
)

Expand Down
2 changes: 1 addition & 1 deletion interchaintest/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/strangelove-ventures/interchaintest/v3/ibc"
"github.com/strangelove-ventures/interchaintest/v3/testreporter"
"github.com/strangelove-ventures/interchaintest/v3/testutil"
"github.com/strangelove-ventures/noble/cmd"
"github.com/strangelove-ventures/noble/v4/cmd"
upgradetypes "github.com/strangelove-ventures/paramauthority/x/upgrade/types"
"github.com/stretchr/testify/require"
"go.uber.org/zap"
Expand Down
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/blacklisted.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

message Blacklisted { bytes addressBz = 1; }
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/blacklister.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

message Blacklister { string address = 1; }
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import "fiattokenfactory/minter_controller.proto";
import "fiattokenfactory/minting_denom.proto";
// this line is used by starport scaffolding # genesis/proto/import

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

// GenesisState defines the fiattokenfactory module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/master_minter.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

message MasterMinter { string address = 1; }
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/minter_controller.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

message MinterController {
string minter = 1;
Expand Down
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/minters.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";
import "gogoproto/gogo.proto";
import "cosmos/base/v1beta1/coin.proto";

Expand Down
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/minting_denom.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

message MintingDenom { string denom = 1; }
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/owner.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

message Owner { string address = 1; }
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/params.proto
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package noble.fiattokenfactory;

import "gogoproto/gogo.proto";

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

// Params defines the parameters for the module.
message Params { option (gogoproto.goproto_stringer) = false; }
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/paused.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

message Paused { bool paused = 1; }
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/pauser.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.fiattokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

message Pauser { string address = 1; }
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import "fiattokenfactory/minting_denom.proto";
import "cosmos/base/v1beta1/coin.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/fiattokenfactory/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package noble.fiattokenfactory;
import "cosmos/base/v1beta1/coin.proto";
import "gogoproto/gogo.proto";

option go_package = "github.com/strangelove-ventures/noble/x/fiattokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/fiattokenfactory/types";

// Msg defines the Msg service.
service Msg {
Expand Down
2 changes: 1 addition & 1 deletion proto/globalfee/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package noble.globalfee;
import "gogoproto/gogo.proto";
import "cosmos/base/v1beta1/coin.proto";

option go_package = "github.com/strangelove-ventures/noble/x/globalfee/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/globalfee/types";

// GenesisState - initial state of module
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/globalfee/query.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import "google/api/annotations.proto";
import "cosmos/base/v1beta1/coin.proto";
import "globalfee/genesis.proto";

option go_package = "github.com/strangelove-ventures/noble/x/globalfee/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/globalfee/types";

// Query defines the gRPC querier service.
service Query {
Expand Down
2 changes: 1 addition & 1 deletion proto/tariff/genesis.proto
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package noble.tariff;
import "gogoproto/gogo.proto";
import "tariff/params.proto";

option go_package = "github.com/strangelove-ventures/noble/x/tariff/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/tariff/types";

// GenesisState defines the tariff module's genesis state.
message GenesisState {
Expand Down
2 changes: 1 addition & 1 deletion proto/tariff/params.proto
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
syntax = "proto3";
package noble.tariff;

option go_package = "github.com/strangelove-ventures/noble/x/tariff/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/tariff/types";
option (gogoproto.equal_all) = true;

import "gogoproto/gogo.proto";
Expand Down
2 changes: 1 addition & 1 deletion proto/tokenfactory/blacklisted.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.tokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/tokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types";

message Blacklisted { bytes addressBz = 1; }
2 changes: 1 addition & 1 deletion proto/tokenfactory/blacklister.proto
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
syntax = "proto3";
package noble.tokenfactory;

option go_package = "github.com/strangelove-ventures/noble/x/tokenfactory/types";
option go_package = "github.com/strangelove-ventures/noble/v4/x/tokenfactory/types";

message Blacklister { string address = 1; }
Loading

0 comments on commit b23ad83

Please sign in to comment.